@charset "UTF-8";
@font-face {
  font-family: "the-seasons";
  src: url("/legacy/assets/fonts/The-Seasons/the-seasons-light.woff2") format("woff2"), url("/legacy/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("/legacy/assets/fonts/The-Seasons/the-seasons-light-italic.woff2") format("woff2"), url("/legacy/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("/legacy/assets/fonts/The-Seasons/the-seasons-regular.woff2") format("woff2"), url("/legacy/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("/legacy/assets/fonts/The-Seasons/the-seasons-regular-italic.woff2") format("woff2"), url("/legacy/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("/legacy/assets/fonts/The-Seasons/the-seasons-bold.woff2") format("woff2"), url("/legacy/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("/legacy/assets/fonts/The-Seasons/the-seasons-bold-italic.woff2") format("woff2"), url("/legacy/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("/legacy/assets/fonts/Peridot-PE-Variable/peridot-pe-variable-regular.woff2") format("woff2"), url("/legacy/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;
}

.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("/legacy/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;
  }
  .nav-icon img {
    width: clamp(45px, 4.5vw, 60px);
  }
}
@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;
  }
  .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;
  }
}
.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("/legacy/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("/legacy/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("/legacy/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("/legacy/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("/legacy/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;
}

.error-page {
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #F8F7F4;
}
.error-page__content {
  text-align: center;
  max-width: 600px;
}
.error-page__title {
  font-size: 8rem;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-weight: 700;
  color: #137461;
  line-height: 1;
  margin-bottom: 20px;
}
.error-page__subtitle {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 2rem;
  color: #2A2C29;
  margin-bottom: 20px;
}
.error-page__text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.1rem;
  color: #2A2C29;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}
.error-page__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.error-page__actions .button {
  min-width: 180px;
}
.error-page .button--outline-primary-background-mint {
  transition: all 0.3s ease;
  position: relative;
  padding-right: 50px;
}
.error-page .button--outline-primary-background-mint:hover {
  background-color: #F8E7E7;
}
.error-page .button--outline-primary-background-mint:hover .button__icon circle {
  fill: #E8B0B0;
}
.error-page .button__icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.error-page__socials {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-page__socials .contact__success-follow__text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #2A2C29;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: center;
}
.error-page__socials .contact__success-follow__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.error-page__socials .contact__success-follow__socials__item {
  margin: 0;
}
.error-page__socials .contact__success-follow__socials__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A2C29;
  transition: all 0.25s ease-in-out;
}
.error-page__socials .contact__success-follow__socials__link:hover {
  color: #137461;
}
.error-page__socials .contact__success-follow__socials__link svg {
  display: block;
}
@media (max-width: calc(780px - 1px)) {
  .error-page {
    padding: 40px 20px;
  }
  .error-page__title {
    font-size: 6rem;
  }
  .error-page__subtitle {
    font-size: 1.5rem;
  }
  .error-page__actions {
    flex-direction: column;
    align-items: center;
  }
}

.legal-page {
  width: 100%;
  padding: 60px 0 80px;
  background-color: #F8F7F4;
}
.legal-page__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 7%;
}
.legal-page__title {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2A2C29;
  line-height: 1.2;
  margin-bottom: 32px;
}
.legal-page__content {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2A2C29;
  line-height: 1.6;
}
.legal-page__content p {
  margin-bottom: 1em;
}
.legal-page__content h2 {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #2A2C29;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.legal-page__content h3 {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2A2C29;
  margin-top: 1.25em;
  margin-bottom: 0.4em;
}
.legal-page__content a {
  color: #137461;
  text-decoration: underline;
  transition: all 0.25s ease-in-out;
}
.legal-page__content a:hover {
  color: #0C5A4B;
}
.legal-page__content ul, .legal-page__content ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.legal-page__content li {
  margin-bottom: 0.25em;
}

@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .legal-page {
    padding: 50px 0 60px;
  }
  .legal-page__container {
    padding: 0 45px;
  }
  .legal-page__title {
    font-size: 2.1875rem;
    margin-bottom: 28px;
  }
}
@media (max-width: calc(780px - 1px)) {
  .legal-page {
    padding: 40px 0 50px;
  }
  .legal-page__container {
    padding: 0 24px;
  }
  .legal-page__title {
    font-size: 1.875rem;
    margin-bottom: 24px;
  }
  .legal-page__content {
    font-size: 0.875rem;
  }
  .legal-page__content h2 {
    font-size: 1.25rem;
  }
  .legal-page__content h3 {
    font-size: 1.125rem;
  }
}
* {
  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;
  }
}
.hero {
  max-width: 1440px;
  margin: 0 auto;
}
.hero__container {
  display: flex;
  gap: 130px;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 80px;
}
.hero__block--left {
  width: 40%;
  flex-shrink: 0;
  border-radius: 94px;
}
.hero__block--left img {
  max-height: 540px;
  border-radius: 94px;
  object-position: 100% 15%;
  aspect-ratio: 1.0887;
}
.hero__block--right {
  width: 53%;
  flex-shrink: 0;
}
.hero__links {
  display: flex;
  gap: 0.6%;
  margin-bottom: 5%;
}
.hero__link {
  color: #2A2C29;
  text-decoration: none;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.hero__link--span {
  margin-top: 3px;
}
.hero__link:hover {
  color: #DD9127;
}
.hero__link.selected {
  color: #DD9127;
}
.hero__title {
  color: #137461;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 75px;
  font-weight: 700;
  -webkit-text-stroke: 1px #137461;
  -webkit-text-fill-color: #137461;
  margin-bottom: 4%;
  line-height: 1.2;
}
.hero__subtitle {
  color: #2A2C29;
  width: 80%;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #2A2C29;
  -webkit-text-fill-color: #2A2C29;
  line-height: 1.2;
  margin-bottom: 6%;
  text-align: left;
}
.hero__subtitle--mobile {
  display: none;
}
.hero .button {
  transition: all 0.3s ease;
  position: relative;
  padding-right: 8%;
}
.hero .button:hover {
  background-color: #F8E7E7;
}
.hero .button:hover .button__icon circle {
  fill: #E8B0B0;
}
.hero .button__icon {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .hero__container {
    padding: 0 7%;
  }
  .hero__block--left img {
    max-height: 500px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .hero {
    max-width: 100%;
  }
  .hero__container {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 0 45px;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
  }
  .hero__block--left {
    width: 100%;
    order: 1;
    display: flex;
    justify-content: center;
    height: 40vh;
    border-radius: 35px;
  }
  .hero__block--left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
  }
  .hero__block--right {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .hero__title {
    font-size: 2.75rem;
    margin-bottom: 2%;
  }
  .hero__subtitle {
    font-size: 32px;
    text-align: center;
    margin: 0 auto 4% auto;
  }
  .hero__link {
    font-size: 16px;
  }
  .hero__links {
    display: none;
  }
  .hero .button {
    width: 100%;
    max-width: 300px;
    margin: 0;
    font-size: 16px;
    padding: 14px 28px;
    text-align: left;
  }
}
@media (max-width: calc(780px - 1px)) {
  .hero {
    max-width: 100%;
  }
  .hero__container {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 24px;
    width: 100%;
  }
  .hero__block--left {
    width: 100%;
    order: 1;
    display: flex;
    justify-content: center;
    height: 40vh;
    border-radius: 35px;
  }
  .hero__block--left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 15%;
    border-radius: 35px;
  }
  .hero__block--right {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .hero__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 2%;
  }
  .hero__subtitle {
    display: none;
  }
  .hero__subtitle--mobile {
    display: block;
    width: 100%;
    font-size: 22px;
    text-align: center;
    margin: 0 auto 4% auto;
    color: #2A2C29;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-weight: 700;
    -webkit-text-stroke: 1px #2A2C29;
    -webkit-text-fill-color: #2A2C29;
    line-height: 1.2;
  }
  .hero__link {
    font-size: 14px;
  }
  .hero__links {
    display: none;
  }
  .hero .button {
    width: 100%;
    max-width: 250px;
    margin: 0;
    font-size: 14px;
    padding: 12px 12px 12px 12px;
    text-align: left;
  }
}
.benefits {
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 0;
}
.benefits__container {
  padding: 40px 40px;
  background-color: #F7F0E5;
  background-size: cover;
  background-position: center;
  border-radius: 35px;
  display: flex;
  gap: 7%;
  align-items: center;
  margin-bottom: 80px;
}
.benefits__block--left {
  width: 40%;
  flex-shrink: 0;
}
.benefits__block--right {
  width: 53%;
  flex-shrink: 0;
}
.benefits__title {
  color: #137461;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px #137461;
  -webkit-text-fill-color: #137461;
}
.benefits__text {
  color: #2A2C29;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.benefits__text--bold {
  font-weight: 700;
}
.benefits__grid {
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefits__item {
  background-color: #F8F7F4;
  border-radius: 35px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  color: #2A2C29;
  font-size: 1.375rem;
  padding: 60px 30px;
  -webkit-text-stroke: 1px #2A2C29;
  -webkit-text-fill-color: #2A2C29;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-align: center;
}
.benefits__item:hover {
  cursor: pointer;
  background-color: #137461;
  -webkit-text-stroke: 1px #F8F7F4;
  -webkit-text-fill-color: #F8F7F4;
}
.benefits__item:nth-child(1):hover {
  transform: rotate(-5deg);
}
.benefits__item:nth-child(2):hover {
  transform: rotate(5deg);
}
.benefits__item:nth-child(3):hover {
  transform: rotate(5deg);
}
.benefits__item:nth-child(4) {
  padding: 30px;
}
.benefits__item:nth-child(4):hover {
  transform: rotate(-5deg);
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .benefits {
    max-width: 100%;
    margin-bottom: 80px;
    padding: 0 7%;
  }
  .benefits__container {
    margin-bottom: 80px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .benefits {
    max-width: 100%;
    margin-bottom: 0 !important;
    padding: 0;
  }
  .benefits__container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    padding: 40px 45px;
    border-radius: 35px 35px 0 0;
    margin-bottom: 0 !important;
  }
  .benefits__block--left {
    width: 100%;
    order: 1;
    text-align: center;
  }
  .benefits__block--right {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .benefits__title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .benefits__text {
    font-size: 20px;
  }
  .benefits__grid {
    padding-top: 1%;
    padding-bottom: 4%;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .benefits__item {
    height: 180px;
    font-size: 24px;
    padding: 20px;
  }
  .benefits__item:nth-child(1):hover {
    transform: rotate(-5deg);
  }
  .benefits__item:nth-child(2):hover {
    transform: rotate(5deg);
  }
  .benefits__item:nth-child(3):hover {
    transform: rotate(5deg);
  }
  .benefits__item:nth-child(4):hover {
    transform: rotate(-5deg);
  }
}
@media (max-width: calc(780px - 1px)) {
  .benefits {
    max-width: 100%;
    margin-bottom: 0 !important;
    padding: 0;
  }
  .benefits__container {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0 !important;
    align-items: center;
    width: 100%;
    padding: 40px 24px 80px 24px;
    border-radius: 35px 35px 0 0;
  }
  .benefits__block--left {
    width: 100%;
    order: 1;
    text-align: center;
  }
  .benefits__block--right {
    width: 100%;
    order: 2;
    text-align: center;
  }
  .benefits__title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .benefits__text {
    font-size: 20px;
  }
  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .benefits__item {
    height: 120px;
    font-size: 24px;
    padding: 12px;
  }
  .benefits__item:nth-child(1):hover {
    transform: rotate(-3deg);
  }
  .benefits__item:nth-child(2):hover {
    transform: rotate(3deg);
  }
  .benefits__item:nth-child(3):hover {
    transform: rotate(3deg);
  }
  .benefits__item:nth-child(4):hover {
    transform: rotate(-3deg);
  }
}
.process {
  max-width: 1440px;
  margin: 0 auto 80px auto;
}
.process__container {
  display: flex;
  gap: 4.38%;
  align-items: flex-start;
}
.process__block--left {
  width: 39.1%;
  padding-left: 40px;
}
.process__block--right {
  position: relative;
  height: 100%;
  width: 56.46%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.process__title {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.process__text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 25px;
}
.process__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.process__item {
  display: inline-block;
  background-color: #DFE8E6;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 11px;
  margin-right: 15px;
  border-radius: 35px 35px 35px 10px;
  padding: 15px;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.process__item--content--mobile {
  display: none !important;
}
.process__item:nth-child(1) {
  width: 67.8%;
}
.process__item:nth-child(2) {
  width: 90.1%;
}
.process__item:nth-child(3) {
  width: 95.2%;
}
.process__item:nth-child(4) {
  width: 77.8%;
}
.process__item--title {
  display: none;
}
.process__item--bracket {
  font-size: 1.125rem;
}
.process__item--icon {
  display: none;
}
.process__item:hover {
  background-color: #DD9127;
}
.process .button {
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  position: relative;
  padding-right: 50px;
}
.process .button:hover {
  background-color: #F8E7E7;
  border-color: transparent;
}
.process .button:hover .button__icon circle {
  fill: #E8B0B0;
}
.process .button:hover .button__icon path {
  stroke: #F8F7F4;
}
.process .button__icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.process__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 35px;
  transform: perspective(1000px) rotateY(-10deg) translateX(-20px) translateY(20px);
  transition: transform 0.3s ease;
  align-self: stretch;
}
.process__icon {
  position: absolute;
  width: 50px;
  height: 50px;
  top: calc(3% + 20px);
  right: 7%;
  z-index: 10;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .process__container {
    padding: 0 7%;
    gap: 2%;
    align-items: stretch;
  }
  .process__block--left {
    width: 45%;
  }
  .process__block--right {
    width: 53%;
    align-items: stretch;
  }
  .process__image {
    height: 470px;
    object-fit: cover;
  }
  .process__title {
    font-size: 2.5rem;
    -webkit-text-stroke: 1px #2A2C29;
    -webkit-text-fill-color: #2A2C29;
  }
  .process__text {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
  .process__item {
    display: inline-block;
    background-color: #DFE8E6;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 11px;
    margin-right: 15px;
    border-radius: 35px 35px 35px 10px;
    padding: 7px 20px 7px 20px;
    width: 100%;
  }
  .process__item--bracket {
    font-size: 0.875rem;
  }
  .process__item--icon {
    display: none;
  }
  .process__item--content--mobile {
    display: none !important;
  }
  .process__item:hover {
    background-color: #DD9127;
  }
  .process__item:nth-child(2) {
    width: 90.1%;
    padding: 17px 20px 7px 20px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .process {
    max-width: 100%;
    min-height: 700px;
    background-color: #FFFFFF;
    margin-bottom: 80px;
    border-radius: 35px;
  }
  .process__container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    width: 100%;
    padding: 0 45px;
    padding-top: 40px;
    margin-top: -25px;
    border-radius: 35px;
  }
  .process__block--left {
    width: 100%;
    order: 1;
    text-align: center;
    padding-left: 0px;
  }
  .process__block--right {
    display: none;
  }
  .process__title {
    font-size: 2.75rem;
    margin-bottom: 3%;
    -webkit-text-stroke: 1px #2A2C29;
    -webkit-text-fill-color: #2A2C29;
  }
  .process__text {
    font-size: 1.25rem;
    margin-bottom: 3%;
  }
  .process__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2% 2.3%;
    margin-bottom: 3%;
  }
  .process__item {
    width: 100% !important;
    min-height: 200px !important;
    padding: 20px !important;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    -webkit-text-stroke: none;
    -webkit-text-fill-color: initial;
  }
  .process__item--icon {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 3%;
  }
  .process__item--title {
    color: #2A2C29;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #2A2C29;
    font-family: "The Seasons";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 1.5%;
    display: block;
  }
  .process__item--content {
    color: #2A2C29;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
  }
  .process__item--bracket {
    font-size: 0.875rem;
  }
  .process__item--content--mobile {
    display: none !important;
  }
  .process__item:hover {
    background-color: #DFE8E6;
  }
  .process .button {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-size: 16px;
    padding: 14px 28px;
  }
  .process .button__icon {
    display: none;
  }
}
@media (min-width: 1620px) {
  .process__title {
    -webkit-text-stroke: 1px #2A2C29;
    -webkit-text-fill-color: #2A2C29;
  }
  .process__text {
    -webkit-text-stroke: 1px #2A2C29;
    -webkit-text-fill-color: #2A2C29;
  }
  .process__item {
    -webkit-text-stroke: 1px #2A2C29;
    -webkit-text-fill-color: #2A2C29;
  }
}
@media (max-width: calc(780px - 1px)) {
  .process {
    max-width: 100%;
    min-height: 700px;
    background-color: #FFFFFF;
    margin-bottom: 40px;
    border-radius: 35px;
  }
  .process__container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    padding: 0 24px;
    padding-top: 40px;
    margin-top: -40px;
    border-radius: 35px;
  }
  .process__block--left {
    width: 100%;
    order: 1;
    text-align: center;
    padding-left: 0px;
  }
  .process__block--right {
    display: none;
  }
  .process__title {
    font-size: 1.875rem;
    margin-bottom: 3%;
    color: #2A2C29;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #2A2C29;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    margin-bottom: 5%;
  }
  .process__text {
    font-size: 1.125rem;
    margin-bottom: 15%;
    color: #2A2C29;
    text-align: center;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  }
  .process__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 0px;
  }
  .process__item {
    width: 100% !important;
    min-height: 200px !important;
    padding: 20px !important;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    -webkit-text-stroke: none;
    -webkit-text-fill-color: initial;
    margin: 0px;
  }
  .process__item--icon {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 3%;
  }
  .process__item--title {
    color: #2A2C29;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #2A2C29;
    font-family: "The Seasons";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 1.5%;
    display: block;
  }
  .process__item--content {
    color: #2A2C29;
    font-family: "Peridot PE Variable";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
  }
  .process__item--content--mobile {
    display: none !important;
  }
  .process__item--content {
    display: block !important;
  }
  .process__item--bracket {
    font-size: 0.875rem;
  }
  .process__item:hover {
    background-color: #DFE8E6;
  }
  .process .button {
    display: none;
  }
}
@media (min-width: 1300px) {
  .process .process__item {
    -webkit-text-stroke: 1px #2A2C29 !important;
    -webkit-text-fill-color: #2A2C29 !important;
  }
  .process .process__title {
    -webkit-text-stroke: 1px #2A2C29 !important;
    -webkit-text-fill-color: #2A2C29 !important;
  }
  .process .process__text {
    -webkit-text-stroke: 1px #2A2C29 !important;
    -webkit-text-fill-color: #2A2C29 !important;
  }
}
.feature {
  position: relative;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #DFE8E6;
  transform: matrix(1, -0.01, 0.01, 1, 0, 0);
  z-index: -1;
}
.feature__container {
  max-width: 1440px;
  margin: 0 auto;
}
.feature__title {
  display: flex;
  width: 90%;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  padding-top: 80px;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  color: #137461;
  font-weight: 700;
  -webkit-text-stroke: 1px #137461;
  -webkit-text-fill-color: #137461;
  font-size: 2.1875rem;
  text-align: center;
}
.feature__content {
  display: flex;
  gap: 5.28%;
}
.feature__block {
  margin-bottom: 100px;
}
.feature__block--left {
  width: 47.08%;
  margin-top: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
}
.feature__block--right {
  width: 42.01%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature__image {
  display: none;
}
.feature__subtitle {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  color: #137461;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature__text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  color: #2A2C29;
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.feature__line {
  border: none;
  border-top: 1px solid #137461;
  margin-bottom: 16px;
}

@media (min-width: 1299px) {
  .feature__paragraph {
    display: block;
  }
  .feature__image {
    display: block;
    width: 100%;
    border-radius: 50px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1607843137);
  }
  .feature__subtitle-responsive {
    display: none;
  }
  .feature__list {
    display: none;
  }
  .feature__button {
    display: none;
  }
}
@media (min-width: 1300px) and (max-width: 1620px) {
  .feature__content {
    padding: 0 7%;
  }
  .feature__block--left {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 380px;
  }
}
@media (max-width: 1300px) {
  .feature {
    border-radius: 35px 35px 0 0;
    overflow: hidden;
    margin: 0 45px;
  }
  .feature::before {
    border-radius: 35px 35px 0 0;
    background-image: url("/legacy/assets/images/pages/products/assurance-vie/process/Img_avantage – 1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .feature__container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .feature__title {
    font-size: 2.75rem;
    margin-bottom: 20px;
    padding: 40px 0 0 0;
    text-align: center;
    color: #F8F7F4;
    -webkit-text-stroke: 1px #F8F7F4;
    -webkit-text-fill-color: #F8F7F4;
  }
  .feature__subtitle-responsive {
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.25rem;
    color: #F8F7F4;
    text-align: center;
    margin-bottom: 30px;
    padding: 0;
    display: none;
  }
  .feature__content {
    display: none;
  }
  .feature__block {
    margin-bottom: 50px;
  }
  .feature__block--left {
    width: 100%;
  }
  .feature__block--right {
    width: 100%;
    gap: 20px;
  }
  .feature__image {
    display: none;
  }
  .feature__list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 24px 20px 0 20px;
    scroll-padding-left: 40px;
    scroll-padding-right: 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .feature__list::-webkit-scrollbar {
    display: none;
  }
  .feature__list::before {
    content: "";
    flex: 0 0 40px;
  }
  .feature__list::after {
    content: "";
    flex: 0 0 40px;
  }
  .feature__card {
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 254, 255, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 18px;
    padding-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #F8F7F4;
    line-height: 1.3;
    flex-shrink: 0;
    height: auto;
    flex: 0 0 calc(100vw - 90px - 40px);
    width: calc(100vw - 90px - 40px);
    scroll-snap-align: center;
  }
  .feature__card:first-child {
    margin-left: 0;
  }
  .feature__card:last-child {
    margin-right: 0;
  }
  .feature__card::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 32px;
    height: 32px;
    background: url("/legacy/assets/images/logo/logo-white.svg") no-repeat center/contain;
  }
  .feature__card-title {
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #F8F7F4;
    margin: 0 0 8px 0;
  }
  .feature__card-text {
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    margin: 0;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #F8F7F4;
  }
  .feature__button {
    display: block;
    width: 90%;
    margin: 30px auto 75px auto;
    background-color: #F8F7F4;
    color: #137461;
    border: 1px solid #F8F7F4;
  }
  .feature__button:hover {
    background-color: #137461;
    color: #F8F7F4;
    border: 1px solid #137461;
  }
  .feature__paragraph {
    display: none;
  }
}
@media (max-width: 780px) {
  .feature {
    border-radius: 35px 35px 0 0;
    overflow: hidden;
    margin: 0;
  }
  .feature::before {
    border-radius: 35px;
    background-image: url("/legacy/assets/images/pages/products/assurance-vie/process/Img_avantage – 1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: calc(100% - 48px);
    margin: 0 24px 0 24px;
  }
  .feature__container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .feature__title {
    width: calc(100% - 48px);
    margin: 0 24px 15px 24px;
    font-size: 1.875rem;
    padding: 40px 25px 0 25px;
    text-align: center;
    color: #F8F7F4;
    -webkit-text-stroke: 1px #F8F7F4;
    -webkit-text-fill-color: #F8F7F4;
  }
  .feature__subtitle-responsive {
    display: none;
  }
  .feature__content {
    display: none;
  }
  .feature__block {
    margin-bottom: 35px;
  }
  .feature__block--left {
    width: 100%;
  }
  .feature__block--right {
    width: 100%;
    gap: 15px;
  }
  .feature__image {
    display: none;
  }
  .feature__list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 24px 20px 0 20px;
    scroll-padding-left: 20px;
    scroll-padding-right: 20px;
    margin-top: 5px;
    margin-bottom: 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .feature__list::-webkit-scrollbar {
    display: none;
  }
  .feature__card {
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 254, 255, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 18px;
    padding-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #F8F7F4;
    line-height: 1.3;
    flex-shrink: 0;
    height: auto;
    flex: 0 0 calc(100vw - 48px - 40px);
    width: calc(100vw - 48px - 40px);
    scroll-snap-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .feature__card:first-child {
    margin-left: 20px;
  }
  .feature__card:last-child {
    margin-right: 20px;
  }
  .feature__card::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 32px;
    height: 32px;
    background: url("/legacy/assets/images/logo/logo-white.svg") no-repeat center/contain;
  }
  .feature__card-title {
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #F8F7F4;
    margin: 0 0 8px 0;
  }
  .feature__card-text {
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 1.125rem;
    margin: 0;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
    color: #F8F7F4;
  }
  .feature__button {
    display: block;
    width: calc(100% - 96px);
    margin: 40px 48px 75px 48px;
    background-color: #137461;
    color: #F8F7F4;
    border: 1px solid #137461;
  }
  .feature__button:hover {
    background-color: #F8F7F4;
    color: #137461;
    border: 1px solid #F8F7F4;
  }
  .feature__paragraph {
    display: none;
  }
}
.switche-version {
  width: 1440px;
  margin: 0 auto;
  margin-top: 80px;
}
.switche-version__container {
  background-color: #137461;
  padding: 40px;
  border-radius: 35px;
}
.switche-version__title {
  color: #F8F7F4;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #F8F7F4;
  -webkit-text-fill-color: #F8F7F4;
  margin-bottom: 16px;
}
.switche-version__subtitle {
  color: #F8F7F4;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.switche-version__grid {
  display: grid;
  grid-template-columns: repeat(5, 260px);
  grid-template-rows: repeat(1, 220px);
  gap: 12px;
  margin-top: 40px;
}
.switche-version__grid-top, .switche-version__grid-bottom {
  display: contents;
}
.switche-version__item {
  background-color: #F8F7F4;
  border-radius: 35px;
  padding: 55px 34px 34px 19px;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.switche-version__item:hover {
  background-color: #DFE8E6;
}
.switche-version__item .switche-version__icon {
  order: 1;
}
.switche-version__item .switche-version__text {
  order: 2;
}
.switche-version__item .switche-version__text-card {
  order: 3;
}
.switche-version__icon {
  width: 42px;
  height: auto;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 10px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.switche-version__icon--tablet {
  display: none;
}
.switche-version__item:hover .switche-version__icon {
  opacity: 0;
  transform: translateY(-20px);
}
.switche-version__text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #137461;
  transform: translateY(0);
  transition: color 0.3s ease, transform 0.3s ease;
}
.switche-version__item:hover .switche-version__text {
  color: #DD9127;
  transform: translateY(-90px);
}
.switche-version__text-card {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
.switche-version__desc {
  opacity: 0;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.125rem;
  color: #137461;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.switche-version__desc--tablet {
  display: none;
}
.switche-version__item:hover .switche-version__desc {
  opacity: 1;
  transform: translateY(-70px);
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .switche-version {
    width: 100%;
    max-width: 1440px;
  }
  .switche-version__grid {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 8px;
  }
  .switche-version__item {
    min-width: 180px;
  }
  .switche-version__text {
    font-size: 1.5625rem !important;
  }
  .switche-version__desc {
    font-size: 0.875rem;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .switche-version {
    width: 100%;
    margin-top: -35px;
  }
  .switche-version__container {
    display: flex;
    width: 100%;
    height: auto;
    padding: 40px 45px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    background: #137461;
  }
  .switche-version__title {
    font-size: 1.875rem;
    text-align: center;
    align-self: center;
  }
  .switche-version__subtitle {
    font-size: 1.25rem;
    margin: 45px 0 0 0;
    text-align: center;
    align-self: center;
  }
  .switche-version__grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 45px;
    align-items: center;
  }
  .switche-version__grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    justify-content: center;
  }
  .switche-version__grid-top .switche-version__item {
    width: 100%;
    height: 400px;
    padding: 4%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 35px;
    border: 1px solid rgba(223, 232, 230, 0.1);
    background: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  .switche-version__grid-top .switche-version__item:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .switche-version__grid-top .switche-version__item:nth-child(1) {
    padding: 2% 4% 45px 4%;
  }
  .switche-version__grid-top .switche-version__item:nth-child(1) .switche-version__text-card {
    order: 1;
  }
  .switche-version__grid-top .switche-version__item:nth-child(1) .switche-version__icon--tablet {
    order: 2;
  }
  .switche-version__grid-top .switche-version__item:nth-child(1) .switche-version__text {
    order: 3;
  }
  .switche-version__grid-top .switche-version__item:nth-child(2) {
    justify-content: flex-start;
    padding: 4% 4% 2% 4%;
  }
  .switche-version__grid-top .switche-version__item:nth-child(2) .switche-version__icon--tablet {
    order: 1;
  }
  .switche-version__grid-top .switche-version__item:nth-child(2) .switche-version__text {
    order: 2;
  }
  .switche-version__grid-top .switche-version__item:nth-child(2) .switche-version__text-card {
    order: 3;
  }
  .switche-version__grid-top .switche-version__item:nth-child(3) {
    padding: 2% 4% 50px 4%;
  }
  .switche-version__grid-top .switche-version__item:nth-child(3) .switche-version__text-card {
    order: 1;
  }
  .switche-version__grid-top .switche-version__item:nth-child(3) .switche-version__icon--tablet {
    order: 2;
  }
  .switche-version__grid-top .switche-version__item:nth-child(3) .switche-version__text {
    order: 3;
  }
  .switche-version__grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    justify-content: center;
  }
  .switche-version__grid-bottom .switche-version__item {
    width: 100%;
    height: 350px;
    padding: 4% 4% 2% 4%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 35px;
    border: 1px solid rgba(223, 232, 230, 0.1);
    background: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  .switche-version__grid-bottom .switche-version__item:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .switche-version__grid-bottom .switche-version__item .switche-version__icon--tablet {
    order: 1;
  }
  .switche-version__grid-bottom .switche-version__item .switche-version__text {
    order: 2;
  }
  .switche-version__grid-bottom .switche-version__item .switche-version__text-card {
    order: 3;
  }
  .switche-version__icon {
    display: none;
  }
  .switche-version__icon--tablet {
    display: block !important;
    width: 42px;
    height: auto;
    margin-bottom: 15px;
    align-self: center;
  }
  .switche-version__text {
    color: #F8F7F4;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #F8F7F4;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0.69%;
    transform: none;
    transition: none;
  }
  .switche-version__grid-top .switche-version__item:hover .switche-version__icon, .switche-version__grid-bottom .switche-version__item:hover .switche-version__icon {
    opacity: 1;
    transform: none;
  }
  .switche-version__grid-top .switche-version__item:hover .switche-version__text, .switche-version__grid-bottom .switche-version__item:hover .switche-version__text {
    color: #F8F7F4;
    transform: none;
  }
  .switche-version__grid-top .switche-version__item:hover .switche-version__desc, .switche-version__grid-bottom .switche-version__item:hover .switche-version__desc {
    opacity: 1;
    transform: none;
  }
  .switche-version__grid-top .switche-version__icon, .switche-version__grid-bottom .switche-version__icon {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .switche-version__desc {
    display: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .switche-version__desc--tablet {
    display: block;
    color: #F8F7F4;
    text-align: center;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    opacity: 1;
    margin-bottom: 0.69%;
    transition: none;
  }
  .switche-version__text-card {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    width: calc(100% - 40px);
    margin: 0 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.1);
  }
  .switche-version__grid-top .switche-version__item:nth-child(1) .switche-version__icon--tablet {
    width: 50px;
    height: 50px;
    margin: 50px 0 0 0;
  }
  .switche-version__grid-top .switche-version__item:nth-child(2) .switche-version__icon--tablet, .switche-version__grid-bottom .switche-version__icon--tablet {
    width: 42px;
    height: auto;
  }
  .switche-version__grid-top .switche-version__item:nth-child(3) .switche-version__icon--tablet {
    width: 42px;
    height: auto;
    margin: 75px 0 0 0;
  }
  .switche-version__grid-top .switche-version__item:nth-child(1) .switche-version__text-card, .switche-version__grid-top .switche-version__item:nth-child(3) .switche-version__text-card {
    margin-top: 15px;
  }
  .switche-version__grid-top .switche-version__item:nth-child(3) .switche-version__text-card {
    padding: 10px;
  }
  .switche-version__grid-top .switche-version__item:nth-child(2) .switche-version__text-card, .switche-version__grid-bottom .switche-version__text-card {
    margin-top: auto;
    margin-bottom: 15px;
  }
}
@media (max-width: calc(780px - 1px)) {
  .switche-version {
    width: 100%;
    margin-top: -35px;
    padding: 0;
  }
  .switche-version__container {
    width: 100%;
    height: auto;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.08%;
    border-radius: 35px;
    background: #137461;
  }
  .switche-version__title {
    font-size: 1.375rem;
    margin: 0 0 20px 0;
    text-align: center;
  }
  .switche-version__subtitle {
    font-size: 1.125rem;
    margin: 0 0 1.74% 0;
    text-align: center;
  }
  .switche-version__grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 45px;
  }
  .switche-version__item {
    width: 308px;
    height: 294px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15px 15px 15px;
    border-radius: 35px;
    border: 1px solid rgba(223, 232, 230, 0.1);
    background: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
  }
  .switche-version__item:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .switche-version__item .switche-version__icon--tablet {
    order: 1;
    margin-bottom: 0;
  }
  .switche-version__item .switche-version__text {
    order: 2;
    margin-bottom: 0;
  }
  .switche-version__item .switche-version__text-card {
    order: 3;
    margin-top: auto;
  }
  .switche-version__icon {
    display: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .switche-version__icon--tablet {
    display: block;
    width: 42px;
    height: auto;
    margin-bottom: 15px;
    align-self: center;
  }
  .switche-version__text-card {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 92%;
    margin: 0 4%;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.1);
  }
  .switche-version__text {
    color: #F8F7F4;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #F8F7F4;
    font-family: "the-seasons", "Georgia", "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    transform: none;
    transition: none;
  }
  .switche-version__item:hover .switche-version__icon {
    opacity: 1;
    transform: none;
  }
  .switche-version__item:hover .switche-version__text {
    color: #F8F7F4;
    transform: none;
  }
  .switche-version__item:hover .switche-version__desc {
    opacity: 1;
    transform: none;
  }
  .switche-version__icon {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .switche-version__desc {
    display: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .switche-version__desc--tablet {
    display: block;
    color: #F8F7F4;
    text-align: center;
    font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    opacity: 1;
  }
}
.client-subscription {
  width: 1440px;
  margin: 0 auto;
  margin-top: 40px;
}
.client-subscription__container {
  display: flex;
  gap: 2.7%;
}
.client-subscription__block--left {
  width: 58.65%;
  background-color: #F8E7E7;
  padding: 40px;
  border-radius: 35px;
}
.client-subscription__block--left__title {
  color: #2A2C29;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.1875rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #2A2C29;
  -webkit-text-fill-color: #2A2C29;
}
.client-subscription__block--right {
  width: 38.65%;
  background-color: #DFE8E6;
  padding: 40px;
  border-radius: 35px;
}
.client-subscription__block--right__title {
  color: #137461;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.1875rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #137461;
  -webkit-text-fill-color: #137461;
  margin-left: 20px;
}
.client-subscription__content {
  display: flex;
  gap: 50px;
  align-items: center;
}
.client-subscription__image-container {
  width: 50%;
  margin-bottom: -25px;
}
.client-subscription__image {
  position: relative;
  top: 20px;
  width: 120%;
  height: auto;
  left: -10%;
}
.client-subscription__text-container {
  margin-top: 45px;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.client-subscription__text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  color: #2A2C29;
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 10px;
  white-space: normal;
}
.client-subscription__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: -10px;
}
.client-subscription__list--right {
  margin-top: 45px;
}
.client-subscription__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  color: #2A2C29;
  font-size: 1.375rem;
  margin-bottom: 8px;
  white-space: normal;
}
.client-subscription__item--right {
  font-size: 1.25rem;
  font-weight: 500;
  color: #2A2C29;
  margin-bottom: 15px;
}
.client-subscription__icon {
  width: 23px;
  height: 25px;
  flex-shrink: 0;
  margin-bottom: -8px;
  align-self: center;
}
.client-subscription__icon--right {
  width: 37px;
  height: 37px;
  margin-left: 20px;
  margin-right: 24px;
  align-self: center;
}
.client-subscription__button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.client-subscription__block--left .client-subscription__button-container {
  margin-right: 30px;
}
.client-subscription__block--left .button {
  transform: none;
}
.client-subscription .button {
  width: fit-content;
}
.client-subscription__block--right .client-subscription__button--laptop {
  margin: 0 auto;
  margin-top: 20px;
}
.client-subscription__button--laptop {
  display: none;
}
.client-subscription__button--mobile {
  display: block;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .client-subscription {
    width: 100%;
    margin-top: 40px;
    padding: 0 7%;
  }
  .client-subscription__container {
    gap: 3%;
  }
  .client-subscription__block--left {
    width: 60%;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .client-subscription__block--left__title {
    font-size: 1.875rem;
  }
  .client-subscription__block--right {
    width: 37%;
    padding: 35px;
    display: flex;
    flex-direction: column;
  }
  .client-subscription__block--right__title {
    font-size: 1.875rem;
    margin-bottom: 20px;
  }
  .client-subscription__button-container {
    display: none;
  }
  .client-subscription__button--laptop {
    display: block;
  }
  .client-subscription__block--right .client-subscription__button--laptop {
    margin: 0 auto;
    margin-top: 20px;
  }
  .client-subscription__button--mobile {
    display: none;
  }
  .client-subscription__content {
    gap: 40px;
  }
  .client-subscription__text {
    font-size: 1.25rem;
  }
  .client-subscription__item {
    font-size: 1.25rem;
  }
  .client-subscription__item--right {
    font-size: 1.25rem;
  }
  .client-subscription__icon {
    width: 20px;
    height: 22px;
  }
  .client-subscription__icon--right {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .client-subscription {
    width: 100%;
    margin-top: 80px;
    padding: 0 45px;
  }
  .client-subscription__container {
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
  }
  .client-subscription__block--left {
    width: 100%;
    padding: 30px;
    position: relative;
    z-index: 0;
    background-image: none;
  }
  .client-subscription__block--left__title {
    font-size: 1.875rem;
    text-align: left;
    margin-bottom: 20px;
  }
  .client-subscription__block--right {
    width: 100%;
    padding: 30px;
  }
  .client-subscription__block--right__title {
    font-size: 1.875rem;
    text-align: left;
    margin-left: 0;
    color: #2A2C29;
  }
  .client-subscription__content {
    flex-direction: column;
    gap: 20px;
  }
  .client-subscription__image-container {
    display: none;
  }
  .client-subscription__text-container {
    width: 100%;
    margin-top: 0;
    text-align: left;
    padding-top: 20px;
  }
  .client-subscription__text {
    font-size: 1.25rem;
    display: block;
    margin-bottom: 10px;
  }
  .client-subscription__text--desktop {
    display: block;
    position: relative;
    top: 20px;
  }
  .client-subscription__list {
    margin-top: 20px;
    gap: 25px;
    display: flex;
    flex-direction: column;
  }
  .client-subscription__item {
    font-size: 1.25rem;
    justify-content: flex-start;
  }
  .client-subscription__item--right {
    font-size: 20px;
    justify-content: flex-start;
  }
  .client-subscription__icon {
    width: 18px;
    height: 20px;
    align-self: center;
  }
  .client-subscription__icon--right {
    width: 28px;
    height: 28px;
    margin-left: 0;
    margin-right: 15px;
    align-self: center;
  }
  .client-subscription__button--mobile {
    margin-top: 25px;
    width: 100%;
  }
  .client-subscription .button {
    width: 100%;
  }
  .client-subscription__button--laptop {
    display: none;
  }
  .client-subscription__button--mobile {
    display: block;
    background-color: #137461;
    color: #F8F7F4;
    border: 1px solid #137461;
  }
  .client-subscription__button--mobile:hover {
    background-color: #F8F7F4;
    color: #137461;
    border: 1px solid #137461;
  }
  .client-subscription__block--left .client-subscription__button--mobile {
    margin: 25px auto 0 auto;
    max-width: 300px;
    display: block;
  }
  .client-subscription__block--right .client-subscription__button--mobile {
    margin: 25px auto 0 auto;
    max-width: 300px;
  }
  .client-subscription .button, .client-subscription__button--laptop, .client-subscription__button--mobile {
    position: relative;
    z-index: 2;
  }
}
@media (max-width: calc(780px - 1px)) {
  .client-subscription {
    width: 100%;
    margin-top: 40px;
    padding: 0 24px;
  }
  .client-subscription__container {
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
  }
  .client-subscription__block--left {
    width: 100%;
    padding: 25px;
    position: relative;
    z-index: 0;
    background-image: none;
  }
  .client-subscription__block--left__title {
    font-size: 1.375rem;
    text-align: left;
    margin-bottom: 15px;
    color: #2A2C29;
  }
  .client-subscription__block--right {
    width: 100%;
    padding: 25px;
  }
  .client-subscription__block--right__title {
    font-size: 1.375rem;
    text-align: left;
    margin-left: 0;
    color: #2A2C29;
    -webkit-text-stroke: 1px #2A2C29;
    -webkit-text-fill-color: #2A2C29;
  }
  .client-subscription__content {
    flex-direction: column;
    gap: 15px;
  }
  .client-subscription__image-container {
    display: none;
  }
  .client-subscription__text-container {
    width: 100%;
    margin-top: 0;
    text-align: left;
    padding-top: 20px;
  }
  .client-subscription__text {
    font-size: 1.125rem;
    display: block;
    margin-bottom: 10px;
  }
  .client-subscription__text--desktop {
    display: block;
    position: relative;
    top: 20px;
  }
  .client-subscription__list {
    margin-top: 15px;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
  .client-subscription__item {
    font-size: 1.125rem;
    justify-content: flex-start;
  }
  .client-subscription__item--right {
    font-size: 18px;
    justify-content: flex-start;
  }
  .client-subscription__icon {
    width: 16px;
    height: 18px;
    align-self: center;
  }
  .client-subscription__icon--right {
    width: 24px;
    height: 24px;
    margin-left: 0;
    margin-right: 12px;
    align-self: center;
  }
  .client-subscription__button--mobile {
    margin-top: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .client-subscription .button {
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }
  .client-subscription__button--laptop {
    display: none;
  }
  .client-subscription__button--mobile {
    display: block;
    background-color: #137461;
    color: #F8F7F4;
    border: 1px solid #137461;
  }
  .client-subscription__button--mobile:hover {
    background-color: #F8F7F4;
    color: #137461;
    border: 1px solid #137461;
  }
  .client-subscription__block--left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .client-subscription__block--left .client-subscription__button--mobile {
    margin: 20px auto 0 auto;
    max-width: 300px;
    position: relative;
    z-index: 2;
  }
  .client-subscription__block--right .client-subscription__button--mobile {
    margin: 20px auto 0 auto;
    max-width: 300px;
    position: relative;
    z-index: 2;
  }
}
@media (min-width: 1620px) {
  .client-subscription__button--laptop {
    display: block;
  }
  .client-subscription__button--mobile {
    display: none;
  }
}
.faq {
  width: 1440px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 80px;
}
.faq__container {
  background: #FFFFFF;
  width: 1440px;
  height: auto;
  border-radius: 20px;
  padding: 40px;
}
.faq__title {
  margin-bottom: 33px;
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #2A2C29;
  -webkit-text-fill-color: #2A2C29;
  color: #2A2C29;
}
.faq__questions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__question {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.faq__question::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #DFE8E6;
  opacity: 0.44;
  border-radius: 15px;
  z-index: 0;
}
.faq__question > * {
  position: relative;
  z-index: 1;
}
.faq__question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 18px 30px;
}
.faq__question-title {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: #2A2C29;
}
.faq__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.faq__icon {
  width: 38px;
  height: 38px;
  transition: opacity 0.3s ease;
}
.faq__icon--plus {
  opacity: 1;
}
.faq__icon--minus {
  opacity: 0;
  position: absolute;
}
.faq__answer {
  display: none;
  margin-top: 0.69%;
  padding: 30px;
  margin-bottom: 1.39%;
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: #2A2C29;
  background: #FFFFFF;
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 15px;
  box-sizing: border-box;
}
.faq__question.active .faq__icon--plus {
  opacity: 0;
}
.faq__question.active .faq__icon--minus {
  opacity: 1;
}
.faq__question.active .faq__answer {
  display: block;
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 0.69%;
  margin-bottom: 20px;
  border-radius: 15px;
  padding: 30px;
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .faq {
    width: 100%;
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 0 7%;
  }
  .faq__container {
    width: 100%;
    padding: 30px 40px;
  }
  .faq__title {
    font-size: 2.75rem;
    margin-bottom: 30px;
    margin-left: 0;
    text-align: center;
  }
  .faq__questions {
    gap: 11px;
  }
  .faq__question-header {
    padding: 16px 28px;
  }
  .faq__question-title {
    font-size: 1.875rem;
  }
  .faq__icon {
    width: 35px;
    height: 35px;
  }
  .faq__answer {
    padding: 30px;
    font-size: 1.375rem;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 0.69%;
    margin-bottom: 1.39%;
    border-radius: 15px;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .faq {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 0 45px;
  }
  .faq__container {
    width: 100%;
    padding: 25px 30px;
  }
  .faq__title {
    font-size: 2.1875rem;
    margin-bottom: 25px;
    margin-left: 0;
    text-align: center;
  }
  .faq__questions {
    gap: 10px;
  }
  .faq__question-header {
    padding: 15px 25px;
  }
  .faq__question-title {
    font-size: 1.375rem;
  }
  .faq__icon {
    width: 32px;
    height: 32px;
  }
  .faq__answer {
    padding: 30px;
    font-size: 1.25rem;
    width: calc(100% - 60px);
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 15px;
  }
}
@media (max-width: calc(780px - 1px)) {
  .faq {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 24px;
  }
  .faq__container {
    width: 100%;
    padding: 20px 20px;
  }
  .faq__title {
    font-size: 1.875rem;
    margin-bottom: 20px;
    margin-left: 0;
    text-align: center;
  }
  .faq__questions {
    gap: 8px;
  }
  .faq__question-header {
    padding: 12px 20px;
  }
  .faq__question-title {
    font-size: 1.25rem;
  }
  .faq__icon {
    width: 28px;
    height: 28px;
  }
  .faq__answer {
    padding: 30px;
    font-size: 1.125rem;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 0.69%;
    margin-bottom: 1.39%;
    border-radius: 15px;
  }
}
.summary {
  max-width: 1440px;
  margin: 0 auto 80px auto;
  background-color: #DD9127;
  border-radius: 35px;
}
.summary__container {
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.summary__block--left {
  width: 53%;
}
.summary__block--right {
  width: 47%;
  align-self: stretch;
}
.summary__title {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 700;
  -webkit-text-stroke: 1px #2A2C29;
  -webkit-text-fill-color: #2A2C29;
  color: #2A2C29;
  margin-bottom: 10px;
}
.summary__subtitle {
  font-family: "the-seasons", "Georgia", "Times New Roman", serif;
  color: #2A2C29;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  -webkit-text-stroke: 1px #2A2C29;
  -webkit-text-fill-color: #2A2C29;
}
.summary__text {
  font-family: "peridot-pe-variable", "Arial", "Helvetica", sans-serif;
  color: #2A2C29;
  font-size: 1.375rem;
  line-height: 1;
  margin-bottom: 30px;
}
.summary__text--bold {
  font-weight: 700;
}
.summary__buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.summary__image {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  object-fit: cover;
  object-position: center;
}
.summary__separator {
  width: 100%;
  height: 1px;
  background-color: #2A2C29;
  margin-bottom: 10px;
}
.summary .button--primary:hover {
  background-color: #0C5A4B;
}
.summary .button--outline-primary {
  background: rgba(19, 116, 97, 0.3058823529) 0% 0%;
  color: #F8F7F4;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 50px;
}
.summary .button--outline-primary:hover {
  background: #0C5A4B 0% 0%;
  border: 1px solid #0C5A4B;
  color: #F8F7F4;
}
.summary .button--outline-primary:hover .button__icon circle {
  fill: #0C5A4B;
}
.summary .button__icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

@media (min-width: 1300px) and (max-width: 1620px) {
  .summary {
    margin: 0 7% 80px 7%;
    background-color: #DD9127;
    border-radius: 35px;
  }
  .summary__container {
    padding: 40px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 780px) and (max-width: calc(1300px - 1px)) {
  .summary {
    display: none;
  }
}
@media (max-width: calc(780px - 1px)) {
  .summary {
    display: none;
  }
}
