:root {
    --Beige: #FBEEE5;
    --White: #FFF;
    --Secondary: #26352E;
    --Tertiary: #AE5A33;
    --Grey-050: #E8E8E8;
    --Grey-700: #4B4B4B;
    --Black: #1C2320;
    --Primary: #AE5A33;
    --Grey-500: #6E6A66;
    --Grey-600: #757575;
    --Grey-300: #B7B7B7;
    --Grey-200: #C6C9C4;
    --swiper-theme-color: #AE5A33;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Golos Text', system-ui, sans-serif;
    font-optical-sizing: auto;
}

a, button {
    border: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
}

html {
    background: var(--Secondary, #26352E);
}

html,
body {
    width: 100%;
}

@media  (max-width: 990px) {
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

.content {
    display: flex;
    width: 100%;
    flex-direction: column;
    background-color: #F7F5F1;
    justify-content: space-between;
}

.main-top-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
    align-items: center;
}

.main-img-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 795px;
    background-image: url("image/home-image-v2.webp");
    background-size: cover;
    padding: 20px 50px 0;
    gap: 37px;
    background-position: bottom;
}

@media (min-width: 1415px) {
    .main-img-container {
        aspect-ratio: 4096 / 2314;
        height: auto;
    }
}

@media (min-width: 1500px) {
    .main-img-container {
        aspect-ratio: 4096 / 2214;
        height: auto;
    }
}

@media (min-width: 1600px) {
    .main-img-container {
        aspect-ratio: 4096 / 2130;
        height: auto;
    }
}



.home-header {
    width: 100%;
    max-width: 1240px;
    border-radius: 10px;
    background: rgba(28, 35, 32, 0.50);
    backdrop-filter: blur(48px);
    display: flex;
    flex-direction: column;
    padding: 14px 30px;
    gap: 14px;
    position: relative;
}

.home-header-row-main {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.home-header-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-header-logo {
    width: 222px;
}

.home-header-logo-text {
    color: var(--Beige, #FBEEE5);
    width: 164px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.home-header-column-main {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-end;
}

.home-header-phone {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--Beige, #FBEEE5);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin-right: 10px;
}

i {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
}

.home-header-phone-icon {
    width: 15px;
    height: 15px;
    background-image: url("icon/icon_phone.svg");
}

.home-header-row-right {
    display: flex;
    align-items: flex-start;
    gap: 26px;
}

.header-contacts-row {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-social-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-telegram-btn {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    background-image: url("icon/icon_telegram.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.header-whatsapp-btn {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    background-image: url("icon/icon_whatsapp.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.header-region-btn {
    display: flex;
    flex-direction: column;
    padding-bottom: 4px;
    border-bottom: 1px dashed var(--Beige, #FBEEE5);
    cursor: default;
}

.region-container {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--Beige, #FBEEE5);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.header-region-icon {
    width: 10px;
    height: 14px;
    background-image: url("icon/icon_location.svg");
}

.btn-second {
    color: #EFC9AE;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    display: flex;
    height: 40px;
    padding: 0 17px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid #EFC9AE;
}

.header-separator {
    width: 100%;
    height: 1px;
    background: rgba(206, 206, 206, 0.33);
}

.header-menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30px;
    padding: 0 30px;
}

.header-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    height: 100%;
}

.header-dropdown-btn.active {
    margin-left: -12px;
    background: #9BA29A;
    width: calc(100% + 24px);
    padding: 15px 12px;
    border: none !important;
}

.header-dropdown-btn.active i {
    transform: rotate(180deg);
}

.dropdown-icon {
    width: 12px;
    height: 6px;
    background-image: url("icon/icon-dropdown.svg");
}

.header-projects-btn {
    /*order: 0;*/
}

.header-menu-btn {
    /*order: 1;*/
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    text-transform: uppercase;
}

.dropdown-menu-item {
    color: var(--White, #FFF);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    white-space: nowrap;
}

.d-none {
    display: none !important;
}

.header-dropdown-btn-container {
    position: relative;
    height: 100%;
}

.dropdown-menu {
    padding-top: 12px;
    position: absolute;
    top: 100%;
    z-index: 50 !important;
}

.dropdown-menu-bg {
    padding: 10px 16px 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 0 0 4px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(28, 35, 32, 0.50);
    backdrop-filter: blur(15px);
}

.header .dropdown-menu-bg {
    background: rgba(28, 35, 32, 1);
}

.projects-menu-container {
    left: 0;
}

.dropdown-menu-container {
    right: 0;
}

.top-main-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.top-main-title {
    width: 680px;
    color: var(--Secondary, #26352E);
    text-align: center;
    font-size: 65px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 65px */
    text-transform: uppercase;
}

.top-main-btn-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-primary {
    display: flex;
    width: 270px;
    height: 56px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--Tertiary, #AE5A33);
    box-shadow: 0 1px 0 0 #77391F;
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%; /* 18px */
    text-transform: uppercase;
}

.header-menu-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-fav-btn {
    width: 30px;
    height: 30px;
    background-image: url("icon/icon-fav.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.header-search-btn {
    width: 30px;
    height: 30px;
    background-image: url("icon/icon-search.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.top-promo-container {
    margin-top: -50px;
    width: 100%;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-promo-block {
    width: 100%;
    max-width: 1240px;
    display: flex;
    align-items: center;
    padding: 32px;
    justify-content: space-around;
    border-radius: 6px;
    border: 1px solid rgba(233, 233, 233, 0.46);
    background: var(--Grey-050, #E8E8E8);
}

.top-promo-container-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-promo-container-icon {
    width: 36px;
    height: 36px;
}

.GOST-icon {
    background-image: url("icon/icon-gost.svg");
}

.top-promo-container-text {
    color: var(--Grey-700, #4B4B4B);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
}

.ipoteka-icon {
    background-image: url("icon/icon-ipoteka.svg");
}

.worker-icon {
    background-image: url("icon/icon-worker.svg");
}

.project-icon {
    background-image: url("icon/icon-project.svg");
}

.doc-icon {
    background-image: url("icon/icon-doc.svg");
}

.block {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.camera-block {
    padding: 60px 50px 0;
}

.block-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1240px;
}

.camera-block-content {
    gap: 30px;
}

.block-title-row {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.block-title {
    color: var(--Black, #1C2320);
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.all-cameras-btn {
    border-bottom: 1px solid var(--Black, #1C2320);
    padding-bottom: 3px;
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.swiper {
    width: 100%;
    max-width: 100%;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}

.camera-demo {
    width: 100%;
    aspect-ratio: 400 / 310;
    border-bottom: 1px solid rgba(255, 255, 255, 0.29);
    background: var(--Secondary, #26352E);
}

.camera-title {
    width: 100%;
    flex-grow: 1;
    padding: 12px 10px;
    background: var(--Secondary, #26352E);
    color: #B4BEB6;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 30px;
    height: 30px;
    margin-top: 0;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-prev {
    left: -42px;
    background-image: url("icon/icon-prev.svg");
}

.swiper-button-next {
    right: -42px;
    background-image: url("icon/icon-prev.svg");
    transform: rotate(180deg) translateY(50%);
}

.swiper-container {
    position: relative;
    max-width: 100%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    display: none;
}

.popular-projects-block {
    padding: 120px 50px 80px;
}

.popular-projects-block-content {
    gap: 30px;
    align-items: center;
}

.tab-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tab-btn {
    display: flex;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid var(--Primary, #C07A52);
    color: #B87C57;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.tab-btn.active {
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
}

.tab {
    width: 100%;
    display: none;
}

.tab.active {
    display: block;
}

.product-swiper--slide {
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 5px;
    margit-right: 5px;
    background-color: var(--White, #fff);
}
.product-swiper {
    padding-right: 5px;
}

.product-swiper-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-card-img-container {
    width: 100%;
    position: relative;
}

.product-card-img {
    width: 100%;
}

.heart-container {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    position: absolute;
    top: 12px;
    right: 12px;
    border-radius: 4px;
    background: rgba(38, 53, 46, 0.50);
    backdrop-filter: blur(7px);
    padding: 6px 8px;
    gap: 4px;
    color: var(--White, #FFF);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    z-index: 1;
}

.heart {
    width: 14px;
    height: 14px;
}

.heart-outline {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
}

.heart-fill {
    fill: none;
    stroke: #FF0000;
    stroke-width: 2;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1s ease, fill 0.3s ease;
}

.heart-container:hover .heart-fill {
    stroke-dashoffset: 0;
    fill: rgba(255, 0, 0, 0.2);
}

.heart-container.liked .heart-fill {
    fill: #FF0000;
    stroke-dashoffset: 0;
    stroke: #FF0000;
}

.product-card-params-container {
    width: 100%;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 100%;
    margin-top: -17px;
}

.category-product-card-params-container {
    width: 100%;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: calc(100% - 13px);
}

.product-card-params-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-param {
    padding: 6px 8px;
    border-radius: 30px;
    background: rgba(38, 53, 46, 0.73);
    backdrop-filter: blur(22px);
    color: var(--White, #FFF);
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.product-param-main {
    background: var(--Secondary, #26352E);
}

.product-card-column {
    padding: 0 17px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-card-text-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.product-card-text {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-card-text span {
    font-size: 12px;
}

.view-all-projects-btn {
    padding-bottom: 3px;
    border-bottom: 1px solid var(--Black, #1C2320);
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.feedback-block {
    padding: 40px 50px;
}

.feedback-block-content {
    gap: 13px;
    align-items: center;
}

.feedback-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.feedback-title {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.feedback-text {
    width: 560px;
    color: var(--Grey-500, #6E6A66);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.feedback-swiper-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.swiper-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.feedback-swiper-container {
    position: relative;
}

.feedback-swiper {
    overflow: visible;
}

.feedback-swiper--slide {
    width: 55%;
    position: relative;
    transition: transform 0.3s ease;
    background: var(--White, #fff);
}

.feedback-swiper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    pointer-events: none;
    z-index: 10;

    background: linear-gradient(to left,
    #F7F5F1 0%,
    rgba(245, 245, 245, 0.9) 15%,
    rgba(245, 245, 245, 0.6) 35%,
    rgba(245, 245, 245, 0.3) 60%,
    rgba(245, 245, 245, 0) 100%
    );
}

.feedback-img {
    width: 100%;
}

.feedback-swiper-button-prev {
    position: relative;
    transform: none;
    left: 0;
}

.feedback-swiper-button-next {
    position: relative;
    transform: rotate(180deg);
    right: 0;
}

.our-homes-block {
    padding: 100px 50px 55px;
}

.our-homes-block-content {
    gap: 24px;
    align-items: center;
}

.our-homes-text {
    color: var(--Grey-500, #6E6A66);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.our-homes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

.our-homes-item {
    width: calc((100% - 20px) / 2);
    background: var(--White, #FFF);
    box-shadow: 0 4px 60px 0 rgba(132, 136, 139, 0.10);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
}

.our-homes-image {
    width: 100%;
}

.our-homes-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0 16px;
}

.our-homes-title {
    color: var(--Black, #1C2320);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.our-homes-text-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.our-homes-text-item {
    color: var(--Grey-500, #6E6A66);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.our-homes-btn {
    display: flex;
    width: 260px;
    height: 42px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid var(--Tertiary, #AE5A33);
    color: var(--Tertiary, #AE5A33);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
}

.our-homes-view-all {
    margin-top: 16px;
}

.dreamhouse-block {
    padding: 44px 50px;
    background: var(--Secondary, #26352E);
}

.dreamhouse-block-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.dreamhouse-block-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dreamhouse-block-title {
    color: var(--White, #FFF);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    max-width: 565px;
}

.dreamhouse-block-text {
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    max-width: 505px;
}

.dreamhouse-block-img-container {
    width: 50%;
    aspect-ratio: 412 / 269;
    overflow: hidden;
}

.dreamhouse-block-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.individual-design-block {
    padding: 80px 50px;
}

.individual-design-block-content {
    gap: 40px;
    align-items: flex-start;
}

.individual-design-title {
    width: 761px;
    color: var(--Black, #1C2320);
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.individual-design-title span {
    color: var(--Primary, #C07A52);
}

.individual-design-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    gap: 53px;
    align-items: start;
}

.individual-design-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.individual-design-icon {
    width: 60px;
    height: 60px;
}

.icon_laser-level {
    background-image: url("icon/icon_laser-level.svg");
}

.individual-design-text-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.individual-design-item-title {
    color: var(--Black, #1C2320);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
}

.individual-design-text {
    width: 264px;
    color: var(--Grey-500, #6E6A66);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}

.icon_blueprint {
    background-image: url("icon/icon_blueprint.svg");
}

.icon_cement {
    background-image: url("icon/icon_cement.svg");
}

.icon_statistics {
    background-image: url("icon/icon_statistics.svg");
}

.icon_pinch {
    background-image: url("icon/icon_pinch.svg");
}

.icon_calculator {
    background-image: url("icon/icon_calculator.svg");
}

.wide-selection-block {
    padding: 0 50px;
}

.wide-selection-block-content {
    align-items: center;
    gap: 40px;
}

.wide-selection-title {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.wide-selection-item {
    width: calc((100% - 20px) / 2);
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    aspect-ratio: 610 / 350;
    padding: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.wide-selection-item-brus {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 74.05%, rgba(0, 0, 0, 0.80) 100%), url(image/wide-selection/brus.webp) lightgray 0 -5.119px / 100% 116.402% no-repeat;
}

.wide-selection-item-title {
    color: var(--White, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.wide-selection-item-btn {
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    display: flex;
    height: 36px;
    padding: 8px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.wide-selection-item-gaz {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 74.05%, rgba(0, 0, 0, 0.80) 100%), url(image/wide-selection/gaz.webp) lightgray 0 -5.119px / 100% 116.402% no-repeat;
}

.wide-selection-item-parotherm {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 74.05%, rgba(0, 0, 0, 0.80) 100%), url(image/wide-selection/parotherm.webp) lightgray 0 -5.119px / 100% 116.402% no-repeat;
}

.wide-selection-item-comb {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 74.05%, rgba(0, 0, 0, 0.80) 100%), url(image/wide-selection/comb.webp) lightgray 0 -5.119px / 100% 116.402% no-repeat;
}

.ceo-block {
    padding: 100px 50px 0;
}

.ceo-block-content {
    padding: 19px 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--Secondary, #26352E);
}

.ceo-block-column {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.ceo-block-text-container {
    display: flex;
    gap: 30px;
    flex-direction: column;
    max-width: 635px;
}

.ceo-block-title {
    color: var(--White, #FFF);
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 38px */
}

.ceo-block-text {
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.ceo-block-btn {
    display: flex;
    width: 363px;
    height: 60px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 16px */
}

.ceo-block-img-container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 429px;
}

.ceo-block-img-block {
    width: 320px;
    height: 387px;
    background: url(image/ceo-sergey.webp) lightgray 50% / cover no-repeat;
    margin-left: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 1;
}

.ceo-block-img-color-block {
    position: absolute;
    width: 320px;
    height: 387px;
    transform: rotate(-8.166deg);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
}

.ceo-block-img-text-container {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 211px;
    background: var(--Primary, #AE5A33);
}

.ceo-block-img-title {
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    text-transform: uppercase;
}

.ceo-block-img-text {
    color: var(--White, #FFF);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 14.4px */
}

.trust-us-block {
    padding: 100px 50px;
}

.trust-us-block-content {
    gap: 30px;
}

.trust-us-title {
    width: 483px;
}

.block-title-text {
    color: var(--Grey-500, #6E6A66);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
}

.trust-us-title-text {
    width: 355px;
}

.trust-us-block-container {
    width: 100%;
    background: var(--White, #FFF);
    box-shadow: 0 4px 60px 0 rgba(132, 136, 139, 0.10);
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
    justify-content: space-between;
    gap: 0;
    align-items: stretch;
}

.trust-us-block-item {
    width: 100% ;
    padding: 36px 38px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    height: auto;
}

.trust-us-block-item-num {
    color: var(--Primary, #C07A52);
    font-size: 44px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 48.4px */
}

.trust-us-block-item-title {
    color: var(--Black, #1C2320);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
}

.trust-us-block-item-text {
    color: var(--Grey-500, #6E6A66);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    width: 100%;
}

.with-border-right::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(192, 122, 82, 0.30);
}

.with-border-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 90%;
    height: 1px;
    background: rgba(192, 122, 82, 0.30);
}

.trust-us-block-item-border-block {
    width: 100%;
    position: relative;
    height: auto;
}

/*.trust-us-block-item-mid {*/
/*    padding-left: 57px;*/
/*    padding-right: 44px;*/
/*}*/

/*.trust-us-block-item-right {*/
/*    padding-left: 69px;*/
/*    padding-right: 56px;*/
/*}*/

.w-167 {
    max-width: 167px;
}

.w-243 {
    max-width: 243px;
}

.w-343 {
    max-width: 343px;
}

.our-team-block {
    padding: 0 50px;
}

.our-team-block-content {
    padding: 50px 40px;
    background: var(--Secondary, #26352E);
    flex-direction: row;
    align-items: center;
    gap: 40px;
    justify-content: flex-start;
}

.our-team-block-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-team-block-img-container {
    width: 51%;
    aspect-ratio: 463 / 289;
    overflow: hidden;
}

.our-team-column {
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 466px;
}

.our-team-form-top-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 466px;
}

.our-team-form-text-container {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.our-team-form-title {
    color: var(--White, #FFF);
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 37.4px */
}

.our-team-form-text {
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

input {
    border: none;
    outline: none;
    background: transparent;
}

.our-team-form-input {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--White, #FFF);
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.our-team-form-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.our-team-form-checkbox-container {
    display: flex;
    gap: 4px;
    align-items: center;
    color: #D6DCD5;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 13px */
    cursor: pointer;
}

.our-team-form-checkbox-container a {
    color: #D6DCD5;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.our-team-form-checkbox-container-icon {
    width: 18px;
    height: 18px;
    background-image: url("icon/our-team-form-checkbox-container-icon.svg");
}

.our-team-form-checkbox-container.active .our-team-form-checkbox-container-icon {
    background-image: url("icon/our-team-form-checkbox-container-icon-active.svg");
}

.our-team-form-btn {
    display: flex;
    height: 60px;
    padding: 15px 40px;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 4px;
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
}

.our-team-form-btn-text {
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    max-width: 375px;
}

.main-news-block {
    padding: 100px 50px;
}

.main-news-block-content {
    gap: 40px;
    align-items: center;
}

.main-news-title {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 34px */
}

.swiper-container {
    width: 100%;
}

.main-news-slide {
    background: var(--White, #FFF);
    box-shadow: 0 4px 60px 0 rgba(132, 136, 139, 0.10);
    display: flex;
    flex-direction: column;
}

.main-news-item-img-block {
    position: relative;
    width: 100%;
    aspect-ratio: 295 / 160;
    overflow: hidden;
    user-select: none;
}

.card-date {
    position: absolute;
    left: 6px;
    bottom: 6px;
    display: flex;
    padding: 4px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: rgba(38, 53, 46, 0.46);
    backdrop-filter: blur(5px);
    color: var(--White, #FFF);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 12px */
}

.main-news-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-news-item-content {
    padding: 10px 10px 20px;
    display: flex;
    width: 100%;
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    flex-grow: 1;
}

.main-news-item-text-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.main-news-item-title {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
}

.main-news-item-text {
    color: var(--Grey-600, #757575);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 15.6px */
}

.main-news-item-btn {
    display: flex;
    width: 100%;
    height: 40px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--Secondary, #26352E);
    box-shadow: 0 1px 0 0 #121313;
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
}

.footer {
    width: 100%;
    padding: 30px 50px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--Secondary, #26352E);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 57px;
    width: 100%;
    max-width: 1240px;
}

.footer-logo {
    width: 260px;
}

.footer-row {
    display: flex;
    width: 100%;
    align-items: stretch;
    justify-content: space-between;
}

.footer-column {
    flex-grow: 1;
    display: flex;
    width: calc(100% / 3);
    flex-direction: column;
    justify-content: space-between;
}

.footer-column-left {
    align-items: flex-start;
    gap: 33px;
}

.footer-column-mid {
    align-items: center;
}

.footer-column-right {
    align-items: flex-end;
}

.footer-left-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 139px;
}

.footer-info-title {
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
    text-transform: uppercase;
}

.footer-info-text {
    color: var(--Grey-300, #B7B7B7);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}

.copyright-text {
    color: var(--Grey-300, #B7B7B7);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 12px */
}

.footer-links-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 14px 56px;
    max-height: 98px;
}

.footer-link {
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 14px */
    text-transform: uppercase;
}

.footer-contacts-container {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: flex-end;
}

.footer-mail {
    color: var(--Beige, #FBEEE5);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 22px */
}

.footer-phone-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.footer-phone {
    color: var(--Beige, #FBEEE5);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 22px */
}

.footer-phone-btn {
    display: flex;
    height: 40px;
    padding: 14px 26px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid var(--Primary, #C07A52);
    color: var(--Primary, #C07A52);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 14px */
}

.mbk-link {
    display: inline-flex;
    align-items: flex-end;
    gap: 6px;
    color: var(--Grey-200, #C6C9C4);
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
}

.mbk-link span {
    margin-bottom: 3px;
}

.icon-mbk {
    width: 37px;
    height: 23px;
    background-image: url("icon/icon-mbk.svg");
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px;
    background: var(--Secondary, #26352E);
    backdrop-filter: blur(48px);
    z-index: 40;
}

.header-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1240px;
    gap: 14px;
    position: relative;
    padding: 14px 0;
}

.top-block {
    padding: 48px 50px 40px;
}

.top-block-content {
    gap: 30px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
    gap: 4px;
}

.breadcrumbs-item {
    color: var(--Grey-500, #6E6A66);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: inline-block;
    max-width: 200px; /* можно менять под дизайн */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breadcrumbs-item::before {
    content: '/ ';
}

.breadcrumbs-item:first-child::before {
    content: '';
}

.breadcrumbs-item:first-child,
.breadcrumbs-item:nth-child(2)::before {
    color: var(--Black, #1C2320);
}

.top-block-container {
    display: flex;
    align-items: stretch;
    gap: 22px;
}

.page-title-block {
    flex-grow: 1;
    display: flex;
    align-items: stretch;
    background: #FFF;
    box-shadow: 0 4px 60px 0 rgba(132, 136, 139, 0.10);
}

.page-title-block-img-container {
    min-width: 368px;
    max-width: 368px;
    aspect-ratio: 368 / 236;
    overflow: hidden;
}

.page-title-block-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title-block-text-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 25px 44px 25px 25px;
}

.page-title {
    color: var(--Black, #1C2320);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 24.2px */
    max-width: 381px;
}

.page-title-block-text {
    color: var(--Grey-500, #6E6A66);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
    max-width: 381px;
}

.top-page-promo-block {
    background: var(--Secondary, #26352E);
    width: 400px;
    min-width: 400px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 28px;
    justify-content: space-between;
}

.ipoteka-promo-block-icon {
    position: absolute;
    right: 0;
    top: 54px;
    width: 107px;
    height: 154px;
    background-image: url("icon/ipoteka-promo-block-icon.svg");
}

.top-page-promo-block-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-page-promo-block-text-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.top-page-promo-block-title {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 26.4px */
    z-index: 1;
}

.top-page-promo-block-text {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 14px */
    z-index: 1;
}

.bank-icon {
    width: 88px;
    height: 32px;
    background-image: url("icon/bank-icon.svg");
}

.top-page-promo-block-btn {
    display: flex;
    width: 100%;
    height: 50px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #77391F;
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    z-index: 1;
    line-height: 100%; /* 18px */
}

.category-block {
    padding: 0 50px 60px;
}

.category-block-content {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.ocf-container {
    background: #FFF;
    box-shadow: 0 4px 60px 0 rgba(132, 136, 139, 0.06);
    padding: 19px 16px;
    width: 295px;
}

.filter-category-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.filter-category-title {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 16px */
}

.filter-category-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 6px;
}

.filter-category-btn {
    display: flex;
    width: calc((100% - 6px) / 2);
    height: 42px;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    border: 1px solid #ECECEC;
    background: #F8F6F2;
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 14px */
}

.filter-category-icon {
    width: 20px;
    height: 20px;
}

.gaz-icon {
    background-image: url("icon/icon-gaz.svg");
}

.porotherm-icon {
    background-image: url("icon/icon-porotherm.svg");
}

.brus-icon {
    background-image: url("icon/icon-brus.svg");
}

.comb-icon {
    background-image: url("icon/icon-comb.svg");
}

.g-2 {
    gap: 2px;
}

.filter-category-btn.active {
    border: 1px solid var(--Primary, #C07A52);
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
}

.filter-category-btn.active .gaz-icon {
    background-image: url("icon/icon-gaz-active.svg");
}

.filter-category-btn.active .porotherm-icon {
    background-image: url("icon/icon-porotherm-active.svg");
}

.filter-category-btn.active .brus-icon {
    background-image: url("icon/icon-brus-active.svg");
}

.filter-category-btn.active .comb-icon {
    background-image: url("icon/icon-comb-active.svg");
}

.ocf-filter-name {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 16px */
    text-transform: none;
}

.ocf-content, .ocf-filter-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0;
}

.ocf-content * {
    margin: 0 !important;
}

.ocf-header {
    display: none;
}

.ocf-btn.ocf-search-btn-static {
    display: none;
}

.ocf-filter-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ocf-clearfix::before, .ocf-clearfix::after {
    display: none;
}

.ocf-value-list-body {
    display: flex;
    gap: 10px;
}

.ocf-value-input.ocf-value-input-checkbox {
    display: none;
}

.ocf-value, .ocf-value:hover, .ocf-value:active, .ocf-checkbox {
    flex-grow: 1;
    display: flex;
    padding: 0;
    height: 44px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid #ECECEC;
    background: #F8F6F2;
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 14px */
}

.ocf-value.ocf-selected, .ocf-value.ocf-selected:hover, .ocf-value.ocf-selected:active {
    border: 1px solid var(--Primary, #C07A52);
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 14px */
    flex-grow: 1;
    display: flex;
    padding: 0;
    height: 44px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
}


.ocf-filter:nth-last-child(4) .ocf-value-list-body {
    flex-wrap: wrap;
}

.ocf-filter:nth-last-child(4) .ocf-value {
    width: calc((100% - 10px) / 2) !important;
}

.ocf-filter:nth-last-child(2) .ocf-value,
.ocf-filter:last-child .ocf-value {
    height: 35.5px;
}

.ocf-footer:after {
    display: none;
}

.ocf-footer {
    padding: 0;
}

.ocf-btn.ocf-btn-link {
    display: flex;
    height: 50px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid var(--Secondary, #26352E);
    color: var(--Secondary, #26352E);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    width: 100%;
    text-decoration: none !important;
}

.ocf-selected-card, .ocf-popover {
    display: none !important;
}

.category-content-column {
    width: calc(100% - 315px);
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: stretch;
}

.category-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    z-index: 50;
}

.category-sort-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 50 !important;
    position: relative;
}

.projects-count {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 16px */
}

.category-sort-btn {
    display: flex;
    padding: 8px 0;
    align-items: center;
    gap: 5px;
    color: var(--Black, #1C2320);
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
    z-index: 50;
}

.category-container-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
}

.category-item-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc((100% - 20px) / 2);
    background: #FFF;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.category-item-img-container {
    width: 100%;
    aspect-ratio: 452 / 284;
    position: relative;
    overflow: hidden;
    display: block;
}

.category-item-card-img-block {
    position: relative;
}

.category-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item-content {
    padding: 0 17px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.category-item-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.category-item-name {
    color: var(--Black, #1C2320);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-item-name span {
    font-size: 14px;
}

.category-item-price {
    color: var(--Black, #1C2320);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
}

.category-item-btn {
    display: flex;
    height: 52px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 4px;
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 20px */
}

.category-sort-container {
    position: relative;
}

.category-sort-popup {
    position: absolute;
    z-index: 30;
    top: calc(100% + 4px);
    right: 0;
    padding: 11px 16px;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0 9px 12px 0 rgba(46, 48, 54, 0.10);
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.category-sort-item {
    color: var(--Grey-600, #757575);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 14px */
    white-space: nowrap;
}

.sort-arrow {
    width: 7px;
    height: 14px;
    background-image: url("icon/icon-sort-arrow.svg");
}

.sort-arrow-down {
    transform: rotate(180deg);
}

.category-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 66px;
    align-items: stretch;
}

.popular-filter-container {
    display: flex;
    flex-direction: column;
    gap: 31px;
}

.popular-filter-title {
    color: var(--Black, #1C2320);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 30px */
}

.popular-filter-list {
    display: flex;
    gap: 16px 12px;
    flex-wrap: wrap;
    align-items: stretch;
}

.popular-filter-item {
    display: flex;
    height: 40px;
    padding: 13px 16px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50px;
    background: #FFF;
    color: var(--Black, #1C2320);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 14px */
}

.popular-filter-item.active {
    background: #E9EBE7;
}

.category-description-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-description-container ol {
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul, ul li {
    list-style: none;
}

.product-block {
    padding: 48px 50px 0;
}

.product-block-content {
    gap: 30px;
}

.product-container {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.product-name {
    color: var(--Black, #1C2320);
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 34px */
}

.product-card {
    width: 100%;
    display: flex;
    background: var(--White, #FFF);
    align-items: stretch;
}

.product-swiper-container {
    position: relative;
    flex-grow: 1;
    height: 596px;
}

.product-img-slide {
    overflow: hidden;
    height: 596px;
}

.product-img-container {
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-pagination {
    bottom: 20px !important;
}

.product-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--Primary, #C07A52);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--Primary, #AE5A33) !important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.75);
}

.product-page-card-column {
    width: 315px !important;
    min-width: 315px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.product-card-info-container {
    display: flex;
    flex-direction: column;
    gap: 39px;
}

.product-card-info-top-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-card-area-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card-area-btn-container {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--Grey-500, #6E6A66);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
}

.product-card-area-btn {
    width: 20px;
    height: 20px;
    background-image: url("icon/icon-question.svg");
    background-position: center;
    background-repeat: no-repeat;
    cursor: help;
    position: relative;
}

.product-card-area-popup {
    position: absolute;
    z-index: 30;
    width: 252px;
    padding: 10px;
    border-radius: 8px;
    background: #FFF;
    bottom: calc(100% + 21px);
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.06);
}

.product-card-area-popup-text {
    color: var(--Grey-700, #4B4B4B);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
}

.product-card-area-popup-icon {
    position: absolute;
    width: 14px;
    height: 7px;
    background-image: url("icon/product-card-area-popup-icon.svg");
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.product-card-area {
    color: var(--Secondary, #26352E);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 44px */
    text-transform: lowercase;
}

.product-card-material-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-card-material-title {
    color: #9C9C9C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}

.product-card-material-item,
.product-card-material-item a {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-dot {
    width: 5px;
    height: 5px;
    border-radius: 3px;
    color: var(--Black, #1C2320);
}

.product-card-numbers-container {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    align-items: stretch;
    row-gap: 18px;
    column-gap: 42px;
}

.product-card-numbers-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: -4px;
}

.product-card-numbers-item-num {
    color: var(--Black, #1C2320);
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px; /* 86.364% */
    margin-bottom: 7px;
}

.product-card-numbers-item-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 9px;
}

.product-card-numbers-item-icon {
    width: 60px;
    height: 60px;
}

.product-card-numbers-item-text {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    min-width: 60px;
}

.bedroom-icon {
    background-image: url("icon/icon_bedroom.svg");
}

.bathroom-icon {
    background-image: url("icon/icon_bathroom.svg");
}

.wardrobe-icon {
    background-image: url("icon/icon_wardrobe.svg");
}

.room-icon {
    background-image: url("icon/icon_room.svg");
}

.product-card-numbers-item-num span {
    color: var(--Primary, #C07A52);
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 111.765% */
    margin-top: 3px;
}

.product-card-price-container {
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.product-card-price {
    color: var(--Secondary, #26352E);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 44px */
    text-transform: lowercase;
}

.product-card-price span {
    color: var(--Secondary, #26352E);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 20px */
    text-transform: lowercase;
}

.product-card-btn {
    display: flex;
    width: 255px;
    height: 50px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--Tertiary, #AE5A33);
    box-shadow: 0 1px 0 0 #77391F;
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%; /* 18px */
    margin-top: -19px;
}

.product-img-fullscreen-btn {
    width: 40px;
    height: 40px;
    background-image: url("icon/icon-fullscreen.svg");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.fancybox__backdrop {
    background: var(--fancybox-bg, rgba(24, 24, 27, 0.65))
}

.navigation-block {
    padding: 48px 50px 30px;
}

.navigation-block-content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.product-navigation-item {
    display: flex;
    padding: 14px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    border: 1px solid var(--Grey-050, #E8E8E8);
    background: var(--White, #FFF);
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
}

.product-navigation-item:hover {
    border: 1px solid var(--Grey-050, #E8E8E8);
    background: #E6E9E2;
    color: var(--Secondary, #26352E);
}

.product-navigation-item.dark {
    border: 1px solid var(--Secondary, #26352E);
    color: var(--White, #FFF);
    background: var(--Secondary, #26352E);
}

.product-navigation-icon {
    width: 20px;
    height: 20px;
}

.info-navigation-icon {
    background-image: url("icon/info-navigation-icon.svg");
}

.info-project-icon {
    background-image: url("icon/info-project-icon.svg");
}

.info-price-icon {
    background-image: url("icon/info-price-icon.svg");
}

.info-view-icon {
    background-image: url("icon/info-view-icon.svg");
}

.info-safety-icon {
    background-image: url("icon/info-safety-icon.svg");
}

.info-setting-icon {
    background-image: url("icon/info-setting-icon.svg");
}

.info-office-icon {
    background-image: url("icon/info-office-icon.svg");
}

.product-navigation-item:hover .info-project-icon {
    background-image: url("icon/info-project-hover-icon.svg");
}

.product-navigation-item:hover .info-price-icon {
    background-image: url("icon/info-price-hover-icon.svg");
}

.product-navigation-item:hover .info-view-icon {
    background-image: url("icon/info-view-hover-icon.svg");
}

.product-navigation-item:hover .info-safety-icon {
    background-image: url("icon/info-safety-hover-icon.svg");
}

.product-navigation-item:hover .info-setting-icon {
    background-image: url("icon/info-setting-hover-icon.svg");
}

.product-navigation-item:hover .info-office-icon {
    background-image: url("icon/info-office-hover-icon.svg");
}

.plan-block {
    padding: 0 50px;
}

.plan-block-content {
    gap: 20px;
}

.plan-header {
    padding: 14px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--Grey-050, #E8E8E8);
    background: var(--White, #FFF);
}

.plan-title-container {
    display: flex;
    align-items: center;
    gap: 39px;
}

.plan-title {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 16px */
    text-transform: uppercase;
}

.plan-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.plan-btn {
    display: flex;
    width: 126px;
    height: 40px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: var(--White, #FFF);
    box-shadow: 0 1px 0 0 #BFBFBF;
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 16px */
    white-space: nowrap;
}

.plan-btn.active {
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
}

.plan-flip-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--Black, #1C2320);
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
}

.plan-flip-btn-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: var(--Secondary, #26352E);
    border-radius: 18px;
    background-image: url("icon/icon-flip.svg");
}

.plan-container {
    width: 100%;
    background: var(--White, #FFF);
}

.plan-list {
    padding: 38px 30px 30px;
    display: flex;
    align-items: stretch;
    gap: 122px;
    /* width + min-width вместе: одна планировка встаёт по центру,
       две этажа шире экрана — по-прежнему прокручиваются вбок */
    width: 100%;
    min-width: max-content;
    justify-content: center;
}

.plan-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
}

.plan-img {
    max-height: 550px;
}

.plan-info-container {
    display: flex;
    flex-direction: column;
    padding: 0 52px;
    gap: 18px;
}

.plan-info-text {
    color: var(--Grey-500, #6E6A66);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px; /* 175% */
    text-transform: uppercase;
}

.plan-area-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.plan-area-text {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
}

.plan-area-num {
    color: var(--Black, #1C2320);
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px; /* 86.364% */
}

.plan-area-num span {
    font-size: 40px;
}

.plan-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    user-select: none;
}

.plan-scroll-wrapper.drag-scroll {
    cursor: url('icon/swipe-cursor.png') 32 32, grab;
}

.b-white .fancybox__image {
    background-color: white;
    padding: 15px;
}

.change-plan-block {
    padding: 80px 50px;
}

.change-plan-block-content {
    align-items: center;
    gap: 30px;
    max-width: 620px;
}

.change-block-text-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.change-block-title {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 126.667% */
}

.change-block-text {
    color: var(--Grey-600, #757575);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.change-block-btn {
    display: flex;
    width: 280px;
    height: 52px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 16px */
}

.product-description-block {
    padding: 0 50px;
    align-items: center;
}

.product-description-block-content {
    padding: 44px 50px;
    background: var(--White, #FFF);
    gap: 30px;
    align-items: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.product-description-block-color {
    position: absolute;
    width: 100%;
    height: 10px;
    background: var(--Tertiary, #AE5A33);
    bottom: 0;
}

.product-description-block-btn {
    display: flex;
    width: 298px;
    height: 30px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 0 0 10px 10px;
    background: var(--Tertiary, #AE5A33);
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    margin-top: -5px;
    white-space: nowrap;
}

.product-description-block-icon {
    width: 18px;
    height: 18px;
    background-image: url("icon/product-description-block-icon.svg");
}


.product-description-title {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 126.667% */
}

.product-description-row {
    display: flex;
    gap: 29px;
    justify-content: space-between;
    max-height: 250px;
    overflow: hidden;
    position: relative;
}

.product-description-row::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.8) 70%,
    #fff 100%
    );
    pointer-events: none;
    z-index: 1;
}



.product-description-column {
    width: calc((100% - 29px) / 2);
}

.product-video-block {
    padding: 80px 50px 0;
}

.product-video-block-content {
    align-items: center;
    gap: 40px;
}

.product-video-title {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 95% */
}

.product-video-block-content iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
}

.tab-btn-block {
    padding: 80px 50px 0;
}

.tab-btn-block-content {
    gap: 40px;
    align-items: flex-start;
}

.tab-btn-title {
    max-width: 764px;
    color: var(--Black, #1C2320);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px; /* 110% */
}

.tabs-list {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    padding: 0 16px;
    width: 100%;
}

.tabs-item {
    width: calc((100% - (20px * 5)) / 6);
    padding: 20px 0 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.4;
    user-select: none;
    gap: 12px;
    border-radius: 16px 16px 0 0;
}

.tabs-item.active {
    background: #FFF;
    opacity: 1;
}

.tabs-item-img {
    height: 92px;
    user-select: none;
}

.tabs-item-text {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 114.286% */
    text-transform: uppercase;
}

.tab-block {
    padding: 42px 50px 65px;
    background: #FFF;
}

.tab-block-content {
}

.product-tab {
    width: 100%;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    gap: 56px;
}

.product-tab.active {
    display: flex;
}

.tab-column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 30px;
}

.tab-text {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}

.tab-text-block {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.tab-text-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 453px;
}

.tab-text-block-title {
    color: var(--Black, #1C2320);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 100% */
}

.tab-text-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.tab-text-list-item-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    margin-top: 7px;
    border-radius: 4px;
    background-color: var(--Primary, #AE5A33);;
}

.tab-text-list-item-text {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}

.tab-text-list-item-text span {
    font-weight: 700;
}

.tab-swiper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 544px;
    min-width: 544px;
}

.tab-swiper-img-main {
    width: 100%;
    aspect-ratio: 544 / 336;
    border: 1px solid var(--Black, #1C2320);
    overflow: hidden;
}

.tab-swiper-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
    justify-content: space-between;
}

.tab-swiper-img-small {
    flex-grow: 1;
    aspect-ratio: 544 / 336;
    border: 1px solid var(--Black, #1C2320);
    overflow: hidden;
    cursor: pointer;
}

.tab-swiper-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.tab-swiper-btn {
    position: absolute;
    z-index: 10;
    top: 142px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--Black, #1C2320);
    background: var(--White, #FFF);
    background-image: url("icon/tab-swiper-btn-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.tab-swiper-btn-prev {
    left: 0;
    transform: translateX(-50%);
}

.tab-swiper-btn-next {
    right: 0;
    transform: translateX(50%) rotate(180deg);
}

.promo-block {
    padding: 10px 50px 38px;
}

.promo-block-content {
    flex-direction: row;
    padding: 0 16px;
    gap: 12px;
    align-items: stretch;
    justify-content: space-between;
}

.promo-item {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.promo-item-img {
    height: 170px;
}

.promo-item-text {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 114.286% */
}

.visit-block {
    padding: 49px 50px 51px;
    background: var(--White, #FFF);
}

.visit-block-content {
    gap: 40px;
}

.visit-title {
    color: var(--Black, #1C2320);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px; /* 110% */
}

.visit-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 25px 12px;
    justify-content: space-between;
}

.visit-item {
    width: calc((100% - 12px) / 2);
    aspect-ratio: 584 / 316;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.visit-item-title {
    color: var(--White, #FFF);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 92.308% */
}

.visit-item-link {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
}

.icon-play {
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background-color: var(--Primary, #AE5A33);
    background-image: url("icon/mdi_play.svg");
}

.visit-item-btn {
    display: inline-flex;
    height: 52px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 111.111% */
}

.visit-forest {
    background: linear-gradient(0deg, rgba(38, 53, 46, 0.80) 0%, rgba(38, 53, 46, 0.80) 100%), url(image/visit/forest.webp) lightgray -0.935px -26px / 100.32% 116.456% no-repeat;
}

.visit-brus {
    background: linear-gradient(0deg, rgba(38, 53, 46, 0.80) 0%, rgba(38, 53, 46, 0.80) 100%), url(image/visit/brus.webp) lightgray -9px -0.162px / 103.082% 107.065% no-repeat;
}

.visit-title-brus {
    max-width: 339px;;
}

.visit-office {
    background: linear-gradient(0deg, rgba(38, 53, 46, 0.80) 0%, rgba(38, 53, 46, 0.80) 100%), url(image/visit/office.webp) lightgray -65.266px -61px / 114.543% 138.291% no-repeat;
}

.visit-title-office {
    max-width: 474px;
}

.visit-season {
    background: linear-gradient(0deg, rgba(38, 53, 46, 0.80) 0%, rgba(38, 53, 46, 0.80) 100%), url(image/visit/season.webp) lightgray 0 -61px / 100% 138.608% no-repeat;
}

.video-block {
    padding: 60px 25px;
}

.video-block-content {
    max-width: 1291px;
    background: var(--White, #FFF);
    padding: 34px 56px 41px;
    gap: 40px;
}

.video-block-title {
    color: var(--Black, #1C2320);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 95% */
}

.video-block-row {
    display: flex;
    gap: 12px;
}

.video-block-item {
    width: calc((100% - 24px) / 3);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-block-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-block-item-text-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-block-item-title {
    color: var(--Black, #1C2320);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 140% */
}

.video-block-item-text {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}

.all-videos-link {
    margin-top: -10px;
    color: var(--Primary, #C07A52);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.with-us-block {
    background: #FFF;
    padding: 60px 90px 49px;
    overflow: hidden;
}

.with-us-block-content {
    gap: 50px;
    align-items: flex-start;
    position: relative;
}

.with-us-title {
    max-width: 790px;
    color: var(--Black, #1C2320);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px; /* 110% */
    z-index: 1;
}

.with-us-container {
    width: 583px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 70px 40px;
    z-index: 1;
}

.with-us-item {
    width: calc((100% - 40px) / 2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.with-us-item-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.with-us-item-icon {
    width: 72px;
    height: 72px;
}

.file-icon {
    background-image: url("icon/icon-file.svg");
}

.with-us-item-text-container {
    display: flex;
    flex-direction: column;
}

.with-us-item-title {
    color: var(--Black, #1C2320);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 140% */
}

.with-us-item-subtitle {
    color: var(--Grey-500, #6E6A66);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}

.with-us-item-text {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}

.with-us-link {
    color: var(--Primary, #C07A52);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 125% */
}

.money-icon {
    background-image: url("icon/money.svg");
}

.product-ipoteka-icon {
    background-image: url("icon/ipoteka-icon.svg");
}

.w-345 {
    width: 345px !important;
}

.with-us-img-container {
    width: 2250px;
    height: 801px;
    position: absolute;
    top: -106px;
    right: -1496px;
    z-index: 0;
}

.with-us-img {
    width: 100%;
    height: 100%;
    background-size: cover;
}

.with-us-img-content {
    width: 255px;
    height: 271px;
    border-radius: 8px;
    background: var(--Secondary, #26352E);
    position: absolute;
    left: 259px;
    bottom: -5px;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 17px;
    z-index: -1;
}

.with-us-img-content-icon {
    width: 36px;
    height: 36px;
    background-image: url("icon/with-us-img-content-icon.svg");
}

.with-us-img-content-text {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}

.ocf-footer {
    position: relative; !important;
}

.popular-product-card-btn {
    display: flex;
    height: 42px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
}

.cameras-promo-block-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url("icon/cameras-promo-block-icon.svg");
    width: 178px;
    height: 236px;
}

.cameras-promo-block-vector {
    position: absolute;
    width: 68px;
    height: 65px;
    top: 80px;
    left: 181px;
    background-image: url("icon/cameras-promo-block-vector.svg");
}

.projects-block {
    padding: 41px 50px 0;
    aspect-ratio: 1440 / 600;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), url(image/projects.webp) lightgray 0 -64.929px / 100% 130.435% no-repeat;
}

.projects-block-content {
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.projects-block-content-top-container {
    display: flex;
    flex-direction: column;
    gap: 47px;
}

.projects-block-content-top-container .breadcrumbs-item {
    color: var(--Grey-300, #B7B7B7);
}

.projects-block-content-top-container .breadcrumbs-item:first-child, .projects-block-content-top-container .breadcrumbs-item:nth-child(2)::before {
    color: var(--White, #FFF);
}

.projects-block-text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.projects-block-title {
    color: var(--White, #FFF);
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px; /* 100% */
}

.projects-block-text {
    width: 623px;
    color: var(--White, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

.projects-tabs-btn-row {
    display: flex;
    align-items: stretch;
    gap: 49px;
}

.projects-tabs-btn {
    display: flex;
    width: 156px;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 13px 0 6px;
    border-radius: 10px 10px 0 0;
    opacity: 0.8;
    cursor: pointer;
}

.projects-tabs-btn.active {
    opacity: 1;
    background: #FCFAF7;
}

.projects-tabs-btn.active .projects-tabs-btn-text {
    color: var(--Black, #1C2320);
}

.projects-tabs-btn-icon {
    width: 80px;
    height: 80px;
}

.projects-tabs-btn-text {
    color: rgba(255, 255, 255, 1);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
}

.project-tab-house-icon {
    background-image: url("icon/project-tab-house-icon.svg");
}

.project-tab-interior-icon {
    background-image: url("icon/project-tab-interior-icon.svg");
}

.project-tab-building-icon {
    background-image: url("icon/project-tab-building-icon.svg");
}

.project-tab-production-icon {
    background-image: url("icon/project-tab-production-icon.svg");
}

.project-tab-video-icon {
    background-image: url("icon/project-tab-video-icon.svg");
}

.projects-tabs-btn.active .project-tab-house-icon {
    background-image: url("icon/project-tab-house-icon-active.svg");
}

.projects-tabs-btn.active .project-tab-interior-icon {
    background-image: url("icon/project-tab-interior-icon-active.svg");
}

.projects-tabs-btn.active .project-tab-building-icon {
    background-image: url("icon/project-tab-building-icon-active.svg");
}

.projects-tabs-btn.active .project-tab-production-icon {
    background-image: url("icon/project-tab-production-icon-active.svg");
}

.projects-tabs-btn.active .project-tab-video-icon {
    background-image: url("icon/project-tab-video-icon-active.svg");
}

.projects-content-block {
    padding: 60px 50px 70px;
}

.projects-content-block-content {
    gap: 20px;
}

.projects-content-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    align-items: stretch;
}

.projects-content-item {
    width: calc((100% - 40px) / 3);
    aspect-ratio: 400 / 272;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.projects-content-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-content-item-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 6px;
    overflow: hidden;
    height: 44px;
    width: 44px;
    cursor: pointer;
    transition: width 0.3s ease;
}

.projects-content-item-btn:hover {
    width: 180px;
}

.projects-content-item-btn-content {
    height: 44px;
    padding: 14px 54px 14px 11px;
    border-radius: 6px;
    background: #C4906B;
    backdrop-filter: blur(17px);
    color: #FFF;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 123.077% */
    white-space: nowrap;
}

.projects-content-item-btn-hover {
    position: absolute;
    z-index: 11;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background-color: #293A31;
    background-image: url("icon/projects-content-item-btn-hover.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.projects-content-item.video {
    aspect-ratio: 16 / 9;
}

.projects-content-item iframe {
    width: 100% !important;
    height: 100% !important;
}

.services-block {
    padding: 20px 50px 80px;
}

.services-block-content {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
}

.services-tab-column {
    min-width: 298px;
    width: 298px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.services-tab-btn {
    width: 100%;
    height: 112px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: none !important;
    border-radius:  16px 0 0 16px;
    justify-content: flex-start;
    box-shadow: none !important;
    cursor: pointer;
}

.services-tab-btn.active {
    background: var(--White, #FFF);
}

.services-tab-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
}

.services-tab-text {
    color: var(--Black, #1C2320);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 17px; /* 121.429% */
    text-transform: uppercase;
}

.services-tab-btn:nth-child(3) .services-tab-text {
    width: 139px;
}

.services-tab-btn:nth-child(5) .services-tab-text {
    width: 126px;
}

.services-tab-btn:nth-child(6) .services-tab-text {
    width: 126px;
}

.services-icon-generous {
    background-image: url("icon/services-icon-generous.svg");
}

.services-icon-cement {
    background-image: url("icon/services-icon-cement.svg");
}

.services-icon-roof {
    background-image: url("icon/services-icon-roof.svg");
}

.services-icon-varnish {
    background-image: url("icon/services-icon-varnish.svg");
}

.services-icon-interview {
    background-image: url("icon/services-icon-interview.svg");
}

.services-icon-gear {
    background-image: url("icon/services-icon-gear.svg");
}

.services-icon-chair {
    background-image: url("icon/services-icon-chair.svg");
}

.tab-services-header.active .services-icon-generous,
.services-tab-btn.active .services-icon-generous {
    background-image: url("icon/services-icon-generous-active.svg");
}

.tab-services-header.active .services-icon-cement,
.services-tab-btn.active .services-icon-cement {
    background-image: url("icon/services-icon-cement-active.svg");
}

.tab-services-header.active .services-icon-roof,
.services-tab-btn.active .services-icon-roof {
    background-image: url("icon/services-icon-roof-active.svg");
}

.tab-services-header.active .services-icon-varnish,
.services-tab-btn.active .services-icon-varnish {
    background-image: url("icon/services-icon-varnish-active.svg");
}

.tab-services-header.active .services-icon-interview,
.services-tab-btn.active .services-icon-interview {
    background-image: url("icon/services-icon-interview-active.svg");
}

.tab-services-header.active .services-icon-gear,
.services-tab-btn.active .services-icon-gear {
    background-image: url("icon/services-icon-gear-active.svg");
}

.tab-services-header.active .services-icon-chair,
.services-tab-btn.active .services-icon-chair {
    background-image: url("icon/services-icon-chair-active.svg");
}

.tab-services {
    flex-grow: 1;
    padding: 37px;
    border-radius: 0 10px 10px 10px;
    background: var(--White, #FFF);
}

.tab-services-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-tab-title {
    color: var(--Black, #1C2320);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 126.667% */
}

.services-tab-img {
    width: 100%;
    margin-top: -20px;
}

.services-tab-text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-tab-subtitle {
    color: var(--Black, #1C2320);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
}

.services-tab-content-text {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.services-tab-content-text span {
    font-weight: 700;
}

.services-tab-content-ul {
    list-style-type: disc;
    padding-left: 30px;
    color: var(--Black, #1C2320);
    font-size: 16px;
    line-height: 24px;
}

.services-tab-content-ul li {
    list-style-type: disc;
}

.services-tab-text-container-sm {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-tab-content-ol-num {
    padding-left: 60px;
    color: var(--Black, #1C2320);
    font-size: 16px;
    line-height: 24px;
}

.empty-block {
    height: 60px;
}

.mortgage-block {
    padding: 60px 50px 0;
}

.bank-block {
    padding: 0 50px;
}

.bank-block-content {
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
}

.bank-item {
    flex: 1 0 0;
    height: 114px;
    border-radius: 8px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-item img {
    width: 100%;
    user-select: none;
}

.sber-img {
    max-width: 167px;
}

.dom-img {
    max-width: 105px;
}

.vtb-img {
    max-width: 86px;
}

.rossel-img {
    max-width: 200px;
}

.rosbank-img {
    max-width: 127px;
}

.alpha-img {
    max-width: 155px;
}

.mortgage-block-content {
    gap: 20px;
    align-items: flex-start;
}

.mortgage-title {
    color: var(--Black, #1C2320);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 126.667% */
}

.mortgage-row {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}

.mortgage-left-col {
    padding: 28px;
    border-radius: 10px;
    background: #FFF;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}

.mortgage__calc-field-input {
    width: 100%;
}

.js-input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border-radius: 6px;
    background: #F7F5F1;
    display: flex;
    align-items: center;
}

.mortgage-right-col {
    width: 584px;
    border-radius: 10px;
    background: #FFF;
    padding: 28px;
    gap: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mortgage__calc-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.mortgage-color-text {
    color: var(--Primary, #C07A52) !important;
    font-size: 30px !important;
    font-style: normal !important;
    font-weight: 500 !important;
    line-height: 20px !important;
}

.mortgage__calc-info {
    padding-bottom: 43px;
    border-bottom: 1px solid #CFCFCF;
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    justify-content: space-between;
    row-gap: 28px;
}

.mortgage__calc-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.mortgage__calc-info-item span {
    color: var(--Black, #1C2320);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}

.mortgage__calc-gr {
    padding-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-mortgage-request {
    display: flex;
    width: 100%;
    height: 60px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 111.111% */
}

.btn-mortgage-personal {
    display: flex;
    width: 100%;
    height: 60px;
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--Secondary, #26352E);
    box-shadow: 0 1px 0 0 #46564C;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.mortgage__calc-field-input input {
    height: 50px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding: 0;
    color: var(--Black, #1C2320);
}

.mortgage__calc-field-range {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mortgage__calc-field-name {
    color: var(--Black, #1C2320);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}

.mortgage__calc-field-rcontainer {
    margin-top: -12px;
}

.mortgage__calc-field-range span {
    color: #979797;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.mortgage__calc-field-rcontainer input {
    height: 4px !important;
    width: 100% !important;
    border-bottom-color: var(--Primary, #C07A52) !important;
    font-size: 0.4rem;
    overflow: unset !important;
    background-color: var(--Primary, #AE5A33) !important;
    color: var(--Primary, #C07A52) !important;
}

.mortgage__calc-field-rcontainer {
    overflow: unset !important;
}

.mortgage-tab-btn-block {
    padding: 70px 50px 0;
}

.mortgage-tab-btn-block-content {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
}

.mortgage-tab-btn {
    width: 187px;
    height: 86px;
    border-radius: 16px 16px 0 0;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
    text-transform: uppercase;
    box-shadow: none;
    cursor: pointer;
}

.mortgage-tab-btn.active {
    background-color: rgba(255, 255, 255, 1);
    color: var(--Primary, #C07A52);
    box-shadow: none;
}

.mortgage-tab-block {
    padding: 40px 80px 60px;
    background: #FFF;
}

.tab-mortgage {
    grid-template-columns: repeat(2, auto);
    justify-content: flex-start;
    row-gap: 40px;
    column-gap: 112px;
    align-items: stretch;
}

.tab-mortgage.active {
    display: grid;
}

.mortgage-img {
    width: 385px;
    height: 235px;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-size: cover;
}

.mortgage-info-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mortgage-info-title {
    color: var(--Black, #1C2320);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 126.667% */
}

.mortgage-info-tab-container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: flex-start;
    row-gap: 40px;
    column-gap: 90px;
    align-items: stretch;
}

.mortgage-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mortgage-info-subtitle {
    color: #979797;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.mortgage-info-text {
    color: var(--Secondary, #26352E);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 66.667% */
}

.mortgage-text-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
    max-width: 367px;
}

.mortgage-text-title {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.mortgage-text-ul {
    list-style-type: disc;
    padding-left: 30px;
    color: var(--Grey-600, #757575);
    font-size: 14px;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mortgage-text-ul li {
    list-style-type: disc;
}

.mortgage-color-block {
    padding: 45px 60px 30px;
    border-radius: 10px;
    background: #F8F5F1;
    display: flex;
    gap: 49px;
}

.mortgage-color-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mortgage-color-item-icon {
    width: 80px;
    height: 80px
}

.mortgage-color-item-text-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mortgage-color-item-title {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
}

.mortgage-color-item-text {
    max-width: 288px;
    color: var(--Grey-600, #757575);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.icon-offer {
    background-image: url("icon/icon-offer.svg");
}

.icon-village {
    background-image: url("icon/icon-village.svg");
}

.max-w {
    max-width: unset;
}

.mortgage-yellow-block {
    border-radius: 10px;
    border: 1px solid var(--Primary, #C07A52);
    background: rgba(192, 122, 82, 0.10);
    padding: 20px 40px;
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.mortgage-yellow-block-text {
    color: var(--Black, #1C2320);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.mortgage-yellow-block-text span {
    color: var(--Tertiary, #AE5A33);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.mortgage-yellow-block-title {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
}

.mortgage-yellow-block-row {
    display: flex;
    gap: 36px;
    justify-content: space-between;
}

.mortgage-yellow-block-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mortgage-yellow-block-item-icon {
    width: 52px;
    height: 52px;
}

.mortgage-yellow-block-item-text {
    color: var(--Grey-700, #4B4B4B);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.cot-icon {
    background-image: url("icon/cot-icon.svg");
}

.wheelchair-icon {
    background-image: url("icon/wheelchair-icon.svg");
}

.bed-icon {
    background-image: url("icon/bed-icon.svg");
}

.mortgage-empty-block {
    height: 80px;
}

.about-block {
    padding: 40px 50px 0;
}

.about-block-content {
    align-items: flex-start;
    gap: 40px;
}

.about-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.about-column {
    display: flex;
    flex-direction: column;
    gap: 38px;
    max-width: 519px;
}

.about-text-colum {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-title {
    color: var(--Black, #1C2320);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 126.667% */
}

.about-text {
    color: var(--Grey-600, #757575);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.about-subtitle {
    max-width: 461px;
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.about-subtext-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-ul-row {
    display: flex;
    gap: 45px;
}

.about-ul {
    list-style-type: disc;
    padding-left: 25px;
    color: var(--Grey-600, #757575);
    font-size: 16px;
    line-height: 24px;
}

.about-ul li {
    list-style-type: disc;
}

.about-btn {
    display: flex;
    width: 277px;
    padding: 14px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 125% */
}

.about-img-container {
    max-width: 614px;
    aspect-ratio: 614 / 436;
    overflow: hidden;
    border-radius: 4px;
}

.map-block {
    padding: 80px 50px 0;
}

.map-block-content {
    gap: 12px;
}

.prmn-cmngr__content {
    position: relative;
}

.prmn-cmngr__confirm {
    position: absolute;
    padding: 16px;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    color: var(--Black);
}

.prmn-cmngr__confirm-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.prmn-cmngr__confirm-btn {
    width: 120px;
    height: 32px;
    cursor: pointer;
}

.map-item {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.map-img-container {
    flex-grow: 1;
    aspect-ratio: 718 / 330;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-content {
    padding: 28px 28px 20px;
    background: var(--White, #FFF);
    width: 447px;
    min-width: 447px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-content-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-title-container {
    display: flex;
    flex-direction: column;
}

.map-title {
    color: var(--Black, #1C2320);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 136.364% */
}

.map-text {
    color: var(--Grey-600, #757575);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.map-email-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-email {
    color: var(--Primary, #C07A52);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.map-link-container {
    display: flex;
    gap: 5px;
}

.vk-icon {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background-size: cover;
    background-image: url("icon/vk-icon.svg");
}

.rutub-icon {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background-size: cover;
    background-image: url("icon/rutub-icon.png");
}

.tg-icon {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background-size: cover;
    background-image: url("icon/tg-icon.svg");
}

.details-block {
    padding: 80px 50px;
}

.details-block-content {
    align-items: flex-start;
    gap: 30px;
}

.details-row {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}

.details-item {
    width: calc((100% - 40px) / 2);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--White, #FFF);
}

.details-item-text-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-item-title {
    color: var(--Primary, #C07A52);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 158.333% */
}

.details-item-text {
    color: var(--Black, #1C2320);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 237.5% */
}

.details-item-data {
    margin-top: -12px;
    color: var(--Grey-600, #757575);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.details-item-link {
    color: var(--Primary, #C07A52);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 237.5% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.details-img-container {
    width: calc((100% - 40px) / 2);
    /*max-height: 590px;*/
    overflow: hidden;
}

.details-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-block {
    padding: 50px 50px 0;
}

.about-text-block-content {
    align-items: flex-start;
    gap: 32px;
}

.about-text-main {
    max-width: 1004px;
    color: var(--Black, #1C2320);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.about-text-main span {
    font-weight: 600;
}

.about-text-row {
    max-width: 1004px;
    display: flex;
    gap: 30px;
}

.about-text-row-text {
    width: calc((100% - 30px) / 2);
    color: var(--Grey-600, #757575);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}

.details-title {
    color: var(--Black, #1C2320);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px; /* 126.667% */
}

.in-work-block {
    padding: 40px 50px 0;
    overflow: hidden;
}

.in-work-block-content {
    gap: 40px;
    align-items: flex-start;
}

.in-work-container {
    width: 100%;
    height: 723px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    align-items: center;
}

.in-work-circle {
    width: 1222px;
    height: 1222px;
    border-radius: 1222px;
    background: #E2E5E0;
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.in-work-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.in-work-title {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 126.667% */
}

.in-work-text {
    color: var(--Black, #1C2320);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.in-work-btn-group {
    display: flex;
    gap: 13px;
    z-index: 5;
}

.in-work-home-btn {
    display: flex;
    width: 191px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--Primary, #AE5A33);
    box-shadow: 0 1px 0 0 #7E4529;
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
}

.in-work-home-catalog {
    display: flex;
    width: 191px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 6px;
    background: var(--Secondary, #26352E);
    box-shadow: 0 1px 0 0 #46564C;
    color: var(--White, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
}

.in-work-house {
    position: absolute;
    width: 1191.024px;
    height: 763px;
    bottom: -259px;
    left: 50%;
    transform: translateX(-50%);
    background: url(image/in-work.webp) 50% / cover no-repeat;
}

.fav-block {
    padding: 40px 50px 60px;
}

.fav-block-content {
    gap: 44px;
}

.fav-block .category-item-card {
    width: calc((100% - 40px) / 3);
}

.fav-empty-container {
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding-top: 150px;
}

.fav-title {
    color: var(--Black, #1C2320);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.fav-text-container {
    color: var(--Black, #1C2320);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fav-text-icon {
    width: 14px;
    height: 14px;
    background-image: url("icon/fav-text-icon.svg");
}

.fav-link {
    color: var(--Primary, #C07A52);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-top: 15px;
}






@media (min-width: 990px) and (max-width: 1200px) {
    .main-img-container {
        padding: 20px 16px 0;
        gap: 25px;
    }


    .home-header {
        padding: 12px 20px;
        gap: 8px;
    }

    .home-header-logo {
        width: 158px;
    }

    .home-header-logo-text {
        font-size: 10px;
        line-height: 120%;
        width: 118px;
    }

    .home-header-phone {
        font-size: 12px;
        margin-right: 12px;
    }

    .home-header-phone-icon {
        width: 12px;
        height: 12px;
        background-size: cover;
    }

    .home-header-row-right {
        gap: 19px;
    }

    .header-contacts-row {
        gap: 20px;
    }

    .header-social-container {
        gap: 6px;
    }

    .header-telegram-btn,
    .header-whatsapp-btn {
        width: 28px;
        height: 28px;
        background-size: cover;
    }

    .region-container {
        font-size: 14px;
    }

    .btn-second {
        width: 140px;
        height: 30px;
        padding: 14px 26px;
        font-size: 12px;
        white-space: nowrap;
    }

    .header-menu-row {
        padding: 0 8px;
    }

    .header-dropdown-btn,
    .header-menu-btn {
        font-size: 16px;
    }

    .header-menu-btn-group {
        gap: 2px;
    }

    .dropdown-menu-container {
        right: 0;
    }

    .top-main-container {
        gap: 15px;
    }

    .top-main-title {
        font-size: 40px;
        width: 438px;
    }

    .btn-primary {
        width: 200px;
        height: 40px;
        padding: 15px 40px;
        font-size: 14px;
        white-space: nowrap;
        font-weight: 700;
    }

    .top-promo-container {
        margin-top: -40px;
        padding: 0 16px;
    }

    .top-promo-block {
        padding: 24px 13px;
    }

    .camera-block {
        padding: 40px 30px 0;
    }

    .camera-block-content {
        gap: 20px;
    }

    .block-title {
        font-size: 24px;
    }

    .all-cameras-btn {
        font-size: 16px;
    }

    .camera-title {
        padding: 8px;
        font-size: 10px;
    }

    .swiper-button-prev {
        left: -30px;
    }

    .swiper-button-next {
        right: -30px;
    }

    .popular-projects-block {
        padding: 60px 30px;
    }

    .tab-btn-group {
        gap: 10px;
    }

    .tab-btn {
        padding: 12px;
    }

    .view-all-projects-btn {
        font-size: 16px;
    }

    .feedback-block {
        padding: 40px 0;
    }

    .swiper-row {
        padding: 0 30px;
    }

    .feedback-swiper-button-prev {
        left: 0;
    }

    .feedback-swiper-button-next {
        right: 0;
    }

    .feedback-block .swiper-wrapper {
        padding-left: 30px;
    }

    .our-homes-block {
        padding: 40px 30px 50px;
    }

    .our-homes-item {
        gap: 12px;
        padding-bottom: 15px
    }

    .our-homes-content {
        padding: 0 12px;
        gap: 12px;
    }

    .our-homes-title {
        font-size: 17px;
    }

    .our-homes-text-item {
        font-size: 11px;
    }

    .our-homes-btn {
        width: 194px;
        height: 32px;
        font-size: 11px;
        white-space: nowrap;
        font-weight: 600;
    }

    .our-homes-view-all {
        margin-top: 8px;
    }

    .dreamhouse-block {
        padding: 63px 30px;
    }

    .dreamhouse-block-img-container {
        aspect-ratio: 415 / 327;
    }

    .individual-design-block {
        padding: 80px 30px;
    }

    .individual-design-title {
        font-size: 40px;
    }

    .individual-design-item-title {
        font-size: 18px;
    }

    .wide-selection-block {
        padding: 0 30px;
    }

    .wide-selection-item {
        padding: 12px;
    }

    .wide-selection-item-title {
        font-size: 15px;
    }

    .wide-selection-item-btn {
        height: 26px;
        padding: 6px 15px;
        font-size: 11px;
    }

    .ceo-block {
        padding: 60px 30px 0;
    }

    .ceo-block-content {
        padding: 19px 29px 19px 40px;
        align-items: center;
    }

    .ceo-block-title {
        max-width: 486px;
        font-size: 30px;
    }

    .ceo-block-img-block {
        margin-left: 40px;
    }

    .trust-us-block {
        padding: 60px 30px;
    }

    .trust-us-title {
        width: 483px;
        font-size: 34px;
    }

    .trust-us-block-item-mid {
        min-width: 282px;
    }

    .trust-us-block-item-title {
        font-size: 18px;
    }

    .trust-us-block-item-text {
        font-size: 14px;
    }

    .our-team-block {
        padding: 0 30px;
    }

    .our-team-block-img-container {
        aspect-ratio: 437 / 370;
    }

    .our-team-form-title {
        font-size: 24px;
        max-width: 375px;
    }

    .our-team-form-text {
        width: 357px;
    }

    .main-news-block {
        padding: 80px 30px 50px;
    }

    .footer {
        padding: 30px 30px 14px;
    }

    .header {
        padding: 0 30px;
    }

    .top-block {
        padding: 30px;
    }

    .page-title-block-img-container {
        display: none;
    }

    .page-title-block-text-container {
        padding: 26px 20px 30px;
        gap: 20px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-title-block-text {
        max-width: 416px;
    }

    .top-page-promo-block {
        width: 453px;
    }

    .category-block {
        padding: 0 30px 60px;
    }

    .category-container {
        gap: 10px;
    }

    .category-sort-btn {
        padding: 5px 0;
    }

    .category-sort-btn,
    .projects-count {
        font-size: 14px;
    }

    .category-item-card {
        gap: 26px;
    }

    .category-item-content {
        gap: 13px;
    }

    .category-item-name,
    .category-item-price {
        font-size: 14px;
    }

    .heart-container {
        padding: 4px 6px;
    }

    .category-item-btn {
        height: 36px;
        padding: unset;
        font-size: 14px;
    }

    .category-content-column {
        gap: 60px;
    }

    .product-block {
        padding: 30px 30px 0;
    }

    .product-block-content {
        gap: 24px;
    }

    .product-name {
        font-size: 24px;
    }

    .navigation-block {
        padding: 40px 30px 22px;
    }

    .plan-block {
        padding: 0 30px;
    }

    .plan-title-container {
        gap: 20px;
    }

    .plan-btn-group {
        gap: 10px;
    }

    .plan-flip-btn {
        width: 190px;
        font-size: 14px;
        white-space: nowrap;
    }

    .plan-img {
        max-height: 380px;
    }

    .plan-info-text,
    .plan-area-text {
        font-size: 12px;
        line-height: 110%;
    }

    .plan-area-num {
        font-size: 32px;
    }

    .change-plan-block {
        padding: 80px 30px;
    }

    .product-description-block {
        padding: 0 30px;
    }

    .product-description-block-content {
        padding: 44px 30px;
    }

    .product-video-block {
        padding: 60px 30px 0;
    }

    .tab-btn-block {
        padding: 50px 30px 0;
    }

    .tab-btn-title {
        font-size: 30px;
        width: 528px;
    }

    .tabs-list {
        padding: 0;
        gap: 0;
    }

    .tabs-item {
        width: calc(100% / 6);
    }

    .tab-swiper {
        width: 389px;
        min-width: 389px;
    }

    .tab-swiper-btn {
        width: 30px;
        height: 30px;
        top: 115px;
    }

    .tab-block {
        padding: 42px 30px 33px;
    }

    .promo-block {
        padding: 20px 30px 50px;
    }

    .visit-block {
        padding: 40px 30px;
    }

    .visit-title {
        font-size: 30px;
    }

    .visit-block-content {
        gap: 20px;
    }

    .visit-container {
        gap: 20px 15px;
    }

    .visit-item {
        width: calc((100% - 15px) / 2);
    }

    .visit-item {
        padding: 20px;
    }

    .visit-item-title {
        font-size: 20px;
    }

    .visit-title-brus {
        width: 295px;
    }

    .visit-title-office {
        width: 350px;
    }

    .video-block {
        padding: 40px 30px;
    }

    .video-block-content {
        padding: 20px;
        gap: 20px;
    }

    .video-block-title {
        font-size: 24px;
    }

    .video-block-item-text {
        font-size: 14px;
    }

    .all-videos-link {
        margin-top: 0;
    }

    .with-us-block {
        padding: 60px 30px 26px;
    }

    .with-us-title {
        font-size: 30px;
        width: 583px;
    }

    .with-us-block-content {
        gap: 34px;
    }

    .with-us-container {
        gap: 46px 40px;
    }

    .with-us-img-container {
        height: 487px;
        width: auto;
        aspect-ratio: 2250 / 801;
        right: -870px;
        top: 70px;
    }

    .with-us-img-content {
        bottom: -83px;
        left: 189px;
    }

    .main-img-container {
        height: auto;
        aspect-ratio: 1021 / 585;
    }

    @media (min-width: 1100px) {
        .main-img-container {
            aspect-ratio: 1021 / 560;
        }
    }

    .promo-top-block .top-block-container {
        height: 236px;
    }

    .promo-top-block .page-title-block-text-container,
    .promo-top-block .top-page-promo-block {
        width: calc((100% - 20px) / 2);
    }

    .promo-top-block .page-title-block-text-container {
        padding: 40px 24px;
    }

    .projects-block {
        padding: 30px 30px 0;
        aspect-ratio: 991 / 510;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), url(image/projects.webp) lightgray 0px -55.19px / 100% 130.435% no-repeat;
    }

    .projects-block-text-container {
        gap: 14px;
    }

    .projects-block-title {
        font-size: 44px;
        line-height: 50px;
    }

    .projects-block-text {
        font-size: 16px;
        line-height: 22px;
    }

    .projects-tabs-btn-row {
        gap: 40px;
    }

    .projects-content-block {
        padding: 58px 30px 60px;
        gap: 22px;
    }

    .projects-content-item {
        width: calc((100% - 22px) / 2);
    }

    .services-block {
        padding: 20px 30px 60px;
    }

    .services-tab-title {
        font-size: 24px;
        line-height: 38px;
    }

    .bank-block {
        padding: 0 30px;
    }

    .bank-item {
        height: 84px;
    }

    .sber-img {
        max-width: 123px;
    }

    .dom-img {
        max-width: 77px;
    }

    .vtb-img {
        max-width: 63px;
    }

    .rossel-img {
        max-width: 147px;
    }

    .rosbank-img {
        max-width: 93px;
    }

    .alpha-img {
        max-width: 114px;
    }

    .mortgage-block {
        padding: 60px 30px 0;
    }

    .mortgage-right-col {
        width: 455px;
    }

    .mortgage-tab-btn-block {
        padding: 40px 30px 0;
    }

    .mortgage-tab-block {
        padding: 30px;
    }

    .mortgage-info-tab-container {
        grid-template-columns: repeat(2, auto);
    }

    .about-block {
        padding: 30px 30px 0;
    }

    .about-block-content {
        gap: 30px;
    }

    .about-text-block {
        padding: 60px 30px 0;
    }

    .map-block {
        padding: 40px 30px 0;
    }

    .map-content {
        width: 381px;
        min-width: 381px;
    }

    .details-block {
        padding: 60px 30px;
    }

    .details-img-container {
        /*display: none;*/
    }

    .details-item {
        width: calc((100% - 20px) / 2);
    }

    .in-work-circle {
        width: 926px;
        height: 926px;
        border-radius: 926px;
    }

    .in-work-container {
        height: 697px;
    }

    .in-work-block {
        padding: 30px 30px 0;
    }

    .fav-block {
        padding: 30px 30px 60px;
    }

    .category-item-name span {
        font-size: 12px;
    }
}

.home-mobile-container {
    display: none;
}

.home-main-btn {
    display: none;
}

.mobile {
    display: none;
}

@media (max-width: 989px) {
    .mobile {
        display: unset;
    }

    .main-img-container {
        padding: 10px 10px 20px;
        gap: 32px;
    }

    .home-header {
        display: none;
    }

    .home-mobile-header-container {
        width: 100%;
        height: 67px;
        position: relative;
    }

    .home-mobile-header {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 50;
        width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        background: rgba(28, 35, 32, 1);
        backdrop-filter: blur(48px) !important;
        max-height: calc(100svh - 20px);
    }

    .mobile-header-row {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
        padding: 10px 16px;
    }

    .menu-content {
        padding: 0 12px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
        max-height: calc(100% - 67px);
        overflow-x: hidden;
    }

    .header-dropdown-btn {
        padding: 14px 0;
        justify-content: space-between;
        color: var(--White, #FFF);
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 20px */
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        width: 100%;
    }

    .dropdown-icon {
        width: 26px;
        height: 26px;
        margin-right: 14px;
        background-image: url("icon/mobile-menu-icon.svg");
    }

    .header-menu-btn {
        padding: 16px 0;
        color: var(--White, #FFF);
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 20px */
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-dropdown-btn {
        /*border-top: none;*/
    }

    .header-menu-btn:nth-child(7) {
        border-bottom: none;
    }

    .header-menu-btn-group {
        display: none;
    }




    .mobile-logo {
        width: 166px;
    }

    .main-img-container {
        width: 100%;
        height: 100svh;
        background-image: url("image/mobile-home-v2.webp");
        justify-content: space-between;
    }

    .top-main-container {
        display: none;
    }

    .mobile-menu-btn-group {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .burger-btn {
        width: 24px;
        height: 21px;
        background-image: url("icon/burger.svg");
    }

    .mobile-main-promo-container {
        margin-left: 50%;
        transform: translateX(-50%);
        width: 440px;
        height: 95px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .mobile-main-promo {
        display: block;
        width: 100%;
        height: 100%;
        flex-shrink: 0;
        border-radius: 10px;
        background: rgba(41, 58, 49, 0.74);
        filter: blur(52px);
    }

    .mobile-main-promo-text {
        color: var(--White, #FFF);
        text-align: center;
        font-size: 25px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%; /* 27.5px */
        height: 95px;
        z-index: 10;
        margin-top: -95px;
        display: flex;
        align-items: center;
        max-width: calc(100vw - 40px);
    }

    .home-mobile-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: stretch;
    }

    .home-main-btn {
        width: calc(100% - 20px);
        display: flex;
        height: 56px;
        padding: 15px 40px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 4px;
        background: var(--Tertiary, #AE5A33);
        box-shadow: 0 1px 0 0 #77391F;
        color: var(--White, #FFF);
        font-size: 18px;
        font-style: normal;
        font-weight: 800;
        line-height: 100%; /* 18px */
        text-transform: uppercase;
    }

    .top-promo-container {
        margin-top: 0;
        padding: 20px 20px 0;
    }

    .top-promo-block {
        flex-wrap: wrap;
        padding: 16px 11px;
        justify-content: space-around;
        gap: 23px 12px;
        width: 100%;
        column-gap: 12px;

    }

    @media  (max-width: 480px) {
        .top-promo-block {
            display: grid;
            grid-template-columns: repeat(2, 157px);
            justify-content: space-between;
        }
    }

    .top-promo-container-item:last-child {
        display: none;
    }

    .top-promo-container-icon {
        width: 30px;
        height: 30px;
        background-size: cover;
    }

    .top-promo-container-text {
        font-size: 13px;
    }

    .camera-block {
        padding: 40px 0 0;
    }

    .camera-block .swiper {
        padding: 0 30px;
    }

    .camera-block-content {
        gap: 20px;
    }

    .all-cameras-btn {
        display: none;
    }

    .block-title {
        text-align: center;
        font-size: 24px;
        width: 100%;
    }

    .popular-projects-block {
        padding: 60px 0 20px;
    }

    .popular-projects-block .swiper {
        padding: 0 30px;
    }

    .popular-projects-block-content {
        gap: 24px;
    }

    .tab-btn-group {
        display: none;
    }

    .popular-product-card-btn {
        height: 52px;
        font-size: 18px;
        white-space: nowrap;
    }

    .feedback-block {
        padding: 40px 0;
    }

    .feedback-block-content {
        gap: 20px;
    }

    .feedback-swiper::after {
        display: none;
    }

    .feedback-block .swiper {
        padding: 0 20px;
        width: 100%;
    }

    .feedback-title {
        font-size: 24px;
        max-width: 335px;
    }

    .feedback-text {
        font-size: 16px;
        max-width: 317px;
    }

    .our-homes-block {
        padding: 32px 20px 60px;
    }

    .our-homes-block-content {
        gap: 30px;
    }

    .block-title-row {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .our-homes-text {
        font-size: 16px;
        max-width: 255px;
    }

    .our-homes-item {
        width: 100%;
    }

    .our-homes-item-img-container {
        width: 100%;
        height: 338px;
        overflow: hidden;
    }

    .our-homes-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .our-homes-content {
        padding: 0 10px;
    }

    .our-homes-title {
        font-size: 20px;
    }

    .our-homes-btn {
        width: 100%;
        height: 52px;
        font-size: 18px;
    }

    .dreamhouse-block {
        padding: 30px 20px;
    }

    .dreamhouse-block-content {
        flex-direction: column;
        gap: 30px;
    }

    .dreamhouse-block-column {
        display: none;
    }

    .dreamhouse-block-text {
        color: var(--White, #FFF);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }

    .dreamhouse-block-text span {
        font-weight: 600;
    }

    .dreamhouse-block-img-container {
        width: 100%;
        height: 398px;
    }

    .individual-design-block {
        padding: 60px 10px;
    }

    .individual-design-block-content {
        align-items: center;
    }

    .individual-design-title {
        font-size: 24px;
        max-width: 293px;
        text-align: center;
    }

    .individual-design-container {
        display: grid;
        grid-template-columns: repeat(2, calc((100% - 10px) / 2));
        column-gap: 10px;
        row-gap: 30px;
        align-items: stretch;
    }

    .individual-design-text {
        display: none;
    }

    .individual-design-item {
        align-items: center;
        gap: 12px;
    }

    .individual-design-item-title {
        font-size: 14px;
        text-align: center;
        max-width: 119px;
    }

    .individual-design-item:nth-child(1),
    .individual-design-item:nth-child(2),
    .individual-design-item:nth-child(3) {
        order: 1;
    }

    .individual-design-item:nth-child(4),
    .individual-design-item:nth-child(6) {
        order: 3;
    }

    .individual-design-item:nth-child(5) {
        order: 2;
    }

    .wide-selection-block {
        padding: 0 20px;
    }

    .wide-selection-block-content {
        gap: 26px;
        align-items: center;
    }

    .wide-selection-title {
        font-size: 24px;
        max-width: 335px;
    }

    .swiper-row {
        padding: 0 20px;
    }

    .wide-selection-item {
        width: 100%;
        padding: 10px;
        aspect-ratio: 335 / 230;
        background-size: cover;
        background-position: center;
    }

    .wide-selection-item-title {
        font-size: 16px;
    }

    .ceo-block {
        padding: 60px 0 0;
    }

    .ceo-block-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px 50px;
    }

    .ceo-block-text-container {
        gap: 20px;
    }

    .ceo-block-title {
        font-size: 24px;
        max-width: 335px;
    }

    .ceo-block-column {
        gap: 30px;
    }

    .ceo-block-btn {
        width: 100%;
        height: 52px;
        font-size: 18px;
    }

    .ceo-block-img-block {
        width: calc(100% - 22px);
        height: auto;
        aspect-ratio: 313 / 387;
        margin-left: 11px;
    }

    .ceo-block-img-container {
        width: 100%;
        height: auto;
    }

    .ceo-block-img-color-block {
        width: calc(100% - 22px);
        aspect-ratio: 313 / 387;
        height: auto;
        left: 15px;
    }

    .ceo-block-img-text-container {
        gap: 5px;
    }

    .trust-us-block {
        padding: 60px 20px;
    }

    .block-title-row {
        gap: 16px;
    }

    .trust-us-title-text {
        text-align: center;
        max-width: 339px;
    }

    .trust-us-block-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 14px 11px 27px;
    }

    .with-border-right::after,
    .with-border-bottom::after {
        display: none;
    }

    .trust-us-block-item-border-block {
        border-right: none;
    }

    .trust-us-block-item {
        padding: 20px 0;
        border-bottom: 1px solid rgba(192, 122, 82, 0.30);
    }

    .trust-us-block-item-border-block:first-child .trust-us-block-item {
        padding-top: 0;
    }

    .trust-us-block-item:nth-child(6) {
        padding-bottom: 0;
        border-bottom: none;
    }

    .our-team-block {
        padding: 0 20px;
    }

    .our-team-block-content {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .our-team-block-img-container {
        width: 100%;
    }

    .our-team-form-title {
        font-size: 21px;
    }

    .our-team-form-text-container {
        gap: 12px;
    }

    .our-team-form-top-container {
        gap: 24px;
    }

    .our-team-form-btn {
        height: 52px;
        font-size: 18px;
    }

    .our-team-form-btn-text {
        text-align: center;
    }

    .main-news-block {
        padding: 90px 0 60px;
    }

    .main-news-block-content {
        gap: 22px;
    }

    .main-news-title {
        font-size: 24px;
    }

    .main-news-block .swiper {
        padding: 0 30px;
    }

    .swiper-button-prev {
        left: 0;
    }

    .swiper-button-next {
        right: 0;
    }

    /*.main-news-slide {*/
    /*    box-shadow: none;*/
    /*}*/

    .footer {
        padding: 20px 20px 14px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-row {
        flex-direction: column;
    }

    .footer-row {
        display: none;
    }

    .footer-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .mobile-footer-row {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }

    .footer-column-s {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .footer-phone {
        color: var(--Beige, #FBEEE5);
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%; /* 22px */
    }

    .footer-column-m {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .footer-links-container {
        justify-content: space-between;
        gap: 11px unset;
        width: 100%;
    }

    .footer-row-t {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-column-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .footer-row-m {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-bottom-container {
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .menu-info-row {
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .home-header-phone {
        color: var(--White, #FFF);
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        text-transform: uppercase;
    }

    .menu-region-btn {
        color: var(--White, #FFF);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 14px */
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .menu-region-icon {
        width: 22px;
        height: 24px;
        background-image: url("icon/menu-region-icon.svg");
    }

    .menu-btn {
        display: flex;
        width: 100%;
        height: 48px;
        padding: 16px 32px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 6px;
        background: var(--Tertiary, #AE5A33);
        box-shadow: 0 1px 0 0 #7E4529;
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%; /* 14px */
    }

    .dropdown-menu,
    .dropdown-menu-bg {
        position: unset;
        width: 100%;
        display: flex;
        padding: 6px 8px;
        background: transparent;
        backdrop-filter: unset;
        border-top: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .dropdown-menu-item {
        padding: 14px 0;
        color: var(--White, #FFF);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .header {
        display: none;
    }

    .mobile-header-container {
        width: 100%;
        height: 77px;
        position: relative;
    }

    .mobile-header {
        z-index: 60;
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: calc(100svh - 10px);
        border-radius: 0 0 10px 10px;
        background: var(--Secondary, #26352E);
        backdrop-filter: blur(48px);
    }

    .mobile-header .mobile-header-row {
        background: var(--Secondary, #26352E);
        backdrop-filter: blur(48px);
        padding: 13px 24px 16px;
    }

    .mobile-header .menu-content {
        padding: 0 22px;
    }

    .mobile-header .header-dropdown-btn.active {
        margin-left: -22px;
        width: calc(100% + 44px);
        background: #39473E;
        padding: 15px 22px;
    }

    .top-block {
        padding: 20px;
    }

    .top-block-content {
        gap: 20px;
    }

    .top-page-promo-block,
    .page-title-block-img-container {
        display: none;
    }

    .category.page-title-block-text-container {
        position: unset !important;
        background: transparent;
        padding: 0;
    }

    .category .page-title-block-text {
        display: none;
    }

    .category .page-title-block {
        background: transparent;
        box-shadow: unset;
    }

    .category .page-title {
        color: var(--Black, #1C2320);
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%; /* 26.4px */
    }

    .category-btn-row {
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .category-btn-row .filter-category-btn {
        display: flex;
        height: 42px;
        padding: 14px 2px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        flex: 1 0 0;
        border-radius: 6px;
        border: 1px solid var(--Grey-050, #E8E8E8);
        background: var(--White, #FFF);
        color: var(--Black, #1C2320);
        text-align: center;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
        white-space: nowrap;
    }

    .category-block {
        padding: 0 20px 20px;
    }

    #column-left {
        display: none;
    }

    .category-sort-row {
        display: none;
    }

    .category-container-list {
        gap: 23px;
    }

    .category-item-card {
        width: 100%;
        gap: 30px;
    }

    .category-item-name,
    .category-item-price {
        font-size: 16px;
    }

    .category-item-btn {
        font-size: 18px;
    }

    .category-content-column {
        gap: 20px;
        width: 100%;
    }

    .product-block {
        padding: 20px 20px 0;
    }

    .breadcrumbs-item {
        font-size: 14px;
        white-space: nowrap;
        max-width: 200px;
    }

    .product-container {
        gap: 12px;
    }

    .product-name {
        font-size: 24px;
    }

    .product-card {
        flex-direction: column;
    }

    .product-swiper-container,
    .product-img-slide {
        height: auto;
        aspect-ratio: 335 / 228;
    }

    .product-img-fullscreen-btn,
    .product-card-price {
        display: none;
    }

    .product-block-content {
        gap: 24px;
    }

    .product-page-card-column {
        width: 100% !important;
        padding: 10px 0 0;
    }

    .product-card {
        background: transparent;
    }

    .product-card-info-container {
        gap: 20px;
    }

    .product-card-numbers-container {
        order: 0;
    }

    .product-card-btn {
        margin-top: 0;
        order: 1;
        width: 100%;
        height: 52px;
        font-size: 20px;
    }

    .product-card-info-top-container {
        order: 2;
    }

    .product-card-numbers-container {
        display: flex;
        gap: 12px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .product-card-numbers-item-row {
        gap: 6px;
    }

    .product-card-numbers-item-num {
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 36px;
    }

    .product-card-numbers-item-icon {
        width: 48px;
        height: 48px;
        background-size: cover;
    }

    .product-card-numbers-item-text {
        font-size: 12px;
    }

    .product-card-numbers-item-num span {
        font-size: 26px;
    }

    .product-card-area-container-row {
        display: flex;
        gap: 30px;
        align-items: flex-end;
    }

    .product-card-area-container {
        display: flex;
    }

    .product-card-price {
        color: var(--Secondary, #26352E);
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%; /* 32px */
        text-transform: lowercase;
    }

    .product-card-price span {
        font-size: 12px;
        line-height: 20px;
    }

    .product-card-area-btn-container {
        font-size: 12px;
    }

    .product-card-area {
        font-size: 32px;
    }

    .product-card-material-title {
        font-size: 12px;
        line-height: 20px;
    }

    .product-card-material-container {
        gap: 2px;
    }

    .product-card-material-item,
    .product-card-material-item a {
        font-size: 14px;
    }

    .navigation-block {
        padding: 26px 20px 41px;
    }

    .navigation-block-content {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .product-navigation-item {
        background: transparent !important;
        justify-content: flex-start;
        padding: 0;
        border: none !important;
        color: var(--Black, #1C2320) !important;
        font-size: 20px;
    }

    .product-navigation-item .info-navigation-icon {
        background-image: url("icon/info-navigation-hover-icon.svg");
    }

    .product-navigation-item .info-project-icon {
        background-image: url("icon/info-project-hover-icon.svg");
    }

    .product-navigation-item .info-price-icon {
        background-image: url("icon/info-price-hover-icon.svg");
    }

    .product-navigation-item .info-view-icon {
        background-image: url("icon/info-view-hover-icon.svg");
    }

    .product-navigation-item .info-safety-icon {
        background-image: url("icon/info-safety-hover-icon.svg");
    }

    .product-navigation-item .info-setting-icon {
        background-image: url("icon/info-setting-hover-icon.svg");
    }

    .product-navigation-item .info-office-icon {
        background-image: url("icon/info-office-hover-icon.svg");
    }

    .product-navigation-icon {
        width: 24px;
        height: 24px;
        background-size: cover;
    }

    .plan-block {
        padding: 0 20px;
    }

    .plan-header {
        background: transparent;
        border: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 20px;
    }

    .plan-title-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        max-width: 100%;
    }

    .plan-btn-group {
        flex-wrap: wrap;
        gap: 10px 7px;
    }

    .plan-btn {
        width: calc((100% - 7px) / 2);
    }

    .plan-scroll-wrapper {
        max-width: 100%;
        overflow: hidden;
    }

    .plan-list {
        padding: 20px 15px;
        flex-direction: column;
        gap: 33px;
        max-width: 100%;
        min-width: unset;
    }

    .plan-column {
        width: 100%;
        gap: 24px;
    }

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

    .plan-container {
        border-radius: 10px;
    }

    .plan-info-container {
        padding: 0 20px;
        gap: 2px;
    }

    .plan-info-text {
        display: none;
    }

    .plan-area-text {
        font-size: 12px;
    }

    .change-plan-block {
        padding: 60px 20px;
    }

    .change-block-text {
        max-width: 301px;
    }

    .change-block-text-container {
        align-items: center;
    }

    .change-block-btn {
        width: 100%;
        font-size: 18px;
    }

    .product-description-block {
        padding: 0 20px;
    }

    .product-description-block-content {
        padding: 26px 16px;
        border-radius: 10px;
        gap: 20px;
    }

    .product-description-row {
        flex-direction: column;
        gap: 20px;
    }

    .product-description-column {
        width: 100%;
        color: var(--Grey-600, #757575);
        font-size: 16px;
    }

    .product-video-block {
        padding: 30px 20px 0;
    }

    .tab-btn-block,
    .tab-block {
        display: none;
    }

    .tab-mobile-block {
        display: flex;
        padding: 60px 20px 0;
    }

    .tab-mobile-block-content {
        gap: 24px;
    }

    .tab-mobile-title {
        color: var(--Black, #1C2320);
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%; /* 24px */
    }

    .tab-mobile-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .tab-mobile-item-container {
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        background: var(--White, #FFF);
    }

    .tab-mobile-item-header {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tab-mobile-item-header-container {
        display: flex;
        align-items: center;
        gap: 16px;
        color: var(--Black, #1C2320);
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px; /* 88.889% */
        text-transform: uppercase;
    }

    .tabs-item-img {
        width: 69px;
        height: auto;
    }

    .icon-tab-open {
        width: 14px;
        height: 14px;
        background-image: url("icon/icon-tab-open.svg");
    }

    .tab-mobile-item-content {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 20px;
    }

    .tab-swiper {
        padding: 0 20px;
        width: auto;
        min-width: unset;
    }

    .tab-swiper-btn {
        width: 30px;
        height: 30px;
        top: 50%;
        margin-top: -30px;
    }

    .tab-swiper-btn-prev {
        left: 20px;
    }

    .tab-swiper-btn-next {
        right: 20px;
    }

    .tab-mobile-item-container.active .tab-mobile-item-content {
        display: flex;
    }

    .tab-mobile-item-container.active .icon-tab-open {
        transform: rotate(180deg);
    }

    .promo-block {
        padding: 60px 0;
        overflow-x: auto;
    }

    .promo-block-content {
        padding: 0 10px;
    }

    .promo-item:last-child {
        padding-right: 10px;
    }

    .visit-block {
        padding: 40px 20px;
    }
    .visit-block-content {
        gap: 29px;
        align-items: center;
    }

    .visit-title {
        text-align: center;
        font-size: 24px;
        line-height: 100%;
        max-width: 335px;
    }

    .visit-container {
        flex-direction: column;
        gap: 20px;
    }

    .visit-item {
        width: 100%;
        height: auto;
        border-radius: 10px;
        aspect-ratio: 335 / 316;
        padding: 20px;
    }

    .visit-item-title {
        font-size: 24px;
    }

    .visit-item-link {
        font-size: 16px;
    }

    .visit-title-office {
        max-width: 303px;
    }

    .visit-item-btn {
        width: 100%;
    }

    .video-block {
        padding: 40px 20px 60px;
    }

    .video-block-content {
        padding: 0;
        background: transparent;
        gap: 20px;
    }

    .video-block-title {
        font-size: 24px;
        text-align: center;
    }

    .video-block-row {
        flex-direction: column;
        gap: 20px;
    }

    .video-block-item {
        width: 100%;
        border-radius: 4px;
        background: #FFF;
        overflow: hidden;
    }

    .video-block-item-text-container {
        padding: 0 10px 20px;
        gap: 12px;
    }

    .all-videos-link {
        margin-top: 0;
    }

    .with-us-block {
        padding: 60px 20px 40px;
    }

    .with-us-block-content {
        gap: 40px;
        align-items: center;
    }

    .with-us-title {
        font-size: 25px;
        text-align: center;
        max-width: 305px;
        line-height: 110%;
    }

    .with-us-img-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 80px;
        top: auto;
        right: auto;
        height: 420px;
        width: 540px;
    }

    .with-us-container {
        flex-direction: column;
        gap: 50px;
        width: 100%;
        padding-bottom: 480px;
    }

    .with-us-item {
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }

    .with-us-item-column {
        width: calc(100% - 82px);
    }

    .with-us-img-content {
        bottom: -80px;
        left: 143px;
    }

    .product-description-block-color {
        display: none;
    }

    .product-description-block-content {
        border-radius: 10px 10px 0 0;
    }

    .product-description-block-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 7px;
        border-radius: 0 0 10px 10px;
        background: var(--Primary, #AE5A33);
        box-shadow: 0 1px 0 0 #7E4529;
        color: var(--White, #FFF);
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        margin-top: 0;
        height: 40px;
    }

    .page-bottom-menu {
        position: fixed;
        left: 0;
        right: 0;
        height: 64px;
        bottom: 0;
        background: var(--White, #FFF);
        box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.13);
        z-index: 50;
    }

    .page-bottom-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 2px;
        align-items: center;
    }

    .bottom-menu-filter-btn {
        width: 80px;
        right: calc(50% + 63px);
    }

    .bottom-menu-icon {
        width: 24px;
        height: 24px;
    }

    .icon-setub {
        background-image: url("icon/setub.svg");
    }

    .mobile-top-block-container {
        display: flex;
        flex-direction: column;
    }

    .page-title-block {
        flex-direction: column;
        position: relative;
    }

    .page-title-block-img-container {
        max-width: unset;
        width: 100%;
        aspect-ratio: 335 / 448;
        min-width: unset;
    }

    .desktop {
        display: none;
    }

    .page-title-block-text-container {
        padding: 0 12px 14px;
        position: absolute;
        bottom: 0;
    }

    .page-title {
        font-size: 20px;
    }

    .top-page-promo-block {
        width: 100%;
        min-width: unset;
        height: 236px;
    }

    .cameras-promo-block-icon {
        right: -70px;
    }

    .header-projects-btn.mobile {
        display: flex;
    }

    .projects-block {
        padding: 20px;
        height: 469px;
        aspect-ratio: unset;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), url(image/projects.webp) lightgray 0 -50.753px / 384% 130.435% no-repeat;
    }

    .projects-block-content-top-container {
        gap: 34px;
    }

    .projects-block-title {
        font-size: 36px;
        line-height: 100%;
        width: 355px;
    }

    .projects-block-text {
        width: 355px;
        font-size: 16px;
        line-height: 130%;
    }

    .projects-tabs-btn-row {
        flex-wrap: wrap;
        gap: 10px;
    }

    .projects-tabs-btn {
        padding: 10px;
        width: calc((100% - 20px) / 3);
        border-radius: 4px;
        border: 1px solid var(--White, #FFF);
    }

    .projects-tabs-btn-icon {
        width: 30px;
        height: 30px;
        background-size: cover;
    }

    .projects-tabs-btn-text {
        font-size: 11px;
        line-height: 100%;
    }

    .projects-content-container {
        flex-direction: column;
        gap: 20px;
    }

    .projects-content-item {
        width: 100%;
    }

    .projects-content-block {
        padding: 30px 20px 40px;
    }



    .filter-category-btn.active {
        border-radius: 6px;
        border: 1px solid var(--Primary, #C07A52);
        background: var(--Primary, #AE5A33);
        box-shadow: 0 1px 0 0 #7E4529;
        color: var(--White, #FFF);
    }

    .services-block {
        padding: 20px 20px 60px;
    }

    .services-tab-column {
        display: none;
    }

    .tab-services {
        display: flex;
        padding: 0;
        border-radius: 8px;
        flex-direction: column;
    }

    .services-block-content {
        flex-direction: column;
        gap: 10px;
    }

    .tab-services-content {
        padding: 20px;
    }

    .tab-services-header {
        width: 100%;
        padding: 17px 17px 17px 29px;
        border-radius: 8px;
        background: var(--White, #FFF);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tab-services-header.active {
        border: 1px solid var(--Primary, #C07A52);
        padding: 16px 16px 16px 28px;
    }

    .tab-services-header.active .tab-services-header-vector {
        transform: unset;
    }

    .tab-services-header-content {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    .services-tab-icon {
        width: 52px;
        min-width: 52px;
        height: 52px;
        background-size: cover;
    }

    .tab-services-header-text {
        color: var(--Black, #1C2320);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px; /* 114.286% */
        text-transform: uppercase;
        max-width: 150px;
    }

    .tab-services-header-vector {
        width: 11px;
        height: 6px;
        background-image: url("icon/tab-services-header-vector.svg");
        transform: rotate(180deg);
    }

    .m-d-none {
        display: none !important;
    }

    .page-title-block-img-container.both {
        aspect-ratio: 355 / 237;
    }

    .page-title-block-text-container.both {
        position: unset;
        padding-top: 14px;
    }

    .bank-block {
        padding: 20px 20px 0;
    }

    .bank-block-content {
        flex-wrap: wrap;
    }

    .bank-item {
        width: calc((100% - 20px) / 2);
        flex: unset;
        height: 94px;
    }

    .mortgage-block {
        padding: 40px 20px 0;
    }

    .mortgage-title {
        display: none;
    }

    .mortgage-row {
        flex-direction: column;
    }

    .mortgage-right-col {
        width: 100%;
    }

    .mortgage-color-text {
        color: var(--Primary, #C07A52);
        font-size: 22px !important;
        font-style: normal;
        font-weight: 500 !important;
        line-height: 20px !important; /* 90.909% */
    }

    .btn-mortgage-request,
    .btn-mortgage-personal {
        height: 52px;
        font-size: 18px;
    }

    .mortgage-tab-btn-block {
        display: none;
    }

    .mortgage-tab-block {
        background: transparent;
        padding: 20px 20px 0;
    }

    .mortgage-tab-block-content {
        gap: 10px;
    }

    .tab-mortgage {
        display: none !important;
        flex-direction: column;
        gap: 26px;
        padding: 13px;
        border-radius: 10px;
        background: var(--White, #FFF);
        margin-top: 14px;
    }

    .mortgage-img {
        width: 100%;
        height: auto;
        aspect-ratio: 308 / 187;
    }

    .mortgage-info-tab-container {
        grid-template-columns: repeat(2, auto);
        row-gap: 32px;
        column-gap: 35px;
    }

    .mortgage-info-subtitle {
        font-size: 12px;
        line-height: 100%;
    }

    .mortgage-info-item {
        gap: 4px;
    }

    .mortgage-info-text {
        font-size: 26px;
        line-height: 100%;
    }

    .mortgage-yellow-block-row {
        flex-direction: column;
    }

    .mortgage-color-block {
        flex-direction: column;
    }

    .tab-mortgage-header {
        display: flex;
        width: 100%;
        height: 70px;
        padding: 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 8px;
        background: var(--White, #FFF);
        color: var(--Black, #1C2320);
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px; /* 88.889% */
        text-transform: uppercase;
    }

    .tab-mortgage-header.active {
        border-radius: 8px;
        border: 1px solid #D2D6CF;
        background: #DFE2DB;
    }

    .tab-mortgage-header.active i {
        transform: rotate(180deg);
    }

    .tab-mortgage-vector {
        width: 14px;
        height: 14px;
        background-image: url("icon/tab-mortgage-vector.svg");
    }

    .mortgage-empty-block {
        height: 60px;
    }

    .tab-mortgage.m-active {
        display: flex !important;
    }

    .about-block {
        padding: 20px 20px 0;
    }

    .about-img-container {
        display: none;
    }

    .about-text-colum {
        gap: 14px;
    }

    .about-title {
        font-size: 24px;
        line-height: 120%;
    }

    .about-btn {
        width: 100%;
    }

    .about-text-block {
        padding: 30px 20px 0;
    }

    .about-text-main {
        font-size: 24px;
        line-height: 130%;
    }

    .about-text-row {
        flex-direction: column;
        gap: 20px;
    }

    .about-text-row-text {
        width: 100%;
    }

    .about-dropdown-btn.mobile {
        display: flex;
    }

    .map-item {
        flex-direction: column;
    }

    .map-img-container {
        aspect-ratio: 337 / 330;
    }

    .map-block {
        padding: 60px 20px 0;
    }

    .map-content {
        width: 100%;
        min-width: unset;
        padding: 14px;
        gap: 27px;
    }

    .map-title {
        font-size: 20px;
        line-height: 30px;
    }

    .details-block {
        padding: 60px 20px;
    }

    .details-block-content {
        align-items: center;
    }

    .details-title {
        font-size: 24px;
        line-height: 38px;
    }

    .details-row {
        flex-direction: column;
    }

    .details-item {
        width: 100%;
        padding: 18px;
    }

    .details-img-container {
        display: none;
    }

    .in-work-block {
        padding: 20px 20px 0;
    }

    .in-work-circle {
        display: none;
    }

    .in-work-title {
        font-size: 28px;
        line-height: 110%;
    }

    .in-work-home-btn,
    .in-work-home-catalog {
        width: 170px;
    }

    .in-work-house {
        width: 619px;
        height: 396.547px;
        bottom: -92px;
    }


    .in-work-container {
        height: 487px;
    }

    .fav-block {
        padding: 20px;
    }

    .fav-block-content {
        gap: 30px
    }

    .fav-block .category-item-card {
        width: 100%;
    }

    .content {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .visit-forest {
        background: linear-gradient(0deg, rgba(38, 53, 46, 0.80) 0%, rgba(38, 53, 46, 0.80) 100%), url(image/visit/forest.webp) lightgray 50% / cover no-repeat;
    }

    .visit-brus {
        background: linear-gradient(0deg, rgba(38, 53, 46, 0.80) 0%, rgba(38, 53, 46, 0.80) 100%), url(image/visit/brus.webp) lightgray 50% / cover no-repeat;
    }

    .visit-office {
        background: linear-gradient(0deg, rgba(38, 53, 46, 0.80) 0%, rgba(38, 53, 46, 0.80) 100%), url(image/visit/office.webp) lightgray -160.525px 0px / 154.445% 100% no-repeat;
    }

    .visit-season {
        background: linear-gradient(0deg, rgba(38, 53, 46, 0.80) 0%, rgba(38, 53, 46, 0.80) 100%), url(image/visit/season.webp) lightgray 50% / cover no-repeat;
    }
}

.product-description-row.full {
    max-height: unset;
}

.product-description-row.full::after {
    display: none;
}


button, a, span {
    -webkit-tap-highlight-color: transparent;
}

.our-homes-block,
/*.projects-block,*/
/*.projects-content-block,*/
.main-news-block {
    display: none;
}

.top-promo-container {
    /*padding-bottom: 40px;*/
}

.tab-btn-group {
    display: none;
}




/* ---------- Фото команды: вертикальный кадр ---------- */
/* Снимок портретный (2:3). Контейнер раньше был горизонтальным (463/289),
   и object-fit: cover срезал у кадра больше половины. Делаем контейнер
   портретным, чтобы фотография помещалась целиком. */
.our-team-block-content {
    justify-content: center;
}

.our-team-block-img-container {
    width: auto;
    height: 540px;
    aspect-ratio: 2 / 3;
    flex-shrink: 0;
}

@media (min-width: 990px) and (max-width: 1200px) {
    .our-team-block-img-container {
        height: 470px;
        aspect-ratio: 2 / 3;
    }
}

/* Узкие экраны: блок перестраивается в колонку, поэтому ограничиваем
   ширину — иначе портретный кадр вытянул бы страницу на полтора экрана. */
@media (max-width: 989px) {
    .our-team-block-img-container {
        width: 100%;
        max-width: 330px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ---------- Карточка проекта: название и цена ---------- */
/* Название и цена стоят в одном ряду, причём цена не сжимается. Когда карточка
   узкая — на телефоне и в трёхколоночной сетке на десктопе — названию остаётся
   ~130-150 px, и артикул рвётся по дефису: «КИРПИЧНЫЙ ДОМ DM-» / «214».
   Разрешаем ряду переноситься: если вдвоём в строку не помещаются,
   цена уходит на строку ниже, а названию достаётся вся ширина карточки. */
.product-card-text-row {
    flex-wrap: wrap;
    gap: 4px 12px;
}

.product-card-text {
    flex: 1 1 auto;
}


/* ---------- Согласие на обработку данных ---------- */
/* Контейнер был flex, а внутри три отдельных элемента: квадрат-иконка,
   текст «Я согласен на обработку» и ссылка. На узком экране флекс сжимал
   квадрат в полоску (у него не было flex-shrink: 0), а текст и ссылка
   переносились каждый сам по себе и расходились по краям.
   Делаем строку обычным текстом: квадрат — inline-block фиксированного
   размера, текст и ссылка текут одной фразой. */
.our-team-form-checkbox-container {
    display: block;
    text-align: left;
    line-height: 1.35;
}

.our-team-form-checkbox-container-icon {
    display: inline-block;
    flex-shrink: 0;
    vertical-align: -4px;
    margin-right: 7px;
    background-repeat: no-repeat;
    background-size: 18px 18px;
}


/* Само поле прячем, но оставляем доступным с клавиатуры: состояние показывает
   квадрат-иконка. Класс .active оставлен для совместимости со старой разметкой. */
.our-team-form-checkbox-container {
    cursor: pointer;
}

.dm-consent {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.our-team-form-checkbox-container:has(.dm-consent:checked) .our-team-form-checkbox-container-icon,
.our-team-form-checkbox-container.active .our-team-form-checkbox-container-icon {
    background-image: url("icon/our-team-form-checkbox-container-icon-active.svg");
}

.dm-consent:focus-visible + .our-team-form-checkbox-container-icon {
    outline: 2px solid var(--Primary, #AE5A33);
    outline-offset: 2px;
}

/* Одна планировка на проект: и картинку, и подпись держим по центру.
   Для двухэтажных проектов, где колонок две, ничего не меняется. */
.plan-list > .plan-column:only-child {
    align-items: center;
}
.plan-list > .plan-column:only-child .plan-info-container {
    align-items: center;
    text-align: center;
}

/* ---------- Галерея проекта: стрелки и лента миниатюр ---------- */
.product-media {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--White, #FFF);
}

.product-media .product-swiper-container {
    flex-grow: 0;
}

.product-swiper-container .swiper-button-prev,
.product-swiper-container .swiper-button-next {
    /* тема уносит стрелки за пределы слайдера (-42px) и рисует их своей
       иконкой — для галереи проекта возвращаем их внутрь, поверх фотографии */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(24, 34, 30, .45);
    background-image: none;
    color: #fff;
    transition: background-color .2s;
}

.product-swiper-container .swiper-button-prev {
    left: 16px;
    right: auto;
    transform: translateY(-50%);
}

.product-swiper-container .swiper-button-next {
    right: 16px;
    left: auto;
    transform: translateY(-50%);
}

.product-swiper-container .swiper-button-prev:hover,
.product-swiper-container .swiper-button-next:hover {
    background: rgba(24, 34, 30, .7);
}

.product-swiper-container .swiper-button-prev::after,
.product-swiper-container .swiper-button-next::after {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.product-thumbs-swiper {
    width: 100%;
    padding: 10px;
    background: var(--White, #FFF);
}

.product-thumbs-swiper .swiper-slide {
    height: 84px;
    cursor: pointer;
    opacity: .5;
    transition: opacity .2s;
    overflow: hidden;
}

.product-thumbs-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    outline: 2px solid var(--Primary, #C07A52);
    outline-offset: -2px;
}

@media (max-width: 767px) {
    .product-thumbs-swiper .swiper-slide { height: 62px; }
    .product-swiper-container .swiper-button-prev,
    .product-swiper-container .swiper-button-next { width: 36px; height: 36px; }
    .product-swiper-container .swiper-button-prev { left: 10px; }
    .product-swiper-container .swiper-button-next { right: 10px; }
    .product-swiper-container .swiper-button-prev::after,
    .product-swiper-container .swiper-button-next::after { font-size: 13px; }
}

/* Описание проекта: абзацы шли вплотную (margin 0), текст читался сплошняком.
   Межстрочный интервал тут ~19px, поэтому между абзацами добавляем 9px —
   разрыв заметно больше строчного, но абзацы не разваливаются на куски. */
.product-description-column p + p {
    margin-top: 9px;
}

