:root {
  --content-width: 1765px;
  --container-offset: 16px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --timing-function: cubic-bezier(.4, 0, .2, 1);
  --animation-time: 0.3s;
  --inter-tight: "Inter", sans-serif;
  --inter: "Inter", sans-serif;
  --mont: "Montserrat", sans-serif;
  --header-height: 89px;
  --black: #090a0a;
  --black20: #090a0a33;
  --black30: #090a0a4d;
  --black40: #090a0a66;
  --black50: #090a0a80;
  --black60: #090a0a99;
  --black70: #090a0ab3;
  --black80: #090a0acc;
  --grey: #404747;
  --grey10: #4047471a;
  --grey20: #40474733;
  --grey30: #4047474d;
  --grey50: #40474780;
  --grey60: #40474799;
  --orange: #e34f34;
  --orange50: #e34f3480;
  --white: #f7f6f5;
  --white50: #ffffffcd;
  --ice: #ffffff;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked+.custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus+.custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled+.custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/MontserratRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

.grecaptcha-badge {
  z-index: 2;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.orange-text {
  color: var(--orange) !important;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.container-gutter--68 {
  padding-top: 68px;
  padding-bottom: 68px;
}

@media (max-width: 550px) {
  .container-gutter--68 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.dot-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 50px;
}

.dot-title::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--grey);
  margin-right: 10px;
  margin-bottom: 3px;
  border-radius: 50%;
}

.dot-title span,
.dot-title h1,
.dot-title h2,
.dot-title h3,
.dot-title h4,
.dot-title h5,
.dot-title h6 {
  margin: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.811rem + 0.285vw, 1.125rem);
  line-height: 100%;
  text-transform: uppercase;
  color: var(--grey);
}

.title-h1 {
  margin: 0;
  font-size: clamp(1.75rem, 0.597rem + 5.125vw, 6.25rem);
  font-family: var(--mont);
  font-weight: 400;
  line-height: 120%;
  color: var(--white);
}

.section-title {
  margin: 0;
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.109rem + 2.847vw, 4.25rem);
  line-height: 100%;
  text-align: right;
  color: var(--black);
}

.section-title span {
  color: var(--orange);
}

.arrow__btn--new {
  cursor: pointer;
  outline: 0;
  border: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--orange);
  padding: 0.5rem;
  border-radius: 100px;
  max-width: 381px;
  min-width: 375px;
  -webkit-transition: background-color var(--timing-function) 0.2s;
  transition: background-color var(--timing-function) 0.2s;
}

.arrow__btn--new:hover {
  background: var(--ice) !important;
}

.arrow__btn--new:hover .arrow__btn-text--new {
  color: var(--orange);
}

.arrow__btn--new:hover .arrow__btn-icn--new {
  background: var(--orange);
  stroke: var(--ice);
}

@media (max-width: 1024px) {
  .arrow__btn--new {
    /* margin-left: auto; */
  }
}

@media (max-width: 550px) {
  .arrow__btn--new {
    margin-left: 0;
    min-width: unset;
  }
}

.arrow__btn-text--new {
  font-family: var(--inter);
  font-weight: 500;
  font-size: clamp(0.875rem, 0.843rem + 0.142vw, 1rem);
  line-height: 120%;
  padding-left: 1.25rem;
  padding-right: 2.25rem;
  color: var(--ice);
  margin-right: auto;
}

.arrow__btn-icn--new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px;
  font-size: 0;
  line-height: 1;
  stroke: var(--orange);
  background: var(--ice);
  border-radius: 50%;
  -webkit-transition: all var(--timing-function) 0.2s;
  transition: all var(--timing-function) 0.2s;
}

.arrow__btn-icn--new svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .arrow__btn-icn--new {
    padding: 15px;
  }
}

.btn-small {
  cursor: pointer;
  outline: 0;
  border: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--white);
  padding: 4px;
  border: 2px solid var(--white);
  border-radius: 100px;
  -webkit-transition: all var(--timing-function) 0.3s;
  transition: all var(--timing-function) 0.3s;
}

@media (any-hover: hover) {
  .btn-small:hover {
    background-color: var(--orange);
  }

  .btn-small:hover .btn-small__text {
    color: var(--white);
  }

  .btn-small:hover .btn-small__icn {
    background-color: var(--white);
  }

  .btn-small:hover .btn-small__icn svg {
    stroke: var(--orange);
  }
}

.btn-small__text {
  margin-right: auto;
  font-size: 15px;
  font-family: var(--inter);
  font-weight: 500;
  padding-left: 1.25rem;
  padding-right: 2.25rem;
  color: var(--black);
  -webkit-transition: all var(--timing-function) 0.3s;
  transition: all var(--timing-function) 0.3s;
}

.btn-small__icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px;
  font-size: 0;
  line-height: 1;
  stroke: #fff;
  background: var(--orange);
  border-radius: 50%;
  -webkit-transition: all var(--timing-function) 0.3s;
  transition: all var(--timing-function) 0.3s;
}

.btn-small__icn svg {
  -webkit-transition: all var(--timing-function) 0.3s;
  transition: all var(--timing-function) 0.3s;
}

.btn-small--orange {
  background-color: var(--orange);
  border-color: var(--orange);
}

.btn-small--orange .btn-small__text {
  color: var(--white);
}

.btn-small--orange .btn-small__icn {
  background-color: var(--white);
}

.btn-small--orange .btn-small__icn svg {
  stroke: var(--orange);
}

@media (any-hover: hover) {
  .btn-small--orange:hover {
    background-color: var(--white);
    border-color: var(--white);
  }

  .btn-small--orange:hover .btn-small__text {
    color: var(--orange);
  }

  .btn-small--orange:hover .btn-small__icn {
    background-color: var(--orange);
  }

  .btn-small--orange:hover .btn-small__icn svg {
    stroke: var(--white);
  }
}

.simple-link {
  position: relative;
  padding: 10px 15px;
  padding-right: 20px;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: var(--black);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.simple-link::after {
  content: "";
  position: absolute;
  right: 3%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: border-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .simple-link:hover {
    color: var(--orange);
  }

  .simple-link:hover::after {
    -webkit-transform: translateX(25%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(25%) translateY(-50%) rotate(45deg);
    transform: translateX(25%) translateY(-50%) rotate(45deg);
    border-color: var(--orange);
  }
}


@-webkit-keyframes pulse {

  0%,
  to {
    -webkit-box-shadow: 0 0 0 0 #e34f34;
    box-shadow: 0 0 0 0 #e34f34;
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(227, 79, 52, 0.4);
    box-shadow: 0 0 0 10px rgba(227, 79, 52, 0.4);
  }
}

@keyframes pulse {

  0%,
  to {
    -webkit-box-shadow: 0 0 0 0 #e34f34;
    box-shadow: 0 0 0 0 #e34f34;
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(227, 79, 52, 0.4);
    box-shadow: 0 0 0 10px rgba(227, 79, 52, 0.4);
  }
}

/* old styles start */


.buy__steps-slide--num {
  font-weight: 400;
  font-size: clamp(1.75rem, 1.654rem + 0.427vw, 2.125rem);
  font-family: var(--mont);
}

.buy__steps-slide--text {
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.093rem + 0.142vw, 1.25rem);
  line-height: 120%;
}

.buy__steps-block--text {
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
}

.buy__steps-slide--inner.opened .buy__steps-block--btn button {
  background-color: var(--orange);
}

h2 {
  font-family: var(--mont);
}

.form__title {
  font-family: var(--mont);
}

.form__input input,
.form__input textarea {
  font-family: var(--inter);
}

.form__contact-links a .text {
  font-family: var(--mont);
}

/* old styles end */

/* settings end */

.main-hero__container {
  margin: 0;
  padding: 0;
  max-width: unset;
}

.slider-cta__swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: center center;
}

.slider-cta__swiper-slide h1 {
  padding: 170px 64px;
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .slider-cta__swiper-slide h1 {
    padding: 135px 24px;
    padding-bottom: 0;
  }
}

.slider-cta__swiper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  margin-top: auto;
  padding: 0 64px;
  padding-bottom: clamp(2.5rem, 2.094rem + 2.031vw, 4.375rem);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(115, 115, 115, 0)), to(#404747));
  background: linear-gradient(180deg, rgba(115, 115, 115, 0) 0%, #404747 100%);
}

@media (max-width: 768px) {
  .slider-cta__swiper-content {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.slider-cta__swiper-content-descr {
  margin: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 50px;
  font-size: clamp(1.438rem, 1.005rem + 1.922vw, 3.125rem);
  line-height: 100%;
  color: var(--white);
  max-width: 1160px;
}

@media (max-width: 768px) {
  .static-hero .slider-cta__swiper-content-descr {
    /* background-color: var(--white); */
    width: calc(100% + 48px);
    width: 100%;
  }
}

.slider-cta__swiper-content-descr span {
  font-weight: 500;
  color: var(--orange);
}

@media (max-width: 1024px) {
  .slider-cta__swiper-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 24px;
    padding-bottom: 60px;
  }
}

.hero__slider-controls {
  position: absolute;
  z-index: 3;
  right: 4rem;
  bottom: 4rem;
}

.inner__slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: 4rem;
}

.hero__slider-controls .inner__slider-arrows>div {
  stroke: var(--white);
}

.inner__slider-arrows>div:first-child {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.inner__slider-arrows>div {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  stroke: #404747;
}

.inner__slider-arrows,
.inner__slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  gap: 0.75rem;
}

.hero__slider-controls .inner__slider-arrows>div.swiper-button-disabled {
  stroke: var(--light-color) !important;
}

.hero__slider-controls .inner__slider-arrows>div {
  stroke: var(--light-color);
}

.inner__slider-arrows>div.swiper-button-disabled {
  stroke: #404747 !important;
  opacity: 0.3;
}

.inner__slider-arrows>div {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  stroke: #404747;
}

.inner__slider-arrows>div,
.projects__modal-img,
.projects__view-top,
.tab {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.static-hero .slider-cta__swiper-content {
  height: unset;
  padding-bottom: 30px;
}

.static-hero .slider-cta__swiper-slide h1 {
  margin-bottom: 40px;

}

.static-hero .slider-cta__swiper-slide {
  height: 100%;
  min-height: 100vh;
}

@media (max-width: 550px) {

  .static-hero .arrow__btn--new {
    margin-bottom: 30px;
  }

  .static-hero .slider-cta__swiper-content {
    padding-bottom: 0px;
  }


}

/* hero-slider end */
/* hightlight start */

.hightlight {
  background-color: var(--orange);
}

.hightlight__text {
  margin: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1rem, 0.712rem + 1.281vw, 2.125rem);
  line-height: 120%;
  color: var(--white);
}

/* hightlight end */
/* counter start */
.counter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.counter__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 69px 0;
  border-bottom: 1px solid #303e3f;
}

@media (max-width: 1024px) {
  .counter__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 16px 0 8px 0;
    gap: 16px;
  }
}

.counter__card-number {
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(4rem, 2.847rem + 5.125vw, 8.5rem);
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #303e3f;
  white-space: nowrap;
}

.counter__card-number-suffix {
  margin-left: -25px;
}

@media (max-width: 1024px) {
  .counter__card-number-suffix {
    margin-left: -15px;
  }
}

.counter__card-text {
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1rem, 0.712rem + 1.281vw, 2.125rem);
  line-height: 100%;
  color: #303e3f;
}

@media (max-width: 550px) {
  .counter__card-text {
    width: 100%;
    text-align: left;
  }
}

/* counter end */
/* benefits start */


.benefits {
  position: relative;
  height: 100vh;
}

@media (max-width: 991px) {
  .benefits {
    height: auto;
  }
}

@media (max-width: 991px) {
  .benefits .dot-title {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}

@media (max-width: 991px) {
  .benefits .container {
    display: contents;
  }
}

.benefits .container--wrap {
  display: contents;
}

@media (max-width: 991px) {
  .benefits .container--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.benefits__title {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .benefits__title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.benefits__top {
  position: relative;
  margin-bottom: 50px;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5rem;
}

@media (max-width: 991px) {
  .benefits__top {
    display: contents;
    -webkit-box-orient: vertical;
  }
}

.benefits__top-slider {
  position: relative;
  width: 37%;
  margin-top: 0.5rem;
  background: var(--ice);
  padding: 40px;
}

@media (max-width: 1440px) {
  .benefits__top-slider {
    width: 45%;
  }
}

@media (max-width: 991px) {
  .benefits__top-slider {
    position: absolute;
    top: 30%;
    width: 50%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    z-index: 2;
  }
}

@media (max-width: 817px) {
  .benefits__top-slider {
    top: 36%;
    width: 80%;
  }
}

@media (max-width: 550px) {
  .benefits__top-slider {
    padding: 20px;
  }
}

@media (max-width: 506px) {
  .benefits__top-slider {
    top: 44%;
    width: 91%;
  }
}

.benefits__top-slider-dec {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: -40px;
  left: 0;
  width: 152px;
  height: 42px;
  background-color: var(--ice);
}

@media (max-width: 550px) {
  .benefits__top-slider-dec {
    top: -30px;
  }
}

.benefits__top-slider-dec::before {
  content: "";
  position: absolute;
  top: 0;
  right: -42px;
  width: 42px;
  height: 42px;
  background: var(--ice);
  clip-path: polygon(0 0, 0 100%, 100% 100%, 0 0);
  z-index: 2;
}

.benefits__top-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: var(--mont);
  font-weight: 400;
}

.benefits__top-controls--pagination span.current {
  color: var(--orange);
}

.benefits__top-controls .inner__slider-arrows {
  margin-left: auto;
  margin-right: 0;
}

.benefits__top-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 991px) {
  .benefits__top-desc {
    display: contents;
  }
}

.benefits__top-desc .arrow__btn--new {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

@media (max-width: 550px) {
  .benefits__top-desc .arrow__btn--new {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.benefits__top-text {
  width: 100%;
  max-width: 600px;
  margin: 0;
  margin-bottom: 30px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  text-align: right;
  line-height: 120%;
  color: rgba(9, 10, 10, 0.6);
}

@media (max-width: 991px) {
  .benefits__top-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: auto;
  }
}

@media (max-width: 817px) {
  .benefits__top-text {
    max-width: unset;
    margin-bottom: 200px;
  }
}

.benefits__top .arrow__btn--new {
  margin-left: auto;
  margin-right: 30px;
}

.benefits__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 1.75rem;
  padding-bottom: 1rem;
}

@media (max-width: 550px) {
  .benefits__slide {
    padding-bottom: 7px;
    gap: 15px;
  }
}

.benefits__slide-title {
  margin: 0;
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.026rem + 0.996vw, 2.125rem);
  line-height: 94%;
  text-transform: lowercase;
  color: var(--black);
}

.benefits__slide-text {
  margin: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--black);
}

.benefits__bg {
  height: 100vh;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 80%;
}

@media (max-width: 991px) {
  .benefits__bg {
    position: relative;
    margin-bottom: 20px;
    height: auto;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.benefits__bg img {
  width: 100%;
  height: 100vh;
  aspect-ratio: 16/9;
}

@media (max-width: 991px) {
  .benefits__bg img {
    height: auto;
  }
}

.benefits__dot {
  position: absolute;
  z-index: 5;
}

@media (max-width: 735px) {
  .benefits__dot:nth-child(2) {
    top: 65% !important;
    left: 67% !important;
  }

  .benefits__dot:nth-child(3) {
    top: 48% !important;
    left: 50% !important;
  }

  .benefits__dot:nth-child(4) {
    top: 86% !important;
    left: 89% !important;
  }

  .benefits__dot:nth-child(5) {
    top: 81% !important;
    left: 52% !important;
  }

  .benefits__dot:nth-child(6) {
    top: 69% !important;
    left: 90% !important;
  }

  .benefits__dot:nth-child(7) {
    top: 56% !important;
    left: 80% !important;
  }

  .benefits__dot:nth-child(8) {
    top: 44% !important;
    left: 86% !important;
  }
}

@media (max-width: 506px) {
  .benefits__dot:nth-child(2) {
    top: 55% !important;
    left: 67% !important;
  }

  .benefits__dot:nth-child(4) {
    top: 70% !important;
    left: 29% !important;
  }

  .benefits__dot:nth-child(7) {
    top: 81% !important;
    left: 77% !important;
  }
}

.benefits__dot-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 2rem;
  height: 2rem;
}

.benefits__dot-inner .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  background: var(--ice);
  padding: 0.5rem 3rem 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 14px;
  height: 2.5rem;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  opacity: 0;
  -webkit-transition: all var(--timing-function) 0.5s;
  transition: all var(--timing-function) 0.5s;
  z-index: 4;
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--inter);
  font-weight: 500;
}

@media (max-width: 550px) {
  .benefits__dot-inner .text {
    display: none;
  }
}

.benefits__dot-inner .icn {
  cursor: pointer;
  position: relative;
  left: -22px;
  background: var(--ice);
  padding: 8px;
  fill: var(--orange);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all var(--timing-function) 0.5s;
  transition: all var(--timing-function) 0.5s;
  font-size: 0;
  line-height: 1;
  z-index: 5;
}

.benefits__dot-inner .icn .minus {
  display: none;
}

@media (max-width: 550px) {
  .benefits__dot-inner .icn {
    padding: 1px;
    border: 1px solid var(--orange);
  }
}

.benefits__dot-inner .icn:hover {
  background: var(--orange);
  fill: var(--ice);
}

.benefits__dot.active .benefits__dot-inner .icn {
  background: var(--orange);
  fill: var(--ice);
}

@media (max-width: 550px) {
  .benefits__dot.active .benefits__dot-inner .icn {
    -webkit-animation: 2s infinite pulse;
    animation: 2s infinite pulse;
  }
}

.benefits__dot.active .benefits__dot-inner .text {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 1;
}

.benefits__mobile {
  display: none;
}

.benefits__mobile__mobile-text {
  font-size: 16px;
  padding: 15px;
  background: var(--white);
  margin-top: 15px;
}

.buy__steps-block--text {
  display: none;
  color: var(--black60);
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  display: none;
}

.benefits__dot-inner .icn {
  -webkit-transition: -webkit-transform 0.3 ease-in-out;
  transition: -webkit-transform 0.3 ease-in-out;
  transition: transform 0.3 ease-in-out;
  transition: transform 0.3 ease-in-out, -webkit-transform 0.3 ease-in-out;
}

.benefits__dot.active .benefits__dot-inner .icn .plus {
  display: block;
}

.benefits__dot.active .benefits__dot-inner .icn .minus {
  display: none;
}

.benefits__dot.active .benefits__dot-inner .icn {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* benefits end */

/* realized start */
.realized .dot-title {
  margin-bottom: 32px;
}

.realized__wrap {
  margin-bottom: 10px;
  width: 100%;
  height: 75vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 auto;
  max-width: var(--container-width);
}

.realized__card {
  position: relative;
  cursor: pointer;
  height: 100%;
  width: 20%;
  background-position: end;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  -webkit-transition: width var(--animation-time) linear;
  transition: width var(--animation-time) linear;
}

@media (any-hover: hover) {
  .realized__card:hover .realized__icon {
    color: var(--orange);
  }
}

.realized__card:nth-child(1) .realized__bg::before {
  background-color: var(--black60);
}

.realized__card:nth-child(2) .realized__bg::before {
  background-color: var(--black50);
}

.realized__card:nth-child(3) .realized__bg::before {
  background-color: var(--black40);
}

.realized__card:nth-child(4) .realized__bg::before {
  background-color: var(--black30);
}

.realized__card:nth-child(5) .realized__bg::before {
  background-color: var(--black20);
}

@media (max-width: 695px) {
  .realized__card:nth-child(1) {
    display: none;
  }

  .realized__card:nth-child(2) {
    display: none;
  }
}

.realized__card.active {
  width: 100%;
}

.realized__card.active .realized__content {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  padding-left: 10px;
  padding-right: 15px;
}

.realized__card.active .realized__bg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.realized__card.active .realized__detail {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.realized__card.active .realized__icon {
  color: var(--orange);
}

@media (max-width: 695px) {
  .realized__card.active .realized__detail>span {
    display: block;
    text-decoration: underline;
    text-decoration-color: var(--orange);
  }

  .realized__card.active .realized__icon {
    display: none;
    opacity: 0;
  }
}

.realized__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--mont);
  font-weight: 400;
  font-size: 68px;
  font-size: clamp(1.25rem, 0.481rem + 3.416vw, 4.25rem);
  line-height: 100%;
  text-align: right;
  color: rgba(247, 246, 245, 0.9);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.realized__content {
  padding: clamp(20px, 5.015vw - 18.112px, 70px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
  -webkit-transition: all var(--animation-time) linear;
  transition: all var(--animation-time) linear;
}

.realized__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.realized__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 0.75rem;
  margin-left: 1rem;
  color: var(--white);
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.realized__detail {
  transition: all .3s ease-in-out;
}

@media (max-width: 1440px) {
  .realized__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 695px) {
  .realized__detail {
    margin-left: 0;
  }
}

.realized__detail p {
  margin: 0;
  margin-top: auto;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  color: var(--white);
}

@media (max-width: 1440px) {
  .realized__detail p {
    width: 70%;
    margin-left: auto;
    text-align: right;
  }
}

@media (max-width: 1024px) {
  .realized__detail p {
    margin-left: 0;
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 695px) {
  .realized__detail p {
    line-height: 120%;
  }
}

.realized__detail>span {
  display: none;
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(1.25rem, 0.481rem + 3.416vw, 4.25rem);
  line-height: 100%;
  text-align: left;
  color: var(--white);
}

.realized__bg {
  position: relative;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  -webkit-transition: all var(--animation-time) linear;
  transition: all var(--animation-time) linear;
}

.realized__bg::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.realized__btn {
  margin-top: auto;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: unset;
  max-width: 255px;
  min-width: 268px;
}

.realized__btn .arrow__btn-text--new {
  padding-left: 10px;
  padding-right: 10px;
}

.realized__btn .arrow__btn-icn--new {
  padding: 10px;
}

@media (max-width: 1440px) {
  .realized__btn {
    margin-left: auto;
  }
}

@media (max-width: 695px) {
  .realized__btn {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 411px) {
  .realized__btn {
    min-width: 228px;
  }

  .realized__btn .btn-small__text {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.realized__card:not(.active) .realized__detail,
.realized__card:not(.active) .realized__detail p,
.realized__card:not(.active) .realized__btn {
  -webkit-transition: none !important;
  transition: none !important;
  opacity: 0 !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

/* realized end */
/* visit-form start */
.visit-form {
  color: var(--white);
  font-family: sans-serif;
}

.visit-form__container {
  margin: 0 auto;
  padding: 45px;
  padding-left: clamp(16px, 0.569vw + 13.95px, 24px);
  padding-right: clamp(16px, 0.569vw + 13.95px, 24px);
  background-color: var(--orange);
}

.visit-form__title {
  margin: 0;
  margin-bottom: clamp(16px, 0.214vw + 15.23px, 19px);
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.654rem + 0.427vw, 2.125rem);
  line-height: 120%;
  text-transform: lowercase;
  color: var(--white);
}

.visit-form__subtitle {
  margin: 0;
  margin-bottom: 34px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: var(--white);
}

.visit-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  margin-bottom: clamp(0px, 2.847vw - 10.25px, 40px);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 550px) {
  .visit-form__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.visit-form__error {
  color: var(--black);
}

.visit-form__form input[type=text],
.visit-form__form input[type=tel] {
  padding: 12px 16px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  outline: none;
  width: 100%;
}

.visit-form__form-input {
  width: calc(50% - 20px);
}

@media (max-width: 550px) {
  .visit-form__form-input {
    width: 100%;
  }
}

.visit-form__form input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.visit-form__form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.visit-form__form input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.visit-form__form input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.visit-form__form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.visit-form__policy {
  display: block;
  margin: auto;
  margin-left: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #f7f6f5;
  color: #ff9c8a;
  color: #ecc4bd;
  color: #ffded8;
}

.visit-form__policy a {
  color: var(--white);
  text-decoration: underline;
}

.visit-form__success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: var(--orange);
}

@media (max-width: 550px) {
  .visit-form__success {
    position: relative;
  }
}

.visit-form__success.container {
  padding-right: 0 !important;
}

.visit-form__success picture {
  vertical-align: bottom;
  margin-top: auto;
}

@media (max-width: 550px) {
  .visit-form__success picture {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.visit-form__success picture img {
  vertical-align: bottom;
}

.visit-form__success-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 44px 24px;
  padding-left: 0;
  z-index: 1;
}

.visit-form__success-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
  margin-bottom: 10px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
  color: #71cc46;
}

.visit-form__success-check span {
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 0;
  line-height: 1;
  width: 40px;
  height: 40px;
  stroke: #71cc46;
  fill: transparent;
  border: 3px solid #71cc46;
  border-radius: 50%;
}

.visit-form__success-title {
  margin-top: auto;
  margin-bottom: 24px;
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.654rem + 0.427vw, 2.125rem);
  line-height: 120%;
  text-transform: lowercase;
  color: #fff;
}

.visit-form__success-descr {
  margin-bottom: auto;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #fff;
}

@media (max-width: 550px) {
  .visit-form__success-descr {
    width: 80%;
  }
}

/* visit-form end */

/* about start */
.about-block__container {
  overflow: hidden;
}

.about-block__title {
  margin-bottom: 70px;
  text-align: left;
}

@media (max-width: 1024px) {
  .about-block__title {
    margin-bottom: 20px;
  }
}

.about-block__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

@media (max-width: 1440px) {
  .about-block__content {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .about-block__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-block__content picture {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
    margin-top: 8px;
  }
}

.about-block__content img {
  height: 100%;
}

@media (max-width: 1024px) {
  .about-block__content img {
    height: auto;
    max-width: unset;
    position: relative;
    left: -16px;
    width: calc(100% + var(--container-offset) * 2);
  }
}

.about-block__content-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .about-block__content-right {
    display: contents;
  }
}

.about-block__text {
  margin: 0;
  margin-bottom: 16px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #303e3f;
}

@media (max-width: 1024px) {
  .about-block__text {
    margin-bottom: 0;
  }

  .about-block__text:nth-last-of-type(1) {
    margin-bottom: 24px;
  }
}

.about-block__btn {
  margin-top: auto;
}

@media (max-width: 1440px) {
  .about-block__btn {
    margin-top: 30px;
  }
}

@media (max-width: 1024px) {
  .about-block__btn {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
    margin-top: 24px;
  }
}

/* about end */

/* why start */
.why__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.why__title {
  margin-left: auto;
  margin-bottom: 64px;
  max-width: 870px;
}

@media (max-width: 550px) {
  .why__title {
    margin-bottom: 24px;
    margin-left: unset;
    text-align: left;
  }
}

.why__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  gap: 5rem;
  margin-bottom: 5px;
}

@media (max-width: 1600px) {
  .why__text {
    gap: 2rem;
  }
}

@media (max-width: 969px) {
  .why__text {
    margin-bottom: 80px;
  }
}

@media (max-width: 550px) {
  .why__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 24px;
    gap: 1rem;
  }
}

.why__text p {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--black60);
  max-width: 520px;
}

.why__text .orange-text {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.026rem + 0.996vw, 2.125rem);
  line-height: 120%;
}

.why__btn {
  position: relative;
  bottom: -100px;
  left: 2.4%;
  margin: 0 auto;
  z-index: 3;
}

@media (max-width: 1370px) {
  .why__btn {
    left: 27%;
  }
}

@media (max-width: 969px) {
  .why__btn {
    position: static;
  }
}



@media (max-width: 767px) {
  .inner__slider-arrows {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0.75rem;
  }

  .inner__slider-prev {
    order: 1;
  }

  .inner__slider-next {
    order: 2;
  }
}

/* why end */

/* marquee start */
.marquee-container {
  overflow: hidden;
  background-color: #e34b31;
  white-space: nowrap;
  position: relative;
  padding: 40px;
  z-index: 10;
}

@media (max-width: 1024px) {
  .marquee-container {
    padding: 30px;
  }
}

@media (max-width: 550px) {
  .marquee-container {
    padding: 20px;
  }
}

.marquee-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll-marquee 30s linear infinite;
  animation: scroll-marquee 30s linear infinite;
}

.marquee-track p {
  margin: 0;
  padding-right: 100px;
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(1.125rem, 0.933rem + 0.854vw, 1.875rem);
  line-height: 120%;
  color: #fff;
}

@media (max-width: 550px) {
  .marquee-track p {
    padding-right: 50px;
  }
}

/* Анимация */
@-webkit-keyframes scroll-marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes scroll-marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.marquee-container:hover .marquee-track {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/* marquee end */

/* stacked start */
.stacked {
  position: relative;
}

.stacked__intro {
  position: sticky;
  top: 0;
  height: 45vh;
  z-index: 10;
  padding: 60px 0 20px;
  background-color: var(--white);
}

@media (max-width: 430px) {
  .stacked__intro {
    padding: 15px 0 20px;
  }
}

@media (max-width: 380px) {
  .stacked__intro {
    padding: 0 0 20px;
  }
}

.stacked__title {
  text-align: left;
  margin-bottom: 76px;
}

@media (max-width: 550px) {
  .stacked__title {
    margin-bottom: 45px;
  }
}

@media (max-width: 380px) {
  .stacked__title {
    margin-bottom: 25px;
  }
}

.stacked__descr {
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  line-height: 120%;
  color: var(--black60);
  width: 70%;
}

@media (max-width: 550px) {
  .stacked__descr {
    width: 100%;
  }
}

.stacked__card {
  position: sticky;
  top: 45vh;
  height: 51vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 5vw;
  background-size: cover;
  background-position: center;
  z-index: 1;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.stacked__card::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--black50);
  border-radius: 10px 10px 0 0;
}

/* .stacked__card:nth-of-type(2) {
  background-image: url("../img/paralax-1.png");
  background-image: -webkit-image-set(url("../img/paralax-1.webp") type("image/webp") 1x, url("../img/paralax-1_2x.webp") type("image/webp") 2x, url("../img/paralax-1.png") type("image/png") 1x, url("../img/paralax-1_2x.png") type("image/png") 2x);
  background-image: image-set(url("../img/paralax-1.webp") type("image/webp") 1x, url("../img/paralax-1_2x.webp") type("image/webp") 2x, url("../img/paralax-1.png") type("image/png") 1x, url("../img/paralax-1_2x.png") type("image/png") 2x);
}

.stacked__card:nth-of-type(3) {
  background-image: url("../img/paralax-2.png");
  background-image: -webkit-image-set(url("../img/paralax-2.webp") type("image/webp") 1x, url("../img/paralax-2_2x.webp") type("image/webp") 2x, url("../img/paralax-2.png") type("image/png") 1x, url("../img/paralax-2_2x.png") type("image/png") 2x);
  background-image: image-set(url("../img/paralax-2.webp") type("image/webp") 1x, url("../img/paralax-2_2x.webp") type("image/webp") 2x, url("../img/paralax-2.png") type("image/png") 1x, url("../img/paralax-2_2x.png") type("image/png") 2x);
}

.stacked__card:nth-of-type(4) {
  background-image: url("../img/paralax-3.png");
  background-image: -webkit-image-set(url("../img/paralax-3.webp") type("image/webp") 1x, url("../img/paralax-3_2x.webp") type("image/webp") 2x, url("../img/paralax-3.png") type("image/png") 1x, url("../img/paralax-3_2x.png") type("image/png") 2x);
  background-image: image-set(url("../img/paralax-3.webp") type("image/webp") 1x, url("../img/paralax-3_2x.webp") type("image/webp") 2x, url("../img/paralax-3.png") type("image/png") 1x, url("../img/paralax-3_2x.png") type("image/png") 2x);
}

.stacked__card:nth-of-type(5) {
  background-image: url("../img/paralax-4.png");
  background-image: -webkit-image-set(url("../img/paralax-4.webp") type("image/webp") 1x, url("../img/paralax-4_2x.webp") type("image/webp") 2x, url("../img/paralax-4.png") type("image/png") 1x, url("../img/paralax-4_2x.png") type("image/png") 2x);
  background-image: image-set(url("../img/paralax-4.webp") type("image/webp") 1x, url("../img/paralax-4_2x.webp") type("image/webp") 2x, url("../img/paralax-4.png") type("image/png") 1x, url("../img/paralax-4_2x.png") type("image/png") 2x);
}

@media (max-width: 550px) {
  .stacked__card {
    border-radius: 5px 5px 0 0;
  }

  .stacked__card::after {
    border-radius: 5px 5px 0 0;
  }

  .stacked__card:nth-of-type(2) {
    background-image: url("../img/paralax-1-mob.png");
    background-image: -webkit-image-set(url("../img/paralax-1-mob.webp") type("image/webp") 1x, url("../img/paralax-1-mob_2x.webp") type("image/webp") 2x, url("../img/paralax-1-mob.png") type("image/png") 1x, url("../img/paralax-1-mob_2x.png") type("image/png") 2x);
    background-image: image-set(url("../img/paralax-1-mob.webp") type("image/webp") 1x, url("../img/paralax-1-mob_2x.webp") type("image/webp") 2x, url("../img/paralax-1-mob.png") type("image/png") 1x, url("../img/paralax-1-mob_2x.png") type("image/png") 2x);
  }

  .stacked__card:nth-of-type(3) {
    background-image: url("../img/paralax-2-mob.png");
    background-image: -webkit-image-set(url("../img/paralax-2-mob.webp") type("image/webp") 1x, url("../img/paralax-2-mob_2x.webp") type("image/webp") 2x, url("../img/paralax-2-mob.png") type("image/png") 1x, url("../img/paralax-2-mob_2x.png") type("image/png") 2x);
    background-image: image-set(url("../img/paralax-2-mob.webp") type("image/webp") 1x, url("../img/paralax-2-mob_2x.webp") type("image/webp") 2x, url("../img/paralax-2-mob.png") type("image/png") 1x, url("../img/paralax-2-mob_2x.png") type("image/png") 2x);
  }

  .stacked__card:nth-of-type(4) {
    background-image: url("../img/paralax-3-mob.png");
    background-image: -webkit-image-set(url("../img/paralax-3-mob.webp") type("image/webp") 1x, url("../img/paralax-3-mob_2x.webp") type("image/webp") 2x, url("../img/paralax-3-mob.png") type("image/png") 1x, url("../img/paralax-3-mob_2x.png") type("image/png") 2x);
    background-image: image-set(url("../img/paralax-3-mob.webp") type("image/webp") 1x, url("../img/paralax-3-mob_2x.webp") type("image/webp") 2x, url("../img/paralax-3-mob.png") type("image/png") 1x, url("../img/paralax-3-mob_2x.png") type("image/png") 2x);
  }

  .stacked__card:nth-of-type(5) {
    background-image: url("../img/paralax-4-mob.png");
    background-image: -webkit-image-set(url("../img/paralax-4-mob.webp") type("image/webp") 1x, url("../img/paralax-4-mob_2x.webp") type("image/webp") 2x, url("../img/paralax-4-mob.png") type("image/png") 1x, url("../img/paralax-4-mob_2x.png") type("image/png") 2x);
    background-image: image-set(url("../img/paralax-4-mob.webp") type("image/webp") 1x, url("../img/paralax-4-mob_2x.webp") type("image/webp") 2x, url("../img/paralax-4-mob.png") type("image/png") 1x, url("../img/paralax-4-mob_2x.png") type("image/png") 2x);
  }
} */

@media (max-width: 550px) {
  .stacked__card {
    border-radius: 5px 5px 0 0;
  }

  .stacked__card::after {
    border-radius: 5px 5px 0 0;
  }
}

.stacked__content {
  padding: 20px 30px;
  z-index: 2;
}

.stacked__content h3 {
  margin: 0;
  margin-bottom: 24px;
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.558rem + 0.854vw, 2.5rem);
  line-height: 120%;
  color: var(--ice);
}

@media (max-width: 550px) {
  .stacked__content h3 {
    text-align: center;
  }
}

.stacked__content p {
  margin: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1rem, 0.936rem + 0.285vw, 1.25rem);
  line-height: 150%;
  color: var(--ice);
}

@media (max-width: 550px) {
  .stacked__content p {
    text-align: center;
  }
}

/* stacked end */

/* bento start */
.bento__title {
  margin-bottom: 68px;
}

@media (max-width: 550px) {
  .bento__title {
    margin-bottom: 16px;
    text-align: left;
    max-width: 304px;
  }
}

.bento__descr {
  margin: 0;
  margin-bottom: 46px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: right;
  color: rgba(9, 10, 10, 0.6);
}

@media (max-width: 550px) {
  .bento__descr {
    margin-bottom: 28px;
    text-align: left;
  }
}

.bento__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[4];
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -ms-grid-rows: (minmax(6vh, auto))[10];
  grid-template-rows: repeat(10, minmax(6vh, auto));
  gap: 24px;
}

@media (max-width: 675px) {
  .bento__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: (70vw)[5];
    grid-template-rows: repeat(5, 70vw);
    gap: 8px;
  }
}

.bento__list-item:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/span 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 6;
  grid-row: 1/span 6;
}

@media (max-width: 675px) {
  .bento__list-item:nth-child(1) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}

.bento__list-item:nth-child(1) .bento__card {
  background-image: url("../img/bento-1.png");
  background-image: -webkit-image-set(url("../img/bento-1.webp") type("image/webp") 1x, url("../img/bento-1_2x.webp") type("image/webp") 2x, url("../img/bento-1.png") type("image/png") 1x, url("../img/bento-1_2x.png") type("image/png") 2x);
  background-image: image-set(url("../img/bento-1.webp") type("image/webp") 1x, url("../img/bento-1_2x.webp") type("image/webp") 2x, url("../img/bento-1.png") type("image/png") 1x, url("../img/bento-1_2x.png") type("image/png") 2x);
}

.bento__list-item:nth-child(2) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/span 2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  grid-row: 1/span 4;
}

@media (max-width: 675px) {
  .bento__list-item:nth-child(2) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}

.bento__list-item:nth-child(2) .bento__card {
  background-image: url("../img/bento-2.png");
  background-image: -webkit-image-set(url("../img/bento-2.webp") type("image/webp") 1x, url("../img/bento-2_2x.webp") type("image/webp") 2x, url("../img/bento-2.png") type("image/png") 1x, url("../img/bento-2_2x.png") type("image/png") 2x);
  background-image: image-set(url("../img/bento-2.webp") type("image/webp") 1x, url("../img/bento-2_2x.webp") type("image/webp") 2x, url("../img/bento-2.png") type("image/png") 1x, url("../img/bento-2_2x.png") type("image/png") 2x);
}

.bento__list-item:nth-child(3) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/span 1;
  -ms-grid-row: 7;
  -ms-grid-row-span: 4;
  grid-row: 7/span 4;
}

@media (max-width: 1300px) {
  .bento__list-item:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/span 2;
  }
}

@media (max-width: 675px) {
  .bento__list-item:nth-child(3) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}

.bento__list-item:nth-child(3) .bento__card {
  padding: 24px;
  background-image: url("../img/bento-3.png");
  background-image: -webkit-image-set(url("../img/bento-3.webp") type("image/webp") 1x, url("../img/bento-3_2x.webp") type("image/webp") 2x, url("../img/bento-3.png") type("image/png") 1x, url("../img/bento-3_2x.png") type("image/png") 2x);
  background-image: image-set(url("../img/bento-3.webp") type("image/webp") 1x, url("../img/bento-3_2x.webp") type("image/webp") 2x, url("../img/bento-3.png") type("image/png") 1x, url("../img/bento-3_2x.png") type("image/png") 2x);
}

.bento__list-item:nth-child(4) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/span 1;
  -ms-grid-row: 7;
  -ms-grid-row-span: 4;
  grid-row: 7/span 4;
}

@media (max-width: 1300px) {
  .bento__list-item:nth-child(4) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/span 2;
    -ms-grid-row: 5;
    -ms-grid-row-span: 6;
    grid-row: 5/span 6;
  }
}

@media (max-width: 675px) {
  .bento__list-item:nth-child(4) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}

.bento__list-item:nth-child(4) .bento__card {
  padding: 24px;
  background-image: url("../img/bento-4.png");
  background-image: -webkit-image-set(url("../img/bento-4.webp") type("image/webp") 1x, url("../img/bento-4_2x.webp") type("image/webp") 2x, url("../img/bento-4.png") type("image/png") 1x, url("../img/bento-4_2x.png") type("image/png") 2x);
  background-image: image-set(url("../img/bento-4.webp") type("image/webp") 1x, url("../img/bento-4_2x.webp") type("image/webp") 2x, url("../img/bento-4.png") type("image/png") 1x, url("../img/bento-4_2x.png") type("image/png") 2x);
}

.bento__list-item:nth-child(5) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/span 2;
  -ms-grid-row: 5;
  -ms-grid-row-span: 6;
  grid-row: 5/span 6;
}

@media (max-width: 1300px) {
  .bento__list-item:nth-child(5) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/span 4;
    -ms-grid-row: 11;
    -ms-grid-row-span: 4;
    grid-row: 11/span 4;
  }
}

@media (max-width: 675px) {
  .bento__list-item:nth-child(5) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}

.bento__list-item:nth-child(5) .bento__card {
  position: relative;
  background-color: var(--orange);
}

.bento__list-item:nth-child(5) .bento__card::after {
  background-color: transparent;
}

.bento__list-item:nth-child(5) .bento__card-title {
  margin-bottom: 0 !important;
}

.bento__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.bento__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.44);
  z-index: 1;
}

.bento__card-title {
  margin: 0;
  margin-bottom: 24px;
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(1.563rem, 0.689rem + 1.075vw, 1.875rem);
  line-height: 120%;
  color: var(--white);
  z-index: 2;
}

.bento__card-descr {
  margin: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--white);
  z-index: 2;
}

/* bento end */

/* horizontal start */
.horizontal-wrap {
  position: relative;
  overflow: hidden;
}

.horizontal {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.horizontal-inner {
  position: relative;
  width: 3840px;
  /* фиксированная ширина склеенного изображения */
  height: 100vh;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.horizontal-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.horizontal-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (1fr)[3];
  grid-template-rows: repeat(3, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 550px) {
  .horizontal-content {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}

.horizontal-content .horizontal-card:nth-child(1) .horizontal-card__title {
  max-width: 868px;
}

.horizontal-content .horizontal-card:nth-child(2) {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

.horizontal-content .horizontal-card:nth-child(3) {
  -ms-grid-column-align: center;
  justify-self: center;
}

.horizontal-content .horizontal-card:nth-child(4) {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  -ms-grid-column-align: center;
  justify-self: center;
}

.horizontal-content .horizontal-card:nth-child(5) {
  margin-left: auto;
  margin-right: 220px;
}

@media (max-width: 550px) {
  .horizontal-content .horizontal-card:nth-child(1) {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/span 2;
  }

  .horizontal-content .horizontal-card:nth-child(2) {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/span 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/span 2;
  }

  .horizontal-content .horizontal-card:nth-child(3) {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/span 2;
  }

  .horizontal-content .horizontal-card:nth-child(4) {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column: 4;
    -ms-grid-column-span: 1;
    grid-column: 4/span 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2/span 2;
  }

  .horizontal-content .horizontal-card:nth-child(5) {
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
    grid-column: 5/span 1;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/span 2;
  }
}

@media (max-width: 550px) {
  .horizontal-card {
    width: 92vw;
  }
}

.horizontal-card__title {
  margin: 0;
  margin-bottom: 34px;
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(4rem, 2.847rem + 5.125vw, 8.5rem);
  line-height: 120%;
  color: var(--white);
}

.horizontal-card__title--orange {
  margin: 0;
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(1.75rem, 1.238rem + 2.278vw, 3.75rem);
  line-height: 120%;
}

.horizontal-card__title--orange span {
  color: var(--orange);
}

@media (max-width: 550px) {
  .horizontal-card__title--orange {
    margin-top: 45px;
    margin-bottom: 34px;
    font-size: 45px;
  }
}

.horizontal-card__text {
  margin: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  line-height: 120%;
  color: var(--white);
  max-width: 865px;
}

@media (max-width: 550px) {
  .horizontal-card__text {
    font-size: 22px;
  }
}

/* horizontal end */

/* promo start */
.promo__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  padding-top: 74px;
  padding-bottom: 74px;
  -webkit-box-align: center;
  align-items: center;
}

@media (max-width: 768px) {
  .promo__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 550px) {
  .promo__container {
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 45px;
  }
}

.promo__text {
  margin: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1rem, 0.712rem + 1.281vw, 2.125rem);
  line-height: 120%;
  color: var(--black60);
  width: 65%;
}

@media (max-width: 768px) {
  .promo__text {
    width: 100%;
  }
}

.promo .arrow__btn--new {
  margin: auto 0;
}

@media (max-width: 768px) {
  .promo .arrow__btn--new {
    margin: auto;
  }
}

/* promo end */

/* faq start */
.faq__title {
  margin-bottom: 68px;
  text-align: left;
}

@media (max-width: 550px) {
  .faq__title {
    margin-bottom: 28px;
  }
}

.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.faq__list-item:nth-child(2n) .faq__question {
  text-align: right;
  padding-right: 0;
  padding-left: 35px;
}

.faq__list-item:nth-child(2n) .faq__question::after {
  left: 15px;
  right: unset;
}

.faq__list-item:nth-child(2n) .faq__answer {
  text-align: right;
  margin-left: auto;
}

@media (max-width: 550px) {
  .faq__list-item:nth-child(2n) .faq__question {
    text-align: left;
    padding-right: 35px;
    padding-left: 0px;
  }

  .faq__list-item:nth-child(2n) .faq__question::after {
    right: 15px;
    left: unset;
  }

  .faq__list-item:nth-child(2n) .faq__answer {
    text-align: left;
    margin-left: unset;
  }
}

.faq__card {
  border-top: 1px solid var(--black);
  padding-top: 12px;
  padding-bottom: 12px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.faq__question {
  background: none;
  border: none;
  font-size: clamp(1.25rem, 1.026rem + 0.996vw, 2.125rem);
  font-weight: 400;
  text-align: left;
  font-family: var(--mont);
  width: 100%;
  cursor: pointer;
  padding: 20px 0;
  padding-right: 35px;
  position: relative;
  transition: color .3s ease-in-out;
  color: var(--black);
  text-decoration: none;
  -webkit-appearance: none;
}

.faq__question:hover {
  color: var(--orange);
}

.faq__question::after {
  content: "";
  position: absolute;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  top: 50%;
  right: 15px;
  width: 15px;
  height: 15px;
  -webkit-transform: translateY(-50%) rotate(135deg);
  -ms-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq__question.active::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.faq__answer {
  height: 0;
  overflow: hidden;
  width: 50%;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

@media (max-width: 1024px) {
  .faq__answer {
    width: 75%;
  }
}

@media (max-width: 768px) {
  .faq__answer {
    width: 85%;
  }
}

@media (max-width: 550px) {
  .faq__answer {
    width: 100%;
  }
}

.faq__answer-inner {
  padding: 20px 0;
  padding-top: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--black60);
}

.faq__answer-inner p {
  margin: 0;
}

/* faq end */

/* info start */

.info__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 5.338vw - 11.22px, 83px);
  padding-bottom: clamp(45px, 1.637vw + 39.11px, 68px);
}

@media (max-width: 768px) {
  .info__list {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }
}

.info__list-item {
  padding-top: clamp(16px, 3.416vw + 3.7px, 64px);
  padding-bottom: clamp(16px, 3.416vw + 3.7px, 64px);
  border-bottom: 1px solid #000;
}

.info__text {
  margin: 0;
  margin-bottom: auto;
  padding-top: clamp(16px, 3.416vw + 3.7px, 64px);
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1rem, 0.712rem + 1.281vw, 2.125rem);
  line-height: 120%;
  color: rgba(9, 10, 10, 0.6);
}

@media (max-width: 768px) {
  .info__text {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

.info__text--list {
  position: relative;
  padding-top: 0;
  padding-left: clamp(25px, 0.783vw + 22.18px, 36px);
  font-size: clamp(1rem, 0.712rem + 1.281vw, 2.125rem);
  line-height: 100%;
  color: #303e3f;
}

.info__text--list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #303e3f;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 1240px) {
  .info__content {
    display: contents;
  }
}

@media (max-width: 768px) {
  .info__content {
    -ms-grid-columns: 2 span;
    grid-template-columns: 2 span;
  }

  .info__content .info__text {
    margin-bottom: 10px;
  }
}

.info__content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 1240px) {
  .info__content-bottom {
    padding-top: clamp(32px, 2.562vw + 22.78px, 68px);
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20%;
  }

  .info__content-bottom .arrow__btn--new {
    margin-left: unset;
  }
}

@media (max-width: 768px) {
  .info__content-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 32px;
  }
}

.info .arrow__btn-text--new {
  padding-right: 1rem;
}

.projects__list.line .projects__item {}

.projects__list.line .projects__item-plan {
  grid-column: span 2;
  grid-row: span 3;
}

.projects__item-img-wrap {
  grid-row: span 2;
}

.catalog__header-descr--first {
  grid-column: 6 / 12 span;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: rgba(9, 10, 10, 0.6);
}

.projects__sort-wrap {
  display: -ms-grid;
  display: grid;
  gap: 4rem;
  margin-bottom: 2.5rem;
  z-index: 2;
}


.catalog__header-descr--first {
  grid-column: 6/12 span;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: rgba(9, 10, 10, 0.6);
}

@media (max-width: 1024px) {
  .catalog__header-descr--first {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}

.catalog__header-descr--first {
  margin-left: auto;
}

@media (max-width: 550px) {
  .projects__sort-wrap {
    display: -ms-grid;
    display: grid;
    gap: 0;
    row-gap: 30px;
  }

  .catalog__header-list {
    display: none;
  }
}

.bene-list__title {
  text-align: left;
  margin-bottom: 30px;
}

.bene-list__sub-title {
  margin-bottom: 30px;
}

.bene-list__description {
  width: 55%;
  grid-column: 6/12 span;
  margin: 0 0 70px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  line-height: 100%;
  color: rgba(9, 10, 10, 0.6);
}

@media (max-width: 768px) {
  .bene-list__description {
    width: 100%;
  }
}

.bene-list__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 70px;
}

@media (max-width: 768px) {
  .bene-list__list {
    row-gap: 15px;
  }
}

.bene-list__list-item {
  -ms-grid-column-span: 6;
  grid-column: 6 span;
  /* если последняя и нечетная — на всю ширину */
}

.bene-list__list-item:nth-last-child(1):nth-child(odd) {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bene-list__list-item:nth-last-child(1):nth-child(odd) .bene-list__list-card {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 700px;
}

@media (max-width: 768px) {
  .bene-list__list-item {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }
}

.bene-list__list-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(20px, 1.423vw + 14.88px, 40px);
  overflow: hidden;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.bene-list__list-card-number,
.bene-list__list-card-text {
  position: relative;
  z-index: 2;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.bene-list__list-card-number {
  font-family: var(--mont);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: var(--orange);
  margin-right: 10px;
}

.bene-list__list-card-text {
  margin: 0;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 22px;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  line-height: 100%;
  color: #303e3f;
}

@media (max-width: 768px) {
  .bene-list__list-card-text {
    font-size: 16px;
  }
}

.bene-list__scnd-sub-title {
  text-align: left;
}

.bene-list__scnd-descr {
  max-width: 600px;
  width: 100%;
  margin: 0;
  margin-bottom: 30px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 22px;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  line-height: 120%;
  color: rgba(9, 10, 10, 0.6);
}

.bene-list__scnd-sutitle {
  margin: 0;
  margin-bottom: 30px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1.438rem, 1.005rem + 1.922vw, 3.125rem);
  line-height: 100%;
  color: var(--black);
  text-align: right;
}

.bene-list__scnd-sutitle span {
  color: var(--orange);
}

.bene-list__scnd-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bene-list__scnd-list {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.bene-list__scnd-list-item {
  padding: 5px;
}

.bene-list__scnd-list-text {
  margin: 0;
  margin-bottom: 0px;
  padding: 5px 10px;
  text-align: right;
  font-family: var(--inter);
  font-weight: 400;
  font-size: 22px;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  line-height: 100%;
  color: #303e3f;
}

.bene-list__svg {
  width: 30vw;
  max-width: 800px;
  height: auto;
  display: block;
  margin: auto;
}

.bene-list__end {
  margin: 0;
  margin-bottom: 47px, calc(0.925vw + 43.67px), 60px;
  padding-top: clamp(16px, 3.416vw + 3.7px, 64px);
  font-family: var(--inter);
  text-align: center;
  font-weight: 400;
  font-size: clamp(1rem, 0.712rem + 1.281vw, 2.125rem);
  line-height: 120%;
  color: rgba(9, 10, 10, 0.6);
}

@media (max-width: 1024px) {
  .bene-list__scnd-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .bene-list__svg {
    width: 80%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .bene-list__scnd-list {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }

  .bene-list__end {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media (min-width: 769px) {
  .bene-list__list-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--orange, #ff7a00);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    z-index: 0;
  }

  .bene-list__list-card:hover::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }

  .bene-list__list-card:hover .bene-list__list-card-number,
  .bene-list__list-card:hover .bene-list__list-card-text {
    color: #fff;
  }
}

@media (max-width: 768px) {
  .bene-list__list-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--orange, #ff7a00);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
    z-index: 0;
  }

  .bene-list__list-card.is-visible::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }

  .bene-list__list-card.is-visible {
    border-color: var(--orange);
  }

  .bene-list__list-card.is-visible .bene-list__list-card-number,
  .bene-list__list-card.is-visible .bene-list__list-card-text {
    color: #fff;
  }
}

/* info end */

/* New Theme April Start */
.slider-cta__swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.main-hero__title,
.slider-cta__swiper-content {
  position: relative;
  z-index: 2;
}

.main-hero__title {
  font-size: clamp(1.563rem, 0.703rem + 3.819vw, 5rem);
}

.main-hero__descr {
  color: var(--white);
}

.slider-cta__swiper-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

@media (max-width:550px) {
  .slider-cta__swiper-cta {
    width: 100%;
  }

  .slider-cta__swiper-cta a {
    width: 100%;
  }
}

.slider-cta__swiper-content-wrapp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.js-hover-slider {
  position: relative;
  display: block;
}

.js-hover-zones {
  position: absolute;
  inset: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  /* 1/4, 1/3, 1/2 автоматически */
  z-index: 3;
}

.js-hover-zone {
  display: block;
}

.js-hover-pagination {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 6px;
  z-index: 4;
}

.js-hover-dot {
  flex: 1 1 auto;
  height: 2px;
  background: rgba(255, 255, 255, .35);
}

.js-hover-dot.is-active {
  background: var(--orange);
}

@media (max-width:550px) {

  .js-hover-zones,
  .js-hover-pagination {
    pointer-events: auto;
  }

  .js-hover-zone,
  .js-hover-dot {
    pointer-events: auto;
  }

  .js-hover-dot {
    height: 6px;
  }

  /* на мобилке удобнее */
  .js-hover-pagination {
    gap: 8px;
  }

}

.mini-catalog__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.mini-catalog__title {
  text-align: left;
}

.mini-catalog__descr.benefits__top-text {
  margin-bottom: 0;
}

.mini-catalog .projects__item-desc {
  flex-direction: column;
  align-items: normal;
  /* padding-left: 20px;
  padding-right: 20px; */
}

.mini-catalog__descr-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mini-catalog .projects__item-prop {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.mini-catalog .projects__item-prop .projects__item-prop--text {
  font-family: var(--inter);
}

.mini-catalog .catalogItem-content__details {
  display: flex;
  gap: 20px;
  align-items: start;
  width: 100%;
  justify-content: flex-start;
}

.catalogItem-content__details .project-icon {
  width: 20px;
  height: 20px;
}

.mini-catalog .catalog-new__detail {
  display: flex;
  gap: 5px;
  font-family: var(--inter);
}

.mini-catalog a {
  color: var(--black80);
}

.mini-catalog .projects__item-tag {
  left: unset;
  bottom: unset;
  right: 1.75rem;
  top: 2rem;
}

@media (max-width: 1370px) {
  .mini-catalog .projects__item-tag {
    position: absolute;
    right: .75rem;
    top: 1.25rem;
  }
}

.mini-catalog .projects__item-cta {
  padding: 10px 25px;
  background-color: var(--orange);
  color: var(--white);
  font-size: clamp(0.875rem, 0.844rem + 0.139vw, 1rem);
  border: 1px solid var(--orange);
  transition: color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;
}

.mini-catalog .projects__item-cta:hover {
  background-color: var(--white);
  color: var(--orange);
  border-color: var(--orange);
}

.mini-catalog .projects__item-name {
  color: var(--orange);
  text-transform: uppercase;
}

.catalog-new__detail {
  font-size: clamp(0.875rem, 0.844rem + 0.139vw, 1rem);
}

.mini-catalog .projects__item-prop .projects__item-prop--title {
  color: var(--black80);
}

@media (max-width:768px) {
  .mini-catalog__wrapper {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }
}

@media (max-width:550px) {
  .video-block__title {
    width: 100%;
  }
}

@media (max-width:400px) {
  .mini-catalog__descr-wrapper--bottom {
    flex-direction: column;
  }
}

.video-block__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-block__title {
  margin-bottom: 20px;
  text-align: center;
  width: 70%;
}

.video-block__descr {
  width: 100%;
  max-width: 600px;
  margin: 0;
  margin-bottom: 30px;
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  text-align: center;
  line-height: 120%;
  color: rgba(9, 10, 10, 0.6);
}

.video-block__video {
  width: 100%;
  height: 100%;

}

/* === Banks block full-screen === */

.banks-static__container {
  position: relative;
  width: 100%;
  padding-bottom: 0;
}

.banks-static__container picture {
  position: absolute;
  inset: 0;
  width: 100%;
}

.banks-static__content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  z-index: 2;
}

.banks-static__title {
  grid-column: 2 span;
  margin-bottom: 20px;
}

.banks-static__descr {
  margin: 0;
  margin-bottom: 24px;
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(1.563rem, 0.689rem + 1.075vw, 1.875rem);
  line-height: 120%;
  color: var(--black80);
  z-index: 2;
}

.banks-static__bullets {
  margin-bottom: 24px;
}

.banks-static__bullets-text {
  font-family: var(--inter);
  font-weight: 400;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  line-height: 120%;
  color: var(--black60);
  width: 70%;
}

.banks-static__content--left {
  gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.banks-static__content--right {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background-color: var(--orange);
  padding: 30px;
}

.banks-static__content--right svg {
  margin-top: auto;
  position: relative;
  bottom: -15px;
}

.banks-static__slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: flex-end;
}

.banks-static__slide img {
  height: 65px;
}

.banks-static__bullets {
  list-style: decimal-leading-zero !important;
  padding-left: 36px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banks-static__bullets-item::marker {
  color: var(--orange);
  /* Changes the color of the bullet/number to red */
  font-size: 1.2em;
  /* You can also change the size */
}

.btn-cta {
  padding: 10px 25px;
  background-color: var(--orange);
  color: var(--white);
  font-size: clamp(0.875rem, 0.844rem + 0.139vw, 1rem);
  border: 1px solid var(--orange);
  transition: color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;
}

.btn-cta:hover {
  background-color: var(--white);
  color: var(--orange);
  border-color: var(--orange);
}

.banks-static__cta {
  margin-right: auto;
  padding: 20px 35px;
}

.disclamer-container {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.banks-static__disclaimer {
  font-size: 12px;
  padding: 20px 0;
  text-align: center;
}

@media (max-width:870px) {

  .banks-static__content--left,
  .banks-static__content--right {
    grid-column: 2 span;
  }

  .banks-static__bullets-text {
    width: 90%;
  }

  .banks-static__slide img {
    height: 100%;
  }

  .banks-static__cta {
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 24px;
  }
}

.section-gutter-form {
  margin-top: 5rem;
}

.hero-project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  padding: 2.5714285714rem 0;
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-project::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-38.94%, #000), color-stop(20.89%, rgba(0, 0, 0, 0))), -webkit-gradient(linear, left bottom, left top, color-stop(-157.53%, #000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #000 -38.94%, rgba(0, 0, 0, 0) 20.89%), linear-gradient(0deg, #000 -157.53%, rgba(0, 0, 0, 0));
  background-blend-mode: darken, darken, normal;
}

.hero-project picture {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.hero-project__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-project__container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.hero-project__title {
  width: 100%;
  color: #fff;
  font-size: 11.4285714286rem;
  font-size: clamp(3.125rem, 1.563rem + 6.944vw, 9.375rem);
  font-weight: 400;
  line-height: 90%;
  text-transform: uppercase;
  text-align: center;
}

.hero-project__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.hero-project__list {
  display: flex;
  justify-content: space-around;
  padding: 10px !important;
  gap: 20px;
  background-color: rgba(247, 246, 245, 0.3);
  backdrop-filter: blur(10px);
}

.hero-project__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-project__characteristics {
  display: flex;
  font-family: var(--inter);
  color: #fff;
  font-size: clamp(1rem, 0.875rem + 0.556vw, 1.5rem);
  font-weight: 400;
  line-height: 120%;
}

.hero-project__characteristics sup {
  font-family: var(--inter);
  font-size: .6em;
  line-height: 100%;
}

.hero-project__characteristics .rubl {
  font-family: var(--inter);

  margin-left: 7px;
  font-weight: 400;
}

.hero-project__descr {
  display: inline-block;
  width: 100%;
  margin: 5px 0 0;
  color: #fff;
  font-size: clamp(0.75rem, 0.688rem + 0.278vw, 1rem);
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}

.hero-project__btns {
  display: flex;
  gap: 24px;
}

.hero-project__btn {
  max-width: unset;
  min-width: unset;
  width: 100%;
  border-radius: 0;
}

.hero-project__btn-icn {
  border-radius: 0;
}

.search-mobile {
  display: none !important;
}

@media (max-width: 768px) {

  .hero-project__content {
    gap: 15px;
  }

  .hero-project__container {
    gap: 15px;
  }

  .hero-project__btns {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 550px) {
  .hero-project__list li:nth-child(2) {
    display: none;
  }
}

.descr-project__content {
  width: 100%;
  display: inline-block;
  color: #2d3134;
  text-align: center;
  font-size: clamp(1rem, 0.75rem + 1.111vw, 2rem);
  font-weight: 400;
  line-height: 130%;
}

.render__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.render__main {
  display: grid;
  grid-template-columns: 400px repeat(3, 1fr);
  gap: 24px;
}

.render__main-left {
  grid-column: 1 span;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px;
  background-color: var(--orange);
}

.render__main-img {
  grid-column: 3 span;
  width: 100%;
  max-width: unset;
  object-fit: cover;
}

.render__main-title {
  text-align: center;
  color: var(--black80);
  font-size: clamp(1.75rem, 1.484rem + 1.181vw, 2.813rem);
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 12px 24px;
  background-color: var(--white);
}

.render__main-price {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-column-gap: 3px;
  -moz-column-gap: 3px;
  column-gap: 3px;
  color: var(--white);
  font-size: clamp(1rem, 0.938rem + 0.278vw, 1.25rem);
  font-weight: 400;
  line-height: 120%;
}

.render__main-list {
  margin: 3.8571428571rem 0;
  margin-bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2.2857142857rem;
}

.render__main-list-item {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  text-align: center;
}

.render__main-label {
  width: 100%;
  display: inline-block;
  color: var(--white);
  font-size: clamp(1.125rem, 1.031rem + 0.417vw, 1.5rem);
  font-weight: 500;
  line-height: 120%;
  margin-bottom: .5714285714rem;
}

.render__main-descr {
  width: 100%;
  display: inline-block;
  color: var(--white);
  font-size: clamp(0.875rem, 0.844rem + 0.139vw, 1rem);
  font-weight: 400;
  line-height: 120%;
}

.render__swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width:1188px) {
  .render__main-left {
    grid-column: 4 span;
  }

  .render__main-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .render__main-img {
    grid-column: 4 span;
  }
}

@media (max-width:700px) {
  .render__main-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 24px 0;
  }
}

@media (max-width:550px) {
  .render__main {
    display: flex;
    flex-direction: column;
  }
}

.main-hero .arrow__btn--new {
  max-width: 381px;
  min-width: 375px;
}

@media (max-width: 550px) {
  .main-hero .slider-cta__swiper-cta a {
    width: 100%;
  }
}

/* Plan section start */
.plan__title {
  margin-bottom: 24px;
  text-align: left;
}

.plan__tab {
  margin-bottom: 24px;
  color: var(--orange);
  background-color: var(--white);
}


.plan__tab.active {
  background-color: var(--orange);
  color: var(--white);
}

.plan__inner {
  display: grid;
  grid-template-columns: minmax(300px, 450px) 1fr;
  gap: 24px;
}

.project-planning-info {
  min-width: 300px;
}

.plan__img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-width: 0;
  background-color: var(--ice);
  width: 100%;
  height: 100%;
  position: relative;
}

.plan__img-rotate {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.plan__img-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.plan__rotate-btn,
.plan__mirror-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* border-radius: 4px; */
  cursor: pointer;
  transition: all 0.2s ease;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.plan__rotate-btn:hover,
.plan__mirror-btn:hover {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.plan__rotate-btn:active,
.plan__mirror-btn:active {
  transform: scale(0.95);
}

.plan__rotate-btn svg,
.plan__mirror-btn svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.project-planning-info__table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project__customization-planning {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
  align-self: flex-start;
}

.project-planning-preview__nav-tab {
  padding: 24px;
  color: var(--ice);
  font-family: var(--inter);
}

.project-planning-info__areas {
  background-color: var(--orange);
}

.project-planning-info__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.project-planning-info__tabs {
  padding: 24px;
  border: 1px solid var(--orange);
}

.project-planning-info__table-row {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 7px 7px;
  transition: background-color 0.3s ease, color 0.3s ease;

}

.project-planning-info__table-row:hover {
  background-color: var(--orange);
  color: var(--ice);
}

.project-planning-info__table-row--nested {
  margin-top: 10px;
  font-weight: 300;
}

.project-planning-info__table-name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-planning-info__table-icon {
  color: currentColor;
  transition: color 0.3s ease;
}

.project-planning-info__table-icon svg {
  color: currentColor;
  transition: color 0.3s ease;
}

/* Документация в блоке планировок */
.project-planning-info__docs {
  padding: 24px;
  background-color: var(--ice);
  /* border: 1px solid var(--orange); */
}

.project-planning-info__docs-title {
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
}

.project-planning-info__docs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.project-planning-info__docs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  color: var(--black);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.project-planning-info__docs-item:hover {
  background-color: var(--orange);
  color: var(--ice);
}

.project-planning-info__docs-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: currentColor;
  transition: color 0.3s ease;
}

.project-planning-info__docs-item span {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

.plan__container {
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .plan__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }

  .project-planning-info {
    min-width: 100%;
  }

  .project__customization-planning {
    position: relative;
    top: 0;
  }
}

/* Plan section end */

/* Project Pricing section */
.project-pricing {
  padding: 60px 0;
}

.project-pricing__title {
  text-align: center;
  margin-bottom: 40px;
}

.project-pricing__plan-tabs {
  display: flex;
  gap: 0;
  width: 100%;
}

.project-pricing__plan-tab {
  flex: 0 0 auto;
  padding: 12px 24px;
  background-color: var(--ice);
  border: 1px solid var(--orange);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  color: var(--orange);
  text-align: center;
  width: 50%;
}

.project-pricing__plan-tab:not(:last-child) {
  border-right: none;
}

.project-pricing__plan-tab:hover {
  border-color: var(--orange);
  background-color: rgba(255, 165, 0, 0.05);
}

.project-pricing__plan-tab.active {
  background-color: var(--orange);
  color: var(--ice);
  border-color: var(--orange);
}

.project-pricing__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Изображения слева */
.project-pricing__images {
  position: relative;
  width: 100%;
}

.project-pricing__image {
  width: 100%;
  display: none;
}

.project-pricing__image.active {
  display: block;
}

.project-pricing__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Форма справа */
.project-pricing__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-pricing__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-pricing__checkbox-item {
  width: 100%;
}

.project-pricing__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-pricing__checkbox-label:hover {
  border-color: var(--orange);

}

.project-pricing__checkbox-custom {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--orange);
  background-color: transparent;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.project-pricing__checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.project-pricing__checkbox-label input[type="checkbox"]:checked+.project-pricing__checkbox-custom {
  background-color: var(--orange);
  border-color: var(--orange);
}

.project-pricing__checkbox-label input[type="checkbox"]:checked+.project-pricing__checkbox-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.project-pricing__checkbox-item--required .project-pricing__checkbox-label {
  cursor: default;
}

.project-pricing__checkbox-item--required .project-pricing__checkbox-label:hover {
  border-color: var(--orange);
  background-color: rgba(255, 165, 0, 0.05);
}

.project-pricing__checkbox-label input[type="checkbox"]:disabled {
  cursor: default;
}

.project-pricing__checkbox-label input[type="checkbox"]:disabled+.project-pricing__checkbox-custom {
  cursor: default;
}

.project-pricing__checkbox-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-pricing__checkbox-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.project-pricing__checkbox-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  flex: 1;
}

.project-pricing__checkbox-price {
  font-weight: 600;
  font-size: 16px;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
}

.project-pricing__checkbox-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--black80);
  margin-top: 4px;
}

/* Строка с кнопкой и итоговой суммой */
.project-pricing__bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
  align-items: center;
}

.project-pricing__bottom-left {
  display: flex;
  justify-content: flex-start;
}

.project-pricing__bottom-right {
  display: flex;
  justify-content: flex-end;
}

.estimate-note {
  padding: 60px 0;
  background-color: var(--ice);
}

.estimate-note__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.estimate-note__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.estimate-note__title {
  margin-bottom: 8px;
  text-align: left;
}

.estimate-note__intro {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(9, 10, 10, 0.6);
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
}

.estimate-note__subtitle {
  margin-top: 8px;
  font-weight: 600;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
}

.estimate-note__list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.estimate-note__list-item {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
  color: var(--black80);
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
}

.estimate-note__list-item::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
}

.estimate-note__footnote {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--black80);
}

.estimate-note__image-wrapper {
  position: relative;
  justify-self: center;
  display: flex;
  height: 100%;
  width: 100%;
}

.estimate-note__picture {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.estimate-note__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .estimate-note__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .estimate-note__image-wrapper {
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }
}

.project-pricing__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--ice);
  min-width: 200px;
  width: 100%;
}

.project-pricing__total-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.project-pricing__total-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
}

@media (max-width: 1024px) {
  .project-pricing__wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-pricing__images {
    order: 1;
  }

  .project-pricing__form-wrapper {
    order: 2;
  }

  .project-pricing__bottom-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-pricing__bottom-left {
    justify-content: center;
  }

  .project-pricing__bottom-right {
    justify-content: center;
  }
}

/* Попап с формой */
.project-pricing__popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.project-pricing__popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.project-pricing__popup-content {
  position: relative;
  background-color: var(--ice);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin: auto;
  z-index: 1;
}

.project-pricing__popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--black);
  transition: color 0.3s ease;
  padding: 0;
  z-index: 1;
}

.project-pricing__popup-close:hover {
  color: var(--orange);
}

.project-pricing__popup-close svg {
  width: 24px;
  height: 24px;
}

.project-pricing__form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 24px;
  text-align: center;
  font-family: var(--mont);
}

.project-pricing__form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-pricing__form-descr {
  text-align: center;
}

.project-pricing__form-input {
  position: relative;
}

.project-pricing__form-input input {
  width: 100%;
  padding: 16px;
  border: none;
  border-bottom: 1px solid var(--orange);
  font-size: 16px;
  font-family: inherit;
  background-color: #fff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.project-pricing__form-input input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.project-pricing__form-input.error input {
  border-color: #e74c3c;
}

.project-pricing__form-error {
  display: none;
  color: #e74c3c;
  font-size: 14px;
  margin-top: 8px;
}

.project-pricing__form-input.error .project-pricing__form-error {
  display: block;
}

.project-pricing__form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-pricing__form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 16px;
  transition: all 0.3s ease;
}

.project-pricing__form-checkbox:hover {
  border-color: var(--orange);
  background-color: rgba(255, 165, 0, 0.05);
}

.project-pricing__form-checkbox.error {
  border-color: #e74c3c;
}

.project-pricing__form-checkbox-custom {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--orange);
  background-color: transparent;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.project-pricing__form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.project-pricing__form-checkbox input[type="checkbox"]:checked+.project-pricing__form-checkbox-custom {
  background-color: var(--orange);
  border-color: var(--orange);
}

.project-pricing__form-checkbox input[type="checkbox"]:checked+.project-pricing__form-checkbox-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
}

.project-pricing__form-checkbox-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--black);
}

.project-pricing__form-checkbox-text a {
  color: var(--orange);
  text-decoration: underline;
}

.project-pricing__form-checkbox-text a:hover {
  text-decoration: none;
}

.project-pricing__form-submit {
  width: 100%;
  padding: 16px;
  background-color: var(--orange);
  color: var(--ice);
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
  border: 1px solid transparent
}

.project-pricing__form-submit:hover {
  background-color: var(--white);
  border-color: var(--orange);
  color: var(--orange);
}

.project-pricing__form-submit:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .project-pricing__popup-content {
    padding: 24px;
    max-width: 100%;
  }

  .project-pricing__form-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.hero-project__btn-small {
  border-radius: 0;
}

.hero-project__btn-small-icn {
  border-radius: 0;
}

.form__contact-links-sqare a .btn {
  border-radius: 0;
}

/* Interior Inspiration Section */
.interior-inspiration {
  padding: 60px 0;
  padding-bottom: 0;
  background-color: var(--white);
}

.interior-inspiration__container {
  position: relative;
}

.interior-inspiration__title {
  margin-bottom: 40px;
  text-align: left;
}

.interior-inspiration__slider-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0px;
  /* Отступ для кнопок, которые заходят на 50% */
}

.interior-inspiration__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.interior-inspiration__nav--prev {
  left: -10px;
}

.interior-inspiration__nav--next {
  right: -10px;
}

.interior-inspiration__nav:hover:not(:disabled) {
  background-color: var(--black);
}

.interior-inspiration__nav:disabled,
.interior-inspiration__nav.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.interior-inspiration__nav svg {
  width: 24px;
  height: 24px;
}

.interior-inspiration__slider {
  width: 100%;
  overflow: hidden;
  /* Скрываем переполнение слайдов */
  position: relative;
}

.interior-inspiration__slider .swiper-container {
  overflow: visible;
  /* Но сам контейнер может показывать кнопки */
}

.interior-inspiration__slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.interior-inspiration__slide {
  width: 648px;
  height: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.interior-inspiration__slide--big {
  width: 648px;
  height: 600px;
}

.interior-inspiration__item {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.interior-inspiration__slide--double .interior-inspiration__item {
  flex: 1;
  height: calc((600px - 24px) / 2);
}

.interior-inspiration__slide--big .interior-inspiration__item {
  width: 100%;
  height: 100%;
}

.interior-inspiration__item:hover {
  transform: scale(1.02);
}

.interior-inspiration__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Пагинация */
.interior-inspiration__pagination {
  position: relative;
  margin-top: 24px;
  text-align: center;
}

.interior-inspiration__pagination .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--black60);
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.interior-inspiration__pagination .swiper-pagination-bullet-active {
  background-color: var(--orange);
  width: 60px;
}

@media (max-width: 1024px) {
  .interior-inspiration__slide {
    width: 500px;
    height: 500px;
  }

  .interior-inspiration__slide--big {
    width: 500px;
  }

  .interior-inspiration__slide--double .interior-inspiration__item {
    height: calc((500px - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .interior-inspiration {
    padding: 40px 0;
  }

  .interior-inspiration__title {
    margin-bottom: 24px;
  }

  .interior-inspiration__slider-wrapper {
    padding: 0 0px;
    /* Меньший отступ для мобильных */
  }

  .interior-inspiration__nav {
    width: 40px;
    height: 40px;
  }

  .interior-inspiration__nav svg {
    width: 20px;
    height: 20px;
  }

  .interior-inspiration__slide {
    width: 100%;
    max-width: 400px;
    height: 400px;
    gap: 16px;
  }

  .interior-inspiration__slide--big {
    width: 100%;
    max-width: 400px;
  }

  .interior-inspiration__slide--double .interior-inspiration__item {
    height: calc((400px - 16px) / 2);
  }
}

@media (max-width: 480px) {
  .interior-inspiration__slide {
    width: 100%;
    height: 300px;
  }

  .interior-inspiration__slide--big {
    width: 100%;
  }

  .interior-inspiration__slide--double .interior-inspiration__item {
    height: calc((300px - 16px) / 2);
  }
}

.form__bot-btn-icn--square,
.form__bot-btn--square {
  border-radius: 0;
}

.form__contact-links--square a .btn {
  border-radius: 0;
}

/* How Works Section */
.how-works {
  padding: 60px 0;
  background-color: var(--white);
}

.how-works__header {
  margin-bottom: 40px;
  text-align: center;
}

.how-works__title {
  margin-bottom: 24px;
  text-align: left;
}

.how-works__intro {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  line-height: 1.6;
  color: var(--black80);
  /* max-width: 900px; */
  margin: 0 auto;
}

@media (max-width:1024px) {
  .how-works__intro {
    flex-direction: column;
  }
}

.how-works__intro p {
  margin: 0;
  text-align: left;
  max-width: 900px;
}

.how-works__logo {
  margin: 8px 0;
}

.how-works__logo img {
  height: 100px;
  width: auto;
}

.how-works__tabs {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.how-works__tab {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--orange);
  background-color: var(--white);
  color: var(--orange);
  transition: all 0.3s ease;
  cursor: pointer;
}

.how-works__tab:hover {
  background-color: var(--orange);
  color: var(--white);
}

.how-works__tab.active {
  background-color: var(--orange);
  color: var(--white);
}

.how-works__content {
  display: none;
}

.how-works__content.active {
  display: block;
}

.how-works__content-title {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  color: var(--black);
}

.how-works__content-subtitle {
  font-size: clamp(1rem, 0.968rem + 0.142vw, 1.125rem);
  line-height: 1.6;
  color: var(--black80);
  text-align: center;
  margin-bottom: 40px;
}

.how-works__steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 40px;
}

.how-works__step {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.how-works__step-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.how-works__step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.how-works__step:hover .how-works__step-image img {
  transform: scale(1.02);
}

.how-works__step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-works__step-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.how-works__step-number {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  font-family: var(--mont);
}

.how-works__step-title {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 600;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
}

.how-works__step-text {
  font-size: clamp(0.938rem, 0.906rem + 0.142vw, 1.063rem);
  line-height: 1.6;
  color: var(--black80);
  margin: 0;
}

.how-works__step-list {
  margin: 8px 0;
  padding-left: 24px;
  color: var(--black80);
  list-style: disc;
}

.how-works__step-list li {
  margin-bottom: 4px;
  line-height: 1.6;
}

.how-works__step-text strong {
  font-weight: 600;
  color: var(--black);
}

.how-works__partner {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--ice);
  color: var(--black60);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 4px;
  width: fit-content;
}

.how-works__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.how-works__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.how-works__link:hover {
  color: var(--black);
  border-bottom-color: var(--orange);
}

.how-works__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.how-works__link--tooltip {
  cursor: help;
  border-bottom: 1px dashed currentColor;
  padding-bottom: 2px;
}

.how-works__link--tooltip svg {
  width: 14px;
  height: 14px;
}

.how-works__note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--black20);
  text-align: center;
}

.how-works__note p {
  margin: 4px 0;
  color: var(--black60);
  font-size: 14px;
}

.how-works__cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.how-works__cta .arrow__btn--new.how-works__btn {
  width: auto !important;
  padding: 18px 20px !important; /* Увеличиваем размер кнопки */
  font-size: 18px !important; /* Увеличиваем размер шрифта */
  background-color: var(--orange) !important; /* Оранжевый фон по умолчанию */
  color: var(--white) !important; /* Белый текст */
  border: 0 !important;
  min-width: unset !important;
  max-width: unset !important;
  transition: background-color var(--timing-function) 0.2s;
}

.how-works__cta .arrow__btn--new.how-works__btn:hover {
  background-color: var(--ice) !important; /* Светлый фон при наведении */
}

.how-works__cta .arrow__btn--new.how-works__btn:hover .arrow__btn-text--new {
  color: var(--orange) !important;
}

.how-works__cta .arrow__btn--new.how-works__btn .arrow__btn-text--new {
  color: var(--white) !important; /* Белый текст по умолчанию */
  font-size: inherit !important;
  padding-left: 1.25rem;
}

.how-works__cta .arrow__btn--new.how-works__btn:hover .arrow__btn-icn--new {
  background-color: var(--orange) !important;
  stroke: var(--ice) !important;
}

.how-works__cta .arrow__btn--new.how-works__btn .arrow__btn-icn--new {
  background-color: var(--ice) !important;
  stroke: var(--orange) !important;

  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--timing-function) 0.2s, stroke var(--timing-function) 0.2s;
}

.how-works__cta .arrow__btn--new.how-works__btn .arrow__btn-icn--new svg {
  fill: none;
  stroke: inherit;
}

.how-works__cta .arrow__btn--new.how-works__btn .arrow__btn-icn--new svg use {
  stroke: inherit;
}


@media (max-width: 1024px) {
  .how-works__step {
    grid-template-columns: 300px 1fr;
    gap: 32px;
  }

  .how-works__step-image {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .how-works {
    padding: 40px 0;
    padding-bottom: 0;
  }

  .how-works__header {
    margin-bottom: 32px;
  }

  .how-works__tabs {
    gap: 12px;
    margin-bottom: 32px;
  }

  .how-works__tab {
    padding: 12px 24px;
    font-size: 14px;
  }

  .how-works__content-subtitle {
    margin-bottom: 32px;
  }

  .how-works__steps {
    gap: 40px;
    margin-bottom: 32px;
  }

  .how-works__step {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-works__step-image {
    height: 200px;
    grid-row: 1;
  }

  .how-works__step-content {
    grid-column: 1;
    grid-row: 2;
  }

  .how-works__step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .how-works__step-number {
    font-size: 2.5rem;
  }

  .how-works__cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .how-works__cta .arrow__btn {
    width: 100%;
    max-width: 400px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .how-works__intro {
    font-size: 14px;
  }

  .how-works__logo img {
    height: 32px;
  }

  .how-works__tab {
    padding: 10px 20px;
    font-size: 13px;
  }

  .how-works__step-image {
    height: 180px;
  }

  .how-works__step-label {
    font-size: 16px;
  }

  .how-works__links {
    flex-direction: column;
  }

  .how-works__link {
    width: 100%;
    text-align: center;
  }

  .how-works__cta .arrow__btn--new.how-works__btn {
    width: 100%!important;
  }
}

/* New Theme April End */