.site-footer {
  width: 100%;
  position: relative;
  z-index: 50;
}
.site-footer__main {
  background-color: var(--color-bg-light, #F8F8F8);
  padding: 70px 0 60px;
}
.site-footer__container {
  width: 100%;
  max-width: var(--vw-max, 1440px);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.site-footer__logo {
  display: flex;
  justify-content: center;
}
.site-footer__logo img {
  height: 65px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .site-footer__logo img {
    height: 50px;
  }
}
.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.site-footer__nav-link {
  color: var(--color-brand-green-dark, #57803A);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.site-footer__nav-link:hover {
  opacity: 0.8;
  text-decoration: none;
}
.site-footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-brand-green-dark, #57803A);
  border-radius: 50%;
  color: #FFFFFF;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.site-footer__social-link:hover {
  transform: translateY(-2px);
  background-color: var(--color-brand-green-light, #76AE4E);
}
.site-footer__social-link svg {
  max-width: 16px;
  max-height: 16px;
}
.site-footer__bottom {
  background-color: #555555;
  padding: 20px 0;
}
.site-footer__bottom-container {
  width: 100%;
  max-width: var(--vw-max, 1440px);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 600px) {
  .site-footer__bottom-container {
    flex-direction: column;
    gap: 15px;
  }
}
.site-footer__legal-link {
  color: var(--color-bg-light, #FFFFFF);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease;
  margin-right: 8px;
}
.site-footer__legal-link:hover {
  text-decoration: none;
  opacity: 0.8;
}

/*# sourceMappingURL=footer.css.map */
