html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  font-family: var(--font-family), serif;
  cursor: pointer;
}

a {
  text-decoration: none;
}

:root {
  --container-width: 1254px;
  --container-intend: 20px;
  --white: #fff;
  --black: #181818;
  --biege: #E4D8C9;
  --biege-dark: #C9B6A0;
  --yellow: #D8A94C;
  --font-family: Montserrat;
  --font-size: 16px;
  --line-height: normal;
  --font-weight: 400;
  --background: #FFFAF3;
  --color: #000;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-family: var(--font-family), sans-serif;
  font-weight: var(--font-weight);
  background-color: var(--background);
  color: var(--color);
}

.wrapper {
  position: relative;
  overflow-x: hidden;
  min-width: 360px;
}

[class$=__container] {
  max-width: var(--container-width);
  padding: 0 var(--container-intend);
  margin: 0 auto;
}

.wrapper, body, html {
  scroll-behavior: smooth;
}

.header {
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  padding: 24px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
@media (max-width: 1024px) {
  .header {
    padding: 20px 0;
  }
}
.header__container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo {
  flex: 1;
}
.header__nav {
  display: flex;
  gap: 32px;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-link {
  font-size: 18px;
  color: var(--white);
}
@media (any-hover: hover) {
  .header__nav-link:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1024px) {
  .header__language {
    display: none !important;
  }
}
.header__button {
  background: var(--biege-dark);
  border: none;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  transition: background 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .header__button:hover {
    background: var(--biege);
  }
}
@media (max-width: 1024px) {
  .header__button {
    display: none;
  }
}
.header__menu {
  display: none;
}
@media (max-width: 1024px) {
  .header__menu {
    display: block;
  }
}

.language {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 3px;
  display: flex;
  gap: 2px;
}
.language__link {
  font-size: 14px;
  padding: 4px 2px;
  border: 1px solid transparent;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 5px;
  transition: background 0.2s ease-in-out, border 0.2s ease-in-out, color 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .language__link:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.language__link--active {
  color: #E4B75C;
  font-weight: 700;
}

.menu__button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease-in-out;
}
.menu__button svg {
  overflow: visible;
  display: block;
}
.menu__button .line-top {
  transform-origin: 14.33px 1px;
  transform: translateY(0) rotate(0deg);
  transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__button .line-mid {
  transform-origin: 14.33px 11.67px;
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 0.25s ease 0.08s, transform 0.35s cubic-bezier(0.23, 1, 0.32, 1) 0.04s;
}
.menu__button .line-bot {
  transform-origin: 14.33px 22.33px;
  transform: translateY(0) rotate(0deg);
  transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (any-hover: hover) {
  .menu__button:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}
.menu__button.open .line-top {
  transform: translateY(10.66px) rotate(45deg);
}
.menu__button.open .line-mid {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.18s ease, transform 0.28s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__button.open .line-bot {
  transform: translateY(-10.66px) rotate(-45deg);
}
.menu__content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  z-index: 10;
  background: linear-gradient(0deg, rgba(31, 42, 68, 0.3), rgba(31, 42, 68, 0.3)), linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)), url("../assets/images/menu_tablet_background.png") center/cover no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.menu__content::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 0;
}
.menu__content.open {
  opacity: 1;
  visibility: visible;
}
.menu__wrapper {
  position: relative;
  z-index: 2;
  overflow-y: auto;
  height: 100%;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #fff transparent;
}
.menu__wrapper::-webkit-scrollbar {
  width: 21px;
}
.menu__wrapper::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 999px;
}
.menu__wrapper::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 999px;
  border: 8px solid transparent;
  background-clip: padding-box;
}
.menu__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 65px;
}
@media (max-width: 768px) {
  .menu__content-wrapper {
    padding: 0 20px;
  }
}
.menu__content-top {
  padding: 20px 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .menu__content-top {
    margin-bottom: 30px;
  }
}
.menu__nav-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 768px) {
  .menu__nav-main {
    gap: 4px;
  }
}
.menu__content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .menu__content-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.menu__nav-main-link {
  color: var(--white);
  padding: 5px 0;
}
@media (max-width: 768px) {
  .menu__nav-main-link {
    font-size: 14px;
    padding: 3px 0;
  }
}
@media (any-hover: hover) {
  .menu__nav-main-link:hover {
    text-decoration: underline;
  }
}
.menu__nav-second {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .menu__nav-second {
    gap: 4px;
  }
}
.menu__nav-second-link {
  color: var(--white);
  padding: 5px 0;
}
@media (max-width: 768px) {
  .menu__nav-second-link {
    font-size: 14px;
    padding: 3px 0;
  }
}
@media (any-hover: hover) {
  .menu__nav-second-link:hover {
    text-decoration: underline;
  }
}
.menu__nav-contacts a {
  color: var(--white) !important;
}
@media (max-width: 768px) {
  .menu__nav-contacts a {
    font-size: 14px;
  }
}
.menu__nav-language {
  align-self: flex-start;
}
.menu__call {
  align-self: flex-start;
  display: flex;
  font-size: 16px;
  color: #3E3E3E;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.contacts__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
}
@media (any-hover: hover) {
  .contacts__link:hover {
    text-decoration: underline;
  }
}

.social {
  display: flex;
  gap: 17px;
}
@media (any-hover: hover) {
  .social__link:hover {
    filter: brightness(1.2);
  }
}

.hero {
  padding: 168px 0 34px 0;
  min-height: 700px;
  background-image: url("../assets/images/hero_desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .hero {
    min-height: 550px;
  }
}
@media (max-width: 1254px) {
  .hero {
    background-image: url("../assets/images/hero_container.png");
  }
}
@media (max-width: 1024px) {
  .hero {
    background-image: url("../assets/images/hero_tablet.png");
  }
}
@media (max-width: 767px) {
  .hero {
    background-image: url("../assets/images/hero_mobile.png");
  }
}
@media (max-width: 1024px) {
  .hero {
    padding: 132px 0 40px 0;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 168px 0 90px 0;
  }
}
.hero__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.hero__title {
  font-size: 56px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  max-width: var(--desktop-max-width);
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 40px;
    max-width: 480px;
    margin-bottom: 14px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 34px;
    max-width: 280px;
  }
}
.hero__subtitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 45px;
  color: var(--white);
}
@media (max-width: 1024px) {
  .hero__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .hero__subtitle {
    font-size: 16px;
    max-width: 232px;
    margin-bottom: 74px;
  }
}
.hero__button {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .hero__button {
    margin-bottom: 21px;
  }
}
.hero__text {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  max-width: 350px;
  align-self: flex-end;
}
.hero__text span {
  color: var(--yellow);
}
@media (max-width: 1024px) {
  .hero__text {
    font-size: 18px;
    text-align: right;
  }
}
@media (max-width: 576px) {
  .hero__text {
    text-align: left;
  }
}

.button {
  color: var(--black);
  background: var(--yellow);
  min-width: 473px;
  padding: 32px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  border: 4px solid #FFDE9A;
  transition: background 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .button:hover {
    background: #FFDE9A;
  }
}
@media (max-width: 1024px) {
  .button {
    font-size: 16px;
    min-width: 390px;
    padding: 21px 0;
    margin-bottom: 21px;
  }
}
@media (max-width: 576px) {
  .button {
    align-self: center;
    min-width: 298px;
    padding: 16px 42px;
    background: #E4B75C;
  }
}

.footer {
  padding-bottom: 34px;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 20px;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 60px;
  background: var(--biege-dark);
  border-radius: 30px;
}
@media (max-width: 768px) {
  .footer__wrapper {
    padding: 30px 20px;
  }
}
.footer__row {
  display: flex;
}
.footer__row.center {
  display: grid;
  gap: 10px;
  justify-content: space-between;
  grid-template-columns: minmax(auto, 274px) minmax(auto, 70px) minmax(auto, 270px) minmax(auto, 217px);
}
@media (max-width: 1024px) {
  .footer__row.center {
    grid-template-columns: minmax(auto, 70px) 1fr;
    row-gap: 40px;
    column-gap: 35px;
  }
  .footer__row.center .footer__col:first-child {
    grid-column: 1/span 2;
  }
  .footer__row.center .footer__col:last-child {
    grid-column: 1/span 2;
  }
}
.footer__description {
  font-size: 14px;
}
@media (max-width: 1024px) {
  .footer__description {
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .footer__description {
    max-width: 100%;
  }
}
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.footer__nav-link {
  color: var(--black);
}
@media (max-width: 576px) {
  .footer__nav-link {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    text-decoration: underline;
  }
}
.footer__nav-second {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.footer__nav-second-link {
  color: var(--black);
}
@media (max-width: 576px) {
  .footer__nav-second-link {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .footer__nav-second-link:hover {
    text-decoration: underline;
  }
}
.footer__nav-contacts {
  margin-bottom: 53px;
}
@media (max-width: 768px) {
  .footer__nav-contacts {
    margin-bottom: 12px;
  }
}
@media (max-width: 576px) {
  .footer__nav-contacts {
    gap: 5px;
  }
  .footer__nav-contacts a {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .footer__nav-social {
    justify-content: space-between;
  }
}
.footer__copyright {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

.numbers {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .numbers {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .numbers {
    padding: 40px 0;
  }
}
.numbers__list {
  display: grid;
  grid-template-columns: minmax(auto, 344px) minmax(auto, 344px) minmax(auto, 299px);
  margin-bottom: 80px;
  gap: 45px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .numbers__list {
    gap: 35px;
    grid-template-columns: minmax(auto, 224px) minmax(auto, 215px) minmax(auto, 219px);
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .numbers__list {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
}
.numbers__list-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.numbers__list-item:not(:last-child) {
  border-right: 3px solid #E4D8C9;
  padding-right: 45px;
}
@media (max-width: 1024px) {
  .numbers__list-item:not(:last-child) {
    padding-right: 35px;
  }
}
@media (max-width: 768px) {
  .numbers__list-item:not(:last-child) {
    border-right: none;
    padding-right: 0;
    padding-bottom: 25px;
    border-bottom: 3px solid #E4D8C9;
  }
}
.numbers__list-title {
  font-size: 80px;
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -2%;
}
@media (max-width: 1024px) {
  .numbers__list-title {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .numbers__list-title {
    font-size: 80px;
  }
}
.numbers__list-text {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .numbers__list-text {
    font-size: 16px;
  }
}
.numbers__text {
  background: #E4D8C9;
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(auto, 397px) minmax(auto, 397px);
  padding: 40px 118px;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .numbers__text {
    padding: 40px 70px;
    grid-template-columns: minmax(auto, 263px) minmax(auto, 274px);
    justify-content: center;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .numbers__text {
    padding: 40px 20px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.numbers__text-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .numbers__text-item {
    max-width: 320px;
    margin: 0 auto;
    gap: 10px;
  }
}
.numbers__text-title {
  color: #181818;
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .numbers__text-title {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .numbers__text-title {
    font-size: 18px;
  }
}
.numbers__text-subtitle {
  font-size: 19px;
  text-align: center;
}

.banner-text {
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .banner-text {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .banner-text {
    padding-bottom: 40px;
  }
}
.banner-text__container div {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .banner-text__container div {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .banner-text__container div {
    font-size: 22px;
  }
}
.banner-text__container div span {
  font-size: 50px;
  font-weight: 600;
  color: #E4B75C;
  line-height: 1;
}
@media (max-width: 768px) {
  .banner-text__container div span {
    font-size: 22px;
  }
}

.about {
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .about {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .about {
    padding-bottom: 40px;
  }
}
.about__title {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  max-width: 778px;
  margin: 0 auto 60px auto;
}
.about__title span {
  font-size: 50px;
  font-weight: 600;
  color: #E4B75C;
  line-height: 1;
}
@media (max-width: 768px) {
  .about__title {
    font-size: 22px;
  }
  .about__title span {
    font-size: 22px;
  }
}
.about__wrapper {
  display: grid;
  grid-template-columns: minmax(auto, 505px) 1fr;
  gap: 22px;
  margin-bottom: 32px;
}
@media (max-width: 1255px) {
  .about__wrapper {
    gap: 11px;
    grid-template-columns: minmax(auto, 231px) 1fr;
  }
}
@media (max-width: 768px) {
  .about__wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .about__wrapper {
    gap: 20px;
  }
}
.about__person {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (max-width: 1255px) {
  .about__person {
    gap: 27px;
  }
}
@media (max-width: 576px) {
  .about__person {
    gap: 20px;
  }
}
.about__person-item {
  background: #E4D8C9;
  padding: 9px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.about__person-item img {
  max-width: 229px;
  border-radius: 30px;
}
@media (max-width: 1255px) {
  .about__person-item img {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .about__person-item img {
    width: 100%;
  }
}
@media (max-width: 1255px) {
  .about__person-item {
    grid-template-columns: minmax(auto, 231px) 1fr;
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .about__person-item {
    align-items: flex-start;
  }
}
.about__person-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1255px) {
  .about__person-info {
    padding: 20px 21px;
  }
}
.about__person-title {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 1255px) {
  .about__person-title {
    font-size: 18px;
  }
}
.about__info {
  padding: 20px 30px;
  background: #E4D8C9;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 1255px) {
  .about__info {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .about__info {
    padding: 30px;
  }
}
.about__info-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__info-title {
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 1255px) {
  .about__info-title {
    font-size: 18px;
  }
}
.about__info-list {
  display: flex;
  gap: 12px;
}
@media (max-width: 1255px) {
  .about__info-list {
    flex-direction: column;
    gap: 8px;
  }
}
.about__info-list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__info-list ul li svg {
  flex-shrink: 0;
}
.about__info-list ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #C9B6A0;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 14px;
}
.about__list {
  background: #E4D8C9;
  border-radius: 30px;
  padding: 60px;
}
@media (max-width: 1024px) {
  .about__list {
    padding: 30px;
  }
}
.about__list h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .about__list h3 {
    font-size: 18px;
  }
}
.about__list ul {
  display: grid;
  grid-template-columns: minmax(auto, 301px) minmax(auto, 385px) minmax(auto, 283px);
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .about__list ul {
    grid-template-columns: minmax(auto, 181px) minmax(auto, 232px) minmax(auto, 171px);
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .about__list ul {
    grid-template-columns: 1fr;
    font-size: 16px;
  }
}
.about__list ul svg {
  margin-bottom: 10px;
}
.about__list ul h4 {
  font-weight: 700;
}

.cards {
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .cards {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cards {
    padding-bottom: 40px;
  }
}
.cards__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .cards__container {
    grid-template-columns: 1fr;
  }
}
.cards__item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  min-height: 535px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .cards__item {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .cards__item {
    min-height: 400px;
  }
}
.cards__title {
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .cards__title {
    font-size: 18px;
  }
}
.cards__subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cards__subtitle {
    font-size: 14px;
  }
}

.why {
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .why {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .why {
    padding-bottom: 40px;
  }
}
.why__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .why__title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .why__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.why ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .why ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.why ul li {
  display: flex;
  align-items: center;
  gap: 23px;
  background: #C9B6A0;
  padding: 28px 36px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .why ul li {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .why ul li {
    padding: 19px 10px;
    font-size: 14px;
    gap: 10px;
  }
}

.banner {
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .banner {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .banner {
    padding-bottom: 40px;
  }
}
.banner__wrapper {
  background: url("../assets/images/banner.png") center/cover no-repeat;
  padding: 100px 0;
  border-radius: 30px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .banner__wrapper {
    padding: 50px 35px;
  }
}
@media (max-width: 768px) {
  .banner__wrapper {
    padding: 40px 13px;
  }
}
.banner__wrapper p {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1017px;
  text-align: center;
  font-size: 32px;
  color: #ffffff;
  font-weight: 600;
}
.banner__wrapper p span {
  color: #E4B75C;
}
@media (max-width: 1024px) {
  .banner__wrapper p {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .banner__wrapper p {
    font-size: 22px;
  }
}
.banner .star {
  font-size: 50px;
  font-weight: 600;
  color: #E4B75C;
  line-height: 1;
}
@media (max-width: 768px) {
  .banner .star {
    font-size: 22px;
  }
}

.services {
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .services {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .services {
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .services__container {
    padding: 0;
  }
}
.services__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .services__title {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .services__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.services__cards {
  display: grid;
  grid-template-columns: minmax(auto, 392px) 1fr;
  gap: 21px;
}
@media (max-width: 1024px) {
  .services__cards {
    display: none;
  }
}
.services__cards-big {
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  padding: 30px;
}
.services__cards-big path {
  transition: transform 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .services__cards-big:hover path {
    transform: translate(3px, -3px);
  }
}
.services__cards-big div {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.services__cards-big div svg {
  flex-shrink: 0;
}
.services__cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.services__cards-item {
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  padding: 30px;
}
.services__cards-item path {
  transition: transform 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .services__cards-item:hover path {
    transform: translate(3px, -3px);
  }
}
.services__cards-item div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.services__cards-item div svg {
  flex-shrink: 0;
}
.services__slider {
  display: none;
  margin-left: 20px;
}
@media (max-width: 1024px) {
  .services__slider {
    display: flex;
    flex-direction: column;
  }
}
.services__slider .swiper {
  width: 100%;
}
.services__slider .swiper-slide {
  max-width: 320px;
}
.services__slider .swiper-slide:last-child {
  margin-right: 20px !important;
}
.services__slider-card {
  display: flex;
  align-items: flex-end;
  min-height: 387px;
  padding: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
}
.services__slider-card path {
  transition: transform 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .services__slider-card:hover path {
    transform: translate(3px, -3px);
  }
}
.services__slider-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.services__slider-card div svg {
  flex-shrink: 0;
}
.services__slider-nav {
  justify-content: center;
  margin-top: 20px;
}
.slider-nav {
  display: flex;
}
.slider-nav__button {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  margin-top: 0;
  border-radius: 14px;
}
@media (any-hover: hover) {
  .slider-nav__button:hover {
    background: rgba(228, 216, 201, 0.6);
  }
}
.slider-nav__button.swiper-button-disabled {
  opacity: 0.3;
}

.step {
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .step {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .step {
    padding-bottom: 40px;
  }
}
.step__container {
  display: flex;
  flex-direction: column;
}
.step__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  max-width: 770px;
}
@media (max-width: 1024px) {
  .step__title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .step__title {
    font-size: 32px;
  }
}
.step__description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  font-size: 18px;
  margin-bottom: 40px;
}
.step__description p {
  max-width: 477px;
}
.step__description b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .step__description {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step__description p {
    max-width: 100%;
  }
}
.step__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .step__wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.step__accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step__accordion-item {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #D8D8D8;
}
@media (max-width: 576px) {
  .step__accordion-item {
    border-radius: 15px;
  }
}
.step__accordion-item.is-active .step__accordion-trigger {
  padding-bottom: 8px;
}
.step__accordion-item.is-active .step__accordion-trigger span:last-child .open {
  display: none;
}
.step__accordion-item.is-active .step__accordion-trigger span:last-child .close {
  display: block;
}
.step__accordion-item.is-active {
  padding-bottom: 30px;
}
.step__accordion-trigger {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  border: none;
  gap: 20px;
  padding: 30px;
  width: 100%;
  transition: padding 0.5s ease-in-out;
  text-align: left;
}
@media (max-width: 576px) {
  .step__accordion-trigger {
    padding: 24px 20px;
    gap: 8px;
    font-size: 16px;
  }
  .step__accordion-trigger svg {
    width: 18px;
    height: 18px;
  }
}
.step__accordion-trigger .close {
  display: none;
}
.step__accordion-trigger span {
  font-size: 30px;
  font-weight: 600;
  color: #C9B6A0;
}
@media (max-width: 576px) {
  .step__accordion-trigger span {
    font-size: 23px;
  }
}
.step__accordion-trigger span:last-child {
  margin-left: auto;
}
.step__accordion-panel {
  overflow: hidden;
  padding: 0 30px 0 30px;
}
@media (max-width: 576px) {
  .step__accordion-panel {
    padding: 0 24px;
    font-size: 14px;
  }
}
.step__button {
  margin: 0 auto;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion__item {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #D8D8D8;
  transition: padding 0.5s ease-in-out;
}
@media (max-width: 576px) {
  .accordion__item {
    border-radius: 15px;
  }
}
.accordion__item.is-active .accordion__trigger {
  padding-bottom: 30px;
}
.accordion__item.is-active .accordion__trigger span:last-child .open {
  display: none;
}
.accordion__item.is-active .accordion__trigger span:last-child .close {
  display: block;
}
.accordion__item.is-active {
  padding-bottom: 30px;
}
.accordion__trigger {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  border: none;
  gap: 20px;
  padding: 30px;
  width: 100%;
  transition: padding 0.5s ease-in-out;
  text-align: left;
  color: var(--black);
}
.accordion__trigger > span {
  flex-shrink: 0;
  width: auto !important;
  height: auto !important;
}
.accordion__trigger > svg {
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .accordion__trigger {
    padding: 24px 20px;
    gap: 8px;
    font-size: 16px;
  }
  .accordion__trigger svg:last-child {
    width: 18px;
    height: 18px;
  }
}
.accordion__trigger .close {
  display: none;
}
.accordion__trigger span {
  font-size: 30px;
  font-weight: 600;
  color: #C9B6A0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .accordion__trigger span {
    font-size: 23px;
  }
}
.accordion__trigger span:last-child {
  margin-left: auto;
}
.accordion__panel {
  overflow: hidden;
  padding: 0 30px 0 30px;
}
@media (max-width: 576px) {
  .accordion__panel {
    padding: 0 24px;
    font-size: 14px;
  }
}

.review {
  overflow-x: hidden;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .review {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .review {
    padding-bottom: 40px;
  }
}
.review__container {
  padding: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.review__title {
  font-size: 40px;
  font-weight: 700;
  padding-left: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  order: 1;
}
@media (max-width: 1024px) {
  .review__title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .review__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.review__slider-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
  order: 3;
  width: 100%;
}
.review__slider {
  margin-left: 20px;
  clip-path: inset(0 -100vw 0 0);
}
.review__slider .swiper {
  overflow: visible !important;
}
.review__slider .swiper-slide {
  max-width: 320px;
  height: auto;
}
.review__slider .swiper-slide:last-child {
  margin-right: 20px;
}
.review__slider-nav {
  justify-content: flex-end;
  width: 100%;
  order: 2;
  max-width: var(--container-width);
  margin: 0 auto 10px auto;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .review__slider-nav {
    order: 4;
    justify-content: center;
    padding: 0;
    margin-top: 20px;
  }
}
.review__slider-card {
  border-radius: 30px;
  background: #fff;
  padding: 20px;
  border: 1px solid #D8D8D8;
  min-height: 405px;
  height: 100%;
}
.review__slider-card p {
  font-size: 14px;
  line-height: 1.6;
}
.review__slider-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
.review__slider-top-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review__slider-top-wrapper p {
  font-size: 18px;
  font-weight: 600;
}

.services-list {
  overflow-x: hidden;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .services-list {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .services-list {
    padding-bottom: 40px;
  }
}
.services-list__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}
.services-list__accordion .accordion__item {
  background: #E4D8C9;
  border: 1px solid #D8D8D8;
}
@media (max-width: 768px) {
  .services-list__accordion .accordion__trigger {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .services-list__accordion .accordion__trigger > svg {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 768px) {
  .services-list__accordion .accordion__panel {
    padding: 0 20px;
  }
}
.services-list__accordion .accordion__panel b {
  font-weight: 700;
}

.blog {
  overflow-x: hidden;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .blog {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .blog {
    padding-bottom: 40px;
  }
}
.blog__container {
  padding: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.blog__title {
  font-size: 40px;
  font-weight: 700;
  padding-left: 20px;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  order: 1;
}
@media (max-width: 1024px) {
  .blog__title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .blog__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.blog__slider-wrapper {
  max-width: var(--container-width);
  margin: 0 auto;
  order: 3;
  width: 100%;
}
.blog__slider {
  margin-left: 20px;
  clip-path: inset(0 -100vw 0 0);
}
.blog__slider .swiper {
  overflow: visible !important;
}
.blog__slider .swiper-slide {
  max-width: 387px;
}
@media (max-width: 768px) {
  .blog__slider .swiper-slide {
    max-width: 320px;
  }
}
.blog__slider .swiper-slide:last-child {
  margin-right: 20px;
}
.blog__slider-nav {
  justify-content: flex-end;
  width: 100%;
  order: 2;
  max-width: var(--container-width);
  margin: 0 auto 10px auto;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .blog__slider-nav {
    order: 4;
    justify-content: center;
    padding: 0;
    margin-top: 20px;
  }
}
.blog__slider-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
  align-items: flex-start;
  border-radius: 30px;
  background: #fff;
  padding: 40px;
  border: 1px solid #D8D8D8;
  min-height: 400px;
}
@media (max-width: 768px) {
  .blog__slider-card {
    min-height: 326px;
    padding: 20px;
  }
}
.blog__slider-card p {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.blog__slider-card a {
  padding: 12px;
  background: #E4B75C;
  border-radius: 10px;
  border: 4px solid #FFDE9A;
  color: var(--black);
  transition: background 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .blog__slider-card a:hover {
    background: #FFDE9A;
  }
}
.blog__slider-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}
.blog__slider-top-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog__slider-top-wrapper p {
  font-size: 18px;
  font-weight: 600;
}

.faq {
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .faq {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .faq {
    padding-bottom: 40px;
  }
}
.faq__wrapper {
  background: #E4D8C9;
  padding: 60px 30px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .faq__wrapper {
    padding: 30px 20px;
  }
}
.faq__title {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .faq__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.faq__accordion {
  gap: 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  .faq__accordion .accordion__trigger {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .faq__accordion .accordion__item.is-active {
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .faq__accordion .accordion__panel {
    padding: 0;
  }
}
.faq__accordion .accordion__item {
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #FFFFFF;
}

.list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.list li::before {
  content: "";
  width: 3px;
  height: 3px;
  background: var(--black);
  border-radius: 100%;
  margin-left: 10px;
}

.section__header {
  display: flex;
  align-items: center;
  min-height: 548px;
}
@media (max-width: 1024px) {
  .section__header {
    min-height: 427px;
  }
}
@media (max-width: 768px) {
  .section__header {
    min-height: 504px;
  }
}
.section__container {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section__container b {
  font-weight: 700;
}
.section__container {
  font-size: 20px;
  color: #3E3E3E;
}
@media (max-width: 1024px) {
  .section__container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .section__container {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 16px;
  }
}
.section__title {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 1024px) {
  .section__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section__title {
    font-size: 32px;
  }
}

.section1 .section__header {
  background: url("../assets/images/section_1_desktop.png") center/cover no-repeat;
}
@media (max-width: 1024px) {
  .section1 .section__header {
    background: url("../assets/images/section_1_tablet.png") center/cover no-repeat;
  }
}
@media (max-width: 768px) {
  .section1 .section__header {
    background: url("../assets/images/section_1_mobile.png") center/cover no-repeat;
  }
}

.section2 .section__header {
  background: url("../assets/images/section_2_desktop.png") center/cover no-repeat;
}
@media (max-width: 1024px) {
  .section2 .section__header {
    background: url("../assets/images/section_2_tablet.png") center/cover no-repeat;
  }
}
@media (max-width: 768px) {
  .section2 .section__header {
    background: url("../assets/images/section_2_mobile.png") center/cover no-repeat;
  }
}

.section3 .section__header {
  background: url("../assets/images/section_3_desktop.png") center/cover no-repeat;
}
@media (max-width: 1024px) {
  .section3 .section__header {
    background: url("../assets/images/section_3_tablet.png") center/cover no-repeat;
  }
}
@media (max-width: 768px) {
  .section3 .section__header {
    background: url("../assets/images/section_3_mobile.png") center/cover no-repeat;
  }
}

.section4 .section__header {
  background: url("../assets/images/section_4_desktop.png") center/cover no-repeat;
}
@media (max-width: 1024px) {
  .section4 .section__header {
    background: url("../assets/images/section_4_tablet.png") center/cover no-repeat;
  }
}
@media (max-width: 768px) {
  .section4 .section__header {
    background: url("../assets/images/section_4_mobile.png") center/cover no-repeat;
  }
}

.section5 .section__header {
  background: url("../assets/images/section_5_desktop.png") center/cover no-repeat;
}
@media (max-width: 1024px) {
  .section5 .section__header {
    background: url("../assets/images/section_5_tablet.png") center/cover no-repeat;
  }
}
@media (max-width: 768px) {
  .section5 .section__header {
    background: url("../assets/images/section_5_mobile.png") center/cover no-repeat;
  }
}

.country-select {
  position: relative;
  width: 320px;
  user-select: none;
}
.popup__field .country-select {
  width: 100%;
}
.country-select.is-error .country-select__selected {
  border-color: #e53e3e;
}

.country-select__selected {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.4);
  height: 57px;
  padding: 0 16px;
  transition: border 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .country-select__selected:hover {
    border: 1px solid rgba(0, 0, 0, 0.6);
  }
}
@media (max-width: 768px) {
  .country-select__selected {
    height: 47px;
  }
}

.country-select__selected img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.country-select__selected span {
  flex: 1;
  font-size: 14px;
  color: #7E7E7E;
}

.country-select.is-selected .country-select__selected span {
  color: #000;
}

.country-select__arrow {
  transition: transform 0.2s;
}

.country-select.open .country-select__arrow {
  transform: rotate(-180deg);
  margin-top: 4px;
}

.country-select__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  max-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.country-select.open .country-select__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.country-select__search {
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid #eee;
  outline: none;
  font-size: 14px;
  border-radius: 10px 10px 0 0;
}

.country-select__list {
  list-style: none;
  overflow-y: auto;
  flex: 1;
}

.country-select__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background 0.15s;
}

.country-select__list li:hover {
  background: #f7f7f7;
}

.country-select__list li img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.country-select__list li.active {
  background: #f0f0f0;
  font-weight: 600;
}

.country-select__empty {
  padding: 16px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.popup.is-open {
  opacity: 1;
  visibility: visible;
}
.popup.is-open .popup__content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.popup__overlay {
  background: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}
.popup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 1136px;
  flex: 1;
}
@media (max-height: 600px) {
  .popup__wrapper {
    justify-content: flex-start;
  }
}
.popup__wrapper > div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1024px) {
  .popup__wrapper > div {
    padding: 30px 40px 40px 40px;
  }
}
@media (max-width: 768px) {
  .popup__wrapper > div {
    padding: 20px;
  }
}
.popup__content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px;
  width: 100%;
  background: #E4D8C9;
  border-radius: 30px;
  transform: translateY(30px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
@media (max-width: 1024px) {
  .popup__content {
    max-width: 648px;
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .popup__content {
    padding: 20px;
  }
}
.popup__close {
  border: none;
  align-self: flex-end;
  background: transparent;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: background 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .popup__close:hover {
    background: rgba(24, 24, 24, 0.1);
  }
}
.popup__title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .popup__title {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .popup__title {
    font-size: 21px;
    text-align: center;
  }
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 1024px) {
  .popup__form {
    max-width: 473px;
    margin: 0 auto 24px auto;
  }
}
@media (max-width: 768px) {
  .popup__form {
    gap: 4px;
  }
}
.popup__form-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .popup__form-row {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .popup__form-row {
    gap: 4px;
  }
}
.popup__field {
  flex: 1;
  position: relative;
}
@media (max-width: 1024px) {
  .popup__field {
    width: 100%;
  }
}
.popup__error {
  display: none;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
}
.popup__error.is-visible {
  display: block;
}
.popup__input {
  font-size: 14px;
  padding: 0 16px;
  font-family: var(--font-family), serif;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  height: 57px;
  width: 100%;
  transition: border 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .popup__input {
    height: 47px;
  }
}
.popup__input:focus {
  outline: none;
}
@media (any-hover: hover) {
  .popup__input:hover {
    border: 1px solid rgba(0, 0, 0, 0.6);
  }
}
.popup__input::placeholder {
  color: #7E7E7E;
}
.popup__input.is-error {
  border-color: #e53e3e;
}
.popup__button {
  margin-bottom: 24px;
  align-self: flex-start;
}
@media (max-width: 1024px) {
  .popup__button {
    max-width: 473px;
    margin: 0 auto 24px auto;
    width: 100%;
    padding: 32px 10px;
  }
}
@media (max-width: 576px) {
  .popup__button {
    padding: 18px;
  }
}
.popup__policy.is-error label {
  color: #e53e3e;
}
.popup__policy.is-error label a {
  color: #e53e3e;
}
.popup__policy input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.popup__policy input:checked + label span svg {
  opacity: 1;
}
.popup__policy label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #000000;
  transition: opacity 0.2s ease-in-out;
  user-select: none;
}
.popup__policy label svg {
  opacity: 0;
}
.popup__policy label .checkbox {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #434343;
  border-radius: 4px;
  flex-shrink: 0;
}
.popup__policy label a {
  font-weight: 600;
  color: #000000;
}
@media (any-hover: hover) {
  .popup__policy label a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1024px) {
  .popup__policy label {
    max-width: 473px;
    margin: 0 auto 0 auto;
  }
}

.popup-success .popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup-success .popup__title {
  text-align: center;
}

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