#footer {
  width: 100vw;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#footer>* {
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

#footer__waves {
  width: 110%;
  position: relative;
  top: 10px;
  left: 0;
  z-index: -1;
}

#footer__content {
  background: #2f4858;
  padding: 3rem 4vw 1.5rem 4vw;
  display: flex;
  flex-direction: column;
}

#footer__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

#footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#footer__logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 1.75rem;
}

#footer__logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer__detail {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1.5rem;
  margin: 0.4rem 0;
}

.footer__detail-label {
  margin: 0;
  min-width: 5.5rem;
  font-family: var(--label-font-01);
  font-size: 0.75em;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
  color: #ffffff99;
}

.footer__detail-value {
  margin: 0;
  font-family: var(--body-font-01);
  font-size: 1em;
  color: #ffffff;
  line-height: 1.4;
}

.footer__detail-value a {
  color: #ffffff;
  text-decoration: none;
}

.footer__detail-value a:hover {
  text-decoration: underline;
}

#footer__links {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__column-heading {
  margin: 0 0 1rem 0;
  font-family: var(--label-font-01);
  font-size: 0.75em;
  letter-spacing: var(--label-letter-spacing);
  text-transform: uppercase;
  color: #ffffff99;
}

.footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__column li a {
  font-family: var(--body-font-01);
  font-size: 1em;
  color: #ffffff;
  text-decoration: none;
}

.footer__column li a:hover {
  text-decoration: underline;
}

#footer__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #ffffff26;
}

#footer__bottom p {
  margin: 0;
  color: #ffffff59;
  font-size: 0.85em;
  font-family: var(--body-font-01);
}

#footer__bottom a {
  color: #ffffff59;
  text-decoration: none !important;
}

#footer__bottom a:hover {
  color: #ffffff;
}

@media screen and (max-width: 864px) {
  #footer__content {
    padding: 2.5rem 6vw 1.5rem 6vw;
  }

  #footer__top {
    flex-direction: column;
    gap: 2.5rem;
  }

  #footer__links {
    flex-direction: column;
    gap: 2rem;
  }

  #footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
