@charset "UTF-8";
/* geologica-regular - cyrillic_cyrillic-ext_latin */
@font-face {
    font-display: swap;
  font-family: "Geologica";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/geologica-regular.woff2") format("woff2");
}
/* manrope-regular - cyrillic_cyrillic-ext_latin */
@font-face {
    font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/manrope-regular.woff2") format("woff2");
}
/* manrope-700 - cyrillic_cyrillic-ext_latin */
@font-face {
    font-display: swap;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/manrope-700.woff2") format("woff2");
}
/* manrope-regular - cyrillic_cyrillic-ext_latin */
@font-face {
    font-display: swap;
  font-family: "Circe";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Circe-Regular.woff2") format("woff2");
}
/* CSS Reboot Styles */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body,
ul,
ol,
p,
dl,
dd,
figure,
blockquote,
pre {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font: inherit;
    margin: 0;
}

ul, ol {
    padding: 0;
    list-style: none;
}

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

td,
th {
    padding: 0;
    text-align: left;
    font-weight: normal;
}

a {
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
}

img,
audio,
canvas,
iframe,
svg,
video {
    max-width: 100%;
 /* Set responsive behaviour */
    height: auto;
    vertical-align: middle;
 /* Remove bottom spacing under element (line-height) */
}

iframe {
    border: none;
}

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

input,
textarea,
button,
optgroup,
select {
    margin: 0;
    font-family: inherit;
    vertical-align: middle;
}

textarea {
    resize: vertical;
}

/* Fast Tap enables no-delay taps (FastClick-esque) on supporting browsers */
a,
button,
input,
label,
select,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

/* Make fonts more sexy */
body,
input,
textarea,
button,
select {
    -webkit-font-smoothing: antialiased;
}

:root {
    --main-brand-color: #2BCBF3;
    --main-light-brand-color: #D7F8FF;
    --error-color: #FF5569;
    --main-brand-color-hover: #4DDBFE;
    --main-brand-color-disabled: #AAEEFF;
    --first-dark-color: #000000;
    --second-dark-color: #666666;
    --third-dark-color: #999999;
    --strokes-color: #E6E6E6;
    --elements-color: #CFD0D9;
    --icons-color: #E7E9F1;
    --input-color: #F2F3F8;
    --main-light: #ffffff;
    --fourth-color: #000000;
    --fifth-color: #000000;
    --formular-font: "Formular", Arial, Helvetica, sans-serif;
    --sf-pro-font: "SF Pro", Arial, Helvetica, sans-serif;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

*::-webkit-input-placeholder {
    opacity: 1;
}

*::-moz-placeholder {
    opacity: 1;
}

*:-ms-input-placeholder {
    opacity: 1;
}

*::-ms-input-placeholder {
    opacity: 1;
}

*::placeholder {
    opacity: 1;
}

body {
    width: 100%;
    height: auto;
    min-height: 100dvh;
    font-family: "Geologica", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    color: #1B1B1A;
    background-color: #fff;
    position: relative;
}

.wrapper {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    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;
}

.header {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
}

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: #000;
}

input {
    border: 0;
    outline: 0;
    border-radius: 0;
}

button {
    padding: 0;
    border: 0;
    background-color: transparent;
    color: #fff;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

@media (hover: none) and (pointer: coarse) {
    .no-scroll {
        margin-right: 0;
    }
}

textarea:focus {
    outline: none;
}

._container {
    width: 100%;
    max-width: 1560px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1025px) {
    ._container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 500px) {
    ._container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
}

.btn:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}

.btn:active {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
}

/* Selection color change */
/* Scrollbar change */
/* Header styles */
/* Media queries */
@media (min-width: 768px) {
    .br-tab {
        display: none;
    }

    .br-mob {
        display: none;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .br-desc {
        display: none;
    }

    .br-mob {
        display: none;
    }
}

@media (max-width: 480px) {
    .br-desc {
        display: none;
    }

    .br-tab {
        display: none;
    }
}
/* STYLES */
.header {
    min-height: 80px;
    height: 80px;
    background-color: #DCCDBE;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

.main {
    margin-top: 80px;
}

.header-inner {
    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;
    min-height: 100%;
}

.header-inner__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.logo-box {
    width: 250px;
    aspect-ratio: 250/61;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.logo-box img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.navigate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.header-menu li {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1;
    text-transform: lowercase;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.header-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.tel-icon {
    width: 13.5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background-image: url("../img/tel-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    top: 1px;
    position: relative;
}

.header-address {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    color: #60605F;
    position: relative;
    -webkit-text-decoration: underline dotted #60605F;
    text-decoration: underline dotted #60605F;
    text-underline-offset: 4px;
}

.header-address:hover {
    text-decoration: none;
}

/* burger menu */
:root {
    --burger-menu-color: #1B1B1A;
    --burger-menu-width: 28px;
    --burger-menu-height: 22px;
    --burger-top-plus: 5px;
    --burger-top-minus: -5px;
    --burger-line-height: 2px;
    --burger-line-round: 0px;
}

.header__burger {
    width: var(--burger-menu-width);
    height: var(--burger-menu-height);
    position: relative;
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    background-color: transparent;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
    display: none;
}

.header__burger span {
    height: var(--burger-line-height);
    border-radius: var(--burger-line-round);
    background-color: var(--burger-menu-color);
    width: 100%;
    position: absolute;
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.header__burger span::before {
    content: "";
    height: var(--burger-line-height);
    border-radius: var(--burger-line-round);
    background-color: var(--burger-menu-color);
    left: 0px;
    position: absolute;
    top: var(--burger-top-minus);
    width: 100%;
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition: top 0.25s 0.25s, -webkit-transform 0.25s;
    transition: top 0.25s 0.25s, -webkit-transform 0.25s;
    -o-transition: transform 0.25s, top 0.25s 0.25s;
    transition: transform 0.25s, top 0.25s 0.25s;
    transition: transform 0.25s, top 0.25s 0.25s, -webkit-transform 0.25s;
}

.header__burger span::after {
    content: "";
    height: var(--burger-line-height);
    border-radius: var(--burger-line-round);
    background-color: var(--burger-menu-color);
    left: 0px;
    position: absolute;
    top: var(--burger-top-plus);
    width: 100%;
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition: top 0.25s 0.25s, -webkit-transform 0.25s;
    transition: top 0.25s 0.25s, -webkit-transform 0.25s;
    -o-transition: transform 0.25s, top 0.25s 0.25s;
    transition: transform 0.25s, top 0.25s 0.25s;
    transition: transform 0.25s, top 0.25s 0.25s, -webkit-transform 0.25s;
}

.header__burger.open span {
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
    background: transparent;
}

.header__burger.open span:before {
    -webkit-transition: top 0.25s, -webkit-transform 0.25s 0.25s;
    transition: top 0.25s, -webkit-transform 0.25s 0.25s;
    -o-transition: top 0.25s, transform 0.25s 0.25s;
    transition: top 0.25s, transform 0.25s 0.25s;
    transition: top 0.25s, transform 0.25s 0.25s, -webkit-transform 0.25s 0.25s;
    top: 0px;
    -webkit-transform: rotateZ(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotateZ(-30deg);
}

.header__burger.open span:after {
    -webkit-transition: top 0.4s, -webkit-transform 0.25s 0.25s;
    transition: top 0.4s, -webkit-transform 0.25s 0.25s;
    -o-transition: top 0.4s, transform 0.25s 0.25s;
    transition: top 0.4s, transform 0.25s 0.25s;
    transition: top 0.4s, transform 0.25s 0.25s, -webkit-transform 0.25s 0.25s;
    top: 0px;
    -webkit-transform: rotateZ(30deg);
    -ms-transform: rotate(30deg);
    transform: rotateZ(30deg);
}

.v-bg-btn {
    height: 78px;
    width: 100%;
    max-width: 355px;
    font-weight: 700;
    font-size: 17px;
    line-height: 110%;
    text-align: center;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 5;
    background-image: url("../img/btn-bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.v-bg-btn:hover {
    color: #fff;
}

.hero-section {
    width: 100%;
    height: auto;
    background-image: url("../img/hx-1920.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 1920/970;
    height: 970px;
    background-color: #BCCAE1;
    position: relative;
}

.hero-content-label {
    display: none;
}

.hero-content-block {
    padding-top: 80px;
    font-size: 4.5dvw;
    color: #fff;
    line-height: 1.04;
}

.mo-block {
    position: absolute;
    right: 250px;
    right: 4%;
    top: 110px;
    width: 160px;
    aspect-ratio: 1/1;
    background-image: url("../img/gt-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.hero__inner {
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-content-block {
    position: relative;
}

.hero-header-h2 {
    max-width: 1100px;
    font-size: 65px;
}


@media (min-width: 1920px) {
    .hero-section {
        background-size: cover;
    }

    .hero-content-block {
        font-size: 3.2dvw;
    }
}

@media (max-width: 1600px) {
    .hero-section {
        background-image: url("../img/hx-1024.webp");
        aspect-ratio: 1024/971;
        height: auto;
    }
}

@media (max-width: 1500px) {
    .mo-block {
        top: 70px;
    }
}

@media (max-width: 1400px) {
    .about-info__right {
        width: 100%;
    }

    .hero-header-h2 {
        max-width: 770px;
        line-height: 1;
    }
}

@media (max-width: 1150px) {
    .hero-header-h2 {
        font-size: 60px;
    }
}

@media (max-width: 1000px) {
    .hero-section {
        aspect-ratio: 1024/970;
        height: auto;
    }

    .hero-header-h2 {
        max-width: 700px;
        font-size: 55px;
    }
}

@media (max-width: 900px) {
    .hero-content-block {
        font-size: 3.7dvw;
        color: #fff;
        line-height: 1.075;
    }

    .hero-content-block {
        padding-top: 30px;
    }
}

@media (max-width: 800px) {
    .mo-block {
        right: 10%;
        bottom: 7%;
    }

    .hero-header-h2 {
        max-width: 550px;
        font-size: 50px;
        margin-top: 7px;
    }

    .mo-block {
        width: 120px;
    }
}

@media (max-width: 650px) {
    .hero-section {
        width: 100%;
        height: auto;
        background-image: url("../img/hx-360.webp");
        aspect-ratio: 375/536;
        background-size: cover;
        background-position-x: right;
    }

    .mo-block {
        width: 108px;
        right: 20px;
        bottom: 200px;
    }

    .hero-content-block {
        font-size: 36px;
    }

    .hero-content-label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 15px;
    }

    .hero-content-block {
        padding-top: 40px;
    }

    .hero-header-h2 {
        max-width: 481px;
        font-size: 41px;
    }
}

@media (max-width: 500px) {
    .hero-section {
        width: 100%;
        height: 540;
    }

    .mo-block {
        background-image: url("../img/gt-icon-mob.svg");
    }
}

.about-section {
    height: 750px;
    z-index: 5;
    position: relative;
}

div.bb-item:nth-child(4) {
    color: #fff;
}

div.bb-item:nth-child(5) {
    color: #fff;
}

.build-box {
    margin-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 70px;
    -moz-column-gap: 70px;
    column-gap: 70px;
}

.build-box__images {
    width: calc(100% - 370px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    aspect-ratio: 1108/662;
}

.build-box__info {
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 55px;
}

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

.bb-value {
    font-size: 50px;
    line-height: 1;
}

.bb-title {
    font-size: 16px;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.lf-image {
    width: 67.1%;
}

.build-box-hn {
    width: 32.6%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.build-box-hn img {
    height: 50%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bm-section {
    width: 100%;
    height: 1720px;
    background-image: url("../img/bm-bg.webp");
    background-size: cover;
    background-position: center;
    background-position-y: bottom;
    background-repeat: no-repeat;
    position: relative;
}

.bm__inner {
    padding-top: 390px;
}

.bm-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
}

.bm-box_left {
    width: 850px;
}

.bm-box-title {
    font-size: 82px;
    color: #fff;
    margin-bottom: 50px;
}

.bm-box-text {
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.bm-box-subtext {
    font-size: 20px;
    color: #fff;
    line-height: 1.3;
    max-width: 660px;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.bm-box_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    padding-top: 175px;
    color: #fff;
}

.bm-box-item .bm-box-item-top {
    font-family: "Circe", Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.bm-box-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 6px;
}

.bm-box-item-bottom-tel {
    font-size: 50px;
    color: #fff;
}

.bm-box-item-bottom-tel:hover {
    color: #fff;
}

.bm-box-item-bottom {
    font-size: 28px;
    color: #fff;
}

/* section energo */
.header-h2 {
    font-weight: 400;
    font-size: 82px;
    line-height: 100%;
    text-align: center;
}

.energo-section {
    background: -webkit-gradient(linear, left top, left bottom, from(#cecde8), to(#fff));
    background: -o-linear-gradient(top, #cecde8 0%, #fff 100%);
    background: linear-gradient(180deg, #cecde8 0%, #fff 100%);
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    position: relative;
}

.energo-box {
    margin-top: 65px;
    max-width: 865px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.en-in {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.en-in p {
    font-weight: 400;
    font-size: 28px;
    line-height: 1.28;
    color: #000;
    width: 210px;
}

.en-in img {
    width: 92px;
    height: auto;
    aspect-ratio: 1/1;
}

.en-in-1 {
    top: 90px;
    left: -285px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.en-in-2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -285px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.en-in-3 {
    bottom: 90px;
    left: -285px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.en-in-4 {
    top: 90px;
    right: -285px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.en-in-5 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -285px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.en-in-6 {
    bottom: 90px;
    right: -285px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.en-badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 204px;
    aspect-ratio: 1/1;
    font-size: "Circe", Arial, Helvetica, sans-serif;
    background-image: url("../img/star.svg");
    background-size: contain;
    background-repeat: no-repeat;
    font-weight: 400;
    font-size: 20px;
    line-height: 128%;
    text-align: center;
    color: #fff;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
    position: absolute;
    bottom: -30px;
    right: 140px;
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
}

.en-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url("../img/enp-bg.svg");
    background-image: url("../img/enp-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 2;
}

.dc-box__mobile {
    display: none;
}

@media (max-width: 1500px) {
    .en-in {
        display: none;
    }
}

.dc-box__mobile .en-in {
    position: static;
}

.high-quality-section {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.high-quality__inner {
    margin-top: 40px;
}

.hq-bg-img {
    width: 100%;
    aspect-ratio: 1920/776;
    height: auto;
    background-image: url("../img/vks.webp");
    background-size: contain;
    background-repeat: no-repeat;
}

.hq-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: -70px;
    position: relative;
}

.hq-item {
    width: 335px;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 30px;
}

.hq-item img {
    width: 132px;
    aspect-ratio: 1/1;
}

.hq-item p {
    text-align: center;
    font-size: 27px;
}

.about-info {
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

@media (max-width: 1400px) {
	.about-info {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-column-gap: 40px;
		-moz-column-gap: 40px;
		column-gap: 40px;
	}

	.about-info__right .v-bg-btn {
		margin-top: 40px;
	}
}

.about__inner {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-info__left {
    max-width: 570px;
    width: 100%;
    font-family: "Circe", Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
}

.about-info__center {
    max-width: 480px;
    width: 100%;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.about-title {
    font-size: 50px;
    margin-bottom: 20px;
}

.ab-grey-text {
    color: #60605F;
}

.ab-orange-text {
    margin-top: 10px;
    color: #EC6C20;
}

.about-info__right {
    font-size: 16px;
    min-width: 230px;
}

.about-info__right .v-bg-btn {
    width: 230px;
    aspect-ratio: 230/78;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.wellness-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.vn-header-h2 {
    font-size: 50px;
    text-align: center;
}

.wellness-section .vn-header-h2 {
    text-align: left;
}

.bnm-box {
    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;
    margin-top: 60px;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.bnm-item {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 10px;
}

.bnm-item p {
    text-align: center;
    color: #60605F;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.map-box {
    margin-top: 40px;
}

.bnm-item__icon {
    width: 24px;
    top: -2px;
    position: relative;
}

.bnm-item__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
}

.bnm-item__bottom span {
    font-size: 28px;
}

.wellness-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-top: 50px;
}

.wellness-box--one {
    margin-bottom: 120px;
}

.wellness-box--two {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.wellness-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
    width: calc(25% - 15px);
}

.wellness-item img {
    width: 100%;
    height: auto;
}

.wellness-item p {
    font-size: 19px;
    height: 52px;
}

.map-box {
    width: 100%;
    height: 700px;
    background-color: rgb(213, 213, 213);
}

.map-box iframe {
    width: 100%;
    height: 100%;
}

.map-section {
    padding-top: 60px;
}

.dx-section {
    background-image: url("../img/gfk-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 535px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0px;
}

.vx-section {
    margin-top: 60px;
}

.dx-section__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dx-section__left {
    width: 100%;
    max-width: 677px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 10px;
    position: relative;
}

.dx-header-h2 {
    color: #fff;
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.dx-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.28;
    color: #fff;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.dx-section__right {
    width: 480px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

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

.form-title {
    font-size: 28px;
    line-height: 1.28;
    margin-bottom: 20px;
    color: #fff;
}

.form-item input {
    padding: 20px;
    width: 100%;
    height: 58px;
    margin-bottom: 10px;
    background: #d85f17;
    font-weight: 400;
    font-size: 16px;
    line-height: 128%;
    color: #fff;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.form-item input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 16px;
    line-height: 128%;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.form-item input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 16px;
    line-height: 128%;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.form-item input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 16px;
    line-height: 128%;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.form-item input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 16px;
    line-height: 128%;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.form-item input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: 16px;
    line-height: 128%;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.form-box input[type=submit] {
    max-width: initial;
    width: 100%;
    color: #EC6C20;
    margin-top: 0;
    background-color: transparent;
    background-image: none;
}

.pol-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 128%;
    color: #fff;
    margin-top: 20px;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.pol-text a {
    text-decoration: underline;
    color: #fff;
}

.pol-text a:hover {
    text-decoration: none;
    color: #fff;
}

.form-item-btn-box {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    margin-top: 20px;
}

.form-item-btn-box::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #EC6C20;
    border-radius: 100px;
}

.form-item-btn-box::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #EC6C20;
    border-radius: 100px;
}

.form-item-tel {
    position: relative;
}

.form-item-tel::before {
    content: "";
    position: absolute;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 22px;
    width: 20px;
    height: 20px;
    background-image: url("../img/tel-icon-wt.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.form-item-tel input {
    padding-left: 55px;
}

.cp-section {
    padding-top: 60px;
    padding-bottom: 40px;
}

.cp-section .header-h2 {
    text-align: left;
}

.cp-box {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cp-box-item {
    width: calc(25% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
}

.cp-box-item-img {
    width: 100%;
    height: 300px;
}

.cp-box-item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cp-title {
    font-size: 28px;
    margin-top: 4px;
}

.cp-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cp-bottom__left {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.28;
    color: #60605F;
}

.dwnl-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 24px;
    height: 24px;
    background-image: url("../img/dnl.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
}

.cp-bottom__link {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.28;
    color: #60605F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tabs-box-apart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 30px;
}

.tabs-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    border-radius: 100px;
    background-color: #F6E5D4;
}

.tabs-box-btn {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    border-radius: 100px;
    background-color: #F6E5D4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    color: #60605F;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.tabs-box-btn--active {
    background-color: #EC6C20;
    color: #fff;
}

.apartments-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.apartments-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

.apartments-box__left {
    width: 50%;
}

.apartments-box__right {
    width: 50%;
    padding: 25px;
    -webkit-box-shadow: -30px 0 84px 0 rgba(0, 0, 0, 0.1);
    box-shadow: -30px 0 84px 0 rgba(0, 0, 0, 0.1);
}

.apart-prew {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    height: 806px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.apart-prew::-webkit-scrollbar {
    width: 7px;
}

.apart-prew::-webkit-scrollbar-track {
    background: transparent;
}

.apart-prew::-webkit-scrollbar-thumb {
    background: #EC6C20;
    border-radius: 10px;
}

.apart-prew::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.apart-prew {
    scrollbar-width: thin;
    scrollbar-color: #EC6C20 transparent;
}

@media (min-width: 1800px) {
    .mo-block {
        right: 2%;
    }

    .hero-header-h2 {
        font-size: 70px;
    }

    .hero-section {
        aspect-ratio: 1920/971;
        height: auto !important;
        max-height: initial;
    }
}

.apartment-item {
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
    aspect-ratio: 355/395;
    cursor: pointer;
    background-image: url("../img/ap-box-bg-r.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(50% - 10px);
}

.apartment-item--active {
    background-image: url("../img/ap-box-bg-act.svg");
}

.apartment-item__bottom {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.apartment-area-value {
    font-size: 25px;
}

.apartments__inner .header-h2 {
    margin-bottom: 50px;
}

.apart-vision {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.apart-vision-full-img {
    width: 95%;
    aspect-ratio: 1/1;
    margin-bottom: 15px;
}

.apart-vivsion__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    width: 95%;
}

.av-bot {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 80px;
}

.av-bot p {
    font-size: 25px;
}

.av-bot .av-title {
    font-size: 16px;
}

.av-title {
    color: #60605F;
    font-family: "Circe", Arial, Helvetica, sans-serif;
    line-height: 1;
    font-size: 16px;
}

.apartment-info {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.apartments-box__right {
    position: relative;
}

.apartments-box__right .v-bg-btn {
    position: absolute;
    bottom: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.footer {
    margin-top: 0px;
}

.footer__top {
    width: 100%;
    background-color: #F6E5D4;
}

.footer__top-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 150px;
    -moz-column-gap: 150px;
    column-gap: 150px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 252px;
}

.footer__bottom-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 150px;
    -moz-column-gap: 150px;
    column-gap: 150px;
    height: 48px;
}

.footer-copyright,
.footer-info {
    font-weight: 400;
    font-size: 14px;
    line-height: 128%;
    color: #60605F;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.ft-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.ft-box-item {
    min-width: 230px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 12px;
}

.ft-box-item__title {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.28;
    color: #60605F;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.ft-box-item__val {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.28;
    font-family: "Circe", Arial, Helvetica, sans-serif;
}

.footer__bottom {
    width: 100%;
    background-color: #DCCDBE;
}

.logo-box--footer {
    width: 318px;
}

.vx-section {
    background-image: url("../img/nx-1.webp");
    background-size: cover;
    background-repeat: no-repeat;
    height: 766px;
    background-position: center;
}

.vx-section .form-box .form-title {
    color: #1B1B1A;
}

.vx-section .form-box .form-title {
    color: #1B1B1A;
}

.vx-section .form-item input {
    background-color: #BEBDDD;
}

.vx-section .form-item input {
    color: #1B1B1A;
}

.vx-section .form-item input::-webkit-input-placeholder {
    color: #68678F;
}

.vx-section .form-item input::-moz-placeholder {
    color: #68678F;
}

.vx-section .form-item input:-ms-input-placeholder {
    color: #68678F;
}

.vx-section .form-item input::-ms-input-placeholder {
    color: #68678F;
}

.vx-section .form-item input::placeholder {
    color: #68678F;
}

.vx-section .form-box input[type=submit] {
    color: #1B1B1A;
}

.vx-section .form-item-btn-box::before,
.vx-section .form-item-btn-box::after {
    background-color: #CDCDE9;
}

.vx-section .pol-text {
    color: #1B1B1A;
}

.vx-section .pol-text a {
    color: #1B1B1A;
}

.vx-section .form-item-tel::before {
    -webkit-filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(1518%) hue-rotate(203deg) brightness(97%) contrast(87%);
    filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(1518%) hue-rotate(203deg) brightness(97%) contrast(87%);
}

.vx-section .dx-section__right {
    margin-top: 20px;
}

.sp-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.sp-box .ft-box-item__title {
    color: #68678F;
}

.sp-box .ft-box-item__val {
    color: #000;
    font-size: 28px;
}

.sp-box .ft-box-item__val-bn {
    font-size: 20px;
}

.vx-section .dx-header-h2 {
    font-size: 82px;
    max-width: 980px;
    margin-bottom: 35px;
}

.vx-section .dx-section__left {
    max-width: 980px;
}

.vx-section .dx-text {
    font-size: 28px;
}

.buy-simple-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.buy-simple-section .vn-header-h2 {
    text-align: left;
    font-size: 82px;
    line-height: 1.05;
}

.bs-img {
    margin-top: 50px;
    width: 1480px;
    height: 540px;
    background-image: url("../img/af-1.webp");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
}

.bs-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    top: -35px;
    position: relative;
}

.bs-box-item {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(25% - 15px);
}

.bs-box-item__number {
    width: 66px;
    aspect-ratio: 1/1;
    border-radius: 100px;
    background-color: #CECDE8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.bs-box-item__title {
    font-size: 28px;
    color: #1B1B1A;
    margin-bottom: 10px;
    text-align: center;
}

.bs-box-item__text {
    text-align: center;
    color: #68678F;
    font-size: 17px;
}

.buy-simple-section .v-bg-btn {
    width: 240px;
    background-image: url("../img/btn-vbh.svg");
    color: #1B1B1A;
    margin-top: 20px;
}

.hq-box__mobile {
    display: none;
}

.swiper {
    display: none;
}

.footer-m-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    padding-bottom: 65px;
}

.xr-text {
    font-family: "Circe", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.28;
    max-width: 604px;
    margin-right: 160px;
}

.footer-menu {
    display: grid;
    grid-template-columns: 230px 230px;
    gap: 20px;
}

.footer-menu li a {
    font-family: "Circe", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-decoration: underline;
    color: #60605F;
    line-height: 1;
}

.footer-menu li a:hover {
    text-decoration: none;
}

.apart-prew-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
}

.apart-prew-box .apartment-item {
    background-image: url("../img/ap-box-bg-r.svg");
}

.apart-prew-box .apartment-item--active {
    background-image: url("../img/ap-box-bg-act.svg");
}

.apart-prew-box .apartment-item:nth-child(even) {
    background-image: url("../img/ap-box-bg.svg");
}

.apart-prew-box .apartment-item:nth-child(even).apartment-item--active {
    background-image: url("../img/a-box-bg-act.svg");
}

.apart-prew-box .apartment-item:nth-child(4n-1) {
    background-image: url("../img/ap-box-bg.svg");
}

.apart-prew-box .apartment-item:nth-child(4n-1).apartment-item--active {
    background-image: url("../img/a-box-bg-act.svg");
}

.apart-prew-box .apartment-item:nth-child(4n) {
    background-image: url("../img/ap-box-bg-r.svg");
}

.apart-prew-box .apartment-item:nth-child(4n).apartment-item--active {
    background-image: url("../img/ap-box-bg-act.svg");
}

@media (max-width: 1570px) {
    .bs-img {
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media (max-width: 1550px) {
    .bm-box-title {
        font-size: 70px;
    }

    .bm-box_right {
        padding-top: 162px;
    }
}

@media (max-width: 1500px) {
    .header-h2 {
        font-size: 68px;
    }

    .dc-box__mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 50px;
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        row-gap: 25px;
    }

    .energo-box {
        margin-top: 65px;
        max-width: initial;
        width: 100%;
    }

    .dc-box__mobile .en-in {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        left: initial;
        top: initial;
        bottom: initial;
        right: initial;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        width: calc(50% - 20px);
    }

    .dc-box__mobile .en-in p {
        width: 365px;
    }
}

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

    .dx-section {
        height: auto;
        background-image: none;
    }

    .dx-section__left {
        width: 100%;
        max-width: initial;
        background-color: #EC6C20;
        background-image: url("../img/gfk-bg-2.webp");
        background-size: cover;
        background-repeat: no-repeat;
        background-position-x: right;
        top: 0;
        height: 486px;
    }

    .dx-header-h2 {
        max-width: 490px;
        margin-bottom: 20px;
    }

    .dx-text {
        max-width: 520px;
    }

    .dx-section__left {
        padding-top: 40px;
    }

    .dx-section__inner._container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .dx-section--content {
        padding-left: 20px;
    }

    .dx-header-h2 {
        font-size: 40px;
    }

    .dx-section__right {
        background-color: #EC6C20;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: auto;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .dx-section__right .form-box {
        width: 100%;
    }

    .form-item {
        width: calc(50% - 5px);
    }

    .form-item-btn-box {
        width: 100%;
    }

    .leave-request {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .form-item input {
        height: 64px;
    }

    .vx-section .dx-section__left {
        width: 100%;
        height: 400px;
        max-width: initial;
        background-image: none;
    }

    .vx-section .dx-header-h2 {
        font-size: 68px;
        line-height: 1;
    }

    .dx-section__right {
        height: auto;
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .form-box {
        max-width: 984px;
        margin-left: auto;
        margin-right: auto;
    }

    .vx-section {
        background-image: url("../img/xx-2.webp");
        height: 1100px;
    }

    .vx-section .dx-section__left {
        background-color: transparent;
    }

    .vx-section .dx-section__right {
        background-color: transparent;
    }

    .vx-section .dx-section__right {
        height: auto;
    }

    .vx-section .dx-section__inner._container {
        height: 100%;
    }

    .vx-section .dx-text br {
        display: none;
        max-width: initial;
    }

    .vx-section .dx-text {
        max-width: initial;
    }

    .vx-section .dx-section__left {
        height: auto;
    }

    .vx-section .dx-section__right .form-box {
        max-width: 650px;
    }

    .vx-section .form-item input {
        height: 54px;
    }

    .vx-section .form-item {
        width: 100%;
    }

    .vx-section .sp-box {
        max-width: 650px;
        width: 100%;
    }

    .vx-section .dx-section__inner {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        row-gap: 60px;
    }

    .vx-section .dx-section__right {
        margin-top: 0;
    }
}

@media (max-width: 1400px) {
    .header-menu {
        display: none;
    }

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

    .ft-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .ft-box {
        width: 500px;
    }

    .footer__bottom-inner {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header {
        z-index: 50;
    }

    .mobile-menu-opened .header-menu {
        position: absolute;
        left: 0;
        top: 80px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 375px;
        height: calc(100dvh - 80px);
        background-color: #DCCDBE;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        row-gap: 50px;
        padding-top: 100px;
        padding-left: 20px;
    }

    .mobile-menu-opened .header-menu li a {
        font-size: 28px;
        font-family: "Geologica", Arial, Helvetica, sans-serif;
        text-transform: capitalize;
    }

    .mobile-menu-opened .main {
        -webkit-filter: brightness(60%);
        filter: brightness(60%);
    }

    .bb-value {
        font-size: 40px;
        line-height: 1;
    }

    .build-box {
        margin-top: 70px;
    }

    .build-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 40px;
    }

    .footer__bottom-inner {
        padding-top: 15px;
        padding-bottom: 15px;
        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-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        row-gap: 10px;
    }

    .footer__bottom,
  .footer__bottom-inner {
        height: auto;
    }

    .apartment-area-value,
  .av-bot p {
        font-size: 21px;
    }

    .apart-prew {
        grid-template-columns: 1fr;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .apartment-item {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .apartments-box__left {
        width: 350px;
    }

    .apartments__inner._container {
        padding-right: 0;
    }

    .apartments-box__right {
        width: calc(100% - 370px);
        padding-bottom: 70px;
    }

    .apartments-box {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .apartments-box__right .v-bg-btn {
        aspect-ratio: 355/78;
        max-width: 290px;
        height: auto;
        font-size: 16px;
    }

    .hero-content-block {
        padding-top: 60px;
    }

    .build-box__images {
        width: 100%;
    }

    .build-box__info {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-column-gap: 10%;
        -moz-column-gap: 10%;
        column-gap: 10%;
    }

    .bb-item {
        min-width: 200px;
    }

    .about-section {
        height: auto;
    }

    div.bb-item:nth-child(4) {
        color: initial;
    }

    div.bb-item:nth-child(5) {
        color: initial;
    }

    .bm__inner {
        padding-top: 200px;
    }

    .build-box__info {
        row-gap: 30px;
    }

    .bb-value {
        margin-bottom: 3px;
    }

    .apart-prew {
        height: 1580px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .apartment-item {
        width: 100%;
    }

    .xr-text {
        margin-right: 4.5dvw;
    }

    .footer-menu {
        width: 500px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .footer-m-box {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .xr-text {
        width: 500px;
        margin-right: initial;
    }

    .logo-box--footer {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .footer__top-inner {
        height: auto;
        padding-top: 60px;
        padding-bottom: 50px;
    }
}

@media (max-width: 1350px) {
    .bm-box-text {
        font-size: 40px;
    }

    .bm-box-item-bottom-tel {
        font-size: 40px;
    }

    .bm__inner {
        padding-top: 100px;
    }

    .bm-box_right {
        padding-top: 320px;
    }

    .bm-box_left .bm-box-text {
        max-width: 550px;
    }

    .bm-box-subtext {
        max-width: 500px;
    }

    .bm-box-title {
        white-space: nowrap;
    }

    .bm-box_left {
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .bm-box {
        position: relative;
    }

    .bm-box_right {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        position: absolute;
        top: 20px;
        right: 0;
        max-width: 480px;
    }
}

@media (max-width: 1250px) {
    .bs-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 60px;
    }

    .bs-box-item {
        width: calc(50% - 15px);
    }

    .bs-box-item__text br {
        display: none;
    }
}

@media (max-width: 1200px) {
    .cp-title {
        font-size: 23px;
    }

    .vx-section .dx-section__right {
        padding-left: 100px;
    }

    .vx-section .dx-section__right {
        background-color: #CDCDE9;
        padding-top: 10px;
        padding-bottom: 60px;
        padding-left: 20px;
    }

    .vx-section {
        height: 1000px;
    }

    .about-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .about-title,
  .about-info__left p {
        text-align: center;
    }

    .about-info__left {
        max-width: 650px;
        margin-bottom: 20px;
    }

    .about-info__center {
        max-width: 650px;
        text-align: center;
    }

    .ab-grey-text {
        margin-bottom: 20px;
    }
}

@media (max-width: 1100px) {
    .cp-box-item {
        width: calc(50% - 10px);
    }

    .cp-box-item-img {
        height: 300px;
    }

    .cp-box {
        gap: 20px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cp-title {
        font-size: 28px;
    }

    .cp-box {
        margin-top: 40px;
    }

    .footer__top-inner {
        -webkit-column-gap: 50px;
        -moz-column-gap: 50px;
        column-gap: 50px;
    }

    .logo-box--footer {
        width: 250px;
    }

    .ft-box-item__val {
        font-size: 17px;
    }

    .ft-box-item__title {
        font-size: 17px;
    }

    .hq-bg-img {
        width: 1920px;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .high-quality__inner {
        margin-top: 60px;
    }

    .vn-header-h2 {
        text-align: left;
        font-size: 40px;
    }

    .map-section .vn-header-h2 {
        text-align: center;
        font-size: 40px;
    }

    .vx-section .dx-header-h2 {
        font-size: 50px;
    }

    .dx-section__left {
        padding-top: 55px;
    }

    .vx-section .dx-section__right {
        padding-top: 75px;
        padding-bottom: 60px;
        padding-left: 20px;
    }
}

@media (max-width: 1025px) {
    .en-badge {
        right: 215px;
    }

    .energo-section {
        padding-bottom: 85px;
    }

    .high-quality-section .header-h2 {
        text-align: left;
        font-size: 68px;
    }

    .buy-simple-section .vn-header-h2 {
        text-align: left;
        font-size: 68px;
        line-height: 1;
    }

    .bs-img {
        margin-top: 40px;
    }

    .av-bot p {
        font-size: 24px;
    }

    .hero-content-block {
        padding-top: 50px;
    }
}

@media (max-width: 1000px) {
    .header-h2 {
        font-size: 50px;
    }

    .cp-section .header-h2 {
        font-size: 68px;
    }

    .hq-item p {
        font-size: 22px;
    }

    .hq-item img {
        width: 100px;
    }

    .hq-box {
        top: -50px;
    }

    .wellness-item p {
        font-size: 15px;
    }

    .wellness-box {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }

    .wellness-item {
        row-gap: 10px;
        width: calc(25% - 7.5px);
    }

    .bnm-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 25px;
    }

    .bnm-item {
        width: calc(50% - 10px);
    }

    .apartments-box {
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
    }

    .apartments-box__right {
        width: calc(100% - 360px);
    }

    .apartments-section {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .wellness-section,
  .high-quality-section,
  .map-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .map-section {
        padding-bottom: 0;
    }

    .wellness-box--one {
        margin-bottom: 60px;
    }

    .apartments-section {
        padding-top: 0px;
    }
}

@media (max-width: 950px) {
    .bm-box {
        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-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .bm-box_right {
        position: relative;
        left: 0;
        top: 0;
        padding-top: 55px;
    }

    .about__inner {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .bm-box-title {
        margin-bottom: 40px;
    }

    .bm__inner {
        padding-top: 70px;
    }
}

@media (max-width: 900px) {
    .en-in p {
        font-size: 22px;
    }

    .cp-section .header-h2 {
        font-size: 36px;
    }

    .cp-title {
        font-size: 22px;
    }

    .cp-bottom__left {
        font-weight: 400;
        font-size: 16px;
    }

    .cp-bottom__link {
        font-weight: 400;
        font-size: 16px;
    }

    .buy-simple-section .vn-header-h2 {
        font-size: 36px;
    }

    .bs-img {
        margin-top: 30px;
    }

    .apartments-box__left {
        width: 250px;
    }

    .apartments-box__right {
        width: calc(100% - 260px);
    }

    .av-bot p {
        font-size: 22px;
    }
}

@media (max-width: 850px) {
    .footer__top-inner {
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer__top {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .logo-box--footer {
        width: 300px;
    }

    .ft-box-item__title,
  .ft-box-item__val {
        font-size: 20px;
    }

    .ft-box {
        margin-top: 40px;
        width: 90%;
    }

    .footer__top-inner {
        height: auto;
    }

    .hq-item p {
        font-size: 18px;
    }

    .footer-m-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 40px;
    }

    .footer-menu {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .footer-m-box {
        row-gap: 7px;
    }

    .footer-m-box {
        padding-bottom: 0;
        padding-top: 0;
    }

    .footer__top {
        padding-bottom: 40px;
    }

    .ft-box {
        width: 100%;
    }

    .footer__top-inner {
        padding-top: 0;
    }

    .footer__top-inner {
        padding-bottom: 35px;
    }

    .xr-text {
        width: 100%;
    }

    .vx-section .dx-header-h2 {
        font-size: 40px;
    }
}

@media (max-width: 800px) {
    .dc-box__mobile .en-in {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .energo-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .en-badge {
        width: 175px;
        font-size: 14px;
        right: 15%;
    }

    .energo-img {
        min-height: 600px;
        max-width: 984px;
        width: 984px;
        aspect-ratio: 984/662;
        position: relative;
        left: -20px;
        top: 0;
    }

    .header-h2 {
        font-size: 36px;
    }

    .high-quality-section .header-h2 {
        font-size: 36px;
    }

    .hq-box {
        display: none;
    }

    .hq-box.hq-box__mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 95%;
        row-gap: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .hq-item p {
        font-size: 22px;
    }

    .energo-box {
        margin-top: 40px;
    }

    .dx-section__left {
        background-position-x: left;
    }

    .tabs-box-btn {
        font-size: 16px;
    }

    .tabs-box-apart {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}

@media (max-width: 750px) {
    .header-inner__right {
        display: none;
    }

    .energo-section__inner .header-h2 br {
        display: none;
    }

    .hq-box.hq-box__mobile {
        margin-top: 100px;
    }

    .wellness-box--one {
        display: none;
    }

    .wellness-box--two {
        display: none;
    }

    .swiper {
        display: block;
        margin-top: 20px;
    }

    .swiper-slide {
        aspect-ratio: 1/1;
    }

    .swiper-slide img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .swiper-well-one,
  .swiper-well-two {
        margin-bottom: 60px;
        width: calc(100% + 20px);
        left: 0px;
        position: relative;
    }

    .sw-bb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 10px;
    }

    .sw-bb img {
        width: 100%;
        aspect-ratio: 1/1;
        height: auto;
    }

    .sw-bb p {
        font-size: 22px;
        font-family: "Circe", Arial;
    }

    .swiper-slide:last-child {
        margin-right: 10px !important;
    }

    .vn-header-h2 {
        font-size: 35px;
        line-height: 1.2;
    }

    .vx-section .dx-header-h2 {
        font-size: 36px;
        line-height: 1.1;
    }

    .vx-section .dx-text {
        font-size: 22px;
    }

    .apartments-box {
        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-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .apartments-box__left {
        width: 100%;
    }

    .apartments-box__right {
        width: 100%;
    }

    .apartments__inner._container {
        padding-right: 20px;
    }

    .apart-prew {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-bottom: 15px;
        width: -webkit-min-content;
        width: -moz-min-content;
        width: min-content;
        height: 200px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        overflow-x: auto;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .apartment-item {
        width: 160px;
    }

    .apartments-box__left {
        overflow-x: auto;
        overflow-y: hidden;
        margin-bottom: 12px;
        width: calc(100% + 20px);
        left: 10px;
        position: relative;
    }

    .apartments-box {
        position: relative;
    }

    .apartments-box__left .av-title {
        display: none;
    }

    .apartments-box__left .apartment-item {
        padding: 10px;
        padding-top: 5px;
        padding-bottom: 15px;
    }

    .apartments-box__right {
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .vx-section {
        margin-top: 100px;
    }

    .tabs-box-apart {
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 15px;
        left: 0;
        width: calc(100% + 20px);
    }

    .tabs-box-btn {
        white-space: nowrap;
    }

    .tabs-box:last-child {
        margin-right: 15px;
    }

    .apartment-item:last-child {
        margin-right: 15px;
    }

    .bnm-item {
        font-size: 16px;
        row-gap: 7px;
    }

    .bnm-item__bottom span {
        font-size: 22px;
    }

    .bnm-box {
        margin-top: 20px;
    }

    .header .logo-box {
        width: 225px;
    }

    .apart-prew {
        overflow-y: hidden;
    }

    .apart-prew-box {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

@media (max-width: 700px) {
    .bm-box-title {
        font-size: 36px;
    }

    .bm-box-text {
        font-size: 28px;
    }

    .bm-box-subtext {
        font-size: 16px;
    }

    .bm-box_right {
        padding-top: 40px;
    }

    .bm-box-item-bottom-tel {
        font-size: 28px;
    }

    .bm-box-item-bottom {
        font-size: 22px;
    }

    .bm-box-item .bm-box-item-top {
        font-size: 16px;
    }

    .bm__inner {
        padding-top: 230px;
    }

    .build-box__info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .about__inner {
        height: 1260px;
    }

    div.bb-item:nth-child(4) {
        color: #fff;
    }

    div.bb-item:nth-child(5) {
        color: #fff;
    }

    .build-box__images {
        overflow-x: auto;
        overflow-y: hidden;
        height: 300px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
        left: 0;
        width: calc(100% + 20px);
        padding-bottom: 10px;
    }

    .build-box-hn {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .build-box-hn img {
        height: 100%;
    }

    .build-box-hn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .build-box-hn img {
        width: 330px;
    }

    .lf-image {
        height: 100%;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        display: inline-block;
        width: 330px;
    }

    .build-box-hn > img:nth-child(2) {
        margin-right: 20px;
    }

    .about-info__left p {
        height: 200px;
    }

	.ab-grey-text {
		height: 75px;
	}

    .about__inner {
        height: 1200px;
    }
}

@media (max-width: 650px) {
    .about-title {
        font-size: 30px;
        text-align: left;
        margin-bottom: 20px;
    }

    .about-info__left p,
  .ab-grey-text,
  .ab-orange-text {
		font-size: 16px;
		text-align: left;
	}

	.about-info__right .v-bg-btn {
		margin-top: 20px;
	}

	.about__inner {
		height: 1154px;
	}
}

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

    .footer__top-inner {
        height: auto;
    }

    .cp-box-item {
        width: 100%;
    }

    .hq-bg-img {
        width: 1400px;
    }

    .high-quality__inner {
        margin-top: 20px;
    }

    .bs-img {
        width: 838px;
        aspect-ratio: 838/380;
        height: auto;
    }

    .bs-box-item {
        width: 100%;
    }

    .bs-box-item__title {
        font-size: 22px;
    }

    .bs-box-item__text {
        font-size: 16px;
    }

    .bs-box {
        row-gap: 40px;
    }

    .bs-box-item__number {
        margin-bottom: 20px;
    }

    .vx-section .dx-section__right {
        padding-bottom: 60px;
    }

    .vx-section .dx-text br {
        display: block;
    }
}

@media (max-width: 550px) {
    .sw-bb p {
        font-size: 17px;
        color: #1B1B1A;
    }
}

@media (max-width: 500px) {
    .header-inner._container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .energo-box {
        margin-top: 35px;
    }

    .en-bg {
        display: none;
    }

    .energo-section {
        background: #fff;
    }

    .en-badge {
        bottom: 80px;
    }

    .dc-box__mobile .en-in img {
        width: 64px;
    }

    .dc-box__mobile .en-in {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .dc-box__mobile {
        margin-top: 40px;
    }

    .energo-section .v-bg-btn {
        margin-top: 40px;
    }

    .footer ._container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ft-box {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .logo-box--footer {
        width: 100%;
        max-width: 318px;
    }

    .cp-box {
        margin-top: 30px;
    }

    .hq-bg-img {
        width: 650px;
    }

    .hq-item img {
        width: 82px;
    }

    .hq-item {
        row-gap: 15px;
    }

    .hq-box.hq-box__mobile {
        margin-top: 85px;
    }

    .swiper-well-one,
  .swiper-well-two {
        width: calc(100% + 16px);
    }

    .dx-section .form-item {
        width: 100%;
    }

    .dx-header-h2 {
        font-size: 28px;
        max-width: 355px;
    }

    .dx-text {
        font-size: 16px;
        max-width: 355px;
    }

    .vx-section .dx-section__right {
        padding-top: 50px;
    }

    .v-bg-btn {
        font-size: 16px;
    }

    .vx-section .form-item input {
        height: 58px;
    }

    .logo-box--header {
        left: 38%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        position: relative;
    }

    .header-inner__left {
        width: 100%;
        position: relative;
    }

    .energo-section .header-h2 {
        font-size: 28px;
    }

    .en-in p {
        font-size: 18px;
    }

    .apartments-box__right {
        width: calc(100% + 32px);
        position: relative;
        left: 0;
        padding-bottom: 50px;
    }

    .apart-vivsion__bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .apart-vivsion__bottom .av-bot {
        width: calc(50% - 10px);
    }

    .av-bot .av-title {
        margin-bottom: 5px;
    }

    .apart-vision-full-img {
        margin-bottom: 0px;
    }

    .mobile-menu-opened .header-menu {
        padding-top: 50px;
        padding-bottom: 80px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: auto;
        width: calc(100% + 40px);
        top: 67px;
        left: -20px;
        row-gap: 30px;
    }

    .mobile-menu-opened .header-menu li a {
        font-size: 17px;
        text-transform: lowercase;
        font-family: "Manrope", Arial, Helvetica, sans-serif;
    }

    .apartments__inner .header-h2 {
        margin-bottom: 20px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .tabs-box-apart {
        margin-bottom: 15px;
    }

    .tabs-box-btn {
        padding-top: 1px;
    }

    .form-item-btn-box {
        margin-top: 10px;
    }

    .form-item input {
        margin-bottom: 0;
    }

    .hero-header-h2 br {
        display: block;
    }

    .hero-content-label {
        margin-bottom: 25px;
    }

    .bm-box_left {
        width: 100%;
    }

    .map-section .vn-header-h2 {
        text-align: center;
        font-size: 28px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .bnm-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bnm-item {
        width: 100%;
    }

    .swiper-well-two {
        margin-bottom: 0;
    }

    .bs-img {
        height: 540px;
        background-image: url("../img/af-1.webp");
        background-size: cover;
        background-position: center;
    }

    .vn-header-h2 {
        font-size: 28px;
    }

    .high-quality-section {
        padding-bottom: 0;
    }

    .hero-content-block {
        padding-top: 40px;
    }
}

@media (max-width: 450px) {
    .en-badge {
        right: 0%;
    }
}
/* popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

/* Сам попап */
.popup {
    background: #fff;
    padding: 40px;
    border-radius: 0;
    position: relative;
    width: 480px;
    max-width: 95%;
    opacity: 0;
    visibility: hidden;
}

/* Отображение попапа */
.popup.active {
    opacity: 1;
    visibility: visible;
}

/* Кнопка закрытия */
.popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 34px;
    cursor: pointer;
    color: #1B1B1A;
}

.success-box {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    background: #fff;
    padding: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    border-radius: 0;
    position: relative;
    width: 480px;
    max-width: 95%;
    font-size: 28px;
    line-height: 1.28;
    background-color: #CECDE8;
    color: #000;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.success-box.show {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    -o-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

/* Отображение попапа */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-item {
    margin-bottom: 15px;
}

.popup {
    background-color: #CECDE8;
    color: #1B1B1A;
}

.popup .form-item {
    width: 100%;
}

.popup .form-item-btn-box {
    margin-top: 0;
}

.popup .form-item input {
    background-color: #BEBDDD;
    color: #1B1B1A;
}

.popup .form-item-btn-box::before,
.popup .form-item-btn-box::after {
    background-color: #CDCDE9;
}

.popup .form-title {
    color: #1B1B1A;
    text-align: center;
}

.popup .form-box input[type=submit] {
    color: #1B1B1A;
}

.popup .pol-text {
    color: #1B1B1A;
}

.popup .pol-text a {
    color: #1B1B1A;
}

.popup .form-item-tel::before {
    -webkit-filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(1518%) hue-rotate(203deg) brightness(97%) contrast(87%);
    filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(1518%) hue-rotate(203deg) brightness(97%) contrast(87%);
}

.popup .form-item input::-webkit-input-placeholder {
    color: #68678F;
}

.popup .form-item input::-moz-placeholder {
    color: #68678F;
}

.popup .form-item input:-ms-input-placeholder {
    color: #68678F;
}

.popup .form-item input::-ms-input-placeholder {
    color: #68678F;
}

.popup .form-item input::placeholder {
    color: #68678F;
}

@media (max-width: 500px) {
    .popup {
        padding-left: 20px;
        padding-right: 20px;
    }

    .popup .form-title {
        font-size: 24px;
    }

    .form-item-btn-box {
        margin-top: 15px;
    }

    .about-info__right .v-bg-btn {
        width: 100%;
        max-width: initial;
    }

    .about-info__left p, .ab-grey-text, .ab-orange-text {
        font-size: 16px;
        text-align: left;
    }

    .build-box {
        margin-top: 50px;
    }

    .bb-value {
        font-size: 28px;
    }

    .bb-title {
        font-size: 14px;
    }

    .about__inner {
        height: 1073px;
    }

    .bm-box-item-bottom {
        max-width: 330px;
    }

    .about-info__left {
        margin-bottom: 10px;
    }

    .logo-box--footer {
        -ms-flex-item-align: center;
        align-self: center;
    }

    .ft-box {
        row-gap: 25px;
    }

    .bm__inner {
        padding-top: 215px;
    }

    .mo-block {
        width: 108px;
        right: 6%;
        bottom: 80px;
        top: initial;
    }

    .hero-header-h2 {
        max-width: initial;
        width: 100%;
        font-size: 24px;
    }
}

@media (max-width: 345px) {
    .about__inner {
        height: 1093px;
    }
}

.leave-request .form-item-btn-box:hover {
    opacity: 0.9;
}

@media (min-width: 1450px) {
    .dx-text {
        top: 30px;
        position: relative;
    }
}

@media (min-width: 1930px) {
    .bm-section {
        height: 2000px;
    }

    .hero-section {
        height: 970px !important;
    }

    .high-quality-section {
        max-width: 1920px;
    }

    .hero-section {
        background-image: url("../img/hx-3300.webp");
        aspect-ratio: 3880/1370;
        height: 1370px !important;
    }

    .hq-bg-img {
        width: 100%;
        max-width: initial;
        height: 776px;
        background-size: cover;
        background-position: center;
        background-image: url("../img/vks-3300.webp");
    }

    .high-quality-section {
        max-width: initial;
    }
}

@media (min-width: 2400px) {
    .bm-section {
        height: 2300px;
    }

    .dx-text {
        top: 45px;
    }
}

@media (min-width: 2800px) {
    .hero-section,
  .header,
  .bm-section,
  .high-quality-section,
  .energo-section,
  .dx-section,
  .map-section {
        margin-left: auto;
        margin-right: auto;
    }

    .dx-section,
  .energo-section {
        max-width: initial;
    }

    .map-box {
        overflow: hidden;
    }
}

@media (min-width: 3000px) {
    .bm-section {
        background-position-y: center;
    }

    .dx-section {
        background-image: url("../img/gfr-bg.webp");
    }

    .vx-section {
        background-image: url("../img/nx-0.webp");
    }


    .hero-header-h2 {
        max-width: 1200px;
    }

    .mo-block {
        position: absolute;
        right: 4%;
        top: 130px;
    }

    .bm-section {
        width: 100%;
        height: 2039px;
        aspect-ratio: 3880/2039;
        background-image: url("../img/sd-3300.webp");
    }
}

@media (max-width: 360px) {

    /* .bm-section {
        position: relative;
        top: 20px;
    } */
}

/* Спецпредложение «Квартира месяца» — блок после hero-section */
/* Слева: картинка квартиры + текст; справа: форма. Высоту нигде не фиксируем — блок подстраивается под текст */
.dx-section--promo {
    height: auto;
    padding: 50px 0;
    margin-top: 60px;
}

.dx-section--promo .dx-section__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dx-section--promo .dx-section__left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    /* Гасим родовые position: relative; top: 10px; height: 486px (последний — из @media 1450),
       чтобы левая часть тянулась по тексту */
    position: static;
    top: auto;
    height: auto;
}

/* Стек двух блоков .dx-section--content рядом с картинкой — вертикально, с gap.
   Тянемся на всю высоту .dx-section__left, внутренние блоки делим её 1:1,
   чтобы gap всегда оказывался по центру стека */
.dx-section--content-stack {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.dx-section--content-stack > .dx-section--content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
}

/* Обёртка картинки: на ней висит flex-shrink + drop-shadow, и под телом плана
   рисуется белый прямоугольник через ::before — слева инсет, чтобы выступающая
   дверь оставалась поверх оранжа без белого «уха» сбоку. Инсеты — пиксельные
   под конкретный размер картинки 320×416 (это десктоп при viewport ≤ 1450px) */
.dx-section__promo-img-wrap {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    line-height: 0;
    -webkit-filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.dx-section__promo-img-wrap::before {
    content: "";
    position: absolute;
    top: 1px;
    /* фиксированный сдвиг под выступающую дверь — одинаков на 320/240 (по факту) */
    left: 15px;
    right: 1px;
    bottom: 2px;
    background: #fff;
    z-index: 0;
}
@media (max-width: 1450px) {
    .dx-section__promo-img-wrap::before {
        left: 24px;
    }
}
@media (max-width: 1024px) {
    .dx-section__promo-img-wrap::before {
        left: 15px;
    }
}
@media (max-width: 768px) {
    .dx-section__promo-img-wrap::before {
        left: 16px;
    }
}

.dx-section__promo-img {
    /* ap-2-1-3-trim.webp — обрезана от прозрачных краёв, нативное 360×468 (~3:4).
       Aspect-ratio не задаём, рендерим в натуральной пропорции по width + height:auto */
    position: relative;
    z-index: 1;
    display: block;
    width: 200px;
    height: auto;
}

.dx-section__promo-label {
    display: inline-block;
    background: #68B0AB;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 14px;
    margin-bottom: 16px;
}

.dx-section--promo .dx-text strong {
    display: inline-block;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #FFD27A;
    margin-top: 8px;
}

/* Гасим родовой margin-bottom: 20px у h2 — между блоками теперь работает gap из stack */
.dx-section--promo .dx-header-h2 {
    margin-bottom: 0;
}

/* @media (max-width: 1450px) родовой .dx-section ломает левую часть на orange-фон + height: 486px.
   Высоту гасим (нужно auto). Фон gfk-bg-2.webp родовой прижат к верху (position-y: 0%) — центруем */
@media (max-width: 1450px) {
    .dx-section--promo .dx-section__left {
        height: auto;
        /* родовой левый блок имел padding-top: 40px; добавляем симметричный нижний и боковые */
        padding: 40px 20px;
        background-position-y: center;
    }
    .dx-section__promo-img {
        width: 320px;
    }
}

@media (max-width: 1024px) {
    .dx-section__promo-img {
        width: 240px;
    }
    .dx-section--promo .dx-header-h2 {
        font-size: 36px;
        display: inline-block;
    }
    .dx-text {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .dx-section--promo {
        padding: 40px 0;
    }
    .dx-section--promo .dx-section__left {
        /* На мобилах укладываем колонкой и переворачиваем: текст сверху, картинка снизу */
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        text-align: center;
        gap: 24px;
    }
    .dx-section__promo-img {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .dx-section--promo .dx-header-h2 {
        font-size: 28px;
    }
    .dx-section__promo-img {
        width: 160px;
    }
    .dx-section__promo-label {
        font-size: 12px;
        padding: 6px 10px;
    }
}



























.test {
    
}