.footer {
  padding: 2rem 0;
  background-color: var(--black);
}
.footer--small {
  background-color: transparent;
}
.footer--small .footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer--small .footer__logo {
  height: 1.5rem;
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__row:not(:last-child) {
  margin-bottom: 5rem;
}
.footer__copyright {
  font-size: max(0.8125rem, 12px);
  line-height: 120%;
  font-weight: 300;
}
.footer__list > li > a {
  font-size: max(0.8125rem, 12px);
  line-height: 120%;
  font-weight: 300;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: var(--white);
  -webkit-transition: color var(--hover-transition);
  transition: color var(--hover-transition);
}
@media (any-hover: hover) {
  .footer__list > li > a:hover {
    color: var(--orange);
  }
}
.footer__list > li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 0;
  }
  .footer--small .footer__logo {
    height: 16px;
  }
  .footer__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__row:not(:last-child) {
    margin-bottom: 60px;
  }
  .footer__logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .footer__socials {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .footer__links {
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer__links > li > a {
    font-weight: 300;
  }
  .footer__links > li:not(:last-child) {
    margin-right: unset;
    margin-bottom: 13.5px;
  }
  .footer__copyright {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer__list {
    width: 100%;
  }
  .footer__list > li > a {
    font-size: 14px;
  }
  .footer__list > li:not(:last-child) {
    margin-right: unset;
    margin-bottom: 5px;
  }
}
/*# sourceMappingURL=footer.css.map */