.footer {
  background-color: var(--footer-background-color);
}
.footer .footer-top {
  padding-top: var(--_footer-padding-top);
  padding-bottom: var(--_footer-padding-bottom);
}
.footer .footer-logo {
  max-width: var(--footer-logo-max-width);
  display: block;
  margin-bottom: 1.875rem;
}
.footer .footer-logo > img {
  width: 100%;
  height: auto;
  display: block;
}
.footer .footer-list > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.footer .footer-list a {
  color: var(--white);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: 1.5;
  transition: color 0.15s ease-in-out;
}
@media (any-hover: hover) {
  .footer .footer-list a:hover {
    color: var(--primary-color);
  }
}
.footer .footer-phone {
  color: var(--white);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
  margin-bottom: 0.5rem;
}
@media (any-hover: hover) {
  .footer .footer-phone:hover {
    color: var(--primary-color);
  }
}
.footer .footer-bottom {
  background-color: var(--footer-bottom-background-color);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.footer .footer-bottom--nav a {
  color: var(--white);
}
@media (any-hover: hover) {
  .footer .footer-bottom--nav a:hover {
    color: var(--primary-color);
  }
}
.footer .footer-content-divider {
  border-color: var(--gray-color);
  max-width: calc(100% - 2rem);
  margin-left: auto;
  margin-right: auto;
}
