@font-face {
    font-family: Montserrat;
    src: url('/fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Montserrat;
    src: url('/fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight:500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Montserrat;
    src: url('/fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Montserrat;
    src: url('/fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Unbounded;
    src: url('/fonts/Unbounded-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
body,html{
    padding: 0;
    margin: 0!important;
    position: relative;
    background: #ffffff;
    font-family: Montserrat;
    color: #090B0B;
    font-weight:500;
    overflow-x: hidden;
}
ul,li{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
h1,h2,h3{
    margin: 0;
}
a{
    text-decoration: none;
    cursor: pointer;
    font-family: Montserrat;
    font-style: normal;
    color: #090B0B;
}
button, input, textarea{
    border: none;
    outline: none;
    cursor: pointer;
    appearance: none;
}
.wrapper{
    padding: 0 100px;
    position: relative;
}
.section{
    padding: 80px 0;
}
.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 0;
    z-index: 10;transition: 200ms linear;
}
.header .wrapper{
    padding: 0 50px;
}
.banner_item{
    position: relative;
    min-height: 670px;
    height: 95vh;
}
.banner_description{
    color: #FFF;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
}
.banner_info{
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.banner_title{
    margin-top: 17px;
    margin-bottom: 10px;
    color: #FFF;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    font-family: Unbounded;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.address{
    display: flex;align-items: center;
    grid-gap: 6px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    justify-content: center;
    transition-duration: 0.3s;
}
.address:hover{
    opacity: 0.8;  transition-duration: 0.3s;
}
.address img{
  max-width: 11px;
}
.menu{
    display: flex;
    align-items: center;
    grid-gap: 16px;
}
.header_right{
    display: flex;
    align-items: center;
    grid-gap: 30px;
}
.menu_link{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px;
    transition-duration: 0.4s;
}
.menu_link:hover,.phone:hover{
    transition-duration: 0.4s;
    opacity: 0.5;
}
.btn{
    border-radius: 10px;
    font-family: Montserrat;
    background: rgba(153, 104, 63, 1);
    padding: 18px 30px;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 13px */
    letter-spacing: 0.65px;
    text-transform: uppercase;
    display: inline-block; transition-duration: 0.4s;
}
.btn:hover{
    background: rgba(153, 104, 63, 0.70);
}
.banner .btn,.header .btn{
    background: rgba(153, 104, 63, 0.70);
 transition-duration: 0.4s;
}
.banner .btn:hover, .header .btn:hover{
    background: rgba(153, 104, 63, 1); transition-duration: 0.4s;
}
.btn.fix{
    background: rgba(244, 240, 237, 0.70); transition-duration: 0.4s;
    color: #090B0B;
}
.btn.fix:hover{
    background: rgba(244, 240, 237, 1); transition-duration: 0.4s;
}
.phone{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px; transition-duration: 0.4s;
}
.phone img{
    animation: phone 1500ms infinite;
    display: none;
}
@keyframes phone {
    0%{
        transform:rotate(10deg);
    }
    25%{
        transform:rotate(0deg);
    }
    50%{
        transform:rotate(0deg);
    }
   75%{
        transform:rotate(0deg);
    }
    100%{
        transform:rotate(10deg);
    }
}
.lang_block{
    position: relative;
}
.lang_block:hover .lang_list{
    opacity: 1;
    visibility: visible;
    transition-duration: 0.4s;
    width: 48px;
    box-sizing: border-box;
    margin: 0;
}
.lang_block img { transition-duration: 0.4s;
    margin-left: 6px;
}
.lang_block:hover img { transition-duration: 0.4s;
    transform: rotate(180deg);
}
.current_lang {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.lang_item.deactive{
    display: none;
}
.lang_list{ transition-duration: 0.4s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 19px;
    display: flex;
    flex-direction: column;
    background: rgba(153, 104, 63, 1);
    border-radius: 4px;
    text-align: center;
    padding: 5px;
    left: -10px;
}
.lang_list a{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px;
    margin: 3px 0;
    text-transform: uppercase;
}
.btn_flex{
    grid-gap: 16px;
    justify-content: center;
}
.benefits_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 18px;
}
.benefits_item{
    border-radius: 10px;
    background: #F4F0ED;
    grid-gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.benefits_title{
    color: #99683F;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.benefits_title span{
    font-size: 19px;
}
.benefits_text{
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}
.benefits_list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 32px 48px;
}
.benefits_img{
    height: 305px;
    border-radius: 10px;
    overflow: hidden;
}
.benefits_img img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
    transition-duration: 0.3s;
}
.benefits_img:hover img{
    scale: 1.05;  transition-duration: 0.3s;
}
.benefits_name{
    margin: 18px 0 10px 0;
    display: flex;align-items: center;
    grid-gap: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.benefits_description{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.section_title{
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
   color: #99683F;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.section_description{
    text-align: center;
    margin: 10px 0 32px 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    opacity: 0.5!important;
}
.gallery_img{
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}
.gallery .owl-stage{
    display: flex;
    align-items: stretch;
}
.terms_item{
    padding: 30px 20px;
}
.terms_item .benefits_text{
    font-size: 16px;
}
.terms_title{
    text-align: center;
    font-size: 24px;
    margin-bottom: 5px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;   transition-duration: 0.3s;
    color: #99683F;
}
.terms_title.fix{
    font-size: 16px;
}
a.terms_title:hover{
    opacity: 0.7;
    transition-duration: 0.3s;
}
.block_btn{
    justify-content: center;
    margin-top: 50px;
}
.terms_grid{
    grid-gap: 50px;
}
.faq_text{
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    color: rgba(9, 11, 11, 0.50);

    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    padding: 0px 0 0 40px;
}
.faq_title{
    border-radius: 10px;
    background:  #F4F0ED;
    padding: 22px 42px 22px 32px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 4px 0 rgba(59, 0, 0, 0.15);
}
.faq_title:before{
    content: '';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background: #7A7A7A;
}
.faq_title:after{
    content: '';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 14px;
    height: 2px;
    background: #7A7A7A;transition-duration: 0.3s;
}
.faq_item.active .faq_title:after{
    opacity: 0;
    transition-duration: 0.3s;
}
.faq_list{
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}
.col_list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 18px;
    margin: 32px 0;
}
.col_info .section_description{
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    opacity: 1!important;
}
.section_description p{
    margin: 5px 0;
}
.col_img{
    width: 50%;
}
.flex_col{
    grid-gap: 50px;
    align-items: stretch;
}
.images{
    /*height: 100%;*/
    width: 47%!important;
}
.images .owl-stage{
    height: calc(100% - 46px);
}
.images .owl-stage-outer,.images .owl-item{
    height: 100%;
}

.images img{
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.col_info{
    width:47%;
}
.images_bg{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.col_info .address{
    color: rgba(9, 11, 11, 0.5);
    text-transform: uppercase;
    justify-content: flex-start;    transition-duration: 0.3s;
}
.col_info .address:hover{
    color: rgba(9, 11, 11, 1);
    transition-duration: 0.3s;
}
/*.col_info .section_description{*/
/*    text-align: left;*/
/*}*/
.col_info .section_title{
    justify-content: flex-start;
    margin-bottom: 18px;
    margin-top: 10px;
}
.col_list .benefits_name{
margin: 0;
}
.benefits_item.fix{
    justify-content: flex-start;
align-items: flex-start;
}
.owl-dots{
    display: flex;justify-content: center;
    align-items: center;
    grid-gap: 8px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.owl-dot{
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #99683F!important;
    transition-duration: 0.3s;
    border: 1px solid #ffffff;
    position: relative;
}
.owl-dot:hover{
    opacity: 0.7;
    transition-duration: 0.3s;
}
.owl-dot:before{
    width: 14px;
    height: 14px;
    border: 1px solid #99683F;
    border-radius: 8px;
    content: '';
    position: absolute;
    left: -4px;
    top: -4px;
    opacity: 0;
}
.owl-dot.active:before{
opacity: 1;
}
/*.images {*/
/*    width: 100%;*/
/*    flex: 0 0 100%;*/
/*    overflow: hidden;*/
/*}*/
.gallery .owl-nav{
    position: absolute;
    left: 240px;
    top: 50%;
    right: 240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%);
}
.owl-nav button:hover{
    scale: 1.05;
    transition-duration: 0.3s;
}
.owl-nav button{
    transition-duration: 0.3s;
}
.banner_small_description{
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    color: white;
    max-width: 725px;
    width: 100%;
    margin: 0 auto 20px auto;
}
.tabs{
    display: flex;
    grid-gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}
.tab_item{
    border-radius: 10px;
    background: #F4F0ED;
    padding: 16px 25px 14px 25px;
    font-size: 13px;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    transition-duration: 0.4s;
    cursor: pointer;
}
.tab_item.active,.tab_item:hover{
    background: #99683F;
    color: white; transition-duration: 0.4s;
}
.tab_item.fix{
    background: white;
}
.tab_item.fix:hover{
    background: #99683F;
}
.apartment_item{
    border-radius: 10px;
    border: 1px solid #F4F0ED;
}
.apartment_top{
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #F4F0ED;
    background:  #F4F0ED;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
    padding: 20px 10px;
}
.apartment_img img{
    max-height: 220px;
    object-fit: contain;
}
.apartment_img{
    padding: 20px 10px;
}
.apartment_bottom{
    border-radius: 0 0 10px 10px;
    padding: 18px 0 20px 0;
    background: #F4F0ED;
}
.apartment_title{
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    margin-bottom: 15px;
}
.btn_border{
    border: 1px solid #090B0B;
    background:#F4F0ED;
    color: #090B0B;
    cursor: pointer;
    padding: 18px 30px;
    margin: 0 auto; transition-duration: 0.4s;
}
.btn_border:hover{
    background:  #090B0B;
    color: white; transition-duration: 0.4s;
}
.hidden_tab {
    display: none;
}
.hid_block{
    position: relative;
    z-index: 1;
    display: none;
}
.hid_block.active{
    display: block;
}
.hid_item{
    border-radius: 10px;
    height: 273px;
    position: relative;
}
.hid_item img{
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}
.hid_item video{
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.hid_item iframe{
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.play{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 88px;
   max-height: 88px;
    z-index: 100;
    cursor: pointer;
    transition-duration: 0.4s;
}
.play:hover{
    transform: translate(-50%,-50%) scale(1.05); transition-duration: 0.4s;
}
.footer{
    background: #382621;
    padding: 50px 0 30px 0;
}
.license{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer_top {
    align-items: center;
}
.social_block{
    display: flex;
    align-items: center;
    grid-gap: 16px;
}
.social_link{
    display: flex;
}
.social_link img{
    transition-duration: 0.3s;
}
.social_link:hover img{
    scale: 1.05;
    transition-duration: 0.3s;
}
.footer_title{
    color: rgba(255, 255, 255, 0.50);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 123.077% */
    text-transform: uppercase;
    margin-bottom: 12px;
}
.footer_col>a{
    margin-bottom: 12px;
    transition-duration: 0.4s;
}
.footer_col>a:hover{
    opacity: 0.7;  transition-duration: 0.4s;
}
.menu_footer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 18px;
}
.footer_flex{
    display: flex;
    align-items: flex-start;
    grid-gap: 100px;
}
.footer_flex a{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
}
.dev{
    display: flex;
}
.dev img{
    transition-duration: 0.4s;
}
.dev:hover img{
    filter: brightness(0.5);  transition-duration: 0.4s;
}
.section_description_about {
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}
.section_description_about:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(rgba(255, 255, 255, 0.3) , rgba(255, 255, 255, 0.8));
}
.section_description_about.expanded:before{
    display: none;
}
.col_img{
    border-radius: 10px;
    border: 1px solid #F4F0ED;
    background: #F4F0ED;
    display: flex;
    align-items: center;
    justify-content: center;
}
.more{
    position: relative;
    color:#99683F;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    display: inline-block;
    margin: 10px 0 0px 0;
    cursor: pointer;
}
.more:before{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    bottom: 0;
    background:#99683F;
    transition-duration: 0.4s;
}
.more:hover:before{
    width: 0;
    right: auto;
    transition-duration: 0.4s;
}
.terms_small{
    color: rgba(9, 11, 11, 0.50);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}
a.terms_small:before{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(9, 11, 11, 0.50);
    bottom: 0;
    transition-duration: 0.4s;
}
a.terms_small:hover:before{
    width: 0;
    right: auto;
    transition-duration: 0.4s;
}
.contacts_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 50px;
}
.contact_flex{
    grid-gap: 50px;
    align-items: stretch;
    margin-top: 32px;
}
.contact_flex img{
    width: 31.5%;
    border-radius: 10px;
    height: 550px;
    object-fit: cover;
}
#map{
    width: 66%;
    border-radius: 10px;
}
#map_info{
    width: 100%;
    height: 530px;
    border-radius: 10px;
}
.form-group{
    width: 48%;
    border-bottom:1px solid #090B0B;

}
.feedback_form{
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}
.form-control{
    width: 100%;
    padding: 16px 25px;
    background: transparent;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 16px */
    letter-spacing: 0.8px;
    text-align: center;
    color: #090B0B;
    font-family: Montserrat;
    box-sizing: border-box;
}
.form-control::placeholder{
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 16px */
    letter-spacing: 0.8px;
    text-align: center;color: #090B0B;
    font-family: Montserrat;
}
.section_bg{
    position: relative;
}
.section_bg:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #F2F1EE;
    height: 30%;
}
.form_check{
    width: auto!important;
    margin: 30px 0 0 0;
    position: relative;

    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: none;
    padding: 0;
    padding-left: 24px;
    text-align: center;
    display: block;
    box-sizing: border-box;
}
.form_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.form_check_text{
    position: relative;
    font-weight: 500;
    top: 8px;
    transition-duration: .3s;
}
.form_check_text:hover{
    opacity: 0.6;   transition-duration: .3s;
}
.form_check .form_yes {
    position: absolute;
    top: 6px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #090B0B;
    box-sizing: border-box;
}
.form_yes:before{
    content: '';
    width: 12px;
    height: 9px;
    background-image: url("../images/yes.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
}
.form_check input:checked ~ .form_yes:before {
    opacity: 1;
}

.form_check .form_yes:after {
    content: "";
    position: absolute;
    display: none;
}

.form_check input:checked ~ .form_check .form_yes:after {
    display: block;
}
.mapboxgl-ctrl-bottom-right,.mapboxgl-ctrl-bottom-left{
    display: none;
}
.mapboxgl-marker{
    background-size: contain;
    background-repeat: no-repeat;
}
.tab_map{
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.tab_map img{
    opacity: 0.3;transition-duration: 04s;
}
.tab_map.active img,.tab_map:hover img{
    filter: brightness(0.5) invert(1);
    transition-duration: 0.4s;
    opacity: 1;
}
.popup_style {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;

    top: 0;
    bottom: 0;
    background-color: rgba(30, 27, 26, 0.7);
    z-index: 11111;
    transition: 300ms linear;
}
.popup_style.active {
    opacity: 1;
    visibility: visible;

    transition: 300ms linear;

}
.panel {
    width: 100%;
    max-width: 650px;
    padding: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color:#F4F0ED;
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    border-radius: 10px;
}
.popup_style.active .panel.active {
    visibility: visible;
    opacity: 1;
    /*transition: 200ms linear;*/
    /*transition-delay: .4s;*/
}
.popup_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 7;
    transition-duration: 0.4s;
}
.popup_close:hover{
    opacity: 0.7;  transition-duration: 0.4s;
}
.popup_close:after, .popup_close:before {
    background-color:black;
    content: '';
    transition: 400ms linear;
    height: 18px;
    left: 22px;
    position: absolute;
    top: 12px;
    width: 2px;
}
.popup_close:before {
    transform: rotate(-45deg);
}
.popup_close:after {
    transform: rotate(45deg);
}
.popup_zaglav{
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
    margin-bottom: 20px;
}
.descript_popup{
    text-align: center;
}
.apartment_flex{
    align-items: flex-start;
    grid-gap: 20px;
}
.apartment_flex .apartment_title{
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup_img{
    max-width: 45%;
}
.banner .owl-dots{
    flex-direction: column;
    left: auto;
    right: 50px;
    bottom: 50%;
}
.banner .owl-dot{
    background: #ffffff !important;
    opacity: 0.5;
}
.banner .owl-dot.active{
    opacity: 1;
}
.banner .owl-dot:before{
    border-color: #ffffff;
}
.apartment_slider .owl-dots{
    margin-top: 32px;
    bottom: -25px;
}
.hid_slider .owl-dot{
background:#99683F!important;
    opacity: 0.5;
}
.hid_slider .owl-dot:before{
border-color: #99683F!important;
}
.hid_slider .owl-dot.active{
    opacity: 1;
}
.hid_slider .owl-dots{
    bottom: -25px;
    flex-wrap: wrap;
    position: relative;
}
.scroll{
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    text-align: center;
    margin-bottom: 10px;
}
.scroll .tabs{
    display: inline-flex;
}
.tab_item{
    white-space: nowrap;
}
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 40px;
    position: relative;
    cursor: pointer;
}
.burger span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.5s ease;
}
.burger span {
    position: absolute;
}
.burger span:nth-of-type(1) {
    top: 0;
}
.burger span:nth-of-type(3) {
    bottom: 0;
}
.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.burger.active  span:nth-of-type(1) {
    top:10px;
    transition-delay: 0.1s;
    transform: rotate(-45deg);
}
.burger.active  span:nth-of-type(2) {
    opacity: 0;
}
.burger.active  span:nth-of-type(3) {
    bottom: 10px;
    transition-delay: 0.1s;
    transform: rotate(45deg);
}
.logo{
    display: flex;
}
.logo img {
    transition-duration: 0.4s;
    height: 42px;
    width: auto;
}
.header_left{
    display: flex;
    align-items: center;
    grid-gap: 20px;
}
.scroll::-webkit-scrollbar {
    width: 3px;
}

.scroll::-webkit-scrollbar-track {
    background: rgba(153, 104, 63, 0.44);
    border-radius: 4px;
}

.scroll::-webkit-scrollbar-thumb {
    background: #99683F;
    border-radius: 4px;
}

.mob_menu {
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    top: 82px;
    position: fixed;
    left: -100%;
    bottom: 100%;
    width: 330px;
    background-color: #382621;
    z-index: 111;
    padding: 15px;
    padding-top: 20px;
    box-sizing: border-box;
    transition: 200ms linear;
    opacity: 0;
    visibility: hidden;

}
.mob_menu .menu_link{
    font-size: 16px;
}
.dopstyle{

}
.mob_menu.active {
    bottom: 0;
    opacity: 1;
    left: 0;
    visibility: visible;
    transition: 200ms linear;
}
.dopstyle_header{
    background-color: #382621;
    transition: 200ms linear;
    padding: 10px 0;
}
.menu_list{
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
}
.mob_menu .phone{
    display: block!important;
    margin: 15px 0;
    font-size: 16px;
}
.apartment_slider .owl-prev,.hid_slider .owl-prev{
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    border: 1px solid #c9c4c1!important;
    display: flex;
}
.apartment_slider .owl-nav img,.hid_slider .owl-nav img{
width: 100%;
}
.apartment_slider .owl-next,.hid_slider .owl-next{
    position: absolute;
   right: -60px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    border: 1px solid #c9c4c1!important;
    display: flex;
}
.rout{
    position: absolute;
    bottom: -11px;
    white-space: nowrap;
    left: -79%;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition-duration: 0.3s;
    color: #000000;
    font-size: 14px;
}
.rout:hover{
    opacity: 0.7; transition-duration: 0.3s;
}