.footer {
  padding: 3.125rem 0 2.5rem;
  background-color: #190c0c;
}
.footer .container {
  max-width: 84.5rem;
}
.footer__container {
  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__logo {
  display: block;
  height: 2.3125rem;
}
.footer__logo > img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__socials > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.125rem;
  height: 4.125rem;
  -webkit-box-shadow: inset 0 0 18px 0 rgba(255, 0, 0, 0.25);
  box-shadow: inset 0 0 18px 0 rgba(255, 0, 0, 0.25);
  background-color: var(--white);
  border-radius: 0.9375rem;
  -webkit-transition: -webkit-transform var(--hover-transition);
  transition: -webkit-transform var(--hover-transition);
  transition: transform var(--hover-transition);
  transition: transform var(--hover-transition), -webkit-transform var(--hover-transition);
}
.footer__socials > li > a > svg {
  width: 2.0625rem;
  height: 2.0625rem;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (any-hover: hover) {
  .footer__socials > li > a:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.footer__socials > li:not(:last-child) {
  margin-right: 3.5625rem;
}
.footer__links {
  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;
  margin-top: 5rem;
}
.footer__links > li > a {
  font-size: max(1.25rem, 12px);
  line-height: 120%;
  color: var(--white);
  -webkit-transition: color var(--hover-transition);
  transition: color var(--hover-transition);
}
@media (any-hover: hover) {
  .footer__links > li > a:hover {
    color: var(--red);
  }
}
.footer__links > li:not(:last-child) {
  margin-right: 1.5rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 36px 0 52px;
  }
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__logo {
    height: 34px;
    margin-bottom: 36px;
  }
  .footer__socials {
    margin: 0 0 38px;
  }
  .footer__socials > li > a {
    width: 58px;
    height: 58px;
    -webkit-box-shadow: inset 0 0 16px 0 rgba(255, 0, 0, 0.25);
    box-shadow: inset 0 0 16px 0 rgba(255, 0, 0, 0.25);
    border-radius: 13px;
  }
  .footer__socials > li > a > svg {
    width: 30px;
    height: 30px;
  }
  .footer__socials > li:not(:last-child) {
    margin-right: 20px;
  }
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .footer__links > li > a {
    font-size: 13px;
  }
  .footer__links > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=footer.css.map */