@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-light.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-light-italic.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-light-italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-regular.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-regular-italic.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-regular-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-bold.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "the-seasons";
  src: url("/assets/fonts/The-Seasons/the-seasons-bold-italic.woff2") format("woff2"), url("/assets/fonts/The-Seasons/the-seasons-bold-italic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "peridot-pe-variable";
  src: url("/assets/fonts/Peridot-PE-Variable/peridot-pe-variable-regular.woff2") format("woff2"), url("/assets/fonts/Peridot-PE-Variable/peridot-pe-variable-regular.woff") format("woff");
  font-weight: 100 200 300 400 500 600 700 800 900;
  font-style: normal;
  font-display: swap;
  ascent-override: 92%;
  descent-override: 18%;
  line-gap-override: 0%;
}
.dropdown {
  position: relative;
}
.dropdown__content {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  width: 100vw;
  max-width: 1440px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 14px 0 0 0;
}
.dropdown__container {
  background-color: #FFFFFF;
  border-radius: 35px;
  overflow: hidden;
  padding: 25px;
}
.dropdown__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-bottom: 12px;
}
.dropdown__link-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(248, 247, 244, 0.5);
  border: 1px solid transparent;
}
.dropdown__link-item:hover {
  transform: translateY(-2px);
}
.dropdown__link-item:hover .dropdown__link {
  color: #137461;
  transform: translateX(8px);
}
.dropdown__link-item:hover .dropdown__description {
  color: #137461;
  transform: translateX(8px);
}
.dropdown__link-item:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, #137461 0%, rgba(19, 116, 97, 0.6) 100%);
  border-radius: 0 2px 2px 0;
  opacity: 1;
}
.dropdown__link-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #137461 0%, rgba(19, 116, 97, 0.6) 100%);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown__link {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 0;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown__link * {
  text-decoration: none !important;
}
.dropdown__link-item {
  text-decoration: none;
}
.dropdown__link-item:hover {
  text-decoration: none;
}
.dropdown__description {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #2A2C29;
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
  text-underline-offset: unset !important;
  text-decoration-thickness: unset !important;
}
.dropdown__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dropdown__footer-item {
  padding: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.dropdown__footer-item--pink {
  background-color: #F8E7E7;
}
.dropdown__footer-item--mint {
  background-color: #DFE8E6;
}
.dropdown__footer-item:hover {
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.dropdown__footer-item:hover .button {
  background-color: #DD9127;
}
.dropdown__footer-item img {
  width: 28%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 15px;
}
.dropdown__footer-item .footer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dropdown__footer-item h4 {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #2A2C29;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #2A2C29;
  margin: 0;
}
.dropdown__footer-item p {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #2A2C29;
  margin: 0;
}
.dropdown__footer-item .button {
  align-self: flex-start;
  margin-top: 8px;
}
.dropdown:hover .dropdown__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown:hover .main-nav__link {
  color: #137461;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .dropdown__content {
    width: 96%;
    top: 90px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .dropdown__content {
    width: calc(100vw - 4%);
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    top: 75px;
  }
  .dropdown__content:hover {
    transform: translateX(-50%) translateY(0);
  }
  .dropdown__links {
    grid-template-columns: 1fr;
  }
  .dropdown__footer {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .dropdown__footer-item {
    padding: 16px 20px;
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
  .dropdown__footer-item img {
    flex-shrink: 0;
  }
  .dropdown__footer-item .footer-content {
    align-items: flex-start;
    gap: 8px;
    flex: 1;
  }
  .dropdown__footer-item h4 {
    font-size: 1.25rem;
    text-align: left;
  }
  .dropdown__footer-item p {
    font-size: 0.875rem;
    text-align: left;
  }
}
@media (max-width: 869px) {
  .dropdown__content {
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    top: 64px;
  }
  .dropdown__content:hover {
    transform: translateX(-50%) translateY(0);
  }
}
.main-header {
  background-color: transparent;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.main-header.hidden {
  transform: translateY(-100%);
}

.main-nav {
  background-color: transparent;
  width: 1520px;
  margin: 0 auto;
  margin-top: 0;
  padding: 20px 0px;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: margin-top 0.3s ease, padding 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
}
.main-nav.scrolled {
  margin-top: 10px;
  padding: 10px 0;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
}
.main-nav.scrolled .main-nav__menu {
  margin-left: 20px;
}
.main-nav__logo .logo-container {
  z-index: 10;
  position: relative;
  display: flex;
  align-items: center;
  height: 34px;
  overflow: hidden;
  width: 170px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav__logo .logo-text {
  height: 34px;
  width: auto;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
}
.main-nav__logo .logo-e {
  height: 25px;
  width: auto;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(0);
  margin-bottom: 1px;
  align-self: flex-end;
  z-index: 10;
  position: relative;
}
.main-nav__logo.scrolled .logo-container {
  width: 45px;
}
.main-nav__logo.scrolled .logo-text {
  transform: translateX(-100%);
  opacity: 0;
}
.main-nav__logo.scrolled .logo-e {
  transform: translateX(-400%);
  opacity: 1;
}
.main-nav__menu {
  background-color: transparent;
  display: flex;
  margin-left: 50px;
  gap: 34px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav__item {
  position: relative;
}
.main-nav__link {
  color: #2A2C29;
  text-decoration: none;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1.375rem;
  padding: 34px 0;
  position: relative;
}
.main-nav__link:hover:after {
  width: 100%;
}
.main-nav__link:hover {
  color: #137461;
}
.main-nav__buttons {
  display: flex;
  gap: 10px;
  margin-left: auto;
  align-items: center;
}

body.prelaunch-page .main-nav {
  background-color: #F8F7F4;
  width: 100%;
  margin: 0;
  margin-top: 0;
  padding: 20px 20px 20px 100px;
}
body.prelaunch-page .main-nav__buttons {
  margin-right: 60px;
}

.nav-icon {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 10px;
}
.nav-icon img {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}
.nav-icon:hover img {
  content: url("/assets/images/icons/Icon_connexion_yellow.svg");
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .main-nav {
    width: 96%;
    max-width: 1620px;
    margin-left: 2%;
    margin-right: 2%;
    padding: 20px 0;
  }
  .main-nav__menu {
    margin-left: 0px;
    gap: clamp(12px, 1.5vw, 34px);
  }
  .main-nav__link {
    font-size: clamp(1.25rem, 1.2vw, 1.375rem);
  }
  .main-nav__buttons {
    gap: clamp(2px, 0.5vw, 10px);
    margin-left: auto;
  }
  body.prelaunch-page .main-nav {
    background-color: #F8F7F4;
    width: 100%;
  }
  .nav-icon img {
    width: clamp(45px, 4.5vw, 60px);
  }
  body.prelaunch-page .main-nav .main-nav__burger {
    right: 20px;
    display: block;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .main-nav {
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 15px 0;
  }
  .main-nav.scrolled {
    margin-top: 5px;
    padding: 10px 0 10px 0;
  }
  .main-nav__menu {
    margin-left: clamp(20px, 2vw, 30px);
    gap: clamp(15px, 1.5vw, 25px);
  }
  .main-nav__link {
    font-size: clamp(1.125rem, 1vw, 1.25rem);
    padding: 27.5px 0;
  }
  .main-nav__buttons {
    gap: 5px;
    margin-left: auto;
  }
  .main-nav__buttons .button:not(.nav-icon) {
    display: none;
  }
  body.prelaunch-page .main-nav .button:not(.nav-icon) {
    display: block;
  }
  .nav-icon img {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 15px 0px 15px 15px;
    position: relative;
  }
  .main-nav.scrolled {
    margin-top: 5;
    padding: 10px 0px 10px 15px;
  }
  .main-nav__menu {
    display: none;
  }
  .main-nav__buttons {
    margin-left: auto;
    gap: 10px;
    display: none;
  }
  .main-nav__burger {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
  }
  .main-nav__burger span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #137461;
    transition: all 0.3s ease;
    border-radius: 3px;
  }
  .main-nav__burger span:nth-child(1) {
    top: 0;
  }
  .main-nav__burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .main-nav__burger span:nth-child(3) {
    bottom: 0;
  }
  .main-nav__burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .main-nav__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .main-nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
  }
  .nav-icon img {
    width: 40px;
    height: 40px;
  }
  .main-nav__burger {
    display: block;
    margin-right: 30px;
  }
  body.prelaunch-page .main-nav {
    padding: 20px 20px 20px 20px;
  }
}
.main-nav__mobile-menu {
  display: none;
  position: fixed;
  top: calc(64px + 30px);
  left: 0;
  width: 100%;
  height: calc(100vh - 64px - 30px);
  background-color: transparent;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(0);
  overflow-y: auto;
}
.main-nav__mobile-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
}
.main-nav__mobile-menu.active.hidden {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.main-nav__mobile-menu .mobile-menu__container {
  background-color: #FFFFFF;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  border-radius: 0 0 20px 20px;
  padding: 5px 24px 40px 24px;
  z-index: 0;
  margin-bottom: 20px;
  margin-top: 0;
}
.main-nav__mobile-menu .mobile-menu__item {
  margin-bottom: 6px;
}
.main-nav__mobile-menu .mobile-menu__item:last-child {
  margin-bottom: 0;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  text-decoration: none;
  background: rgba(248, 247, 244, 0.5);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link .mobile-menu__link-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link:hover {
  background: linear-gradient(135deg, rgba(19, 116, 97, 0.05) 0%, rgba(19, 116, 97, 0.02) 100%);
  border-color: rgba(19, 116, 97, 0.2);
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link:hover .mobile-menu__link-title {
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link:hover .mobile-menu__arrow {
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link.active {
  background: linear-gradient(135deg, rgba(19, 116, 97, 0.05) 0%, rgba(19, 116, 97, 0.02) 100%);
  border-color: rgba(19, 116, 97, 0.2);
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link.active .mobile-menu__link-title {
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link.active .mobile-menu__arrow {
  color: #137461;
  transform: rotate(180deg);
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__link-title {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2A2C29;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__arrow {
  width: 12px;
  height: 8px;
  color: #2A2C29;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
  flex-shrink: 0;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 8px;
  padding-left: 10px;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown.active {
  max-height: 1000px;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px;
  margin-bottom: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  background: linear-gradient(135deg, transparent 0%, transparent 100%);
  border: 1px solid transparent;
  text-decoration: none;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link:hover, .main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link.active {
  background: linear-gradient(135deg, rgba(19, 116, 97, 0.05) 0%, rgba(19, 116, 97, 0.02) 100%);
  transform: translateX(8px);
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link:hover .mobile-menu__dropdown-title, .main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link.active .mobile-menu__dropdown-title {
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link:hover .mobile-menu__dropdown-description, .main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link.active .mobile-menu__dropdown-description {
  color: #137461;
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link .mobile-menu__dropdown-title {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration-line: underline;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav__mobile-menu .mobile-menu__item .mobile-menu__dropdown .mobile-menu__dropdown-link .mobile-menu__dropdown-description {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #2A2C29;
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
}
.main-nav__mobile-menu .mobile-menu__button {
  width: 100%;
  margin-top: 12px;
}
.main-nav__mobile-menu .mobile-menu__promo {
  background-color: #F8E7E7;
  border-radius: 20px;
  padding: 15px;
  margin-top: 20px;
}
.main-nav__mobile-menu .mobile-menu__promo .mobile-menu__promo-content {
  background-image: url("/assets/images/common/famille.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.main-nav__mobile-menu .mobile-menu__promo .mobile-menu__promo-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  border-radius: 15px;
}
.main-nav__mobile-menu .mobile-menu__promo .mobile-menu__promo-content h4 {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.5625rem;
  color: #F8F7F4;
  margin: 0 0 8px 0;
  position: relative;
  z-index: 1;
}
.main-nav__mobile-menu .mobile-menu__promo .mobile-menu__promo-content p {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #F8F7F4;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}
.main-nav__mobile-menu .mobile-menu__promo .mobile-menu__promo-content .button {
  position: relative;
  z-index: 1;
}

.mobile-menu__top-border {
  position: fixed;
  top: calc(64px + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  height: 20px;
  background: #FFFFFF;
  border-radius: 20px 20px 0 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu__top-border.active {
  opacity: 1;
  visibility: visible;
}

.footer {
  position: relative;
  background-color: #F7F0E5;
  border-top-left-radius: 55px;
  border-top-right-radius: 55px;
  padding-top: 67px;
  overflow-x: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1800px;
  height: 100%;
  background-image: url("/assets/images/common/footer/desk/desk_1.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (min-width: 1620px) {
  .footer::before {
    background-size: cover;
    background-position: bottom;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .footer::before {
    background-size: 700% 123%;
    background-position: center bottom;
  }
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 85%;
  width: calc((100vw - 1620px) / 2 + 400px);
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #137461 100px);
  border-top-left-radius: 12.5%;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 2300px) {
  .footer::after {
    left: 80%;
  }
}
@media (max-width: 1725px) {
  .footer::after {
    display: none;
  }
}
.footer__content {
  position: relative;
  z-index: 1;
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 7%;
  height: 1000px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.footer__tablet, .footer__mobile {
  display: none;
}
.footer__partners-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
}
.footer__partner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: white;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer__legal-texts {
  text-align: right;
  max-width: 500;
  margin: 0 auto;
}
.footer__legal-text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  color: #F8F7F4;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
.footer__legal-text:last-child {
  margin-bottom: 0;
}
.footer__grid-item {
  position: relative;
}
.footer__grid-item--1 {
  grid-area: 1/1/2/3;
}
.footer__grid-item--2 {
  grid-area: 1/3/2/4;
}
.footer__grid-item--3 {
  grid-area: 1/4/2/5;
}
.footer__grid-item--4 {
  grid-area: 2/1/3/3;
}
.footer__grid-item--5 {
  grid-area: 2/3/3/4;
}
.footer__grid-item--6 {
  grid-area: 2/4/3/5;
}
.footer__grid-item--7 {
  grid-area: 3/1/4/2;
}
.footer__grid-item--8 {
  grid-area: 3/2/4/3;
}
.footer__grid-item--9 {
  grid-area: 3/3/4/5;
}
.footer__grid-item--10 {
  grid-area: 4/1/5/2;
}
.footer__grid-item--11 {
  grid-area: 4/2/5/3;
}
.footer__grid-item--12 {
  grid-area: 4/3/5/5;
  display: flex;
  flex-direction: column;
  align-items: right;
  justify-content: right;
  padding-bottom: 20px;
}
.footer__grid-item-1-logo {
  width: 200px;
  max-height: 20%;
  object-fit: contain;
  object-position: left;
}
.footer__grid-item-1-subtitle {
  color: #2A2C29;
  -webkit-text-stroke: 0.5px #2A2C29;
  -webkit-text-fill-color: #2A2C29;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.1875rem;
  font-weight: 700;
  margin: 20px 0;
  width: 80%;
}
.footer__grid-item-1-text {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.5625rem;
  font-weight: 400;
  margin-bottom: 20px;
  width: 80%;
}
.footer__grid-item-2-title {
  width: 150%;
  color: #137461;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #137461;
  -webkit-text-fill-color: #137461;
  margin-bottom: 10px;
  margin-left: 20px;
  overflow: visible;
  z-index: 2;
}
.footer__grid-item-2-text {
  color: #2A2C29;
  width: 90%;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 20px;
  margin-left: 20px;
}
.footer__grid-item-2-button {
  margin-left: 20px;
}
.footer__grid-item-4-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 1%;
  margin-bottom: 2%;
}
.footer__grid-item-4-social-item {
  width: 50px;
  height: 50px;
  transform: translate(-10%, 100%);
}
.footer__grid-item-4-social-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer__grid-item-4-social-item img:hover {
  transform: scale(1.1);
}
.footer__grid-item-4-social-number {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  margin-bottom: 2%;
  transform: translateY(150%);
}
.footer__grid-item-4-social-number a[href^=tel],
.footer__grid-item-4-social-number a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  -webkit-text-fill-color: inherit;
}
.footer__grid-item-4-social-number a[href^=tel]:hover,
.footer__grid-item-4-social-number a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}
.footer__grid-item-4-social-time {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 2%;
  transform: translateY(150%);
}
.footer__grid-item-4-social-location {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  transform: translateY(70%);
}
.footer__grid-item-5-title {
  color: #F8F7F4;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  transform: translate(49%, 105%);
  width: 102%;
  max-width: 340px;
}
.footer__grid-item-5-text {
  color: #F8F7F4;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  transform: translate(50%, 55%);
}
.footer__grid-item-8-title {
  color: #F8F7F4;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  transform: translate(55%, 145%);
}
.footer__grid-item-8-text {
  color: #F8F7F4;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  transform: translate(55%, 45%);
}
.footer__grid-item-10-title {
  color: #F8F7F4;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 20px;
  transform: translate(70%, 0%);
}
.footer__bottom {
  background-color: #F8E7E7;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 40px;
  padding: 9px 0 13px 0;
  overflow-x: hidden;
}
.footer__bottom {
  background-color: #F8F7F4;
  border-top: 1px solid rgba(42, 44, 41, 0.1);
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 10010;
}
.footer__bottom-content {
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 7%;
}
.footer__bottom-link {
  color: #2A2C29;
  text-decoration: none;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
}
.footer__bottom-link:hover {
  color: #137461;
}
.footer .footer__partners-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  width: 100%;
}
.footer .footer__legal-texts {
  text-align: right;
  max-width: 100%;
  margin-left: auto;
  width: 100%;
}
.footer .footer__legal-text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  color: #F8F7F4;
  line-height: 1.5;
  width: 100%;
  text-align: right;
  margin-left: auto;
}
.footer .footer__legal-text:last-child {
  margin-bottom: 0;
}
.footer .footer__partner {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background-color: white;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer__partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer .footer__grid-item-5-text a,
.footer .footer__grid-item-8-text a,
.footer .footer__tablet-content-2-text-1 a,
.footer .footer__tablet-content-2-text-2 a,
.footer .footer__tablet-content-2-text-3 a,
.footer .footer__mobile-column-list-1 a,
.footer .footer__mobile-column-list-2 a,
.footer .footer__mobile-column-list-3 a {
  text-decoration: none;
  color: rgba(248, 247, 244, 0.85);
}
.footer .footer__grid-item-5-text a:hover,
.footer .footer__grid-item-8-text a:hover,
.footer .footer__tablet-content-2-text-1 a:hover,
.footer .footer__tablet-content-2-text-2 a:hover,
.footer .footer__tablet-content-2-text-3 a:hover,
.footer .footer__mobile-column-list-1 a:hover,
.footer .footer__mobile-column-list-2 a:hover,
.footer .footer__mobile-column-list-3 a:hover {
  text-decoration: none;
  color: #F8F7F4;
}
.footer a[href^=tel],
.footer a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  -webkit-text-fill-color: inherit;
}
.footer a[href^=tel]:hover,
.footer a[href^="tel:"]:hover {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .footer {
    background-image: url("/assets/images/common/footer/tab/fond.png");
    background-size: 170% 88%;
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .footer::before {
    display: none;
  }
  .footer__content {
    display: none;
  }
  .footer__mobile {
    display: none;
  }
  .footer__grid-item {
    display: none;
  }
  .footer__tablet {
    display: flex;
    flex-direction: column;
    padding: 40px 45px;
    order: 1;
    position: relative;
    z-index: 1;
    min-height: 80vh;
  }
  .footer__tablet-content-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .footer__tablet-content-1-left {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 20px;
  }
  .footer__tablet-content-1-left img {
    width: 150px;
    max-height: 15%;
    object-fit: contain;
    object-position: left;
  }
  .footer__tablet-content-1-left-title {
    width: 100%;
    color: #137461;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 2.5rem;
    font-weight: 700;
    -webkit-text-stroke: 1px #137461;
    -webkit-text-fill-color: #137461;
    transform: none;
    text-align: left;
    margin-bottom: 10px;
    overflow: visible;
    z-index: 2;
  }
  .footer__tablet-content-1-left-text {
    width: 60%;
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    transform: none;
    text-align: left;
    margin-bottom: 0;
  }
  .footer__tablet-content-1-right {
    display: flex;
    flex-direction: column;
    align-items: right;
    justify-content: right;
  }
  .footer__tablet-content-1-right-icons {
    display: flex;
    flex-direction: row;
    align-items: right;
    justify-content: right;
    gap: 10px;
  }
  .footer__tablet-content-1-right-item-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: right;
    margin-bottom: 5%;
  }
  .footer__tablet-content-1-right-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .footer__tablet-content-1-right-item-number {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.5625rem;
    font-weight: 700;
    margin-bottom: 5%;
    transform: none;
    text-align: right;
  }
  .footer__tablet-content-1-right-item-number a[href^=tel],
  .footer__tablet-content-1-right-item-number a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    -webkit-text-fill-color: inherit;
  }
  .footer__tablet-content-1-right-item-number a[href^=tel]:hover,
  .footer__tablet-content-1-right-item-number a[href^="tel:"]:hover {
    color: inherit;
    text-decoration: none;
  }
  .footer__tablet-content-1-right-item-time {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 5%;
    transform: none;
    text-align: right;
  }
  .footer__tablet-content-1-right-item-location {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    transform: none;
    text-align: right;
  }
  .footer__tablet-button {
    width: 100%;
    margin-top: 40px;
    transform: none;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
  }
  .footer__tablet-content-1 {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  .footer__tablet-content-1-left, .footer__tablet-content-1-right {
    flex: 1;
  }
  .footer__tablet-content-2 {
    display: block;
    position: relative;
    margin-top: 120px;
    margin-bottom: 70px;
  }
  .footer__tablet-content-2-bg {
    position: relative;
    background-image: url("/assets/images/common/footer/tab/tab_1.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 400px auto;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__tablet-content-2-columns {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 45% 30%;
    gap: 25%;
  }
  .footer__tablet-content-2-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer__tablet-content-2-group-1 {
    transform: translateY(20%);
  }
  .footer__tablet-content-2-group-2 {
    transform: translateY(20%);
  }
  .footer__tablet-content-2-group-3 {
    transform: none;
  }
  .footer__tablet-content-2-center {
    display: none;
  }
  .footer__tablet-content-2-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-left: auto;
    justify-self: end;
    width: 100%;
  }
  .footer__tablet-content-2-title-3, .footer__tablet-content-2-text-3 {
    width: 100%;
    text-align: right;
  }
  .footer__tablet-content-2-title-3 {
    margin: 0;
    padding: 0;
  }
  .footer__tablet-content-2-text-3 {
    margin: 0;
    padding: 0;
  }
  .footer__tablet-content-1-title-1, .footer__tablet-content-1-title-2, .footer__tablet-content-1-title-3 {
    color: #F8F7F4;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 15px;
    white-space: nowrap;
    word-break: keep-all;
    hyphens: none;
  }
  .footer__tablet-content-1-text-1, .footer__tablet-content-1-text-2, .footer__tablet-content-1-text-3 {
    color: #F8F7F4;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    overflow: visible;
    white-space: nowrap;
    word-break: keep-all;
    hyphens: none;
    width: 320px;
    max-width: none;
    flex: 0 0 320px;
  }
  .footer__tablet-content-2-title-1, .footer__tablet-content-2-title-2, .footer__tablet-content-2-title-3 {
    color: #F8F7F4;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  .footer__tablet-content-2-text-1, .footer__tablet-content-2-text-2, .footer__tablet-content-2-text-3 {
    color: #F8F7F4;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .footer__tablet-content-2-title-1 {
    width: auto;
    max-width: 300px;
    min-width: 200px;
    transform: none;
    margin-bottom: 0;
    margin-left: 0;
  }
  .footer__tablet-content-2-text-1 {
    margin-bottom: 175px;
    width: 100%;
    transform: none;
    margin-left: 0;
  }
  .footer__tablet-content-2-title-2 {
    width: 60%;
    transform: none;
    margin-left: 0;
    margin-bottom: 0;
  }
  .footer__tablet-content-2-text-2 {
    width: 100%;
    transform: none;
    margin-left: 0;
  }
  .footer__tablet-content-2-title-3 {
    width: auto;
    transform: none;
    margin: 0;
  }
  .footer__tablet-content-2-text-3 {
    width: auto;
    transform: none;
    margin: 0;
  }
  .footer__tablet-bottom {
    margin-top: -70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
  }
  .footer__tablet-bottom .footer__partners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
  }
  .footer__tablet-bottom .footer__legal-texts {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
  .footer__tablet-bottom .footer__legal-text {
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    color: #F8F7F4;
    line-height: 1.5;
    margin: 0 auto 20px auto;
    width: 80%;
    text-align: center;
  }
  .footer__tablet-bottom .footer__legal-text:last-child {
    margin-bottom: 0;
  }
  .footer__tablet-bottom .footer__partner {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background-color: white;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__tablet-bottom .footer__partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}
@media (max-width: calc(780px - 1px)) {
  .footer {
    background-image: url("/assets/images/common/footer/mobile/fond.png");
    background-size: 150% 75%;
    background-position: bottom;
    background-repeat: no-repeat;
  }
  .footer::before {
    display: none;
  }
  .footer__content {
    display: none;
  }
  .footer__content::before {
    display: none;
  }
  .footer__tablet {
    display: none;
  }
  .footer__tablet::before {
    display: none;
  }
  .footer__nav {
    margin-bottom: 40px;
  }
  .footer__mobile {
    display: flex;
    flex-direction: column;
    padding: 40px 24px 0 24px;
    order: 1;
    position: relative;
    z-index: 1;
  }
  .footer__mobile::before {
    display: none;
  }
  .footer__mobile-logo {
    width: 180px;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin-top: -50px;
  }
  .footer__mobile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .footer__mobile-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer__mobile-title {
    width: 80%;
    color: #137461;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 2.5rem;
    font-weight: 700;
    -webkit-text-stroke: 1px #137461;
    -webkit-text-fill-color: #137461;
    text-align: center;
    margin-bottom: 10px;
    overflow: visible;
    z-index: 2;
    margin-top: 20px;
    line-height: 1.4;
  }
  .footer__mobile-subtitle {
    width: 70%;
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    text-align: center;
  }
  .footer__mobile-button {
    width: 100%;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    margin: 15px 0 50px 0;
  }
  .footer__mobile-socials {
    display: flex;
    flex-direction: row;
    align-items: right;
    justify-content: right;
    gap: 10px;
  }
  .footer__mobile-social {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: right;
    margin-bottom: 5%;
  }
  .footer__mobile-social img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .footer__mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: right;
    justify-content: right;
    gap: 10px;
  }
  .footer__mobile-contact-phone {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.5625rem;
    font-weight: 700;
    text-align: center;
  }
  .footer__mobile-contact-phone a[href^=tel],
  .footer__mobile-contact-phone a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    -webkit-text-fill-color: inherit;
  }
  .footer__mobile-contact-phone a[href^=tel]:hover,
  .footer__mobile-contact-phone a[href^="tel:"]:hover {
    color: inherit;
    text-decoration: none;
  }
  .footer__mobile-contact-hours {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    text-align: center;
  }
  .footer__mobile-contact-adress {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 35%;
  }
  .footer__mobile-column {
    margin-top: 15%;
    padding: 0 10%;
    align-items: center;
    position: relative;
    justify-content: center;
  }
  .footer__mobile-column::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #DD9127;
    z-index: 1;
  }
  .footer__mobile-column::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #137461;
    z-index: 2;
  }
  .footer__mobile-column-list-1, .footer__mobile-column-list-2, .footer__mobile-column-list-3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 3;
  }
  .footer__mobile-column-title-1, .footer__mobile-column-title-2, .footer__mobile-column-title-3 {
    color: #F8F7F4;
    -webkit-text-stroke: 1px #F8F7F4;
    -webkit-text-fill-color: #F8F7F4;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 1.875rem;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 3;
    margin-bottom: 10px;
  }
  .footer__mobile-column-list-1-item, .footer__mobile-column-list-2-item, .footer__mobile-column-list-3-item {
    color: #F8F7F4;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 3;
  }
  .footer__mobile-column-title-1, .footer__mobile-column-list-1-item {
    text-align: left;
    margin-left: 15%;
  }
  .footer__mobile-column-title-2, .footer__mobile-column-list-2-item {
    text-align: right;
    margin-right: 15%;
  }
  .footer__mobile-column:nth-child(2)::before {
    left: auto;
    right: -10px;
  }
  .footer__mobile-column:nth-child(2)::after {
    left: auto;
    right: 0;
  }
  .footer__mobile-column-title-3, .footer__mobile-column-list-3-item {
    text-align: left;
    margin-left: 15%;
  }
  .footer__mobile-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 80px 0 20px 0;
  }
  .footer__mobile-partners img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F8F7F4;
    padding: 6px;
    object-fit: contain;
  }
  .footer__mobile-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 92%;
    text-align: center;
    margin: 0 auto;
  }
  .footer__mobile-text {
    color: #F8F7F4;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    margin-bottom: 40px;
  }
  .footer__mobile-bottom {
    background: #137461;
    padding: 16px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
.button {
  display: inline-block;
  height: auto;
  padding: 12px 23px 14px 23px;
  border-radius: 30px;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease-in-out;
}
.button--primary {
  background-color: #137461;
  color: #F8F7F4;
}
.button--primary:hover {
  background-color: #DD9127;
}
.button--secondary {
  background-color: #DD9127;
  color: #F8F7F4;
}
.button--secondary:hover {
  background-color: #137461;
}
.button--white {
  background-color: #F8F7F4;
  color: #137461;
}
.button--white:hover {
  background-color: #137461;
  color: #F8F7F4;
}
.button--white-outline {
  background-color: rgba(248, 247, 244, 0.35);
  color: #F8F7F4;
  border: 1px solid #F8F7F4;
}
.button--white-outline:hover {
  background-color: #F8F7F4;
  color: #137461;
}
.button--primary-hover-pink {
  background-color: #137461;
  color: #F8F7F4;
}
.button--primary-hover-pink:hover {
  background-color: #F8E7E7;
  border: 1px solid #E8B0B0;
  color: #137461;
}
.button--primary-hover-dark-primary {
  background-color: #137461;
  color: #F8F7F4;
}
.button--primary-hover-dark-primary:hover {
  background-color: #0C5A4B;
}
.button--outline-primary {
  background-color: transparent;
  color: #137461;
  border: 1px solid #137461;
}
.button--outline-primary:hover {
  color: #DD9127;
  border: 1px solid #DD9127;
}
.button--outline-primary-background-mint {
  background-color: #DFE8E6;
  color: #137461;
  border: 1px solid #137461;
}
.button--outline-primary-background-mint:hover {
  background-color: #F8E7E7;
  border: 1px solid #E8B0B0;
}
.button--outline-secondary {
  background-color: transparent;
  color: #DD9127;
  border: 1px solid #DD9127;
}
.button--outline-secondary:hover {
  background-color: #DD9127;
  color: #F8F7F4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  background-color: #F8F7F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  padding-top: 90px;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  main {
    padding-top: 90px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  main {
    padding-top: 75px;
  }
}
@media (max-width: calc(780px - 1px)) {
  main {
    padding-top: 64px;
  }
}
.questions {
  max-width: 1440px;
  margin: 0 auto;
}
.questions__intro {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2A2C29;
  line-height: 1.5;
  margin: 0 0 32px 0;
}
.questions__gauges {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.questions__gauges__item__sentence {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em;
  margin-bottom: 1rem;
}
.questions__gauges__item__subtitle {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2A2C29;
  line-height: 1.4;
  margin: 0;
}
.questions__gauges__item__selected-badge {
  margin: 0;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #137461;
}
.questions__range-slider {
  padding-top: 0.5rem;
}
.questions__range-slider__wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  z-index: 10;
}
.questions__range-slider__fill {
  position: absolute;
  top: 10px;
  left: 0;
  height: 6px;
  background: #DD9127;
  border-radius: 35px;
  z-index: 2;
  pointer-events: none;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.questions__range-slider__thumb {
  position: absolute;
  top: 70%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 13px;
  border-radius: 112px;
  border: 0.6px solid rgba(223, 232, 230, 0.3);
  background: #D77C15;
  pointer-events: none;
  z-index: 3;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.questions__range-slider__input {
  position: relative;
  z-index: 1;
  appearance: none;
  width: 100%;
  height: 6px;
  border: 1px solid #F8E8D0;
  background: #FFFEFA;
  outline: none;
  border-radius: 35px;
  cursor: pointer;
}
.questions__range-slider__input::-webkit-slider-thumb {
  appearance: none;
  width: 17px;
  height: 13px;
  border-radius: 112px;
  background: transparent;
  cursor: pointer;
}
.questions__range-slider__input::-moz-range-thumb {
  appearance: none;
  width: 17px;
  height: 13px;
  border-radius: 112px;
  border: 0.6px solid rgba(223, 232, 230, 0.3);
  background: transparent;
  cursor: pointer;
}
.questions__range-slider__options {
  display: flex;
  justify-content: space-between;
}
.questions__range-slider__option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: font-weight 0.2s ease;
  padding: 3px 7px;
  cursor: pointer;
}
.questions__range-slider__option--selected {
  border-radius: 13px;
  border: 1px solid #F8E8D0;
  background: #F8F7F4;
}
.questions__range-slider__option--selected .questions__range-slider__option-text {
  font-weight: 600;
}
.questions__range-slider__option-text {
  max-width: 80%;
  text-align: center;
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .questions {
    padding: 20px 7% 20px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .questions {
    padding: 32px 45px 48px;
  }
  .questions__gauges {
    gap: 28px;
  }
  .questions__gauges__item__sentence {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
  .questions__gauges__item__subtitle {
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #137461;
    -webkit-text-stroke-width: 0.66px;
    -webkit-text-stroke-color: #137461;
    margin: 0;
  }
  .questions__gauges__item__selected-badge {
    display: none;
  }
  .questions__range-slider {
    padding-top: 0;
  }
  .questions__range-slider__wrapper {
    display: none;
  }
  .questions__range-slider__fill, .questions__range-slider__thumb {
    display: none;
  }
  .questions__range-slider__input {
    display: none;
  }
  .questions__range-slider__options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
  }
  .questions__range-slider__option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    background-color: #F8F7F4;
    font-size: 0.875rem;
    padding: 11px 14px;
    border-radius: 15px;
    border: 1px solid rgba(42, 44, 41, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: left;
    width: 100%;
  }
  .questions__range-slider__option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(19, 116, 97, 0.3);
  }
  .questions__range-slider__option:active {
    transform: translateY(0);
    transition: all 0.1s ease;
  }
  .questions__range-slider__option--selected {
    border-color: #137461;
    background: rgba(19, 116, 97, 0.08);
    border-radius: 15px;
    border-width: 1px;
  }
  .questions__range-slider__option--selected .questions__range-slider__option-text {
    font-weight: 400;
  }
  .questions__range-slider__option--selected::before {
    content: "";
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid #137461;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    flex-shrink: 0;
  }
  .questions__range-slider__option--selected::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background-color: #137461;
  }
  .questions__range-slider__option:not(.questions__range-slider__option--selected)::before {
    content: "";
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid rgba(42, 44, 41, 0.3);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }
  .questions__range-slider__option:not(.questions__range-slider__option--selected):hover::before {
    border-color: #137461;
  }
  .questions__range-slider__option-text {
    max-width: 100%;
    text-align: left;
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: normal;
    margin-left: 35px;
    flex: 1;
  }
}
@media (max-width: calc(780px - 1px)) {
  .questions {
    padding: 24px 24px 40px;
  }
  .questions__gauges {
    gap: 25px;
  }
  .questions__gauges__item__sentence {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
  .questions__gauges__item__subtitle {
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #137461;
    -webkit-text-stroke-width: 0.66px;
    -webkit-text-stroke-color: #137461;
    margin: 0;
  }
  .questions__gauges__item__selected-badge {
    display: none;
  }
  .questions__range-slider {
    padding-top: 0;
  }
  .questions__range-slider__wrapper {
    display: none;
  }
  .questions__range-slider__fill, .questions__range-slider__thumb {
    display: none;
  }
  .questions__range-slider__input {
    display: none;
  }
  .questions__range-slider__options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 0;
  }
  .questions__range-slider__option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    background-color: #F8F7F4;
    font-size: 0.875rem;
    padding: 11px 14px;
    border-radius: 15px;
    border: 1px solid rgba(42, 44, 41, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: left;
    width: 100%;
  }
  .questions__range-slider__option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: rgba(19, 116, 97, 0.3);
  }
  .questions__range-slider__option:active {
    transform: translateY(0);
    transition: all 0.1s ease;
  }
  .questions__range-slider__option--selected {
    border-color: #137461;
    background: rgba(19, 116, 97, 0.08);
    border-radius: 15px;
    border-width: 1px;
  }
  .questions__range-slider__option--selected .questions__range-slider__option-text {
    font-weight: 400;
  }
  .questions__range-slider__option--selected::before {
    content: "";
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid #137461;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    flex-shrink: 0;
  }
  .questions__range-slider__option--selected::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background-color: #137461;
  }
  .questions__range-slider__option:not(.questions__range-slider__option--selected)::before {
    content: "";
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid rgba(42, 44, 41, 0.3);
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
  }
  .questions__range-slider__option:not(.questions__range-slider__option--selected):hover::before {
    border-color: #137461;
  }
  .questions__range-slider__option-text {
    max-width: 100%;
    text-align: left;
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: normal;
    margin-left: 35px;
    flex: 1;
  }
}
.profile-entry--hidden {
  display: none !important;
}

.result--hidden {
  display: none !important;
}

.result {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 24px 60px;
}
.result__profile-section {
  margin-bottom: 20px;
}
.result__profile-section__title {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.375rem;
  color: #137461;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #137461;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.result__profile-section__subtitle {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2A2C29;
  line-height: 1.5;
  margin: 0;
}
.result__overview {
  display: grid;
  grid-template-columns: minmax(200px, 230px) 1fr;
  gap: 24px;
  margin-bottom: 33px;
}
.result__overview-card {
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 24px;
  border: 1px solid rgba(42, 44, 41, 0.08);
  background: rgba(223, 232, 230, 0.7);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.result__overview-card--summary {
  gap: 12px;
}
.result__allocation-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.result__allocation-leaves {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.result__allocation-leaf {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: block;
}
.result__allocation-title {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.5625rem;
  color: #137461;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #137461;
  font-weight: 700;
  margin: 0;
  text-align: center;
  margin-bottom: 10px;
}
.result__allocation-chart {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.result__allocation-profile-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.result__allocation-legend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.result__allocation-legend__item {
  text-align: center;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  color: rgba(42, 44, 41, 0.7);
  font-weight: 500;
}
.result__allocation-legend__item--green {
  color: #137461;
}
.result__allocation-legend__item--orange {
  color: #DD9127;
}
.result__summary-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.result__summary-title {
  width: 80%;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.375rem;
  color: #137461;
  margin: 0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #137461;
  font-weight: 400;
}
.result__summary-title__highlight {
  font-weight: 500;
  color: #DD9127;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #DD9127;
}
.result__summary-text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  color: rgba(42, 44, 41, 0.8);
  margin: 0;
  line-height: 1.55;
  max-width: 900px;
}
.result__profiles-grid-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 33px;
}
.result__profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.result__profiles-grid-card {
  padding: 12px 8px;
  border-radius: 20px;
  border: 1.5px solid rgba(42, 44, 41, 0.15);
  background: rgba(247, 240, 229, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.result__profiles-grid-card:hover {
  border-color: rgba(19, 116, 97, 0.3);
  background: rgba(19, 116, 97, 0.03);
  box-shadow: 0 8px 20px rgba(19, 116, 97, 0.2);
}
.result__profiles-grid-card.result__profiles-grid-card--selected {
  border: 1.5px solid #137461;
  background: rgba(19, 116, 97, 0.05);
  box-shadow: 0 12px 28px rgba(19, 116, 97, 0.15);
}
.result__profiles-grid-card.result__profiles-grid-card--selected:hover {
  box-shadow: 0 16px 32px rgba(19, 116, 97, 0.25);
}
.result__profiles-grid-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
}
.result__profiles-grid-card__leaves {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 6px;
}
.result__profiles-grid-card__leaf {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  display: block;
}
.result__profiles-grid-card__label {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.25rem;
  color: #137461;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: #137461;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}
.result__profiles-grid-card__profile-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.result__profiles-grid-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  text-align: center;
}
.result__profiles-grid-card__allocation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  font-size: 1.575rem;
}
.result__profiles-grid-card__selected, .result__profiles-grid-card__recommended {
  display: none;
  width: 85%;
  padding: 8px 6px;
  border-radius: 20px;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  margin-top: auto;
}
.result__profiles-grid-card__selected span, .result__profiles-grid-card__recommended span {
  display: block;
}
.result__profiles-grid-card__selected {
  background: #137461;
  color: #F8F7F4;
}
.result__profiles-grid-card__recommended {
  background: #F8F7F4;
  color: #DD9127;
  border: 1px solid #DD9127;
}
.result__profiles-grid-card--show-selected .result__profiles-grid-card__selected, .result__profiles-grid-card--show-recommended .result__profiles-grid-card__recommended {
  display: block;
}
.result__profiles-grid-allocation-chart {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.result__allocation-item {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.result__allocation-item--responsible {
  color: #137461;
}
.result__allocation-item--free {
  color: #DD9127;
}
.result__next-step {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2A2C29;
  line-height: 1.5;
  margin: 10px 0 10px 0;
  text-align: center;
}
.result__follow {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.result__follow .contact__success-follow__text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2A2C29;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: center;
}
.result__follow .contact__success-follow__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
.result__follow .contact__success-follow__socials__item {
  margin: 0;
}
.result__follow .contact__success-follow__socials__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A2C29;
  transition: all 0.25s ease-in-out;
}
.result__follow .contact__success-follow__socials__link:hover {
  color: #137461;
}
.result__follow .contact__success-follow__socials__link svg {
  display: block;
}
.result__follow .contact__success-follow__back {
  display: inline-block;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .result {
    padding: 10px 7% 60px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .result {
    padding: 10px 45px 48px;
  }
}
@media (max-width: calc(780px - 1px)) {
  .result {
    padding: 24px 24px 40px;
  }
  .result__overview {
    grid-template-columns: 1fr;
  }
  .result__profiles-grid {
    grid-template-columns: 1fr;
  }
  .result__follow .contact__success-follow__back {
    width: 100%;
  }
}
.form {
  max-width: 1440px;
  margin: 40px auto 40px;
}
.form__container {
  max-width: 600px;
  margin: 0 auto;
}
.form__title {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #2A2C29;
  -webkit-text-stroke: 1px #2A2C29;
  -webkit-text-fill-color: #2A2C29;
  line-height: 1.2;
  margin: 0 0 24px 0;
  text-align: center;
}
.form__get-results {
  margin-top: 16px;
}
.form__get-results__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  border: 0.5px solid #707070;
  border-radius: 36px;
  padding: 5px;
}
.form__get-results__input {
  flex: 1;
  min-width: 200px;
}
.form__get-results__submit {
  flex-shrink: 0;
}
.form__get-results__error {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  color: #E8B0B0;
  margin: 12px 0 0 0;
}
.form__get-results__disclaimer {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(42, 44, 41, 0.7);
  line-height: 1.4;
  margin: 16px 0 0 0;
}
.form .contact__message {
  padding: 16px 20px;
  border-radius: 12px;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  margin-bottom: 24px;
}
.form .contact__message--success {
  background-color: #DFE8E6;
  border: 1px solid #137461;
  color: #0C5A4B;
}
.form .contact__message--error {
  background-color: #F8E7E7;
  border: 1px solid #E8B0B0;
  color: #2A2C29;
}
.form .contact__success-follow {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form .contact__success-follow__text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2A2C29;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: center;
}
.form .contact__success-follow__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
.form .contact__success-follow__socials__item {
  margin: 0;
}
.form .contact__success-follow__socials__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A2C29;
  transition: all 0.25s ease-in-out;
}
.form .contact__success-follow__socials__link:hover {
  color: #137461;
}
.form .contact__success-follow__socials__link svg {
  display: block;
}
.form .contact__success-follow__back {
  display: inline-block;
}
.form .contact__form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form .contact__form__label {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2A2C29;
  margin-bottom: 8px;
}
.form .contact__form__input {
  padding: 15px 24px;
  border-radius: 30px;
  border: 1px solid #F8E7E7;
  background: #F8F7F4;
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  outline: none;
  transition: all 0.25s ease-in-out;
}
.form .contact__form__input::placeholder {
  color: rgba(42, 44, 41, 0.35);
}
.form .contact__form__input:focus {
  border-color: #137461;
}
.form .contact__form__actions {
  margin-top: 8px;
}
.form .contact__form__submit {
  min-width: 180px;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .form {
    padding: 40px 7% 60px;
  }
  .form .form__get-results__row {
    border: 0.5px solid #707070;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .form {
    padding: 40px 45px 60px;
  }
  .form .contact__form__submit {
    width: 100%;
    min-width: unset;
  }
  .form .contact__success-follow__back {
    width: 100%;
  }
  .form .form__get-results__row {
    flex-direction: column;
    border: none;
  }
  .form .form__get-results__input {
    min-width: unset;
  }
  .form .form__get-results__submit {
    width: 100%;
  }
}
@media (max-width: calc(780px - 1px)) {
  .form {
    padding: 40px 24px 60px;
  }
  .form .contact__form__submit {
    width: 100%;
    min-width: unset;
  }
  .form .contact__success-follow__back {
    width: 100%;
  }
  .form .form__get-results__row {
    flex-direction: column;
    border: none;
  }
  .form .form__get-results__input {
    min-width: unset;
  }
  .form .form__get-results__submit {
    width: 100%;
  }
}
