.footer {
  padding: 1.875rem 0 4.375rem;
}
.footer a {
  -webkit-transition: color var(--hover-transition);
  transition: color var(--hover-transition);
}
@media (min-width: 992px) {
  .footer a:hover {
    color: var(--secondary);
  }
}
.footer__row:not(:last-child) {
  margin-bottom: 2rem;
}
.footer__logo {
  display: block;
  width: 5.625rem;
  height: 3.125rem;
  margin: 0 auto;
}
.footer__logo > * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__links {
  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;
}
.footer__links > li {
  font-size: max(0.875rem, 12px);
  line-height: normal;
  color: var(--gray);
}
.footer__links > li:not(:last-child) {
  margin-right: 1rem;
}
.footer__links > li > a {
  color: var(--gray);
}
.footer__social {
  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;
}
.footer__social > li:not(:last-child) {
  margin-right: 1.5rem;
}
.footer__social > li > a {
  display: block;
  width: 4rem;
  height: 4rem;
}
.footer__social > li > a > * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 992px) {
  .footer__social > li > a > *:hover path {
    fill: var(--secondary);
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 50px;
  }
  .footer__logo {
    width: 64px;
    height: 35px;
  }
  .footer__row:not(:last-child) {
    margin-bottom: 16px;
  }
  .footer__links {
    max-width: 350px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 0 auto;
  }
  .footer__links--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .footer__links--column > li:not(:first-child) {
    margin-bottom: 8px;
  }
  .footer__links--column > li:not(:last-child) {
    margin-right: unset;
  }
  .footer__links > li {
    font-size: 12px;
    font-weight: 500;
    line-height: 19.2px;
  }
  .footer__social {
    padding: 10px 0 15px;
  }
  .footer__social > li:not(:last-child) {
    margin-right: 32px;
  }
  .footer__social > li > a {
    width: 40px;
    height: 40px;
  }
}