footer {
  width: 100%;
  height: 3.875rem;

  background-color: white;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 80%;
  max-width: 112.5rem;
  height: 100%;

  margin: 0 auto;
}

.footer-content .copyright {
  color: #a6adc7;
  font-size: 0.875rem;
  line-height: 1.218rem;
  font-weight: 500;
}

.footer-content .links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.footer-content .links a {
  color: #444b62;
  font-size: 0.875rem;
  line-height: 1.218rem;
  font-weight: 500;

  border-radius: 0.25rem;
}

.footer-content .links .social-media-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-content .links .social-media-links a {
  display: flex;
}

.footer-content .links .social-media-links a svg path {
  transition: fill 0.3s ease;
}

.footer-content .links .social-media-links a svg:hover path {
  fill: #444b62;
}

@media (max-width: 75rem) {
  footer {
    padding: 3rem 1.25rem;
  }

  .footer-content {
    width: 100%;

    margin: 0;
  }
}

@media (max-width: 56.25rem) {
  footer {
    height: unset;
  }

  .footer-content {
    flex-direction: column-reverse;
    gap: 4rem;
  }

  .footer-content .links {
    flex-direction: column-reverse;
    /* gap: 1.5rem; */
  }

  .footer-content .links .social-media-links {
    margin-bottom: 0.5rem;
  }
}
