/* COLORS */
/* FONTS */
@font-face {
  font-family: "Jakarta";
  src: url("../fonts/PlusJakartaSans-Regular.woff2") format("woff2"), url("../fonts/PlusJakartaSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jakarta";
  src: url("../fonts/PlusJakartaSans-Italic.woff2") format("woff2"), url("../fonts/PlusJakartaSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Jakarta";
  src: url("../fonts/PlusJakartaSans-SemiBold.woff2") format("woff2"), url("../fonts/PlusJakartaSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jakarta";
  src: url("../fonts/PlusJakartaSans-SemiBoldItalic.woff2") format("woff2"), url("../fonts/PlusJakartaSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Regular.woff2") format("woff2"), url("../fonts/Nunito-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Italic.woff2") format("woff2"), url("../fonts/Nunito-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Bold.woff2") format("woff2"), url("../fonts/Nunito-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-BoldItalic.woff2") format("woff2"), url("../fonts/Nunito-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/* ROOT */
html {
  font-size: 8px;
}

@media screen and (min-width: 992px) {
  html {
    font-size: 10px;
  }
}
body {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 140%;
  margin: 0;
  color: #6B6966;
  background-color: #FDFBF9;
}

/* BOOTSTRAP */
.row, .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 3rem;
}

/* SELECTION */
::-moz-selection {
  color: white;
  background: #2E6F62;
}
::selection {
  color: white;
  background: #2E6F62;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 1.5rem;
}

::-webkit-scrollbar-track {
  background: #FDFBF9;
}

::-webkit-scrollbar-thumb {
  background: #6B6966;
  border: 0.5rem solid #FDFBF9;
  border-radius: 1rem;
}
::-webkit-scrollbar-thumb:hover {
  background: #2E6F62;
}

/* PARAGRAPHS */
a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #2E6F62;
}

p {
  margin: 0 0 1.5rem;
}

.lead {
  font-size: 1.8rem;
  color: #2B2B2B;
}
.lead--negative {
  color: white;
}

.small {
  font-size: 1.4rem;
}

/* HEADERS */
.h1, .h2, .h3, .h4, .h5, h1, h2, h3, h4, h5 {
  font-family: "Jakarta";
  font-weight: 400;
  line-height: 120%;
  color: #2B2B2B;
}

.h1, h1 {
  font-size: 3rem;
  margin: 0 0 6rem;
}

.h2, h2 {
  font-size: 3rem;
  margin: 0 0 6rem;
}

.h3, h3 {
  font-size: 2rem;
  margin: 0 0 3rem;
}

.h4, h4 {
  font-size: 1.6rem;
  margin: 0 0 3rem;
}

@media screen and (min-width: 768px) {
  .h1, h1 {
    font-size: 4rem;
  }
}
/* ACCESSIBILITY */
.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* MENU */
.menu {
  transition: all 0.3s ease;
  display: flex;
  position: fixed;
  top: 18rem;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 28rem 1rem 0;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  justify-content: center;
}
.menu__icon {
  position: relative;
  display: flex;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  z-index: 10;
  color: white;
  background: none;
  border: none;
}
.menu__icon--active span:first-of-type {
  transform: rotate(45deg);
  top: calc(50% - 0.25rem);
}
.menu__icon--active span:nth-of-type(2) {
  background-color: transparent;
}
.menu__icon--active span:last-of-type {
  transform: rotate(-45deg);
  bottom: 50%;
}
.menu__bar {
  transition: all 0.3s ease;
  position: absolute;
  width: 3rem;
  height: 2px;
  background-color: #2B2B2B;
}
.menu__bar:first-of-type {
  transform: none;
  top: 1.5rem;
}
.menu__bar:nth-of-type(2) {
  top: calc(50% - 1px);
  width: 1.5rem;
  margin-left: 1.5rem;
}
.menu__bar:last-of-type {
  transform: none;
  bottom: 1.5rem;
}
.menu__wrapper {
  display: flex;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 6rem;
  list-style-type: none;
}
.menu--active {
  opacity: 1;
  pointer-events: all;
  background-color: #FDFBF9;
  top: 0;
  text-align: center;
}
.menu li {
  margin: 0;
  padding: 0 1.5rem;
  font-size: 3rem;
}
.menu li a:hover {
  color: #2E6F62;
}
.menu li button {
  display: none;
}

@media screen and (min-width: 1400px) {
  .menu {
    opacity: 1;
    position: relative;
    background: none;
    pointer-events: all;
    padding: 0;
    top: 0;
  }
  .menu__icon {
    display: none;
  }
  .menu__wrapper {
    flex-direction: row;
    justify-content: flex-end;
  }
  .menu li {
    padding: 0;
    font-size: 1.6rem;
  }
  .menu li:last-of-type a::before {
    display: none;
  }
}
/* SCREENLOCK */
.screenlock {
  position: fixed;
  width: 100%;
}
.screenlock .legal-eu {
  height: 0;
  opacity: 0;
  border-color: transparent;
}

/* UI ELEMENTS */
.logo svg {
  height: 3.5rem;
  width: auto;
}

.buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.buttons-row--centered {
  justify-content: center;
}

.arrow {
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  height: 8px;
  width: 100%;
}
.arrow::before, .arrow::after {
  content: "";
}
.arrow::before {
  width: 100%;
  border-bottom: 1px solid;
}
.arrow::after {
  margin: 0 0 0 -6px;
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
}
.arrow--down {
  transform: rotate(90deg);
}
.arrow--up {
  transform: rotate(-90deg);
}
.arrow--left {
  transform: rotate(180deg);
}

/* BUTTONS */
.button {
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
  border-radius: 3rem;
  background-color: #2E6F62;
  color: white;
  height: 6rem;
  line-height: 6rem;
  min-width: -moz-max-content;
  min-width: max-content;
  border: none;
}
.button:hover {
  color: white;
  background-color: #217A6E;
}
.button:focus, .button:active {
  background-color: #0F6358;
  outline: none;
}
.button--negative {
  background-color: #EFE6D8;
  color: #2B2B2B;
}
.button--negative:hover {
  background-color: #FBF7F3;
  color: #2B2B2B;
}
.button--negative:focus, .button--negative:active {
  background-color: #FBF7F3;
  color: #2B2B2B;
}
.button--small {
  height: 5rem;
  line-height: 5rem;
  font-size: 1.4rem;
}
.button--secondary {
  background-color: #FDFBF9;
  border: 1px solid #EFE6D8;
  color: #6B6966;
}
.button--secondary:hover {
  background-color: #FBF7F3;
  color: #2B2B2B;
}
.button--secondary:focus, .button--secondary:active {
  background-color: #EFE6D8;
}
.button--play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-bottom: 0.8rem solid white;
  transform: rotate(90deg);
}

/* INPUTS & FORMS */
.wpcf7-spinner {
  display: none;
}
.wpcf7-not-valid-tip {
  font-size: 1.4rem;
  margin: 1.5rem 3rem 0;
  color: white;
}
.wpcf7-list-item {
  display: flex;
  margin: 0 0 3rem;
  font-size: 1.4rem;
  line-height: 140%;
}
.wpcf7-list-item label {
  display: flex;
  gap: 1.5rem;
}
.wpcf7 form .wpcf7-response-output {
  border: 1px solid;
  border-radius: 1rem;
  padding: 1.5rem 3rem;
  margin: 0 0 3rem;
  color: white;
  font-size: 1.4rem;
  line-height: 100%;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(255, 255, 255, 0.1);
}

input[type=email] {
  transition: all 0.3s ease;
  width: 100%;
  height: 6rem;
  line-height: 6rem;
  padding: 0 3rem;
  border-radius: 3rem;
  border: 1px solid #EFE6D8;
  font-size: 1.6rem;
}
input[type=email]:hover {
  background-color: #FDFBF9;
}
input[type=email]:focus, input[type=email]:active {
  outline: none;
}

label.checkbox {
  display: flex;
  gap: 1.5rem;
  font-size: 1.4rem;
  color: #D3E2E0;
  line-height: 140%;
}

input[type=checkbox] {
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 2rem;
  height: 2rem;
  border: 1px solid #EFE6D8;
  cursor: pointer;
  position: relative;
  background-color: white;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
input[type=checkbox]:hover {
  background-color: #FBF7F3;
}
input[type=checkbox]:checked {
  background-color: #EFE6D8;
}
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 0.3rem;
  width: 0.5rem;
  height: 1rem;
  border: solid #2B2B2B;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}
input[type=checkbox]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
input[type=checkbox]:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* LEGAL */
.legal-eu {
  transition: all 0.3s ease;
  height: 6.5rem;
  border-bottom: 1px solid;
  border-color: #EFE6D8;
  opacity: 1;
  text-align: center;
}
.legal-eu__logo {
  max-width: calc(100% - 3rem);
  margin: 1.5rem;
  height: 3.5rem;
}

/* HEADER */
.header {
  position: absolute;
  width: 100%;
  padding: 4rem 0;
  z-index: 1;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-branding {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem 3rem;
  z-index: 10;
}
.header-nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

/* HERO */
.hero {
  position: relative;
  text-align: center;
  padding: 28rem 0 0;
  margin: 0 0 9rem;
}
.hero-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 144rem;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.5;
  z-index: -1;
}
.hero-photo__wrapper {
  width: 100%;
  height: 100%;
  background: #FDFBF9;
  background: radial-gradient(at center, rgba(253, 251, 249, 0), #fdfbf9 70%);
}
.hero-photo__image {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  border: 1px solid #FDFBF9;
}
.hero-lead {
  margin: 0 0 6rem;
}
.hero-buttons {
  margin: 0 0 12rem;
}
.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 3rem;
  height: 3rem;
  animation: arrow-move 1s ease-in-out infinite alternate;
}
.hero-arrow:hover {
  color: #6B6966;
}
@keyframes arrow-move {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(1rem);
  }
}

@media screen and (min-width: 576px) {
  .hero-photo {
    aspect-ratio: 3/2;
    height: unset;
  }
}
/* ABOUT */
.about {
  padding: 0 0 6rem;
  background-image: url(../images/photo-deco-a.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}
.about-desc__lead, .about-desc__text {
  margin: 0 0 3rem;
}
.about-desc__buttons {
  margin: 6rem 0 0;
}
.about-details {
  margin: 9rem 0 0;
}
.about-details__item {
  border-bottom: 1px solid #EFE6D8;
  margin: 0 0 3rem;
}
.about-details__title {
  margin: 0 0 1.5rem;
}
.about-details__toggle {
  transition: all 0.3s ease;
  background: none;
  padding: 0;
  border: none;
  color: #2B2B2B;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.about-details__toggle-caret {
  transition: all 0.3s ease;
  width: 7px;
  height: 7px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
}
.about-details__toggle:focus-visible {
  outline: none;
  color: #2E6F62;
}
.about-details__toggle[aria-expanded=true] {
  color: #2E6F62;
}
.about-details__toggle[aria-expanded=true] .about-details__toggle-caret {
  transform: rotate(225deg);
}
.about-details__toggle:hover {
  color: #6B6966;
}
.about-details__content {
  margin: 3rem 0;
}
.about-perks {
  margin: 9rem 0 6rem;
}
.about-perks-item {
  margin: 0 0 6rem;
}
.about-contribute__header {
  text-align: center;
}
.about-contribute-item {
  height: 100%;
  padding: 0 0 6rem;
}
.about-contribute-item__wrapper {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 4.5rem 1.5rem;
  align-items: center;
  text-align: center;
  background-color: #FDFBF9;
  border-radius: 1rem;
  height: 100%;
}
.about-contribute-item__wrapper:hover .about-contribute-item__ico {
  transform: scale(1.1);
}
.about-contribute-item__wrapper:hover .button--secondary {
  background-color: #2E6F62;
  border-color: transparent;
  color: white;
}
.about-contribute-item__ico {
  transition: all 0.2s ease;
  transform: scale(1);
  margin: 0 0 3rem;
  height: 2.6rem;
  width: auto;
}
.about-contribute-item__text {
  margin: 0 0 3rem;
  flex-grow: 1;
}
.about-contribute-item .button--secondary:hover {
  border-color: transparent;
  background-color: #217A6E;
  color: white;
}
.about-contribute-item .button--secondary:focus, .about-contribute-item .button--secondary:active {
  border-color: transparent;
  background-color: #0F6358;
  color: white;
}

@media screen and (min-width: 1200px) {
  .about-contribute-item__wrapper {
    padding: 4.5rem;
  }
}
/* MEDITATION */
.meditations {
  background-color: #2E6F62;
  color: #D3E2E0;
  padding: 9rem 0 3rem;
  margin: 0 0 12rem;
}
.meditations-header {
  text-align: center;
}
.meditations-header__title {
  color: white;
}
.meditations ::-moz-selection {
  color: #2E6F62;
  background: white;
}
.meditations ::selection {
  color: #2E6F62;
  background: white;
}

.meditation-header {
  font-size: 1.4rem;
  display: flex;
  gap: 4.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 6rem;
}
.meditation-header__group {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
}
.meditation-header__tag {
  display: flex;
  align-items: center;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 1.5rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.meditation-header__title {
  color: white;
  margin: 0;
}
.meditation-header__params tr {
  margin: 0 0 1.5rem;
}
.meditation-header__label {
  opacity: 0.5;
}
.meditation-header__value {
  padding: 0 0 0 2rem;
}
.meditation-content {
  margin: 0 0 9rem;
}
.meditation-content p:first-of-type {
  font-size: 1.8rem;
  color: white;
  margin: 0 0 3rem;
}
.meditation-audio {
  margin: 0 0 9rem;
}
.meditation-credits {
  position: relative;
  font-size: 1.4rem;
}
.meditation-credits__title {
  border-bottom: 1px solid rgba(211, 226, 224, 0.2);
  padding: 0 0 1.5rem;
  margin: 0 0 4.5rem;
}
.meditation-credits__toggle {
  transition: all 0.3s ease;
  background: none;
  padding: 0;
  border: none;
  color: white;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.meditation-credits__toggle-caret {
  transition: all 0.3s ease;
  width: 7px;
  height: 7px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
}
.meditation-credits__toggle:focus-visible {
  outline: none;
  color: #D3E2E0;
}
.meditation-credits__toggle[aria-expanded=true] {
  color: #EFE6D8;
}
.meditation-credits__toggle[aria-expanded=true] .meditation-credits__toggle-caret {
  transform: rotate(225deg);
}
.meditation-credits__toggle:hover {
  color: #D3E2E0;
}
.meditation-credits__item {
  margin: 0 0 4.5rem;
}
.meditation-credits__item--featured {
  padding: 3rem;
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.meditation-credits__heading {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 0 1.5rem;
}
.meditation-credits__group p:last-of-type {
  margin: 0;
}
.meditation-credits__avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.meditation-credits__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.meditation-credits__label {
  opacity: 0.5;
  margin: 0 0 3rem;
}
.meditation-credits__name {
  color: white;
  margin: 0 0 0.5rem;
}
.meditation-credits__desc {
  margin: 1.5rem 0 0;
}

@media screen and (min-width: 992px) {
  .meditation-header {
    margin: 0 0 9rem;
  }
  .meditation-content {
    margin: 6rem 0 9rem;
  }
}
/* CUSTOM AUDIO PLAYER */
.custom-audio {
  display: flex;
  gap: 6rem;
  flex-direction: column;
}
.custom-audio__wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: white;
}
.custom-audio__wave {
  transition: all 0.3s ease;
  height: 5rem;
  position: absolute;
  width: 100%;
  left: 0;
  margin: 6rem 0 0;
  background-image: url(../images/ico-audiowave.svg);
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 100%;
  opacity: 0;
  animation: audiowave 40s linear infinite;
  animation-play-state: paused;
  pointer-events: none;
}
.custom-audio__cta {
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0 -6rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-height: 0rem;
}
.custom-audio__cta--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  max-height: 100rem;
}
.custom-audio-play {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0 0 0.25rem;
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: none;
  background: #EFE6D8;
  color: #2B2B2B;
  font-size: 1.4rem;
  cursor: pointer;
}
.custom-audio-play:hover {
  background: white;
}
.custom-audio-play:active {
  background: #FBF7F3;
}
.custom-audio--playing .custom-audio-play {
  animation: pulse 1.6s infinite ease-in-out;
}
.custom-audio--playing .custom-audio__wave {
  opacity: 0.2;
  animation-play-state: running;
}
.custom-audio--paused .custom-audio-play {
  animation: none;
}
.custom-audio--paused .custom-audio__wave {
  opacity: 0.2;
  animation-play-state: paused;
}
.custom-audio-progress {
  --progress: 0%;
  flex: 1;
  height: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: linear-gradient(to right, #EFE6D8 calc(var(--progress) + 0.2rem), rgba(0, 0, 0, 0.2) var(--progress));
}
.custom-audio-progress::-webkit-slider-runnable-track {
  height: 1rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
}
.custom-audio-progress::-webkit-slider-thumb {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-appearance: none;
          appearance: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #EFE6D8;
  margin: -0.5rem 0 0;
}
.custom-audio-progress:hover::-webkit-slider-thumb {
  transform: scale(1.2);
  background: white;
}
.custom-audio-progress::-moz-range-track {
  height: 1rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
}
.custom-audio-progress::-moz-range-thumb {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #EFE6D8;
  border: none;
}
.custom-audio-time {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@keyframes audiowave {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -174rem 0;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 2rem rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
/* OPINION */
.opinion {
  margin: 0 0 12rem;
  text-align: center;
}
.opinion-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opinion-header__ico {
  margin: 0 0 3rem;
}
.opinion-text {
  margin: 0 0 6rem;
}

/* NEWSLETTER */
.newsletter {
  margin: 0 0 12rem;
}
.newsletter-wrapper {
  padding: 3rem 1.5rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  gap: 1.5rem;
  background-color: #2E6F62;
}
.newsletter-text {
  text-align: center;
}
.newsletter-input__row {
  display: flex;
  justify-content: center;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto 3rem;
}
.newsletter-input__row .button {
  position: absolute;
  right: 0;
}
.newsletter-message {
  background: white;
  color: #2E6F62;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
}
.newsletter-message p {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .newsletter-wrapper {
    padding: 6rem 6rem 3rem;
  }
}
/* FOOTER */
.footer {
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1920/860;
  background-image: url(../images/photo-deco-b.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}
.footer-wrapper {
  padding: 9rem 0 12rem;
  border-top: 1px solid #EFE6D8;
  text-align: center;
}
.footer-branding {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1.5rem 3rem;
  margin: 0 0 6rem;
  align-items: center;
  justify-content: center;
}
.footer-credits {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 0 0 6rem;
}
.footer-credits p {
  margin: 0;
}
.footer-credits a {
  color: #2E6F62;
}
.footer-credits a:hover {
  color: #0F6358;
}
.footer-credits__group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-credits__label {
  opacity: 0.5;
}
.footer-nav {
  margin: 0 0 6rem;
  text-align: left;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.footer-legal__logo {
  max-width: 10rem;
}
.footer-legal__desc {
  font-size: 1rem;
  line-height: 120%;
  text-align: justify;
}
.footer-menu {
  font-size: 1.4rem;
}
.footer-menu__wrapper {
  display: flex;
  gap: 6rem 3rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.footer-menu__wrapper .menu-item-has-children {
  width: calc(50% - 1.5rem);
}
.footer-menu__wrapper .menu-item-has-children > a {
  margin: 0 0 3rem;
  pointer-events: none;
  display: block;
  opacity: 0.5;
}
.footer-menu .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-misc {
  margin: 6rem 0 0;
  text-align: center;
}
.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.footer-social__item {
  margin: 0 0 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #2E6F62;
}
.footer-social__item:hover {
  background-color: #0F6358;
}
.footer-social__ico {
  height: 1.6rem;
}

@media screen and (min-width: 768px) {
  .footer-wrapper {
    text-align: left;
  }
  .footer-legal {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .footer-branding {
    justify-content: flex-start;
  }
  .footer-social {
    justify-content: flex-start;
  }
}
/* SITE */
.site-main {
  padding: 15rem 0 0;
}

/* PAGE */
.page-content {
  margin: 0 0 6rem;
}
.page-content ul li::marker {
  color: #EFE6D8;
}
.page-content h2, .page-content h3 {
  margin: 3rem 0;
}
.page-navigation {
  display: flex;
  margin: 0 0 12rem;
  padding: 3rem 0 0;
  border-top: 1px solid #EFE6D8;
  font-size: 1.4rem;
}
.page-navigation__link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.page-navigation__link .arrow {
  width: 2rem;
}

/* ERROR 404 */
.error-404__wrapper {
  margin: 0 0 12rem;
}
.error-404__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}/*# sourceMappingURL=main.css.map */