/* CONTENT ELEMENTS */
.footer {
  padding: var(--sp-small) 0;
  background: var(--c-green-dark);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: url("/templates/luna/img/elements/pattern.svg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
}
.footer__wrapper {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  gap: 20px;
}
.footer__logo-link {
  flex: 0 0 auto;
}
.footer__logo {
  height: var(--logo-height);
  width: auto;
}
.footer__bottom, .footer__content {
  flex: 1 1 100%;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: flex-end;
  margin-top: var(--sp-small);
  gap: 20px;
}
.footer__col {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .footer__col {
    flex: 1 1 50%;
  }
}
@media (min-width: 992px) {
  .footer__col {
    flex: 1 1 41.666%;
  }
}
.footer__address p, .footer__link p {
  font-family: var(--f-special);
  font-size: 0.875rem;
  line-height: 2;
  color: var(--c-green-lighter);
}
.footer__address a, .footer__link a {
  color: var(--c-gray-light);
  transition: 0.3s;
}

.footer-menu {
  flex: 1 1 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: -0.5rem;
}
@media (min-width: 768px) {
  .footer-menu {
    flex: 1 1;
  }
}
@media (min-width: 992px) {
  .footer-menu {
    margin: -0.75rem;
  }
}
.footer-menu__nav-item {
  padding: 0.5rem;
}
@media (min-width: 992px) {
  .footer-menu__nav-item {
    padding: 0.75rem;
  }
}
.footer-menu__nav-item--current {
  border-bottom: 2px solid green;
}
.footer-menu__nav-link {
  font-family: "Centra", sans-serif;
  line-height: 1;
  font-weight: 300;
  text-transform: lowercase;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
  color: var(--c-gray-light);
}
@media (min-width: 992px) {
  .footer-menu__nav-link {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .footer-menu__nav-link {
    font-size: 1.5rem;
  }
}
.footer-menu__nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 0.1875rem;
  background: var(--c-green-lighter);
  transform: scaleX(0);
  transition: 0.3s;
}
.header__nav:hover .footer-menu__nav-link::before {
  transform: scaleX(0);
}

.footer-menu__nav-link:hover {
  text-decoration: none;
  color: var(--c-green-light);
}
.footer-menu__nav-link:hover::before {
  background: var(--c-green-light);
  transform: scaleX(1) !important;
}
.footer-menu__nav-link.active::before {
  transform: scaleX(1);
}
.footer-menu__nav-link--unpublished {
  opacity: 0.5;
}

.footer-form {
  background-color: var(--c-green-lighter);
  padding: 1.25rem 4rem 2rem 2rem;
}
.footer-form__title {
  color: var(--c-green-dark);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-form__content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .footer-form__content {
    flex-wrap: wrap;
  }
}
.footer-form [lux-form-hp] {
  position: absolute;
}
.footer-form__input {
  border-radius: 1rem;
  border: none;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  width: 100%;
  margin-right: 1rem;
}
@media (max-width: 767.98px) {
  .footer-form__input {
    margin-bottom: 1rem;
  }
}
.footer-form__submit {
  border-radius: 1rem;
  border: none;
  padding: 0.25rem 1rem;
  background: var(--c-green-dark);
  color: var(--c-white);
  font-family: var(--f-special);
  cursor: pointer;
}
.footer-form [lux-form-message] {
  margin-top: 1rem;
}