html {
    font-size: calc(100vw / 1920);
}
@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/build/static/Jost-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
* {
    box-sizing: border-box;
    outline: 0;
}

body {
    font-family: Jost, Arial;
    font-size: 18rem;
    font-weight: 300;
    line-height: 23.4rem;
    text-align: left;
    margin: 0;
    padding: 0;
}
body.nooverflow {
    overflow: hidden;
    pointer-events: none;
}
a {
    text-decoration: none;
}

.flex_c {
    display: flex;
}

.j_c_c {
    justify-content: center;
}

.j_c_s_b {
    justify-content: space-between;
}

.a_i_c {
    align-items: center;
}

.f_d_c {
    flex-direction: column;
}

@media (max-width: 991px) {
    .flex_m_fdc {
        flex-direction: column;
    }
}

h1, h2, .h2, .h1 {
    font-size: 50rem;
    line-height: 60rem;
    color: #00344C;
    font-weight: 600;
    margin-top: 0;
}

button {
    box-shadow: none;
    letter-spacing: 0.2em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_blue, .btn_white {
    font-weight: 500;
    border-radius: 4rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn_blue {
    font-size: 22rem;
    line-height: 32rem;
    padding: 24rem;
    background: #008FAC;
    border: 1rem solid #008FAC;
    color: #fff;
}

.btn_blue:hover {
    background: #fff;
    color: #008FAC;
}
#filters-run {
    text-align: center;
    margin-top: 65rem;
}
.btn_white {
    font-size: 16rem;
    line-height: 23rem;
    text-align: center;
    color: #008FAC;
    padding: 16rem 45rem;
    background: #fff;
    border: 1rem solid #fff;
}

.btn_white:hover {
    background: #008FAC;
    color: #fff;
}

.text-right, .text_right {
    text-align: right;
}

.container {
    max-width: 1440rem;
    margin: 0 auto;
    width: 100%;
}

.container-fluid {
    max-width: 1920rem;
    width: 100%;
    padding: 0 80rem;
    margin: 0 auto;
}

section {
    width: 100%;
    float: left;
}

.showmore {
    font-size: 16rem;
    font-weight: 500;
    line-height: 20rem;
    letter-spacing: 0.29em;
    text-align: left;
    color: #008FAC;
    display: block;
    text-transform: uppercase;
}

.showmore:after {
    content: url(/build/img/icons/arrowmore.svg);
    margin-left: 4rem;
}

/* header */
header .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 102rem;
}

#logo {
    font-size: 28rem;
    font-weight: 500;
    line-height: 40rem;
    letter-spacing: 0.24em;
    text-align: left;
    text-transform: uppercase;
    color: #008FAC;
}
#logo a {
    color: #008FAC;
}
.additional_links {
    float: right;
    width: 287rem;
}

.menu {
    list-style-type: none;
    padding: 0;
}

.menu li {
    display: inline-block;
}

.menu li a {
    color: #00344C;
    font-size: 18rem;
    line-height: 26rem;
    font-weight: 400;
    padding: 12rem;
}

.social-icons {
    float: left;
}

.social-icons a + a {
    margin-left: 27rem;
}

.call_us {
    float: right;
}

.call_us .phone {
    font-size: 20rem;
    font-weight: 700;
    line-height: 29rem;
    color: #00344C;
}

.call_us a + a {
    font-size: 16rem;
    font-weight: 400;
    line-height: 23rem;
}

.call_us a {
    display: block;
}

/* sections */
.project_info {
    padding: 120rem 0;
    background: #F9F9F9;
    font-size: 22rem;
    line-height: 28rem;
}

.project_info__desctiption {
    max-width: 720rem;
    float: left;
}

.project_info__text {
    text-align: left;
    margin-bottom: 55rem;
}

.project_info__main_info .project_info__main_info__item {
    width: 357rem;
    height: 240rem;
    background: url(/build/img/icons/corner-frames.svg) no-repeat center/cover;
}

.project_info__main_info__item + .project_info__main_info__item {
    margin-top: 60rem;
}

.project_info__main_info__item span {
    font-size: 50rem;
    font-weight: 600;
    line-height: 65rem;
    text-align: left;
    color: #008FAC;
}

.project_info__title {
    margin-bottom: 60rem;
}

.progress {
    display: flex;
    padding: 120rem 0 60rem;
    width: 100%;
    flex-direction: column;
}

.progress__title {
    color: #00344c;
    font: 600 50rem/1.2 Jost, sans-serif;
}

.progress__items_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-auto-rows: minmax(293rem, auto);
    gap: 20rem;
    margin-top: 36rem;
}

.progress__item {
    border-radius: 4rem;
    background-color: #e9e9e9;
    overflow: hidden;
}

.progress__column .progress__item:last-child {
    margin-top: 10rem;
}

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

.progress__item_img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.progress__column.col_x2 .progress__item--low {
    width: calc(50% - 5rem);
    float: left;
}

.progress__column.col_x2 .progress__item--high {
    width: 100%;
    float: left;
}

.progress__column.col_x2 .progress__item--low + .progress__item--low {
    margin-left: 10rem;
}

.progress__item_info {
    position: relative;
    background-color: rgba(0, 52, 76, 0.7);
    padding: 11rem 24rem;
    color: #fff;
    font-family: Roboto Flex, sans-serif;
}

.progress__item_date {
    font-size: 18rem;
    font-weight: 800;
}

.progress__item_count {
    font-size: 16rem;
    font-weight: 300;
    margin-top: 6rem;
}

.progress__item--low {
    height: 293rem;
}

.progress__item--high {
    height: 467rem;
}

@media (max-width: 991px) {
    .progress {
        margin: 40rem 20rem 0;
    }

    .progress__title {
        font-size: 40rem;
    }

    .progress__items_grid {
        grid-template-columns: 1fr;
    }

    .progress__item--wide {
        grid-column: span 1;
    }
}

section.documents {
    padding: 120rem 185rem 150rem;
    background: #00344C url(/build/img/icons/documents_bg.png) no-repeat right center/contain;
    color: #fff;
}

section.documents h2 {
    color: #fff;
    margin-bottom: 22rem;
}

.documents-description {
    max-width: 650rem;
}

.documents-text {
    margin-bottom: 50rem;
    font-size: 30rem;
    font-weight: 400;
    line-height: 42rem;
}

.documents-description .btn_white {
    max-width: 304rem;
    font-size: 18rem;
    letter-spacing: 0.2em;
}

.map_contacts__info {
    background: #fff;
}

/* footer */
.map_contacts {
    position: relative;
    padding: 60rem 0;
    float: left;
    width: 100%;
}

.map_contacts .container-fluid {
    position: relative;
    height: 715rem;
}

.map_contacts__info {
    background: #fff;
    padding: 60rem 60rem 70rem;
    position: absolute;
    top: 120rem;
    left: 120rem;
}

.map_contacts__info p {
    font-size: 26rem;
    line-height: 34rem;
    margin-bottom: 75rem;
}

.map_contacts__info b {
    font-size: 35rem;
    font-weight: 500;
    line-height: 45rem;
    color: #008FAC;
}

.map_contacts__info a {
    display: block;
}

.contacts-text a + a {
    color: #272729;
}

.map_contacts .btn_blue {
    padding: 0 85rem;
}

.contacts-title {
    margin-bottom: 15rem;
}

.footer_info {
    padding-bottom: 40rem;
    font-size: 18rem;
    float: left;
    width: 100%;
}

.footer_info .container-fluid {
    display: flex;
    justify-content: space-between;
}

.footer_info__text {
    line-height: 23rem;
    width: calc(100% - 243rem);
    max-width: 73.333%;
    flex-grow: 1;
    position: relative;
    padding-right: 120rem;
}

.footer_info__links > a {
    line-height: 25.2rem;
    color: #00344C;
}

.footer_info__links .socials {
    margin-top: 15rem;
    display: flex;
    align-items: center;
}

.footer_info__links .socials a {
    margin-right: 10rem;
}

.footer_info__text:after {
    content: '';
    background: #E0E0E0;
    width: 1rem;
    align-self: stretch;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

/* catalog */
.catalog {
    border-top: 1px solid #00344C;
}

.catalog .h1 {
    margin: 40rem 0 50rem;
    color: #00344C;
}

.column_left {
    width: 362rem;
    float: left;
    padding-right: 60rem;
}

#catalog {
    float: left;
    padding-left: 60rem;
    border-left: 1px solid #DCE8F2;
    width: calc(100% - 362rem);
}

.filters_group {
    margin-top: 40rem;
}

.filters_group__options {
    display: flex;
    flex-wrap: wrap;
}

.filters_group__options label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    padding: 17px 0;
    border: 1px solid #DCE8F2;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
}

.checkboxes .filters_group__options label:has(input[type="checkbox"]:checked) {
    background: #008FAC;
    color: #fff;
}

.filters_group__options input[type="checkbox"] {
    display: none;
}

.filters_group legend {
    font-size: 14rem;
    font-weight: 500;
    line-height: 20.23rem;
    letter-spacing: 0.13rem;
    text-align: left;
    color: #8E8E8E;
    margin-bottom: 10rem;
    text-transform: uppercase;
}

.filters_group.range-slider legend {
    margin-bottom: 40rem;
}


/* Style for the range slider */


.catalog_table {
    width: 100%;
    border-spacing: 0;
}

#catalog td,
#catalog th {
    padding: 27rem 32rem;
    border-bottom: 1px solid #DCE8F2;
    background: #fff;
    transition: 0.3s;
}

#catalog td a,
#catalog th a {
    color: #00344C;
    font-size: 18rem;
    font-weight: 400;
}

#catalog tr:hover td,
#catalog tr:hover th {
    background: #F4F7F9;
}

/* section join_us */
.join_us {
    padding: 120rem;
    background: #00344C;
    color: #fff;
    position: relative;
    margin-top: 100rem;
}

.join_us:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: url(/build/img/join_us_bg.jpg) no-repeat center/cover;
}

.join_us__content {
    width: 623rem;
}

.join_us__content p {
    font-size: 30rem;
    font-weight: 600;
    line-height: 36rem;
    margin: 0 0 145rem;
}

/* item */
.item {
    width: 100%;
    float: left;
    padding: 40rem 180rem 100rem;
}

.item__image {
    width: 885rem;
    padding-right: 285rem;
}
.item__image img {
    max-width:598rem;
}
.item__info {
    width: 660rem;
}

.item__main_info__description {
    padding-top: 50rem;
}

.item__main_info__description span {
    display: block;
    font-weight: 400;
}

.item__main_info__description .item__status {
    font-size: 18rem;
    line-height: 21rem;
    margin-bottom: 20rem;
    display: flex;
    align-items: center;
}

.item__price {
    font-size: 40rem;
    line-height: 46.4rem;
}

.params_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30rem;
    margin-top: 10rem;
    margin-top: 50rem;
    margin-bottom: 50rem;
}

.available:before {
    content: url(/build/img/icons/checks.svg);
    width: 32rem;
    height: 32rem;
    display: inline-block;
    margin-right: 10rem;
}

.param_item {
    border-right: 1px solid #DCE8F2;
}

.params_grid .param_item:nth-child(3n+3) {
    border-right: none;
}

.param_item span {
    display: block;
}

.param_name {
    font-size: 14px;
    font-weight: 500;
    line-height: 20.23px;
    letter-spacing: 0.13em;
    margin-bottom: 5rem;
    color: #A6A6A6;
}

.param_value {
    font-size: 26px;
    font-weight: 400;
    line-height: 30.16px;
}

/* layout scheme */
.layout_scheme {
    padding: 130rem 0 30rem;
}

.layout_scheme .h2 {
    margin-bottom: 50rem;
}

.tabs_container {
    border-top: 1rem solid #DFDFDF;
    border-bottom: 1rem solid #DFDFDF;
}

.tabs_nav__name {
    display: inline-block;
    float: left;
    padding-right: 79rem;
    position: relative;
}

.tabs_nav__name:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20rem;
    width: 30rem;
    height: 1rem;
    background: #A5A5A5;
}

.tabs_nav__links {
    display: flex;
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.tabs_nav {
    display: flex;
    align-items: center;
}

.tabs_nav__links > li {
    padding: 20rem 25rem;
    border: 1px solid #DCE8F2;
    font-weight: 500;
    font-size: 16rem;
}

.tabs_nav__links > li.active {
    color: #fff;
    background: #008FAC;
}

.tabs_content__item, .tabs_content__subitem {
    display: none;
}

.tabs_content__subitem {
    padding: 60rem 60rem 120rem;
    width: 100%;
}

.tabs_content__subitem img {
    margin: 0 auto;
    display: block;
}

.tabs_content__item.active, .tabs_content__subitem.active {
    display: block;
}

/* pagination */
.pagination ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 75rem 0 100rem
}

.pagination li {
    padding: 20rem 25rem;
    border-radius: 50%;
}

.pagination a {
    color: #00344C;
    font-weight: 500;
    font-size: 16rem;
}

.pagination li.active {
    background: #008FAC;
}

.pagination li.active a {
    color: #fff;
}


/* hamburger */
/* Hamburger button styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25rem;
    height: 55rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 15rem 0;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #00344C;
    border-radius: 5px;
    transition: all 0.3s linear;
    position: relative;
}

.hamburger div:nth-child(1) {
    transform-origin: 1px;
}

.hamburger div:nth-child(3) {
    transform-origin: 1px;
}

.hamburger.active div:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active div:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active div:nth-child(3) {
    transform: rotate(-45deg);
}

.mob {
    display: none;
}

@media (max-width: 1000px) {
    .desktop {
        display: none;
    }

    .mob.item__main_info__building {
        display: block;
    }

    .mob {
        display: block;
    }

    .mob.item__main_info__building img {
        margin: 0 auto 20rem;
        display: block;
    }

    html {
        font-size: calc(100vw / 360);
    }

    body {
        padding-top: 55rem;
    }

    .container-fluid, .container {
        padding: 0 20rem;
    }

    header {
        height: 55rem;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 8;
        padding: 0;
        background: #fff;
    }

    .btn_blue {
        font-size: 16rem;
    }

    header .container-fluid {
        height: 55rem;
    }

    h1, h2, .h2, .h1 {
        font-size: 30rem;
        line-height: 36rem;
    }

    #logo {
        font-size: 22rem;
        line-height: 32rem;
        padding: 11rem
    }

    .additional_links, .call_us {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .menu {
        display: none;
        position: absolute;
        top: 55rem;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        z-index: 7;
        padding: 10rem;
        border-top: 1rem solid #008FAC;
        margin: 0;
    }

    .menu.active {
        display: block;
    }

    .menu li {
        display: block;
        margin-bottom: 10rem;
    }

    .project_info {
        padding: 27rem 0 20rem;
        font-size: 16rem;
    }

    .project_info__title {
        margin-bottom: 20rem;
    }

    .project_info__text {
        margin-bottom: 28rem;
    }

    .project_info__desctiption {
        width: 100%;
        float: none;
        margin-bottom: 46rem;
    }

    .showmore:after {
        height: 16rem;
        width: 16rem;
        display: inline-block;
    }

    .project_info__main_info {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        margin: 0 -5rem;
    }

    .project_info__main_info .project_info__main_info__item {
        width: 164rem;
        height: 150rem;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 25rem 12rem;
        flex-direction: column;
        background-size: contain;
        background-image: url('/build/img/icons/corner-frames-mob.svg');
        margin-right: -1rem;
    }

    .project_info__main_info__item + .project_info__main_info__item {
        margin-top: 0;
        margin-right: 0;
        margin-left: -1rem;
    }

    .project_info__main_info .project_info__main_info__item span {
        font-size: 26rem;
        text-align: center;
        line-height: 33rem;
    }

    .progress {
        margin: 25rem 0 10rem;
    }

    .progress__title {
        font-size: 30rem;
    }

    .progress .progress__column, .progress__item {
        display: none;
    }

    .progress .progress__column:first-child, .progress .progress__column:first-child .progress__item:first-child {
        display: block;
    }

    .progress__item_info {
        padding: 6rem 13rem;
        width: 157rem;
    }

    .progress__item_info time {
        font-size: 16rem;
        font-weight: 800;
    }

    .progress__item_info p {
        font-size: 16rem;
        font-weight: 300;
        margin: 0;
    }

    section.documents {
        padding: 162rem 30rem 35rem;
        background-image: url('/build/img/icons/documents_bg-mob.png');
        background-position: top center;
        background-size: contain;
        margin: 0 20rem 20rem;
        width: calc(100vw - 40rem);
        border-radius: 4px
    }

    .documents-title {
        margin-bottom: 12rem;
    }

    .documents-text {
        font-size: 18rem;
        font-weight: 400;
        line-height: 25rem;
        margin-bottom: 22rem;
    }

    .map_contacts {
        padding-bottom: 250rem;
        height: 592rem;
    }

    .map_contacts .container-fluid {
        padding: 0;
        height: 342rem;
    }

    .map_contacts__info {
        background: #EBF3F9;
        padding: 22rem 22rem 36rem;
        top: 250rem;
        left: 15rem;
        right: 15rem;
    }

    .contacts-title {
        margin: 0 0 7rem;
    }

    .map_contacts__info p {
        font-size: 20rem;
        line-height: 26rem;
        margin-bottom: 23rem;
    }

    .map_contacts__info b {
        font-size: 30rem;
    }

    .map_contacts__info .btn_blue {
        margin-top: 9rem;
        width: 100%;
        padding: 22.5rem 0;
        display: block;
    }


    .footer_info .container-fluid {
        flex-direction: column;
        margin-top: 50rem;
    }

    .footer_info__links {
        order: 1;
    }

    .footer_info__text {
        order: 2;
        width: 100%;
        max-width: none;
        font-size: 14rem;
        font-weight: 300;
        padding: 0;
    }

    .line_between, .footer_info__text:after, .item__main_info__building {
        display: none;
    }

    /* item */
    .item {
        padding: 25rem 15rem 40rem;
    }

    .item > .flex_c > *, .item__main_info, .item__main_info__description {
        width: 100%;
    }

    .item__image, .item__info {
        width: 100%;
        padding: 0;
    }

    .item__image {
        padding: 0 10rem;
    }

    .item__image img {
        width: 100%;
    }

    .item__main_info__description {
        display: flex;
        justify-content: space-between;
        margin: 30rem 0;
        border-bottom: 1px solid #00344C
    }

    .item__price {
        order: 1;
        font-size: 30rem;
        font-weight: 400;
        line-height: 35rem;
    }

    .item__main_info__description .item__status {
        font-size: 16rem;
    }

    .item__status {
        order: 2;
    }

    .available:before {
        content: '';
        background: url(/build/img/icons/checks.svg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 32rem;
        height: 32rem;
        display: inline-block;
        margin-right: 8rem;
    }

    .params_grid {
        margin: 0 0 30rem;
        grid-template-columns: 1fr 1fr;
        grid-gap: 0 30rem;
    }

    .param_item {
        padding: 10rem 0;
        border-right: none !important;
    }

    .param_name {
        font-size: 14rem;
        line-height: 20rem;
    }

    .param_value {
        font-size: 20rem;
        line-height: 23rem;
    }

    .item .btn_blue {
        width: 100%;
    }
    .join_us {
        padding: 220rem 0 21rem;
    }
    .join_us__content {
        width: 100%;
        padding: 0 16rem;
    }
    .join_us:after{
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        bottom: auto;
        height: 208rem;
    }
    .join_us__content p {
        font-size: 20rem;
        line-height: 24rem;
        margin-bottom: 29rem;
    }
    .join_us__content .btn_white {
        float: left;
        width: 100%;
    }
}

.floor-plan-block.has-active-apartment .apartment {
    /*opacity: 0 !important;*/
    cursor: default !important
}

.floor-plan-block.has-active-apartment .apartment.active {
    opacity: 1 !important
}
.floor-plan-block {
    position: relative;
    max-width: 720rem;
    margin: 0 auto;
}
.floor-plan-block .floor-plan-img {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.floor-plan-block .floor-plan-img img {
    width: 100%;
    height: auto;
    opacity: .75
}

.floor-plan-block .apartment {
    position: absolute;
    z-index: 1;
    transition: .15s;
    cursor: pointer
}

.floor-plan-block .apartment:not(:hover) {
    opacity: 0
}

.floor-plan-block .apartment img {
    width: 100%;
    height: 100%
}

.apartment-page {
    margin: 50rem 0
}

#for_load {
    position: relative;
}

#building_filter {
    position: relative;
    width: 300rem;
    height: 266rem;
}

#building_filter label {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    cursor: pointer;
    outline: 0;
    border: none;
    padding:0;
}

#building_filter label:has(input[type="checkbox"]:checked) {
    opacity: 0.7;
}



#building_1 {
    background-image: url('/build/img/icons/building_1.svg');
    width: 73rem;
    height: 38.6rem;
    bottom: 0rem;
    right: 0rem;
}

#building_2 {
    background-image: url('/build/img/icons/building_2.svg');
    width: 38.35rem;
    height: 50.4rem;
    bottom: 38.6rem;
    right: 0rem;
}

#building_3 {
    background-image: url('/build/img/icons/building_3.svg');
    width: 39rem;
    height: 88rem;
    bottom: 89rem;
    right: 29rem;
}

#building_4 {
    background-image: url('/build/img/icons/building_4.svg');
    width: 37rem;
    height: 89rem;
    top: 0rem;
    right: 61rem;
}

#building_5 {
    background-image: url('/build/img/icons/building_5.svg');
    width: 42rem;
    height: 38rem;
    top: 0rem;
    left: 102rem;
}
#building_6 {
    background-image: url('/build/img/icons/building_6.svg');
    width: 55rem;
    height: 38rem;
    top: 0rem;
    left: 48rem;
}

#building_7 {
    background-image: url('/build/img/icons/building_7.svg');
    width: 48rem;
    height: 80rem;
    top: 0rem;
    left: 0rem;
}

#building_8 {
    background-image: url('/build/img/icons/building_8.svg');
    width: 39rem;
    height: 70rem;
    top: 80rem;
    left: 0rem;
}

#building_9 {
    background-image: url('/build/img/icons/building_9.svg');
    width: 39rem;
    height: 72rem;
    top: 148rem;
    left: 0rem;
}

#building_10 {
    background-image: url('/build/img/icons/building_10.svg');
    width: 80rem;
    height: 46rem;
    bottom: 0rem;
    left: 0rem;
}

#building_11 {
    background-image: url('/build/img/icons/building_11.svg');
    width: 54rem;
    height: 39rem;
    bottom: 0rem;
    left: 80rem;
}

#building_9 span {
    padding-top: 5rem;
}


.range-slider {
    position: relative;
    width: 100%;
    height: 30px;
}

.range-slider .noUi-target,
.range-slider .noUi-base {
    background: #DCE8F2;
    height: 1px;
}

.range-slider .noUi-connect {
    background: #008FAC;
    height: 1px;
}

.range-slider .noUi-handle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #008FAC;
    border: none;
    cursor: pointer;
}

.range-slider .noUi-horizontal {
    height: 2px;
}

.range-slider .values {
    display: none;
}

.range-slider .noUi-horizontal .noUi-handle {
    width: 16px;
    height: 16px;
    top: -8px;
}

.range-slider .values input {
    width: 50px;
    text-align: center;
}

.range-slider .noUi-tooltip {
    border: none;
}

.current_plan {
    position: relative;
    padding: 67rem 0;
    background: #F4F7F9;
}



.current_plan_title {
    text-align: center;
    margin: 0 0 60rem;
}

.modal-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    padding: 20rem 0;
    box-sizing: border-box;
    --animate-duration: .3s
}

.modal-wrapper .modal-close {
    position: absolute;
    top: 20rem;
    right: 20rem;
    width: 24rem;
    height: 24rem;
}

.modal-wrapper .modal-close .svg-icon {
    width: 100%;
    height: 100%
}

.modal-wrapper .modal {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 30rem 40rem 40rem;
    max-width: 100%;
    box-sizing: border-box
}

.modal-wrapper .modal .modal-title {
    font-size: 34rem;
    font-family: var(--font-title);
    line-height: 1.2;
    margin-bottom: 35rem
}

.modal-wrapper .modal-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5)
}

.modal-order-form {
    width: 560rem;
    max-width: 100%
}

.modal-wrapper input[type="text"], .modal-wrapper input[type="tel"], .modal-wrapper input[type="email"], .modal-wrapper textarea {
    width: 100%;
    padding: 10rem;
    margin-bottom: 20rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box
}

.modal-wrapper label {
    margin-bottom: 5rem;
}

.modal-wrapper select {
    width: 100%;
    padding: 10rem;
    margin-bottom: 20rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box
}

.modal-wrapper button {
    width: 300rem;
    padding: 15rem 20rem;
    background: #008FAC;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase
}

.modal-wrapper .modal-close {
    position: absolute;
    top: 20rem;
    right: 20rem;
    width: 24rem;
    height: 24rem;
}

.modal-wrapper .modal-close:before,
.modal-wrapper .modal-close:after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 2rem;
    background-color: #000;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.modal-wrapper .modal-close:before {
    transform: rotate(45deg);
}

.modal-wrapper .modal-close:after {
    transform: rotate(-45deg);
}

@media (max-width: 1000px) {
    .btn_blue {
        text-align: center;
        padding-top: 18rem;
        padding-bottom: 18rem;
    }

    .building_tabs,
    .tabs_nav__name::after {
        display: none;
    }

    .flex_c.j_c_s_b.tabs_container {
        display: block;
    }

    .mob.building_mob {
        border: 1px solid #008FAC;
        padding: 14.5rem 20rem;
        position: relative;
    }

    .mob.building_mob:after {
        content: '';
        background-image: url(/build/img/icons/CaretRight.svg);
        position: absolute;
        right: 20rem;
        top: 17rem;
        width: 16rem;
        height: 16rem;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .mob.modal_building {
        display: none;
        position: fixed;
        z-index: 9;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100vh;
        width: 100vw;
        background: #fff;
        padding: 36rem 30rem 40rem;
    }

    .mob.modal_building .btn_blue {
        text-align: center;
        position: absolute;
        left: 30rem;
        right: 30rem;
        bottom: 40rem;
        width: calc(100vw - 60rem);
    }

    .mob.modal_building.active {
        display: block;
    }

    .mob.modal_building legend {
        font-size: 30rem;
        font-weight: 600;
        line-height: 36rem;
        margin: 0 0 63rem;
    }

    .building_mob,
    .tabs_nav__links > li,
    .tabs_nav__name {
        font-size: 16rem;
        font-weight: 500;
        line-height: 20.8rem;
        letter-spacing: 0.16em;
    }

    .tabs_nav__name {
        padding: 0 20rem 0 26rem;
    }

    .floor_tabs {
        border: 1px solid #008FAC;
        margin: 10rem 0 27rem;
    }

    .tabs_nav__links > li {
        padding: 15rem 21rem;
    }

    .modal_building label:has(input[type="radio"]:checked) {
        opacity: 0.5;
    }

    .modal_building input[type="radio"] {
        display: none;
    }

    #catalog {
        padding-left: 0;
    }

    .catalog_table {
        width: 100vw;
        border-collapse: collapse;
        background: #fff;
        margin: 0 -20rem;
    }

    .catalog_table thead {
        display: none;
    }

    #catalog .catalog_table tr {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20rem;
        padding: 15rem 16rem 12rem 16rem;
        border-bottom: 1px solid #D2D2D2;
        position: relative;
    }

    #catalog .catalog_table td {
        display: inline-block;
        vertical-align: top;
        padding: 0rem;
        border-bottom: none;
    }

    #catalog .catalog_table tr td:nth-child(1) {
        order: 2;
    }

    #catalog .catalog_table tr td:nth-child(2) {
        order: 3;
    }

    #catalog .catalog_table tr td:nth-child(3) {
        order: 1;
    }

    #catalog .catalog_table tr td:nth-child(4) {
        order: 5;
    }

    #catalog .catalog_table tr td:nth-child(5) {
        order: 4;
        clear: right;
    }

    #catalog .catalog_table tr td:nth-child(6) {
        order: 6;
    }

    #catalog .catalog_table tr td:nth-child(1),
    #catalog .catalog_table tr td:nth-child(2),
    #catalog .catalog_table tr td:nth-child(3) {
        color: #535657;
    }


    /* #catalog .catalog_table tr td:nth-child(3), */
    #catalog .catalog_table tr td:nth-child(4) {
        padding: 0 12rem 0 0;
    }

    #catalog .catalog_table tr td:nth-child(2),
    #catalog .catalog_table tr td:nth-child(1) {
        /* padding: 0 12rem; */
    }

    #catalog .catalog_table tr td:nth-child(6),
        /* #catalog .catalog_table tr td:nth-child(5)*/
    {
        padding: 0 0 0 12rem;
    }

    #catalog .catalog_table tr td:nth-child(4),
    #catalog .catalog_table tr td:nth-child(6) {
        color: #008FAC;
        display: block;
        margin-top: 10rem;
    }

    #catalog .catalog_table tr td:nth-child(2):after {
        content: 'этаж';
    }

    #catalog .catalog_table tr td:nth-child(1):after {
        content: 'к';
    }

    #catalog .catalog_table tr td:nth-child(5):after {
        content: 'Подъезд';
    }

    #catalog .catalog_table tr td:nth-child(1)::before,
    #catalog .catalog_table tr td:nth-child(2)::before,
    #catalog .catalog_table tr td:nth-child(5)::before {
        content: '';
        display: inline-block;
        width: 1px;
        height: 100%;
        background-color: #D2D2D2;
        margin: 0 10rem;
        vertical-align: middle;
    }

    #catalog .catalog_table tr td:nth-child(5) a:after {
        content: '';
        width: 16rem;
        height: 16rem;
        position: absolute;
        right: 16rem;
        top: 28rem;
        background-image: url(/build/img/icons/CaretRight.svg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* filters */
    .column_left {
        display: none;
        position: fixed;
        height: 100vh;
        width: 100vw;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: #fff;
        z-index: 9;
        padding: 19rem 30rem 34rem;
    }

    .column_left.active {
        display: block;
        pointer-events: all;
        overflow: auto;
    }

    .filters_groups .filters_group {
        margin-top: 30rem;
    }

    .filters_groups .filters_group:nth-child(1) {
        margin-top: 0;
    }

    .column_left .mob.btn_blue {
        margin-top: 57rem;
    }
    #filtersclose {
        width: 32rem;
        height: 32rem;
        position: absolute;
        top: 21rem;
        right: 16rem;
        background-image: url("/build/img/icons/x.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
    .catalog .h1 {
        margin-top: 76rem;
        margin-bottom: 21rem;

    }

    #filters_button {
        margin-bottom: 21rem;
        padding: 13rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .pagination {
        display: none;
    }

    #filters_button:before {
        content: '';
        display: inline-block;
        background-image: url(/build/img/icons/filter.svg);
        width: 24rem;
        height: 24rem;
        margin-right: 10rem;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

/* main banner section */
section.main_banner {
    width: 100vw;
    height: 895rem;
    background-image: url('/build/img/main_banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.main_banner__description {
    position: absolute;
    top: 30rem;
    left: 67rem;
    padding: 36rem 13rem 36rem 51rem;
    width: 552rem;
    height: 236rem;
    background: rgba(24, 41, 49, 0.8);
    font-size: 30rem;
    font-weight: 400;
    line-height: 36rem;
    color: #fff;
}

.main_banner__description span {
    font-size: 22rem;
    font-weight: 500;
    line-height: 26.4rem;
    letter-spacing: 0.09em;
}

.main_banner__description h1 {
    font-size: 56rem;
    font-weight: 600;
    line-height: 72rem;
    position: relative;
    color: #fff;
    margin: 0 0 4rem;
}

.main_banner__description h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 122rem;
    height: 2rem;
    background: #008FAC;
}

.main_banner__logo {
    position: absolute;
    left: 67rem;
    bottom: 60rem;
    width: 238rem;
    height: 167rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    background: #008FAC;
    font-size: 14rem;
    font-weight: 600;
    line-height: 16.7rem;
    letter-spacing: 0.15em;
}
.main_banner__logo:hover {
    opacity: 0.7;
}
.main_banner__logo:before {
    content: '';
    display: inline-block;
    background-image: url(/build/img/icons/catalog_icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 64rem;
    height: 58.42rem;
    margin-bottom: 24rem;
}
.main_banner__links > div .number {
    position: absolute;
}

.main_banner__links > div {
    position: absolute;
    height: auto;
}

.main_banner__links > div img {
    opacity: 0;
    transition: 0.3s;
    width: 100%;
    height: 100%;
}

.main_banner__links > div:hover img {
    opacity: 1;
}

.body.body-1 {
    width: 342.29rem;
    height: 236.66rem;
    top: 624.2rem;
    right: 103.83rem;
}
.body.body-2 {
    width: 219.41rem;
    height: 138.78rem;
    top: 487.42rem;
    right: 149rem;
}
.body.body-3 {
    top: 268.28rem;
    right: 288.42rem;
    width: 215.14rem;
    height: 304.04rem;
}
.body.body-4 {
    width: 180.26rem;
    height: 267.48rem;
    top: 89.4rem;
    right: 450.06rem;
}
.body.body-5 {
    left: 51.8vw;
    top: 3.85vw;
    width: 8vw;
    
}
.body.body-6 {
    left: 44.7vw;
    top: 3.85vw;
    width: 7.7vw;
}
.body.body-7 {
    left: 36.3vw;
    top: 4.3vw;
    width: 8.74vw;
}
.body.body-8 {
        width: 9.3vw;
    top: 15.3vw;
    left: 34.6vw;
}
.body.body-9 {
    left: 33.5vw;
    top: 25vw;
    width: 9.7vw;
}
.body.body-10 {
    top: 32vw;
    left: 33vw;
    width: 16.74vw;
}
.body.body-11 {
    top: 32.5vw;
    left: 49.7vw;
    width: 11vw;
}
.body .number {
    position: absolute;
    top: 25%;
    right: -25rem;
    width: 123rem;
    height: 29rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14rem;
    line-height: 16rem;
    background: rgba(0, 52, 76, 0.8);
    z-index: 5;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
}
.body .number .value {
    margin-right: 2rem;
}
.body .number:before {
    content: '';
    width: 12rem;
    height: 12rem;
    display: inline-block;
    margin-right: 5rem;
    background: #008FAC;
    border-radius: 50%;
}


@media (max-width: 992px) {
    section.main_banner {
        background-image: url('/build/img/main-banner-mob.jpg');
        background-color: #23272E;
        background-size: auto 577rem;
        background-position: bottom center;
    }
    section.main_banner {
        height: 701rem;
    }
    .main_banner__description {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 123rem;
        font-size: 18rem;
        font-weight: 400;
        line-height: 21.6rem;
    }
    .main_banner .main_banner__links .body {
        width:40rem;
        height: 40rem;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
    }
    .body .value:before  { content: 'П';}
    
    .main_banner__description span,
    .body .text,
    .body img {
        display: none;
    }
    .main_banner .main_banner__links .body.body-1 {
        left: 25.7rem;
        bottom: 192rem;
    }
    .main_banner .main_banner__links .body.body-2 {
        left: 152rem;
        bottom: 185rem;
    }
    .main_banner .main_banner__links .body.body-3 {
        left: 252rem;
        bottom: 225rem;
    }
    .main_banner .main_banner__links .body.body-4 {
        left: auto;
        bottom: 236rem;
        right:7.7rem;
    }
    .main_banner .main_banner__links .body.body-5 {
        left: auto;
        bottom: 317rem;
        right:19.7rem;
    }
    .main_banner .main_banner__links .body.body-6 {
        left: auto;
        bottom: 367.5rem;
        right:19.7rem;
    }
    .main_banner .main_banner__links .body.body-7 {
        left: auto;
        bottom: 423rem;
        right:36.2rem;
    }
    .main_banner .main_banner__links .body.body-8 {
        bottom: 430rem;
        left: 220rem;
    }
    .main_banner .main_banner__links .body.body-9 {
        bottom: 430rem;
        left: 140rem;
    }
    .main_banner .main_banner__links .body.body-10 {
        bottom: 423rem;
        left: 65.7rem;
    }
    .main_banner .main_banner__links .body.body-11 {
        bottom: 363.5rem;
        left: 38.2rem;
    }
    .main_banner__description h1 {
        font-size: 30rem;
        font-weight: 600;
        line-height: 31rem;
        padding-bottom: 9rem;
    }
    .main_banner__links > div .number {
        width: 40rem;
        height: 40rem;
        border-radius: 50%;
        font-size: 12rem;
        position: relative;
        right: auto;
        top: auto;
        left: auto;
        bottom: auto;
    }
    .body .number::before {
        display: none;
    }
    .main_banner .main_banner__logo {
        width: 331rem;
        height: 64rem;
        font-size: 14rem;
        font-size: 14rem;
        font-weight: 600;
        line-height: 16.7rem;
        letter-spacing: 0.15em;
        flex-direction: row;
        left: calc(50% - 162rem);
        bottom: 25rem;
    }
    .main_banner .main_banner__logo:before {
        width: 50rem;
        height: 45.64rem;
        margin-right: 13rem;
        margin-bottom:0;
    }
}
#for_load {
    padding-top: 20rem;
}

