table.service-table__body.service-table{
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 8px;
}
table.service-table__body.service-table caption{
    border-radius: 28px;
    border: 2px solid #404045;
    background: #2B2B2F;
    padding: 24px 32px;
    text-align: left;
    width: calc(100% - 68px);
    position: relative;
    cursor: pointer;
    transition: border-radius 0.8s ease;
}
table.service-table__body.service-table caption:before{
    content: '';
    position: absolute;
    right: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg opacity='0.7'%3E%3Cpath d='M18 9L12 15L6 9' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
table.service-table__body.service-table.open caption::before {
    transform: rotate(180deg);
}
table.service-table__body.service-table.open caption{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
table.service-table__body.service-table tbody{
    font-weight: 400;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    margin: 8px 0;
    width: 100%;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    display: none;
}
table.service-table__body.service-table.open tbody{
    /*max-height: 500px;*/
}
table.service-table__body.service-table tbody tr{
    width: 100%;
    display: flex;
    gap: 8px;
}
table.service-table__body.service-table tbody tr:not(:last-child){
    border-bottom: solid 8px transparent;
}
table.service-table__body.service-table tbody tr td{
    width: 16%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2B2B2F;
    padding: 22px 32px;
    transition: .2s;
}
table.service-table__body.service-table tbody tr td.active,
.home-configuration_type.active{
    background-color: #36363C;
}
.home-configuration__header{
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.home-configuration_type{
    width: 16%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2B2B2F;
    padding: 24px 32px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
    transition: .2s;
    cursor: pointer;
}
.home-configuration_type:last-child{
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
}
.home-configuration__title{
    display: flex;
    align-items: center;
    width: 55%;
    justify-content: center;
    background: #2B2B2F;
    padding: 24px 32px;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: #ffffff;
}
table.service-table__body.service-table tbody tr td:first-child{
    width: 55%;
    justify-content: flex-start;
}
table.service-table__body.service-table tbody tr:has(td:hover) > td{
    background-color: #36363C;
}

/*element detail css*/
.project-page{
    font-family: Montserrat;
}
.element__content{
    border-radius: 28px;
    border: 2px solid #404045;
    background: #2B2B2F;
    padding: 32px;
    position: relative;
}
.element__content__inner{
    opacity: 0.7;
    color: #fff;
    line-height: 28px;
    overflow: hidden;
    height: 100%;
}
.element-top{
    width: 100%;
    height: auto;
    display: flex;
    gap: 52px;
    flex-wrap: wrap;
    justify-content: center;
}
.element-top__gallery{
    max-height: 648px;
    width: calc(100% - 505px - 52px);
    flex: 1 1 calc(100% - 505px - 52px);
    min-width: 900px;
    display: flex;
    gap: 24px;
}
.element-button-next, .element-button-prev{
    border-radius: 12px;
    background: #2B2B2F;
    height: 36px;
    padding: 0 48px;
    display: inline-flex;
    z-index: 1;
    align-items: center;
    position: absolute;
    cursor: pointer;
    transition: .3s;
}
.element-button-next:not(.swiper-button-disabled):hover, .element-button-prev:not(.swiper-button-disabled):hover{
    background-color: #323237;
}
.element-button-next:before{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 9L12 15L6 9' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.element-button-prev:before{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 15L12 9L18 15' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.element-button-next.swiper-button-disabled,
.element-button-prev.swiper-button-disabled{
    cursor: default;
}
.element-button-next.swiper-button-disabled:before{
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 9L12 15L6 9' stroke='%235A616C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.element-button-prev.swiper-button-disabled:before{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 15L12 9L18 15' stroke='%235A616C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.element-button-prev{
    left: 0;
    right: 0;
    top: 0;
}
.element-button-next{
    left: 0;
    right: 0;
    bottom: 0;
}
.elementSmall .house-project__img{
    width: 120px;
    height: 120px;
    border-radius: 12px;
}
.elementSmall .swiper-slide{
    height: 120px;
    width: auto;
    position: relative;
}
.elementSmall .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumsSlider_container{
    position: relative;
    flex:  0 0 120px;
    width: 120px;
}
.elementSmall .swiper-slide.swiper-slide-thumb-active::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000066;
    border-radius: 12px;
}
.elementSmall .swiper-slide:not(.swiper-slide-thumb-active){
    cursor: pointer;
}
.elementSmall{
    padding: 48px 0;
    width: 120px;
    border-radius: 12px;
    height: calc(100% - 72px - 28px);
}
.mainSlider_container{
    position: relative;
    width: calc(100% - 24px - 120px);
    flex: 1 1 calc(100% - 24px - 120px);
}
.elementBig{
    width: 100%;
    height: 100%;
}
.elementBig .house-project__img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: calc(335/293);
}
.project-page .h1, .project-page .h2, .project-page .h3{
    font-family: 'LaborUnion', 'Montserrat';
}
.mainSlider_container .wishlist-icon.catalog-item__add-wishlist{
    top: 20px;
    right: 20px;
}
.element-top__info{
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 505px;
    align-items: center;
    gap: 20px;
}
.element-top__block{
    border: 2px solid #404045;
    background: #2B2B2F;
    border-radius: 20px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
}
.element-top__block__tag{
    display: flex;
    justify-content: space-between;
    gap: 6px;
}
.element-top__block__tag .btn_tag{
    border-radius: 10px;
    background-color: #323237;
    transition: .3s;
    padding: 11px 20px;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 100%;
    text-align: center;
    cursor: pointer;
    display: flex;
    white-space: nowrap;
}
.element-top__block__tag .btn_tag.active{
    background-color: #3F3F47;
}
.element-top__block__tag .btn_tag:not(.active):hover{
    background-color: #3F3F47;
}
.element-top__block__price{
    text-align: center;
    margin: 36px;
    font-family: "Labor Union";
    font-size: 48px;
    color: #fff;
}
.element-top__block__button{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.element-top__block__button .btn{
    display: flex;
    padding: 14px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 18px;
    gap: 12px;
}
.element-top__block__button .btn.application{
    background-color: #F1F2F3;
    color: #111827;
    transition: .3s;
    cursor: pointer;
}
.element-top__block__button .btn.application:hover{
    background-color: #E8E9EB;
}
.element-top__block__button .btn.whatsapp{
    background: #367245;
    color: #fff;
    transition: .3s;
    text-decoration: none;
}
.element-top__block__button .btn.whatsapp:hover{
    background-color: #438353;
}
.whatsapp:before{
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.3749 10.3185C8.74359 7.91938 12.3236 6.33777 14.1148 5.57361C19.2292 3.39178 20.2919 3.01277 20.9846 3.00012C21.1369 2.9975 21.4776 3.03623 21.6982 3.21986C21.8845 3.37492 21.9358 3.58438 21.9603 3.73139C21.9848 3.8784 22.0154 4.2133 21.9911 4.47498C21.714 7.46174 20.5147 14.7098 19.9046 18.055C19.6465 19.4705 19.1382 19.9451 18.6461 19.9916C17.5766 20.0925 16.7645 19.2667 15.7287 18.5702C14.1078 17.4805 13.1921 16.8021 11.6188 15.7387C9.80053 14.5097 10.9792 13.8343 12.0154 12.7304C12.2866 12.4415 16.9987 8.04555 17.0899 7.64677C17.1013 7.59689 17.1119 7.41098 17.0042 7.31282C16.8965 7.21465 16.7376 7.24822 16.6229 7.27492C16.4604 7.31276 13.871 9.06814 8.85486 12.5411C8.11988 13.0587 7.45416 13.3109 6.8577 13.2977C6.20015 13.2831 4.93528 12.9164 3.99498 12.6029C2.84166 12.2184 1.92503 12.0151 2.00485 11.362C2.04642 11.0219 2.5031 10.674 3.3749 10.3185Z' fill='white'/%3E%3C/svg%3E%0A");
    width: 24px;
    height: 24px;
}
.element-top__options{
    display: flex;
    gap: 8px;
    justify-content: center;
    width: 410px;
    flex-wrap: wrap;
}
.element-top__options .btn_options{
    border-radius: 10px;
    background: #2B2B2F;
    backdrop-filter: blur(26px);
    display: flex;
    padding: 11px 18px 11px 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.elementBig-swiper-pagination,
.elementBig-button-prev,
.elementBig-button-next,
.elementBig__controls_wrapper{
    display: none;
}
.mobile__configuration_tab{
    display: none;
}
.mobile__configuration_tab.active{
    display: flex;
}
.tabs_panes.mobile_tabs{
    display: none;
}
.tabs_btns.mobile_tabs{
    display: none;
}
.project-page .section--default-margin{
    margin: 120px 0;
}
@media (max-width: 991px) {
    .thumsSlider_container{
        display: none;
    }
    .element-top__gallery{
        min-width: unset;
        width: 100%;
        max-height: unset;
        height: fit-content;
    }
    .elementBig a{
        line-height: 0;

    }
    .mainSlider_container{
        height: fit-content;
    }
    .elementBig-swiper-pagination,
    .elementBig__controls_wrapper,
    .elementBig-button-prev,
    .elementBig-button-next{
        display: block;
    }
    .elementBig__controls_wrapper{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 16px;
    }
    .elementBig__controls_wrapper .swiper-pagination-bullet{
        margin: 0 6px !important;
        width: 6px;
        height: 6px;
        background-color: #FFFFFF;
        opacity: 40%;
    }
    .elementBig__controls_wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active{
        background-color: #FFFFFF;
        opacity: 100%;
    }
    .project-page .page_title{
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 24px;
    }
    .elementBig-swiper-pagination{
        width: fit-content !important;
    }
    .elementBig-button-next,
    .elementBig-button-prev{
        width: 36px;
        height: 36px;
        border-radius: 6px;
    }
    .elementBig-button-next:hover .rect-color,
    .elementBig-button-prev:hover .rect-color{
        fill: #37373F;
    }
}
@media(max-width: 767px) {
    .home-configuration__header{
        display: none;
    }
    table.service-table__body.service-table{
        display: none;
    }
    .mainSlider_container .wishlist-icon.catalog-item__add-wishlist{
        width: 48px;
        height: 48px;
    }
    .tabs_btns.mobile_tabs{
        display: flex;
        gap: 6px;
        margin-bottom: 16px;
    }
    .tabs_panes.mobile_tabs{
        display: flex;
    }
    .mobile__configuration_tab.active{
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 6px;
    }
    .mobile__configuration_tab__item{
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .mobile_slide_btn{
        font-family: Montserrat;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
        color: #FFFFFF;
        background-color: #2B2B2F;
        border: 1.5px solid #404045;
        border-radius: 12px;
        width: 100%;
        height: 56px;
        display: flex;
        padding: 14.5px 18.5px;
        justify-content: space-between;
        box-sizing: border-box;
        transition: .3s;
    }
    .mobile_slide_btn.active{
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
    .mobile_slide_btn::after{
        display: block;
        content: "";
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7'%3E%3Cpath d='M6 15L12 9L18 15' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E%0A");
        transition: .3s;
        transform: rotate(-180deg);
    }
    .mobile_slide_btn.active::after{
        transition: .3s;
        transform: rotate(0);
    }
    .tabs_btns.mobile_tabs .tab-btn{
        font-family: Montserrat;
        font-weight: 400;
        font-size: 13px;
        line-height: 20px;
        letter-spacing: 0;
        border-radius: 10px;
        color: #ffffff;
        padding: 10px 14.9px;
        background-color: #323237;
        transition: .3s;
        cursor: pointer;
    }
    .tabs_btns.mobile_tabs .tab-btn.active{
        background-color: #3F3F47;
    }
    .mobile__configuration_tab__item__values{
        background-color: #2B2B2F;
        padding: 20px;
        font-family: Montserrat;
        font-weight: 400;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0;
        color: #fff;
        width: 100%;
        box-sizing: border-box;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        display: none;
    }
    .on_complectation,
    .off_complectation{
        font-size: 14px;
        line-height: 20px;
        opacity: 60%;
        display: block;
        margin-bottom: 12px;
    }
    .on_complectation_list + .off_complectation{
        margin-top: 20px;
    }
    .on_complectation_list,
    .off_complectation_list{
        padding-left: 18px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
    }
    .on_complectation_item,
    .off_complectation_item{
        position: relative;
    }
    .on_complectation_item::before,
    .off_complectation_item::before{
        position: absolute;
        content: "";
        display: block;
        top: calc(50% - 3px);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        left: -16px;
        background-color: #10986B;
    }
    .off_complectation_item::before{
        background-color: #C81E1E;
    }
    .element-top__info{
        flex: 0 0 100%;
        gap: 16px;
    }
    .element-top__options{
        width: 100%;
    }
    .element-top__block__button{
        gap: 6px;
    }
    .element-top__block__price{
        font-size: 32px;
        line-height: 64px;
        margin: 12px;
    }
    .element-top__block__tag .btn_tag{
        font-size: 12px;
        line-height: 20px;
        padding: 10px 15.5px;
    }
    .element-top{
        gap: 32px;
    }
    .element-top__block{
        padding: 6px;
        border-radius: 16px;
    }
    .element-top__block__button .btn{
        gap: 8px;
        font-size: 16px;
        line-height: 24px;
        padding: 12px;
        border-radius: 8px;
    }
    .element-top__options .btn_options{
        padding: 10px 16px;
        font-size: 15px;
        line-height: 22px;
    }
    .project-page .section--default-margin{
        margin: 64px 0;
    }
    .element__content{
        border-radius: 16px;
        padding: 20px;
    }
    .element__content__inner{
        font-size: 15px;
        line-height: 24px;
    }
}