/* Footer */
:root {
  --primary-color: #FBD77E;
  --text-color: #000000;
  --text-light: #00000066;
  --white: #ffffff;
  --yellow-bg: rgba(241, 182, 41, 0.4);
}

footer {
  background: var(--white);
  padding: 4rem calc((100vw - 90rem) / 2) 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  cursor: pointer;
  width: 13rem;
  height: 2rem;
  margin: 1.125rem 0 0 0;
}

.footer-logo p {
  font-size: 0.75rem;
}

.highlight {
  color: #C89B2C;
}

.footer-info {
  display: flex;
  gap: 4rem;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 0 0 0.625rem;
}

.contact-info h3 {
  font-weight: 43.75rem;
  margin-bottom: 0.25rem;
}

.contact-info a {
  color: var(--text-color);
  text-decoration: underline;
}

.contact-info p {
  color: var(--text-color);
  width: 12.5rem;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links img {
  width: 2.1875rem;
  height: 2.1875rem;
}

.separator {
  height: 0.0625rem;
  background: var(--text-light);
  margin: 0 7rem 1.5rem;
}

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

.copyright {
  color: var(--text-light);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9375rem;
}

@media (max-width: 1505px) {
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
  }
}

@media (max-width: 1070px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .footer-info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .contact-info p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
