.footer {
  background-color: var(--gray-50);
  color: var(--gray-600);
}
.footer .content {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.footer a:visited {
  color: var(--footer-text-color);
}
.footer a:hover {
  color: var(--brand-700);
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-tile {
  display: none;
}
.footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 62px;
}
.footer .footer-logo-container {
  position: relative;
  height: 36px;
}
.footer .footer-logo-container img {
  height: 100%;
  width: auto;
  max-width: var(--footer-logo-max-width);
  height: auto;
}
.footer .footer-tagline {
  font-weight: 800;
  text-align: right;
}
.footer .footer-nav-columns {
  display: flex;
  gap: var(--inner-spacing-xl);
  width: 100%;
  margin-bottom: 10px;
}
.footer .footer-nav-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.footer .footer-col-title {
  font-family: var(--footer-tile-title-font-family);
  font-size: var(--footer-col-title-font-size);
  font-weight: var(--footer-col-title-font-weight);
  color: var(--footer-text-color);
  margin-bottom: 5px;
  text-decoration: none;
  color: var(--gray-500);
  font-size: 14px;
}
.footer .footer-col-list > *:last-child {
  margin-bottom: 0;
}
.footer .footer-col-item {
  margin-bottom: var(--footer-nav-links-vertical-spacing);
}
.footer .footer-social-section {
  margin-top: 47px;
  padding: 26px 0 30px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  color: var(--brand-500);
  font-size: 14px;
  font-weight: 500;
  max-width: 175px;
}
.footer .footer-social-section .footer-col-title {
  margin-bottom: 18px;
}
.footer .footer-social-icons {
  display: flex;
  gap: var(--social-icon-horizontal-spacing);
}
.footer .footer-social-icons .social-icon i {
  font-size: var(--social-icon-font-size);
  color: var(--gray-400);
}
.footer .footer-lower {
  width: 100%;
  margin-bottom: var(--inner-spacing-xl);
}
.footer .footer-contact-card {
  background: var(--gray-100);
  border-radius: var(--border-radius-5xl);
  padding: 20px 27px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  max-width: 484px;
}
.footer .footer-contact-card-label,
.footer .contact-hours {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  color: var(--footer-text-color);
  color: var(--gray-500);
}
.footer .footer-contact-card-label {
  margin-bottom: 7px;
}
.footer .contact-hours {
  margin-bottom: 11px;
}
.footer .contact-phone,
.footer .contact-email {
  display: block;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--green-600);
  text-decoration: none;
}
.footer .contact-phone:hover,
.footer .contact-email:hover {
  color: var(--footer-text-color-hover);
}
.footer .contact-email {
  word-break: break-all;
}
.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid var(--gray-200);
  padding-top: 30px;
}
.footer .copyright {
  width: auto;
  color: var(--gray-500);
}
.footer .footer-legal-links {
  font-weight: 500;
  font-size: 14px;
  display: flex;
  gap: var(--inner-spacing-xl);
  align-items: center;
}
.footer .footer-legal-links a {
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .footer .footer-nav-columns {
    flex-wrap: wrap;
    gap: var(--inner-spacing-md);
    margin-bottom: 40px;
  }
  .footer .footer-nav-columns .footer-nav-col {
    flex: 0 0 calc(50% - var(--inner-spacing-md));
  }
  .footer .footer-lower {
    width: calc(50% - var(--inner-spacing-sm));
  }
}
@media screen and (max-width: 885px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--inner-spacing-md);
  }
  .footer .footer-col-list {
    margin-bottom: 30px;
  }
  .footer .footer-social-section {
    margin-top: 0;
  }
  .footer .footer-tagline {
    text-align: left;
  }
  .footer .footer-nav-columns {
    flex-direction: column;
  }
  .footer .footer-nav-col {
    flex: 1 1 100%;
  }
  .footer .footer-lower {
    width: 100%;
  }
  .footer .contact-phone,
  .footer .contact-email {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--inner-spacing-sm);
  }
  .footer .footer-legal-links {
    flex-wrap: wrap;
    gap: var(--inner-spacing-md);
  }
  .footer .footer-tagline {
    font-size: var(--heading-md-font-size);
  }
}