:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.home {
  background-color: #21332b;
}

.hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
}
.hero::before, .hero::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42%;
  content: "";
  background: linear-gradient(0deg, rgba(9, 16, 8, 0) 0%, rgb(9, 16, 8) 100%);
}
@media screen and (width >= 768px) {
  .hero::before, .hero::after {
    height: 50%;
  }
}
@media screen and (width >= 1024px) {
  .hero::before, .hero::after {
    top: inherit;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(270deg, rgba(9, 16, 8, 0) 0%, rgba(9, 16, 8, 0.8) 100%);
  }
}
@media screen and (width >= 1024px) {
  .hero::before {
    bottom: inherit;
    top: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(0deg, rgba(9, 16, 8, 0) 0%, rgba(9, 16, 8, 0.4) 100%);
    z-index: 1;
  }
}
.hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
}
.hero__img::before, .hero__img::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  content: "";
  background: linear-gradient(180deg, rgba(9, 16, 8, 0) 0%, rgba(9, 16, 8, 0.8) 100%);
}
@media screen and (width >= 1024px) {
  .hero__img::before, .hero__img::after {
    height: 15.8vw;
  }
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .container {
  position: relative;
  height: 100%;
}
.hero__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: var(--header-height) 0 min(32px, 6.4vw) 0;
}
@media screen and (width >= 768px) {
  .hero__body {
    padding: var(--header-height) 0 4.1666666667vw 0;
  }
}
@media screen and (width >= 1024px) {
  .hero__body {
    padding: var(--header-height) 0 2.0833333333vw 0;
  }
}
.hero__title {
  font-family: "Angst", sans-serif;
  font-size: min(72px, 17.0666666667vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .hero__title {
    font-size: max(72px, 9.375vw);
  }
}
@media screen and (width >= 1024px) {
  .hero__title {
    font-size: max(68px, 6.4583333333vw);
  }
}
.hero__title {
  margin-top: min(32px, 6.4vw);
  text-transform: uppercase;
}
@media screen and (width >= 768px) {
  .hero__title {
    width: 50%;
    margin-top: 4.1666666667vw;
  }
}
@media screen and (width >= 1024px) {
  .hero__title {
    margin-top: 2.0833333333vw;
  }
}
.hero__subtitle {
  font-family: "Angst", sans-serif;
  font-size: min(72px, 17.0666666667vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .hero__subtitle {
    font-size: max(72px, 9.375vw);
  }
}
@media screen and (width >= 1024px) {
  .hero__subtitle {
    font-size: max(68px, 6.4583333333vw);
  }
}
.hero__subtitle {
  width: 100%;
  margin-left: auto;
  text-align: right;
  text-transform: uppercase;
}
@media screen and (width >= 768px) {
  .hero__subtitle {
    width: 50.1302083333vw;
  }
}
@media screen and (width >= 1024px) {
  .hero__subtitle {
    width: 50%;
  }
}
.hero .hero-down-button {
  position: absolute;
  bottom: 4.1666666667vw;
  display: none;
  gap: 1.5625vw;
  align-items: center;
  cursor: pointer;
}
@media screen and (width >= 768px) {
  .hero .hero-down-button {
    display: flex;
  }
}
@media screen and (width >= 1024px) {
  .hero .hero-down-button {
    bottom: 2.0833333333vw;
    gap: 0.625vw;
  }
}
.hero .hero-down-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.25vw;
  height: 6.25vw;
  border: 1px solid rgba(175, 144, 103, 0.2);
  border-radius: 50%;
}
@media screen and (width >= 1024px) {
  .hero .hero-down-button__icon {
    width: max(32px, 2.5vw);
    height: max(32px, 2.5vw);
  }
}
.hero .hero-down-button__icon svg {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width >= 1024px) {
  .hero .hero-down-button__icon svg {
    width: max(12px, 0.8333333333vw);
    height: max(12px, 0.8333333333vw);
  }
}
.hero .hero-down-button__text {
  font-family: "Actay Wide", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .hero .hero-down-button__text {
    font-size: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .hero .hero-down-button__text {
    font-size: max(12px, 0.625vw);
  }
}
.hero .hero-down-button__text {
  text-transform: uppercase;
}

.about {
  position: sticky;
  padding: var(--section-gap) 0;
  overflow: hidden;
  background-color: #d1b38a;
}
.about__decor-logo {
  position: absolute;
  right: max(-50px, -7.4666666667vw);
  bottom: max(-50px, -7.4666666667vw);
  width: min(242px, 43.7333333333vw);
  height: min(145px, 29.0666666667vw);
  color: #21332b;
  opacity: 0.1;
}
@media screen and (width >= 768px) {
  .about__decor-logo {
    right: -6.5104166667vw;
    bottom: -6.5104166667vw;
    width: 31.5755208333vw;
    height: 18.8802083333vw;
  }
}
@media screen and (width >= 1024px) {
  .about__decor-logo {
    right: -5.2083333333vw;
    bottom: -5.2083333333vw;
    width: 30.46875vw;
    height: 20.3125vw;
  }
}
.about__decor-logo svg {
  width: 100%;
  height: 100%;
}
.about__title {
  font-family: "Angst", sans-serif;
  font-size: min(72px, 13.8666666667vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .about__title {
    font-size: 9.375vw;
  }
}
@media screen and (width >= 1024px) {
  .about__title {
    font-size: max(54px, 5vw);
  }
}
.about__title {
  margin-top: var(--title-separator-gap);
  color: #21332b;
  text-transform: uppercase;
}
.about__body {
  display: flex;
  flex-direction: column;
  gap: min(48px, 12.8vw);
  margin-top: var(--content-title-gap);
}
@media screen and (width >= 768px) {
  .about__body {
    gap: 6.25vw;
  }
}
@media screen and (width >= 1024px) {
  .about__body {
    flex-direction: row;
    gap: 13.125vw;
  }
}
.about .about-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  max-width: 100%;
  height: min(640px, 112vw);
  overflow: hidden;
  border-radius: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .about .about-card {
    height: 83.3333333333vw;
    border-radius: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .about .about-card {
    max-width: 35.3125vw;
    height: 40.625vw;
    border-radius: 1.25vw;
  }
}
.about .about-card__img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.about .about-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about-card__body {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: min(24px, 6.4vw);
  align-items: center;
  padding: min(80px, 12.8vw) min(40px, 4.2666666667vw) min(40px, 6.4vw);
  background: linear-gradient(180deg, rgba(49, 58, 63, 0) 0%, #313a3f 100%);
}
@media screen and (width >= 768px) {
  .about .about-card__body {
    gap: 3.125vw;
    padding: 10.4166666667vw 5.2083333333vw 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .about .about-card__body {
    gap: 2.0833333333vw;
    padding: 4.1666666667vw 2.0833333333vw 2.0833333333vw;
  }
}
.about .about-card__body::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
}
.about .about-card__logo {
  width: min(70px, 12.8vw);
  height: min(46px, 8.5333333333vw);
}
@media screen and (width >= 768px) {
  .about .about-card__logo {
    width: 9.1145833333vw;
    height: 5.9895833333vw;
  }
}
@media screen and (width >= 1024px) {
  .about .about-card__logo {
    width: 3.6458333333vw;
    height: 2.3958333333vw;
  }
}
.about .about-card__logo svg {
  width: 100%;
  height: 100%;
  color: #c58e5b;
}
.about .about-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .about-card__title {
  font-family: "Actay Wide", sans-serif;
  font-size: min(32px, 6.4vw);
  font-weight: 700;
  line-height: 120%;
  color: #f6f6f6;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .about .about-card__title {
    font-size: 4.1666666667vw;
  }
}
@media screen and (width >= 1024px) {
  .about .about-card__title {
    font-size: max(24px, 1.9791666667vw);
  }
}
.about .about-card__subtitle {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .about .about-card__subtitle {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .about .about-card__subtitle {
    font-size: max(18px, 1.25vw);
  }
}
.about .about-content {
  display: flex;
  flex-direction: column;
  gap: min(40px, 10.6666666667vw);
  width: 100%;
}
@media screen and (width >= 768px) {
  .about .about-content {
    gap: 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .about .about-content {
    gap: 2.0833333333vw;
    width: 35.3125vw;
  }
}
.about .about-content__title {
  font-family: "Actay Wide", sans-serif;
  font-size: min(32px, 6.4vw);
  font-weight: 700;
  line-height: 120%;
  color: #f6f6f6;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .about .about-content__title {
    font-size: 4.1666666667vw;
  }
}
@media screen and (width >= 1024px) {
  .about .about-content__title {
    font-size: max(24px, 1.9791666667vw);
  }
}
.about .about-content__title {
  color: #21332b;
}
.about .about-content__text {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .about .about-content__text {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .about .about-content__text {
    font-size: max(18px, 1.25vw);
  }
}
.about .about-content__text {
  color: #21332b;
}

.advantages {
  position: relative;
  padding-top: var(--section-gap);
  background-color: #21332b;
}
.advantages__title {
  font-family: "Angst", sans-serif;
  font-size: min(72px, 13.8666666667vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .advantages__title {
    font-size: 9.375vw;
  }
}
@media screen and (width >= 1024px) {
  .advantages__title {
    font-size: max(54px, 5vw);
  }
}
.advantages__title {
  margin-top: var(--title-separator-gap);
}
.advantages__list {
  position: relative;
  display: flex;
  flex-direction: column;
}
.advantages .advantages-card {
  position: sticky;
  top: calc(var(--header-height) + var(--container-size));
  display: grid;
  grid-template-columns: 1fr;
  gap: min(24px, 6.4vw);
  align-items: center;
  padding: min(24px, 4.2666666667vw);
  margin-top: var(--content-title-gap);
  overflow: hidden;
  background-color: #21332b;
  border: 1px solid rgba(175, 144, 103, 0.2);
  border-radius: min(24px, 4.2666666667vw);
  transform: translateZ(0);
  will-change: transform, opacity;
}
@media screen and (width >= 768px) {
  .advantages .advantages-card {
    gap: 3.125vw;
    padding: 3.125vw;
    border-radius: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .advantages .advantages-card {
    grid-template-columns: 38% 1fr;
    gap: 0;
    padding: 1.0416666667vw 1.0416666667vw 1.0416666667vw 0;
    border-radius: 1.25vw;
  }
}
.advantages .advantages-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(348px, 185.6vw);
  height: min(348px, 185.6vw);
  content: "";
  background: rgba(228, 195, 149, 0.1);
  background-color: rgba(228, 195, 149, 0.1);
  transform: translateX(-50%) translateY(-50%);
  background: radial-gradient(circle, rgba(228, 195, 149, 0.15) 0%, transparent 70%);
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (width >= 768px) {
  .advantages .advantages-card::before {
    width: 90.625vw;
    height: 90.625vw;
  }
}
@media screen and (width >= 1024px) {
  .advantages .advantages-card::before {
    width: 48.3333333333vw;
    height: 48.3333333333vw;
  }
}
.advantages .advantages-card__bg-decor {
  position: absolute;
  top: 0;
  left: 0;
}
.advantages .advantages-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  order: 1;
}
@media screen and (width >= 1024px) {
  .advantages .advantages-card__content {
    order: 0;
    margin: 0 4.6875vw;
  }
}
.advantages .advantages-card__logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  width: min(34px, 9.0666666667vw);
  height: min(23px, 6.1333333333vw);
  color: #c58e5b;
}
@media screen and (width >= 768px) {
  .advantages .advantages-card__logo {
    width: 4.4270833333vw;
    height: 2.9947916667vw;
  }
}
@media screen and (width >= 1024px) {
  .advantages .advantages-card__logo {
    position: static;
    top: inherit;
    right: inherit;
    width: 3.6458333333vw;
    height: 2.3958333333vw;
  }
}
.advantages .advantages-card__logo svg {
  width: 100%;
  height: 100%;
}
.advantages .advantages-card__subtitle {
  font-family: "Actay Wide", sans-serif;
  font-size: min(32px, 6.4vw);
  font-weight: 700;
  line-height: 120%;
  color: #f6f6f6;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .advantages .advantages-card__subtitle {
    font-size: 4.1666666667vw;
  }
}
@media screen and (width >= 1024px) {
  .advantages .advantages-card__subtitle {
    font-size: max(24px, 1.9791666667vw);
  }
}
.advantages .advantages-card__subtitle {
  width: min(597px, 68.5333333333vw);
  margin-top: min(20px, 3.7333333333vw);
}
@media screen and (width >= 768px) {
  .advantages .advantages-card__subtitle {
    width: 77.734375vw;
    margin-top: 2.6041666667vw;
  }
}
@media screen and (width >= 1024px) {
  .advantages .advantages-card__subtitle {
    width: 100%;
    margin-top: 1.0416666667vw;
  }
}
.advantages .advantages-card__lead {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .advantages .advantages-card__lead {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .advantages .advantages-card__lead {
    font-size: max(18px, 1.25vw);
  }
}
.advantages .advantages-card__lead {
  color: #f6f6f6;
}
.advantages .advantages-card__text {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .advantages .advantages-card__text {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .advantages .advantages-card__text {
    font-size: max(18px, 1.25vw);
  }
}
.advantages .advantages-card__text {
  margin-top: min(20px, 3.7333333333vw);
}
@media screen and (width >= 768px) {
  .advantages .advantages-card__text {
    margin-top: 2.6041666667vw;
  }
}
@media screen and (width >= 1024px) {
  .advantages .advantages-card__text {
    margin-top: 1.0416666667vw;
  }
}
.advantages .advantages-card__img {
  position: relative;
  order: 0;
  width: 100%;
  height: min(370px, 53.3333333333vw);
  overflow: hidden;
  border-radius: min(12px, 2.1333333333vw);
}
@media screen and (width >= 768px) {
  .advantages .advantages-card__img {
    height: 48.1770833333vw;
    border-radius: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .advantages .advantages-card__img {
    order: 1;
    height: 34.5833333333vw;
    border-radius: 0.625vw;
  }
}
.advantages .advantages-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery {
  position: relative;
  padding-top: var(--section-gap);
  background-color: #21332b;
}
.gallery__body {
  width: 100%;
  height: 64svh;
  padding: 0;
  overflow: hidden;
}
@media screen and (width >= 1024px) {
  .gallery__body {
    height: calc(100svh - var(--header-height));
    padding: 0 2.0833333333vw;
  }
}
.gallery__prev, .gallery__next {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.gallery__prev {
  left: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .gallery__prev {
    left: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .gallery__prev {
    left: 4.1666666667vw;
  }
}
@media (hover: hover) {
  .gallery__prev:hover {
    transform: translateY(-50%) scale(1.05);
  }
}
.gallery__prev:active {
  transform: translateY(-50%) scale(0.95);
}
.gallery__next {
  right: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .gallery__next {
    right: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .gallery__next {
    right: 4.1666666667vw;
  }
}
@media (hover: hover) {
  .gallery__next:hover {
    transform: translateY(-50%) scale(1.05);
  }
}
.gallery__next:active {
  transform: translateY(-50%) scale(0.95);
}
.gallery__source {
  position: absolute;
  bottom: min(40px, 4.2666666667vw);
  z-index: 2;
  display: none;
  gap: min(8px, 2.1333333333vw);
  align-items: center;
  width: 100%;
  padding: 0 min(24px, 4.2666666667vw);
  padding-top: 10px;
  margin-top: -10px;
  overflow: auto visible;
  scrollbar-width: none;
}
.gallery__source::-webkit-scrollbar {
  display: none;
}
@media screen and (width >= 768px) {
  .gallery__source {
    bottom: 5.2083333333vw;
    left: 50%;
    gap: 1.0416666667vw;
    width: auto;
    transform: translateX(-50%);
  }
}
@media screen and (width >= 1024px) {
  .gallery__source {
    bottom: 2.0833333333vw;
    gap: 0.4166666667vw;
  }
}
.gallery__source-button {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .gallery__source-button {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .gallery__source-button {
    font-size: max(14px, 0.9375vw);
  }
}
.gallery__source-button {
  padding: min(8px, 2.1333333333vw) min(20px, 5.3333333333vw);
  color: #21332b;
  text-wrap: nowrap;
  background-color: #fff;
  border-radius: min(100px, 26.6666666667vw);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  will-change: transform;
}
@media screen and (width >= 768px) {
  .gallery__source-button {
    padding: 1.0416666667vw 2.6041666667vw;
    border-radius: 13.0208333333vw;
  }
}
@media screen and (width >= 1024px) {
  .gallery__source-button {
    padding: 0.4166666667vw 1.0416666667vw;
    border-radius: 5.2083333333vw;
  }
}
.gallery__source-button--active {
  color: #fff;
  background-color: #c58e5b;
}
@media (hover: hover) {
  .gallery__source-button:hover {
    transform: translateY(-10%);
  }
}
.gallery__source-button:active {
  transform: scale(0.95);
}
.gallery__active-source {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #c58e5b;
}
.gallery__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.5s ease-in-out;
}
@media screen and (width >= 768px) {
  .gallery__img {
    border-radius: 1.171875vw;
  }
}
@media screen and (width >= 1024px) {
  .gallery__img {
    border-radius: 1.25vw;
  }
}
.gallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__img.swiper-slide-active {
  transform: scale(1);
}
.gallery__img.swiper-slide-prev, .gallery__img.swiper-slide-next {
  transform: scale(0.85);
}

.planing {
  top: calc(-1 * var(--header-height));
  position: sticky;
  padding: var(--section-gap) 0;
  background-color: #21332b;
}
.planing__title {
  font-family: "Angst", sans-serif;
  font-size: min(72px, 13.8666666667vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .planing__title {
    font-size: 9.375vw;
  }
}
@media screen and (width >= 1024px) {
  .planing__title {
    font-size: max(54px, 5vw);
  }
}
.planing__title {
  margin-top: var(--title-separator-gap);
}
.planing__body {
  padding: 0 min(24px, 6.4vw);
}
@media screen and (width >= 768px) {
  .planing__body {
    padding: 0 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .planing__body {
    padding: 0 2.0833333333vw;
    margin-top: var(--content-title-gap);
  }
}
.planing__list {
  margin-top: min(24px, 6.4vw);
}
@media screen and (width >= 768px) {
  .planing__list {
    margin-top: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .planing__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.0416666667vw;
    min-height: 29.6354166667vw;
    margin-top: 0;
  }
}
.planing .planing-nav {
  position: relative;
  display: none;
  flex-direction: column;
  padding: 2.0833333333vw;
  overflow: hidden;
  border: 1px solid rgba(175, 144, 103, 0.2);
  border-radius: 1.25vw;
}
@media screen and (width >= 1024px) {
  .planing .planing-nav {
    display: flex;
  }
}
.planing .planing-nav::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25.7291666667vw;
  height: 25.7291666667vw;
  content: "";
  background: rgba(228, 195, 149, 0.1);
  border-radius: 50%;
  filter: blur(10.9375vw);
  transform: translateX(50%) translateY(50%);
}
.planing .planing-nav__img {
  position: absolute;
  inset: 0;
}
.planing .planing-nav__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.planing .planing-nav__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.0416666667vw;
}
.planing .planing-nav__button {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .planing .planing-nav__button {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-nav__button {
    font-size: max(14px, 0.9375vw);
  }
}
.planing .planing-nav__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5625vw;
  cursor: pointer;
  background-color: #21332b;
  border: 1px solid rgba(175, 144, 103, 0.2);
  border-radius: 0.625vw;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) {
  .planing .planing-nav__button:hover {
    background-color: color-mix(in srgb, #21332b, white 10%);
  }
}
.planing .planing-nav__button--active {
  background-color: #af9067;
}
@media (hover: hover) {
  .planing .planing-nav__button--active:hover {
    background-color: color-mix(in srgb, #af9067, white 10%);
  }
}
.planing .planing-nav__button:active {
  transform: scale(0.95);
}
.planing .planing-nav__footer {
  position: relative;
  margin-top: auto;
}
.planing .planing-nav__label {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .planing .planing-nav__label {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-nav__label {
    font-size: max(14px, 0.9375vw);
  }
}
.planing .planing-nav__label {
  margin-top: 2.0833333333vw;
  text-align: center;
}
.planing .planing-nav-mobile {
  display: flex;
  gap: min(12px, 2.1333333333vw);
  align-items: center;
  width: 100%;
  padding: 0 min(24px, 6.4vw);
  margin-top: var(--content-title-gap);
  overflow-x: auto;
  scrollbar-width: none;
}
.planing .planing-nav-mobile::-webkit-scrollbar {
  display: none;
}
@media screen and (width >= 768px) {
  .planing .planing-nav-mobile {
    gap: 1.5625vw;
    padding: 0 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-nav-mobile {
    display: none;
  }
}
.planing .planing-nav-mobile__button {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .planing .planing-nav-mobile__button {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-nav-mobile__button {
    font-size: max(14px, 0.9375vw);
  }
}
.planing .planing-nav-mobile__button {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  justify-content: center;
  padding: min(20px, 5.3333333333vw);
  cursor: pointer;
  background: #21332b;
  border: 1px solid rgba(175, 144, 103, 0.2);
  border-radius: min(12px, 3.2vw);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media screen and (width >= 768px) {
  .planing .planing-nav-mobile__button {
    padding: 2.6041666667vw;
    border-radius: 1.5625vw;
  }
}
@media (hover: hover) {
  .planing .planing-nav-mobile__button:hover {
    background-color: color-mix(in srgb, #21332b, white 10%);
  }
}
.planing .planing-nav-mobile__button--active {
  background-color: #af9067;
}
@media (hover: hover) {
  .planing .planing-nav-mobile__button--active:hover {
    background-color: color-mix(in srgb, #af9067, white 10%);
  }
}
.planing .planing-nav-mobile__button:active {
  transform: scale(0.95);
}
.planing .planing-card {
  overflow: hidden;
  width: 100%;
  max-width: min(380px, 89.3333333333vw);
  height: 100%;
  background: #21332b;
  border: 1px solid rgba(175, 144, 103, 0.2);
  border-radius: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .planing .planing-card {
    max-width: 49.4791666667vw;
    border-radius: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-card {
    max-width: inherit;
    border-radius: 1.25vw;
  }
}
.planing .planing-card__body {
  display: flex;
  flex-direction: column;
  gap: min(24px, 6.4vw);
  padding: min(24px, 6.4vw);
  background-color: #dee0df;
}
@media screen and (width >= 768px) {
  .planing .planing-card__body {
    gap: 3.125vw;
    padding: 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-card__body {
    gap: 2.0833333333vw;
    padding: 2.0833333333vw;
  }
}
.planing .planing-card__img {
  height: min(220px, 58.6666666667vw);
}
@media screen and (width >= 768px) {
  .planing .planing-card__img {
    height: 28.6458333333vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-card__img {
    height: 13.125vw;
  }
}
.planing .planing-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.planing .planing-card__stats {
  display: flex;
  flex-direction: column;
  gap: min(4px, 1.0666666667vw);
  align-items: center;
  justify-content: center;
}
@media screen and (width >= 768px) {
  .planing .planing-card__stats {
    gap: 0.5208333333vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-card__stats {
    gap: 0.625vw;
  }
}
.planing .planing-card__title {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .planing .planing-card__title {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-card__title {
    font-size: max(18px, 1.25vw);
  }
}
.planing .planing-card__title {
  color: #21332b;
}
.planing .planing-card__value {
  font-family: "Actay Wide", sans-serif;
  font-size: min(32px, 6.4vw);
  font-weight: 700;
  line-height: 120%;
  color: #f6f6f6;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .planing .planing-card__value {
    font-size: 4.1666666667vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-card__value {
    font-size: max(24px, 1.9791666667vw);
  }
}
.planing .planing-card__value {
  color: #21332b;
}
.planing .planing-card__footer {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .planing .planing-card__footer {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-card__footer {
    font-size: max(14px, 0.9375vw);
  }
}
.planing .planing-card__footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(28px, 6.4vw) min(40px, 10.6666666667vw);
  overflow: hidden;
  cursor: pointer;
  border-top: 1px solid rgba(175, 144, 103, 0.2);
}
@media screen and (width >= 768px) {
  .planing .planing-card__footer {
    padding: 3.6458333333vw 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .planing .planing-card__footer {
    padding: 2.0833333333vw;
  }
}
.planing .planing-card__footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  background-color: #c58e5b;
  border-radius: 50%;
  filter: blur(24px);
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.4s ease, height 0.4s ease, width 0.4s ease, left 0.4s ease;
}
@media (hover: hover) {
  .planing .planing-card__footer:hover::before {
    width: 200%;
    height: 250%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.planing .planing-card__footer span {
  position: relative;
  z-index: 1;
}

.conditions {
  position: sticky;
  padding: var(--section-gap) 0;
  background-color: #d1b38a;
}
.conditions__title {
  font-family: "Angst", sans-serif;
  font-size: min(72px, 13.8666666667vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .conditions__title {
    font-size: 9.375vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions__title {
    font-size: max(54px, 5vw);
  }
}
.conditions__title {
  display: none;
  margin-top: var(--title-separator-gap);
  color: #21332b;
}
@media screen and (width >= 768px) {
  .conditions__title {
    display: block;
  }
}
.conditions__title--mobile {
  display: block;
}
@media screen and (width >= 768px) {
  .conditions__title--mobile {
    display: none;
  }
}
.conditions__body-container {
  width: 100%;
  padding: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .conditions__body-container {
    padding: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions__body-container {
    padding: 2.0833333333vw;
  }
}
.conditions__body {
  display: grid;
  gap: min(12px, 2.1333333333vw);
  height: 100%;
  min-height: min(692px, 157.3333333333vw);
  margin-top: var(--content-title-gap);
}
@media screen and (width >= 768px) {
  .conditions__body {
    display: flex;
    gap: 0;
    min-height: 90.1041666667vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions__body {
    display: grid;
    grid-template-columns: 62vw 1fr;
    gap: 1.0416666667vw;
    min-height: initial;
  }
}
.conditions .conditions-card-wide {
  position: relative;
  display: flex;
  flex-direction: column;
  order: 1;
  width: 100%;
  height: initial;
  padding: min(40px, 6.4vw);
  overflow: hidden;
  background-color: #21332b;
  border-radius: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-wide {
    width: 81.7708333333vw;
    padding: 5.2083333333vw;
    border-radius: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-wide {
    order: inherit;
    width: inherit;
    padding: 2.0833333333vw;
    border-radius: 1.25vw;
  }
}
.conditions .conditions-card-wide__decor-el {
  position: absolute;
  right: -3.2552083333vw;
  bottom: -3.2552083333vw;
  display: none;
  width: 19.0104166667vw;
  height: 12.7604166667vw;
  content: "";
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-wide__decor-el {
    display: block;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-wide__decor-el {
    right: -1.3vw;
    bottom: -1.35vw;
    width: 7.6vw;
    height: 5.1vw;
  }
}
.conditions .conditions-card-wide__decor-el svg {
  width: 100%;
  height: 100%;
  color: #c58e5b;
  opacity: 0.1;
}
.conditions .conditions-card-wide__title {
  font-family: "Actay Wide", sans-serif;
  font-size: min(32px, 6.4vw);
  font-weight: 700;
  line-height: 120%;
  color: #f6f6f6;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-wide__title {
    font-size: 4.1666666667vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-wide__title {
    font-size: max(24px, 1.9791666667vw);
  }
}
.conditions .conditions-card-wide__list {
  display: grid;
  grid-template-rows: 1fr;
  gap: min(24px, 4.2666666667vw);
  margin-top: min(40px, 7.4666666667vw);
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-wide__list {
    gap: 3.125vw;
    margin-top: 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-wide__list {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2.0833333333vw;
    margin-top: 2.0833333333vw;
  }
}
.conditions .conditions-card-wide__item {
  display: flex;
  gap: min(20px, 5.3333333333vw);
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-wide__item {
    gap: 2.6041666667vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-wide__item {
    gap: 1.0416666667vw;
  }
}
.conditions .conditions-card-wide__icon {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-wide__icon {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-wide__icon {
    font-size: max(14px, 0.9375vw);
  }
}
.conditions .conditions-card-wide__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(42px, 6.4vw);
  height: 100%;
  max-height: min(42px, 6.4vw);
  font-size: min(12px, 4.8vw);
  background-color: #c58e5b;
  border-radius: 50%;
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-wide__icon {
    max-width: 5.46875vw;
    max-height: 5.46875vw;
    font-size: 2.34375vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-wide__icon {
    max-width: max(30px, 2.1875vw);
    max-height: max(30px, 2.1875vw);
    font-size: max(14px, 0.9375vw);
  }
}
.conditions .conditions-card-wide__text {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-wide__text {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-wide__text {
    font-size: max(18px, 1.25vw);
  }
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-wide__text {
    margin-top: 1.4322916667vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-wide__text {
    margin-top: 0.5729166667vw;
  }
}
.conditions .conditions-card-wide__button {
  margin-top: min(40px, 10.6666666667vw);
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-wide__button {
    margin-top: auto;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-wide__button {
    margin-top: 4.1666666667vw;
  }
}
.conditions .conditions-card-high {
  position: relative;
  order: 0;
  width: 100%;
  height: 157.3333333333vw;
  overflow: hidden;
  background-color: #21332b;
  border-radius: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high {
    width: 81.7708333333vw;
    height: initial;
    border-radius: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-high {
    grid-row: 1/3;
    grid-column: 2/3;
    order: inherit;
    width: inherit;
    border-radius: 1.25vw;
  }
}
.conditions .conditions-card-high__bg-decor {
  position: absolute;
  inset: 0;
}
.conditions .conditions-card-high__bg-decor::before {
  position: absolute;
  bottom: -72.5333333333vw;
  left: -16vw;
  width: calc(100% + 72.8vw);
  height: calc(100% + 72.8vw);
  content: "";
  background: #e4c395;
  background: radial-gradient(circle at center, rgb(228, 195, 149) 0%, rgba(228, 195, 149, 0) 80%, transparent 100%);
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__bg-decor::before {
    bottom: -52.34375vw;
    left: -5.7291666667vw;
    width: calc(100% + 52.34375vw);
    height: calc(100% + 52.34375vw);
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-high__bg-decor::before {
    bottom: -12.1875vw;
    left: -2.6vw;
    width: calc(100% + 15.3125vw);
    height: calc(100% + 15.3125vw);
  }
}
.conditions .conditions-card-high__building {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.conditions .conditions-card-high__building img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.conditions .conditions-card-high__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.conditions .conditions-card-high__top {
  display: flex;
  flex-direction: column;
  padding: min(40px, 6.4vw);
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__top {
    padding: 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-high__top {
    padding: 2.0833333333vw;
  }
}
.conditions .conditions-card-high__title {
  font-family: "Actay Wide", sans-serif;
  font-size: min(32px, 6.4vw);
  font-weight: 700;
  line-height: 120%;
  color: #f6f6f6;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__title {
    font-size: 4.1666666667vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-high__title {
    font-size: max(24px, 1.9791666667vw);
  }
}
.conditions .conditions-card-high__subtitle {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__subtitle {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-high__subtitle {
    font-size: max(18px, 1.25vw);
  }
}
.conditions .conditions-card-high__subtitle {
  margin-top: min(40px, 7.4666666667vw);
  font-size: min(20px, 4.8vw);
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__subtitle {
    font-family: "Actay", sans-serif;
    font-size: min(24px, 4.8vw);
    font-weight: 400;
    line-height: 140%;
    color: #ccc;
    letter-spacing: -0.02em;
    margin-top: 5.2083333333vw;
  }
}
@media screen and (width >= 768px) and (width >= 768px) {
  .conditions .conditions-card-high__subtitle {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 768px) and (width >= 1024px) {
  .conditions .conditions-card-high__subtitle {
    font-size: max(18px, 1.25vw);
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-high__subtitle {
    margin-top: 2.0833333333vw;
  }
}
.conditions .conditions-card-high__text {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-high__text {
    font-size: max(14px, 0.9375vw);
  }
}
.conditions .conditions-card-high__text {
  position: relative;
  margin-top: min(24px, 6.4vw);
  text-align: center;
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__text {
    margin-top: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-high__text {
    margin-top: 2.0833333333vw;
  }
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__text--mobile {
    display: none;
  }
}
.conditions .conditions-card-high__text--desktop {
  display: none;
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__text--desktop {
    display: block;
  }
}
.conditions .conditions-card-high__logo {
  position: relative;
}
.conditions .conditions-card-high__button {
  margin-top: min(48px, 10.6666666667vw);
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__button {
    margin-top: 6.25vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-high__button {
    margin-top: 4.1666666667vw;
  }
}
.conditions .conditions-card-high__bottom {
  position: relative;
  padding: min(72px, 7.4666666667vw) min(40px, 4.2666666667vw) min(40px, 6.4vw);
  background: linear-gradient(180deg, rgba(49, 58, 63, 0) 0%, rgba(49, 58, 63, 0.8) 85%, #313a3f 100%);
}
@media screen and (width >= 768px) {
  .conditions .conditions-card-high__bottom {
    padding: 9.375vw 5.2083333333vw 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .conditions .conditions-card-high__bottom {
    padding: 2.9166666667vw 2.0833333333vw 2.0833333333vw;
  }
}
.conditions .conditions-card-high__bottom::before {
  position: absolute;
  inset: 0;
  content: "";
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0.9) 40%, rgb(255, 255, 255) 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0.9) 40%, rgb(255, 255, 255) 100%);
}

.progress {
  position: relative;
  padding: var(--section-gap) 0;
  background-color: #21332b;
}
.progress__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--title-separator-gap);
}
.progress__title {
  font-family: "Angst", sans-serif;
  font-size: min(72px, 13.8666666667vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .progress__title {
    font-size: 9.375vw;
  }
}
@media screen and (width >= 1024px) {
  .progress__title {
    font-size: max(54px, 5vw);
  }
}
.progress__navigation {
  display: none;
  gap: 0.4166666667vw;
  align-items: center;
}
@media screen and (width >= 1024px) {
  .progress__navigation {
    display: flex;
  }
}
.progress__list {
  padding: 0 min(24px, 4.2666666667vw);
  margin-top: var(--content-title-gap);
}
@media screen and (width >= 768px) {
  .progress__list {
    padding: 0 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .progress__list {
    padding: 0 2.0833333333vw;
  }
}
.progress .progress-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  width: 100%;
  max-width: min(381px, 89.3333333333vw);
  height: min(478px, 112vw);
  overflow: hidden;
  cursor: pointer;
  border-radius: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .progress .progress-card {
    max-width: 49.609375vw;
    height: 62.2395833333vw;
    border-radius: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .progress .progress-card {
    max-width: 25vw;
    height: 34vw;
    border-radius: 1.25vw;
  }
}
@media (hover: hover) {
  .progress .progress-card:hover img {
    transform: scale(1.2);
  }
  .progress .progress-card:hover .progress-card__footer {
    color: #fff;
  }
  .progress .progress-card:hover .progress-card__footer::before {
    width: 200%;
    height: 250%;
    transform: translateX(-50%) translateY(-50%);
  }
}
.progress .progress-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.progress .progress-card__img {
  position: absolute;
  inset: 0;
}
.progress .progress-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3.125vw;
  transition: transform 0.5s ease;
}
@media screen and (width >= 1024px) {
  .progress .progress-card__img img {
    border-radius: 1.25vw;
  }
}
.progress .progress-card__footer {
  font-family: "Actay Wide", sans-serif;
  font-size: min(32px, 6.4vw);
  font-weight: 700;
  line-height: 120%;
  color: #f6f6f6;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .progress .progress-card__footer {
    font-size: 4.1666666667vw;
  }
}
@media screen and (width >= 1024px) {
  .progress .progress-card__footer {
    font-size: max(24px, 1.9791666667vw);
  }
}
.progress .progress-card__footer {
  position: relative;
  display: flex;
  justify-content: center;
  padding: min(28px, 6.4vw);
  overflow: hidden;
  border: 1px solid rgba(175, 144, 103, 0.2);
  border-radius: 0 0 min(24px, 4.2666666667vw) min(24px, 4.2666666667vw);
  transition: color 0.4s ease;
}
@media screen and (width >= 768px) {
  .progress .progress-card__footer {
    padding: 3.6458333333vw;
    border-radius: 0 0 3.125vw 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .progress .progress-card__footer {
    padding: 2.0833333333vw 1.4583333333vw;
    border-radius: 0 0 1.25vw 1.25vw;
  }
}
.progress .progress-card__footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  background-color: #c58e5b;
  border-radius: 50%;
  filter: blur(24px);
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.4s ease, height 0.4s ease, width 0.4s ease, left 0.4s ease;
}
.progress .progress-card__footer span {
  position: relative;
  z-index: 1;
}
.progress .progress-card .progress-card-logo {
  position: relative;
  padding: 4.2666666667vw;
}
@media screen and (width >= 768px) {
  .progress .progress-card .progress-card-logo {
    padding: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .progress .progress-card .progress-card-logo {
    padding: 1.4583333333vw 2.0833333333vw;
  }
}
.progress .progress-card .progress-card-nav {
  position: relative;
  display: flex;
  gap: min(12px, 3.2vw);
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: min(40px, 10.6666666667vw);
  padding-bottom: min(24px, 6.4vw);
  background: linear-gradient(180deg, rgba(49, 58, 63, 0) 0%, #313a3f 100%);
}
@media screen and (width >= 768px) {
  .progress .progress-card .progress-card-nav {
    gap: 1.5625vw;
    padding-top: 5.2083333333vw;
    padding-bottom: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .progress .progress-card .progress-card-nav {
    gap: 0.625vw;
    padding-top: 4.1666666667vw;
    padding-bottom: 2.0833333333vw;
  }
}
.progress .progress-card .progress-card-nav::before {
  position: absolute;
  inset: 0;
  content: "";
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.8) 50%, rgb(255, 255, 255) 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.2) 10%, rgba(255, 255, 255, 0.8) 50%, rgb(255, 255, 255) 100%);
}
.progress .progress-card .progress-card-nav__value {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .progress .progress-card .progress-card-nav__value {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .progress .progress-card .progress-card-nav__value {
    font-size: max(14px, 0.9375vw);
  }
}
.progress .progress-card .progress-card-nav__value {
  position: relative;
  display: none;
}
.progress .progress-card .progress-card-nav__prev, .progress .progress-card .progress-card-nav__next {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: min(16px, 4.2666666667vw);
  height: min(16px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .progress .progress-card .progress-card-nav__prev, .progress .progress-card .progress-card-nav__next {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .progress .progress-card .progress-card-nav__prev, .progress .progress-card .progress-card-nav__next {
    width: 0.8333333333vw;
    height: 0.8333333333vw;
  }
}
.progress .progress-card .progress-card-nav__prev {
  transform: rotate(90deg);
}
.progress .progress-card .progress-card-nav__next {
  transform: rotate(270deg);
}

.progress-popup.modal--open .progress-popup__body {
  transform: scale(1);
}
.progress-popup .modal__body {
  width: 100%;
  height: 100%;
}
@media screen and (width >= 1024px) {
  .progress-popup .modal__body {
    width: auto;
  }
}
.progress-popup .modal__close {
  z-index: 2;
}
.progress-popup__body {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.progress-popup__prev, .progress-popup__next {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .progress-popup__prev:hover, .progress-popup__next:hover {
    filter: brightness(1.1);
    transform: translateY(-50%) scale(1.05);
  }
}
.progress-popup__prev:active, .progress-popup__next:active {
  transform: translateY(-50%) scale(0.95);
}
.progress-popup__prev {
  left: 3.125vw;
}
@media screen and (width >= 1024px) {
  .progress-popup__prev {
    left: 2.0833333333vw;
  }
}
.progress-popup__next {
  right: 3.125vw;
}
@media screen and (width >= 1024px) {
  .progress-popup__next {
    right: 2.0833333333vw;
  }
}
.progress-popup .slides-counter {
  font-family: "Actay Wide", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .progress-popup .slides-counter {
    font-size: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .progress-popup .slides-counter {
    font-size: max(12px, 0.625vw);
  }
}
.progress-popup .slides-counter {
  position: absolute;
  bottom: min(24px, 4.2666666667vw);
  left: 50%;
  z-index: 2;
  display: flex;
  gap: min(4px, 1.0666666667vw);
  align-items: center;
  justify-content: center;
  padding: min(8px, 2.1333333333vw) min(16px, 4.2666666667vw);
  background-color: #af9067;
  border-radius: min(100px, 26.6666666667vw);
  transform: translateX(-50%);
}
@media screen and (width >= 768px) {
  .progress-popup .slides-counter {
    bottom: 3.125vw;
    gap: 0.5208333333vw;
    padding: 1.0416666667vw 2.0833333333vw;
    border-radius: 13.0208333333vw;
  }
}
@media screen and (width >= 1024px) {
  .progress-popup .slides-counter {
    bottom: 1.4583333333vw;
    gap: 0.5208333333vw;
    padding: 0.4166666667vw 0.8333333333vw;
    border-radius: 5.2083333333vw;
  }
}
.progress-popup__img {
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.progress-popup__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (width >= 768px) {
  .progress-popup__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (width >= 1024px) {
  .progress-popup__img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.progress-popup__img.swiper-slide-active {
  transform: scale(1);
}
.progress-popup__img.swiper-slide-prev, .progress-popup__img.swiper-slide-next {
  transform: scale(0.8);
}