*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body{
    font-family:'SFUIDisplay'; 
    background: url(../img/theme-bg2.jpg);
    background-color: #000;
}
button{cursor: pointer;}

.container{
    width: 1110px;
    margin: 0 auto;
}

@keyframes slideme {
  0% {
    left: -50px;
    margin-left: -50px;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}
.mb-10 {
    margin-bottom: 10px;
}
.head-list-inp {
    display: inline-block;
    vertical-align: top;
    width: 100;
    width: 350px;
    text-align: center;
    margin-bottom: 20px;
}
.head-theme-inp{
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    border-radius: 30px;
    border: none;
    background: #41444573;
    color: #fff;
        font-size: 20px;
}
.head-theme-inp::-webkit-input-placeholder {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}
.head-theme-inp::-moz-placeholder {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}
.head-theme-inp:-ms-input-placeholder {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}
.head-theme-inp:-moz-placeholder {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}

.theme-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: #eaac7c;
    border: none;
    text-align: center;
    max-width: 350px;
    border-radius: 30px;
    color: #1c1c1c;
    font-family:'SFUIDisplay-Bold';
    font-size: 14px;
    text-transform: uppercase;
    padding: 0 25px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.theme-btn:hover{
    background: #fff;
    border:1px solid #eaac7c;
    transition: 0.5s;
}

.theme-btn:after {
    content: '';
    transform: translateZ(0);
    pointer-events: none;
    z-index: 1;
    margin-left: 60px;
    width: 60px;
    height: 350px;
    background: #fff;
    animation-delay: 0.05s;
    position: absolute;
    left: -40px;
    top: -150px;
    animation-timing-function: ease-in-out;
    transition: all 0.1s;
    animation-name: slideme;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    transform: rotate(45deg);
}

.theme-head{
    font-size: 38px;
    font-family:'BebasNeue-Bold';
}
.office-head span{
display: inline-block;
    background: #eaac7c;
    color: #fff;
    padding: 0 10px;
}

.theme-color{color: #eaac7c;}
.theme-color-bold{
    font-family: 'SFUIDisplay-Bold';
    display: inline-block;
    background: #eaac7c;
    color: #fff;
    padding: 0 10px;
    text-transform: uppercase;
}

.theme-inp{
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    border-radius: 30px;
    border: none;
    background: #414445;
    color: #fff;
        font-size: 17px;

}
.theme-inp::-webkit-input-placeholder {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}
.theme-inp::-moz-placeholder {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}
.theme-inp:-ms-input-placeholder {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}
.theme-inp:-moz-placeholder {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}

.black-bg{
    background: url(../img/theme-bg2.jpg);
    position: relative;
}

.page-head_top{
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-bottom: 40px;
}
.head-logo{
    display: flex;
    align-items: center;
}
.head-logo_text{
    font-size: 14px;
    font-family:'SFUIDisplay-Light';
    margin-left: 15px;
}
.head-addr{
    display: flex;
}
.head-addr_text{
    margin-left: 8px;
    font-size: 14px;
    font-family:'SFUIDisplay-Light';
    padding-top: 7px;
}
.head-phone a{
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}
.head-phone_text{
    margin-left: 8px;
    font-size: 24px;
}

.head-text{margin-bottom: 40px;}

.head-title{
    font-size: 48px;
    font-family:'BebasNeue-Bold';
    margin-bottom: 5px;
    position: relative;
}
.head-title:before{
    content: '';
    position: absolute;
    top: 50%;
    left: -190px;
    width: 163px;
    height: 2px;
    background: #eaac7c;
}
.head-subtitle{
    margin-bottom: 20px;
    font-size: 24px;
    width: 500px;
}
.head-desc{
    font-size: 18px;
    font-family:'SFUIDisplay-Medium';
}
.head-desc span{
    color: #eaac7c;
}

.label-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 550px;
    margin-top: 40px;
}
.label-box h5{
    font-size: 48px;
    font-family: 'BebasNeue-Bold';
}
.label-box p{
    font-size: 24px;
}
.label-box span {
    color: #eaac7c;
}
.arrow {
        transform: translate3d(0, 0, 0);
    animation: arrow 1.4s infinite linear;
}
@keyframes arrow { 
    0% { 
        transform: translate3d(-10px, 0, 0); 
    } 
        50% { 
        transform: translate3d(10px, 0, 0); 
    } 
        100% { 
        transform: translate3d(-10px, 0, 0); 
    } 
}
.arrow img {

}

.person {
    position: absolute;
    bottom: 0px;
    right: -95px;
    z-index: 0;
}
.person img{
    height: 600px;
}

.head-advant{
    display: flex;
    margin-bottom: 18px;
}
.head-advant_box{
    margin-right: 40px;
}
.head-advant_img{
    height: 85px;
}
.head-advant_text{
    font-size: 16px;
    font-family:'SFUIDisplay-Light';
}
.page-head_btn{width: 350px;}

.apartments-block{
    /*background: url(../img/apartments-bg.jpg) no-repeat center top;*/
    min-height: 800px;
    color: #fff;

}
.apartments-head{
    position: relative;
    margin-bottom: 30px;
}
.apartments-head:before{
    content: '';
    position: absolute;
    top: 50%;
    left: -190px;
    width: 163px;
    height: 2px;
    background: #eaac7c;
}
.apartments-head span{
    color: #eaac7c;
    white-space: nowrap;
}
.apartments-head_label{
    position: absolute;
    bottom: 10px;
    right: 0;
    font-family:'SFUIDisplay-Light';
    text-align: right;
    font-size: 16px;
}
.apartments-tabs{
/*    height: 320px;*/
    position: relative;
    padding-bottom: 70px;
}
.apartments-tabs_caption{
    list-style: none;
    display: flex;
    justify-content: space-between;
}
.apartments-tabs_caption li{
    display: flex;
    align-items: center;
    width: 268px;
    height: 62px;
    justify-content: center;
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    background: linear-gradient(to bottom, rgba(71, 66, 42, .5), rgba(24, 22, 25, .7));
    color: #eaac7c;
}
.apartments-tabs_caption li.active{
    background: #eaac7c;
    color: #000;
    font-family:'SFUIDisplay-Bold';
}


.apartments-tabs_content{
    position: absolute;
    top: 70px;
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: 1;
}
.apartments-tabs_content.active{
    opacity: 1;
    z-index: 2;
    position: relative;
}
.apartments-slider{
    padding: 0 51px;
    margin-bottom: 40px;
    position: relative;
    display: none;
}
.apartments-frame{
    height: 135px;
    margin-bottom: 50px;
}
.apartments-frame ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}
.apartments-frame ul li {
    float: left;
    width: 336px;
    height: 100%;
    cursor: pointer;
    border-radius: 15px;
    padding-left: 25px;
    color: #404242;
}
.apartments-frame ul li.active{color: #fff;}
.apartments-frame ul li.active .apartments-slide_desc strong{color: #da9661;}
.apartments-slide_name{
    margin-bottom: 15px;
    font-size: 18px;
    font-family:'SFUIDisplay-Bold';
    min-height: 30px;
}
.apartments-slide_desc{font-family:'SFUIDisplay-Light';}
.apartments-slide_desc strong{color: #7d6049;}
/*.apartments-content{display: none;}*/
.apartments-content_inn{display: flex;}
.apartments-content_text{
    margin-left: 80px;
   /* padding-top: 30px;*/
}
.apartments-content_title{
    margin-bottom: 20px;
    font-size: 30px;
    font-family:'SFUIDisplay-Bold';
    color: #eaac7c;
}
.apartments-content_info p{
    margin-bottom: 18px;
    font-family:'SFUIDisplay-Thin';
    text-align: justify;
}
.apartments-content_info strong{font-family:'SFUIDisplay-Bold';}

.apartments-content_img-inn{position: relative;}
.apartments-content_img-inn:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(25, 25, 25, .01) 50%, rgba(25, 25, 25, .7) 75%, rgba(25, 25, 25, 1) 100%);
}

.apartments-content_box{
    display: none;

}

.apartments-scrollbar {
    margin: 0 auto;
    height: 4px;
    background: #292220;
    line-height: 0;
    width: 340px;
}
.apartments-scrollbar .handle {
    width: 100px;
    height: 4px;
    background: #eaac7c;
    cursor: pointer;
    border-radius: 5px;
}

.apartments-controls .btn{
    position: absolute;
    top: 30px;
    width: 50px;
    height: 50px;
    background: none;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 0;
    opacity: .5;
    transition: all .3s;
}
.apartments-controls .btn:hover{opacity: 1;}
.apartments-controls .prev{
    left: 0;
    background: url(../img/apartments-controls-l.png) no-repeat center center;
}
.apartments-controls .next{
    right: 0;
    background: url(../img/apartments-controls-r.png) no-repeat center center;
}
.apartments-btn{
    width: 250px;
}

.apart-inp {
    width: 100%;
    max-width: 250px;
    margin-bottom: 12px;
    margin-right: 10px;
}

.apartments-form {
    display: flex;

}

.consult-img_text{
    width: 360px;
    position: absolute;
    bottom: -100px;
    left: 0;
    text-align: right;
}
.consult-img_name{
    font-family:'SFUIDisplay-Bold';
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.consult-img_position{font-size: 18px;}

.problems-block{
    background: url(../img/problems-bg.jpg) no-repeat center top;
    min-height: 746px;
    color: #fff;
    padding-bottom: 90px;
    margin-bottom: 90px;
}
.problems-head{
    position: relative;
}
.problems-head:before {
    content: '';
    position: absolute;
    top: 50%;
    left: -190px;
    width: 163px;
    height: 2px;
    background: #eaac7c;
}
.problems-head span{color: #eaac7c;}
.problems-head_label{
    position: relative;
    padding-left: 45px;
    font-size: 18px;
    font-family:'SFUIDisplay-Light';
    margin-bottom: 50px;
}
.problems-head_label:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    width: 36px;
    background: #eaac7c;
}
.problems-inn{margin-bottom: 65px;}
.problems-box_wrap{
    width: 650px;
    display: flex;
    justify-content: space-between;
}
.problems-box{
    max-width: 300px;
    font-family:'SFUIDisplay-Light';
}
.problems-box_item{margin-bottom: 15px;}
.problems-box_img{
    height: 80px;
    font-family:'SFUIDisplay-Light';
}

.problems-bott{
    width: 1277px;
    height: 326px;
    background: url(../img/problems-bott.jpg) no-repeat center top;
    margin: 0 auto 53px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    position: relative;
    border-radius: 10px;
}
.problems-bott:before{
    content: '';
    position: absolute;
    top: 50%;
    left: -4px;
    height: 170px;
    width: 8px;
    border-radius: 4px;
    background: #eaac7c;
    transform: translate(0,-50%);
}
.problems-bott:after{
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    height: 170px;
    width: 8px;
    border-radius: 4px;
    background: #eaac7c;
    transform: translate(0,-50%);
}
.problems-bott_desc{
    font-size: 18px;
    font-family:'SFUIDisplay-Light';
}
.problems-bott_r {
    display: flex;
}

.list-block{
    background: url(../img/list-bg.jpg) no-repeat center 150px;
    overflow: hidden;
    padding-bottom: 15px;
}
.list-inn{position: relative;}
.list-head{
    margin-bottom: 10px;
    position: relative;
}
.list-head:after{
    content: '';
    position: absolute;
    top: 80px;
    right: -180px;
    height: 2px;
    width: 170px;
    background: #eaac7c;
}
.list-text{
    margin-left: auto;
    margin-right: 65px;
    margin-bottom: 50px;
    max-width: 485px;
    min-height: 480px;
}
.list-desc{
    font-size: 18px;
    font-family:'SFUIDisplay-Light';
    margin-bottom: 15px;
}
.list-item_head{
    font-size: 18px;
    font-family:'SFUIDisplay-Bold';
    margin-bottom: 15px;
}
.list-item{
    margin-bottom: 15px;
    font-family:'SFUIDisplay-Light';
    padding-left: 20px;
    position: relative;
}
.list-item:before{
    content: '';
    position: absolute;
    left: 0px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eaac7c;
}
.list-img{
    position: absolute;
    top: 0;
    left: -50px;
}

.list-form{display: flex;}
.list-bott_head{
    text-transform: uppercase;
    font-size: 23px;
    font-family:'SFUIDisplay-Bold';
    margin-bottom: 20px;
}
.list-bott_type-box{margin: 0 -8px;}
.list-bott_type-item{
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
}
.list-bott_type-item:hover{
    transform: scale(1.07);
}
.list-bott_type-item.active{
    transform: scale(1.07);
}

.list-bott_type-whats{
    background: url(../img/whatsapp-hv.png) no-repeat center center;
    background-size: contain;
}
.list-bott_type-whats.active{border: 3px solid green;}

.list-bott_type-viber{
    background: url(../img/viber-hv.png) no-repeat center center;
    background-size: contain;
}
.list-bott_type-viber.active{border: 3px solid #71459e;}

.list-bott_type-teleg{
    background: url(../img/telegram-hv.png) no-repeat center center;
    background-size: contain;
}
.list-bott_type-teleg.active{border: 3px solid #00b7f4;}

.list-bott_type-phone{
    background: url(../img/phone-call-hv.png) no-repeat center center;
    background-size: contain;
}
.list-bott_type-phone.active{border: 3px solid #e6a676;}



.list-form_wrap{
    margin-left: 65px;
    margin-top: 50px;
}
.list-inp{
    display: inline-block;
    vertical-align: top;
    width: 220px;
}
.list-form_btn-wrap{
    display: inline-block;
    vertical-align: top;
    margin-left: 20px;
}
.list-form_btn{width: 255px;}
.check-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    float: left;
    position: relative;
    background: #fff;
    margin-top: 7px;
    margin-right: 10px;
    cursor: pointer;
}
.check-icon.active {background: #fff url(../img/check-icon.png) no-repeat center center;}
.check input[type=checkbox] {
    position: absolute;
    left: 7px;
    bottom: -2px;
    z-index: 1;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.check-text {
    margin-left: 0px;
    display: inline-block;
    font-size: 14px;
    color: #aaaaaa;
}
.check-text a {color: #3786cf;}
.checkboxes{margin-top: 10px;}

.sold-block{
    padding: 100px 0 50px;
    overflow: hidden;
}
.sold-head{
    min-height: 200px;
    background: url(../img/sold-head.jpg) no-repeat 90% top;
}
.sold-head_title{
    margin-bottom: 20px;
    position: relative;
}
.sold-head_title:before{
    content: '';
    position: absolute;
    top: 25px;
    width: 173px;
    height: 2px;
    background: #eaac7c;
    left: -190px;
}
.sold-head_title span{
    display: inline-block;
    background: #eaac7c;
    color: #fff;
    padding: 0 10px;
}
.sold-head_desc{
    padding-left: 50px;
    position: relative;
}
.sold-head_desc:before{
    content: '';
    position: absolute;
    top: 9px;
    left: 15px;
    width: 26px;
    height: 2px;
    background: #eaac7c;
}



.sold-content{padding: 0 90px;}
.sold-content_box{
    display: flex;
    justify-content: space-between;
}
.sold-content_desc{
    width: 470px;
    position: relative;
    z-index: 2;
}
.sold-content_title{
    font-size: 28px;
    font-family:'SFUIDisplay-Bold';
    margin-bottom: 20px;
}
.sold-content_subtitle{
    font-size: 20px;
    margin-top: -10px;
}
.sold-content_info{
    margin-bottom: 20px;
    font-family:'SFUIDisplay-Medium';
}
.sold-content_list-head{
    font-family:'SFUIDisplay-Bold';
    margin-bottom: 15px;
    font-size: 14px;
}
.sold-content_list{
    margin-bottom: 35px;
    list-style: none;
}
.sold-content_list li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.sold-content_list li:before{
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eaac7c;
}
.sold-content_result{margin-bottom: 20px;}
.sold-content_result-head{
    font-size: 24px;
    font-family:'SFUIDisplay-Bold';
    margin-bottom: 5px;
}
.sold-content_text{
    font-size: 18px;
    font-family:'SFUIDisplay-Medium';
    margin-bottom: 45px;
}
.sold-content_spec{
    font-size: 14px;
    margin-bottom: 20px;
}
.sold-content_list-info{
    margin-bottom: 35px;
    padding-left: 25px;
}

.sold-content_two .sold-content_img{
    margin-top: 30px;
    border: none;
    margin-left: -115px;
}
.sold-content_three .sold-content_img{
    border: none;
    margin-top: 130px;
}
.sold-content_fourth .sold-content_img{border: none;}

.sold-content_fourth .sold-content_desc{width: 476px;}
.sold-content_fifth .sold-content_desc{
    width: 950px;
    padding-right: 50px;
    margin: 0 auto;
}
.sold-content_six .sold-content_img{
    margin-top: 30px;
    height: 430px;
}
.sold-content_desc-top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.sold-content_desc-bott{
    display: flex;
    justify-content: space-between;
}

.sold-content_img{
    width: 414px;
    height: 522px;
    border: 5px solid #eaac7c;
    position: relative;
    margin-top: 50px;
    margin-left: 50px;
}
.sold-content_img img{
    margin-top: -30px;
    margin-left: -30px;
}
.sold-content_img-label{
    background: url(../img/sold-content_img-label.png) no-repeat center top;
    background-size: contain;
    width: 231px;
    height: 196px;
    position: absolute;
    top: -55px;
    left: -75px;
    padding-top: 40px;
    padding-left: 35px;
    padding-right: 20px;
}
.sold-content_img-label_text{
    font-size: 13px;
    transform: rotate(-2deg);
    text-align: center;
    font-family:'SFUIDisplay-Light';
}
.sold-content_img-label_text strong{
    font-family:'SFUIDisplay-Bold';
    color: #353535;
}
.sold-sub-desc {
    font-size: 16px;
    padding: 25px;
}

.sold-video_block{
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    width: 100%;
}
.sold-video_text{
    font-size: 28px;
    font-family:'SFUIDisplay-Bold';
}

.sold-video_text p{
margin-top: 35px;
}

.sold-video_text span{
    font-family:'SFUIDisplay-Bold';
    display: inline-block;
    background: #eaac7c;
    color: #fff;
    padding: 0 10px;
}
.sold-video_video{
    position: relative;
    width: 445px;
    flex: none;
}
.sold-video_video img{
    max-width: 100%;
}
.sold-video_play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url(../img/thanks-video_play.png) no-repeat;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-size: contain;
}
.ver2-body .sold-frame{
    width: 100%;
}
.sold-content_zero{
    margin: 0 -60px;
}

.calm-block{
    background: url(../img/calm-bg.png) no-repeat center top;
    min-height: 135px;
    padding-bottom: 40px;
}
.calm-head{
    min-height: 316px;
    background: url(../img/calm-head.png) no-repeat right top;
    padding-top: 70px;
}
.calm-head_title{
    margin-bottom: 20px;
    position: relative;
}
.calm-head_title:before{
    content: '';
    position: absolute;
    top: 25px;
    width: 173px;
    height: 2px;
    background: #eaac7c;
    left: -200px;
}
.calm-head_title span{
    display: inline-block;
    background: #eaac7c;
    color: #fff;
    padding: 0 10px;
}
.calm-head_desc{
    padding-left: 50px;
    position: relative;
}
.calm-head_desc:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 15px;
    width: 26px;
    height: 2px;
    background: #eaac7c;
}

.calm-tabs{
    display: flex;
    justify-content: space-between;
}
.calm-tabs_caption{width: 485px;}
.calm-tabs_caption li{
    display: flex;
    align-items: center;
    width: 450px;
    height: 90px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
    margin-bottom: 7px;
    border-radius: 10px;
    padding: 0 25px 0 90px;
    cursor: pointer;
    color: #a8a8a8;
    position: relative;
}
.calm-tabs_caption li.active{
    width: 485px;
    background: #eaac7c;
    color: #000;
    font-size: 18px;
    font-family:'SFUIDisplay-Medium';
}
.calm-tabs_caption li:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(0,-50%);
    font-size: 48px;
    font-family:'BebasNeue-Bold';
}
.calm-tabs_caption li.active:before{color: #fff;}
.calm-tabs_caption li:nth-child(1):before{content: '01';}
.calm-tabs_caption li:nth-child(2):before{content: '02';}
.calm-tabs_caption li:nth-child(3):before{content: '03';}
.calm-tabs_caption li:nth-child(4):before{content: '04';}

.calm-tabs_content{
    margin-right: 95px;
    width: 465px;
    display: none;
}
.calm-tabs_content.active{display: block;}
.calm-tabs_head{
    font-size: 24px;
    font-family:'SFUIDisplay-Bold';
    margin-bottom: 20px;
}
.calm-tabs_desc{
    font-size: 18px;
    margin-bottom: 20px;
}
.calm-tabs_list-head{margin-bottom: 25px; font-size: 18px;}
.calm-tabs_list{list-style: none;}
.calm-tabs_list li{
    padding-left: 25px;
    position: relative;
    margin-bottom: 5px;
    font-size: 18px;
}
.calm-tabs_list li:before{
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #eaac7c;
}
.calm-accordion{display: none;}
.calm-accordion_set a{
    display: flex;
    align-items: center;
    width: 320px;
    height: 70px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
    margin-bottom: 7px;
    border-radius: 10px;
    padding: 0 25px 0 90px;
    cursor: pointer;
    color: #a8a8a8;
    position: relative;
    text-decoration: none;
    background: url(../img/down-arrow.png) no-repeat 95% center;
}
.calm-accordion_set a:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translate(0,-50%);
    font-size: 48px;
    font-family: 'BebasNeue-Bold';
}
.calm-accordion_set:nth-child(1) a:before{content: '01';}
.calm-accordion_set:nth-child(2) a:before{content: '02';}
.calm-accordion_set:nth-child(3) a:before{content: '03';}
.calm-accordion_set:nth-child(4) a:before{content: '04';}

.active a{
    background: #eaac7c url(../img/down-arrow2.png) no-repeat 95% center;
    color: #000;
}
.active a:before{
    color: #fff;
}

.calm-accordion_content{display:none;}

.spec-block{
    background: url(../img/spec-bg.jpg) no-repeat center 40px;
    min-height: 862px;
    border-top: 1px solid #fff;
    color: #fff;
    overflow: hidden;
    padding-top: 40px;
}
.spec-block_wrap{display: flex;}
.spec-img{margin-top: -40px;}
.spec-text{
    padding-top: 140px;
    margin-left: 55px;
}
.spec-head{
    margin-bottom: 20px;
    position: relative;
}
.spec-head:after{
    content: '';
    position: absolute;
    top: 25px;
    right: -145px;
    height: 2px;
    width: 170px;
    background: #eaac7c;
}
.spec-list_head{
    font-size: 24px;
    margin-bottom: 15px;
    font-family:'SFUIDisplay-Bold';
}
.spec-list{
    list-style: none;
    font-size: 18px;
    margin-bottom: 25px;
}
.spec-list li{
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.spec-list li:before{
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #eaac7c;
}
.spec-form_head{margin-bottom: 35px;}
.spec-inp{
    width: 350px;
    margin-bottom: 15px;
}

.ipotek-block{padding-top: 130px;}
.ipotek-head{
    margin-bottom: 20px;
    position: relative;
}
.ipotek-head:before{
    content: '';
    position: absolute;
    top: 25px;
    width: 173px;
    height: 2px;
    background: #eaac7c;
    left: -190px;
}
.ipotek-head span{
    display: inline-block;
    background: #eaac7c;
    color: #fff;
    padding: 0 10px;
}
.ipotek-desc{
    font-family:'SFUIDisplay-Medium';
    font-size: 18px;
    padding-left: 35px;
    position: relative;
    margin-bottom: 30px;
}
.ipotek-desc:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    height: 2px;
    width: 26px;
    background: #eaac7c;
}
.ipotek-wrap{
    display: flex;
    justify-content: space-between;
}
.ipotek-list_head{
    font-size: 24px;
    font-family:'SFUIDisplay-Bold';
    margin-bottom: 30px;
}
.ipotek-list_box-wrap{max-width: 550px}
.ipotek-list_box{
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    position: relative;
}
.ipotek-list_img{
    width: 85px;
    flex: none;
}
.ipotek-list_text strong{
    font-family:'SFUIDisplay-Bold';
}
.ipotek-list_label{
    padding: 25px 30px;
    background: #eaac7c;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 50px;
}
.ipotek-list_box-img{
    position: absolute;
    top: -25px;
    right: 5px;
}
.ipotek-bank{
    background: url(../img/ipotek-bank.jpg) no-repeat center top;
    width: 477px;
    height: 640px;
    border-radius: 20px;
    padding: 70px 45px 0;
    color: #fff;
    margin-bottom: 20px;
    margin-top: -40px;
}
.ipotek-bank_head{
    margin-bottom: 45px;
    font-size: 18px;
    font-family:'SFUIDisplay-Bold';
    color: #da9661;
}
.ipotek-bank_box{
    display: flex;
    align-items: center;
    margin-bottom: 45px;
}
.ipotek-bank_box-img{margin-right: 30px;}
.ipotek-bank_box-title{
    margin-bottom: 15px;
    font-family:'SFUIDisplay-Bold';
}
.ipotek-bank_box-desc{font-family:'SFUIDisplay-Light';}
.ipotek-bank_bott{display: flex;}
.ipotek-bank_bott-img{margin-right: 15px;}
.ipotek-bank_bott-text{padding-top: 15px;}
.ipotek-bank_bott-title{
    font-size: 18px;
    font-family:'SFUIDisplay-Bold';
    margin-bottom: 15px;
}
.ipotek-bank_bott-desc{margin-bottom: 10px;}
.ipotek-bank_bott-link{
    color: #da9661;
    font-family:'SFUIDisplay-Medium';
}
.ipotek-btn{width: 355px;}

.help-block{
    padding: 100px 0;
}
.help-block_inn{
    position: relative;
    min-height: 550px;
}
.help-head{
    margin-bottom: 15px;
    position: relative;
}
.help-head:before{
    content: '';
    position: absolute;
    top: 25px;
    width: 173px;
    height: 2px;
    background: #eaac7c;
    left: -190px;
}
.help-desc{
    font-size: 18px;
    padding-left: 35px;
    position: relative;
    margin-bottom: 50px;
}
.help-desc:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    height: 2px;
    width: 26px;
    background: #eaac7c;
}

.help-slider{
    width: 325px;
    position: absolute;
    right: 85px;
    top: 90px;
}
.help-slider .slick-arrow{
    position: absolute;
    bottom: -70px;
    border: 2px solid #eaac7c;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    background: none;
    font-size: 0;
    opacity: .7;
}
.help-slider .slick-arrow:hover{opacity: 1;}
.help-slider .slick-prev{
    left: 100px;
    background: url(../img/help-slider_arr-l.png) no-repeat center center;
}
.help-slider .slick-next{
    right: 100px;
    background: url(../img/help-slider_arr-r.png) no-repeat center center;
}

.help-slider_box{
    height: 405px;
    width: 320px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.help-slider_text{
    font-size: 18px;
}

.help-list{margin-bottom: 30px;}
.help-box{
    display: flex;
    margin-bottom: 20px;
}
.help-box_numb{
    margin-right: 15px;
    font-family:'BebasNeue-Bold';
    font-size: 48px;
    color: #eaac7c;
}
.help-box_text{
    font-size: 18px;
    padding-top: 5px;
}
.help-dop{
    font-size: 18px;
    font-family:'SFUIDisplay-Bold';
}

.today-block{
    background: url(../img/today-bg.jpg) no-repeat center top;
    min-height: 750px;
    color: #fff;
    padding: 115px 0 60px;
    overflow: hidden;
}
.today-head{
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}
.today-head:before,
.today-head:after{
    content: '';
    position: absolute;
    top: 25px;
    width: 173px;
    height: 2px;
    background: #eaac7c;
}
.today-head:before{left: -100px;}
.today-head:after{right: -70px;}
.today-box_wrap{
    display: flex;
    margin-bottom: 60px;
}
.today-box{
    text-align: center;
    width: 33%;
}
.today-box_numb{
    font-size: 55px;
    font-family: 'BebasNeue-Bold';
    color: #eaac7c;
}
.today-box_text{
    font-size: 18px;
    font-family:'SFUIDisplay-Light';
}

.director-block{
    padding: 90px 0 50px;
    min-height: 900px;
}
.director-block_inn{position: relative;}
.director-desc{
    width: 510px;
    padding-top: 60px;
}
.director-head{
    margin-bottom: 35px;
    position: relative;
}
.director-head:before{
    content: '';
    position: absolute;
    top: 25px;
    width: 173px;
    height: 2px;
    background: #eaac7c;
    left: -210px;
}
.director-head span {
    display: inline-block;
    background: #eaac7c;
    color: #fff;
    padding: 0 10px;
}
.director-text p{margin-bottom: 20px;}
.director-img_block{
    width: 564px;
    height: 755px;
    background: #eaac7c;
    position: absolute;
    top: 0;
    right: 0;
}
.director-img_block img{
    margin-top: -25px;
    margin-left: -25px;
}
.director-img_text{
    position: absolute;
    bottom: 70px;
    left: -440px;
    text-align: right;
}
.director-img_name{
    margin-bottom: 25px;
    font-size: 24px;
    font-family:'SFUIDisplay-Bold';
    text-transform: uppercase;
}
.director-img_position{font-size: 18px;}

.consult-block{
    background: url(../img/consult-bg.png) no-repeat center top;
    min-height: 200px;
    padding-top: 85px;
}
.consult-block_inn{position: relative;}
.consult-img_box{
    position: absolute;
    top: 230px;
    left: -15px;
    width: 455px;
    height: 475px;
    background: #eaac7c;
}
.consult-img_box img{
    position: absolute;
    bottom: 0;
    left: 45px;
}
.consult-desc{
    width: 820px;
    background: url(../img/theme-bg2.jpg);
    margin-left: auto;
    padding: 60px 145px 70px 170px;
    color: #fff;
    margin-right: -80px;
}
.consult-head{margin-bottom: 30px;}
.consult-list{
    border-bottom: 1px solid #282621;
    padding-bottom: 15px;
    margin-right: 35px;
    margin-bottom: 25px;
}
.consult-list_head{
    font-size: 24px;
    font-family:'SFUIDisplay-Bold';
    text-transform: uppercase;
    margin-bottom: 25px;
}
.consult-list_item{
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 18px;
}
.consult-list_item:before{
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eaac7c;
}
.consult-form_head{
    margin-bottom: 25px;
    font-size: 24px;
    font-family:'SFUIDisplay-Bold';
}
.consult-form_soc{margin-bottom: 20px;}
.consult-form_soc-item {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
}
.consult-form_soc-item:hover {
    transform: scale(1.07);
}
.consult-form_soc-item.active {
    transform: scale(1.07);
}

.consult-form_soc-whats{
    background: url(../img/whatsapp-hv.png) no-repeat center center;
    background-size: contain;
}
.consult-form_soc-whats.active{border: 3px solid green;}

.consult-form_soc-viber{
    background: url(../img/viber-hv.png) no-repeat center center;
    background-size: contain;
}
.consult-form_soc-viber.active{border: 3px solid #71459e;}

.consult-form_soc-teleg{
    background: url(../img/telegram-hv.png) no-repeat center center;
    background-size: contain;
}
.consult-form_soc-teleg.active{border: 3px solid #00b7f4;}

.consult-form_soc-phone{
    background: url(../img/phone-call-hv.png) no-repeat center center;
    background-size: contain;
}
.consult-form_soc-phone.active{border: 3px solid #e6a676;}

.consult-inp{
    width: 370px;
    margin-bottom: 12px;
}
.consult-btn{
    max-width: none;
    width: 370px;
}

.order-inp {
    width: 100%;
    max-width: 215px;
    margin-bottom: 12px;
    margin-right: 10px;
}

/*.office-block{padding-top: 60px;}*/
.office-block_inn{
    display: flex;
    justify-content: space-between;

}
.office-img{margin-right: -125px;}
.office-head{padding-top: 100px;}

.contact-block{
    background: url(../img/contact-bg.jpg) no-repeat center top;
    min-height: 430px;
    color: #f0f0f0;
    position: relative;
    overflow: hidden;
}
.contact-inn{position: relative;}
.contact-desc{
    width: 350px;
    padding-top: 60px;
    padding-left: 75px;
}
.contact-addr{margin-bottom: 25px;}
.contact-addr_text{font-size: 24px;}
.contact-addr_head,
.contact-envelop,
.contact-phone_head{
    font-size: 24px;
    font-family:'SFUIDisplay-Bold';
    margin-bottom: 20px;
    position: relative;
}

.contact-addr_head:before{
    content: '';
    position: absolute;
    left: -60px;
    top: -12px;
    width: 48px;
    height: 48px;
    background: url(../Icons/address.svg) no-repeat center top;
    background-size: 48px 48px;
}

.contact-envelop{margin-bottom: 25px;}
.contact-envelop_head:before{
    content: '';
    position: absolute;
    left: -60px;
    top: -12px;
    width: 48px;
    height: 48px;
    background: url(../Icons/envelop.svg) no-repeat center top;
    background-size: 48px 48px;
}
.contact-envelop_text a{
    font-size: 24px;
    color: #f0f0f0;
    text-decoration: none;
    font-family: sans-serif;
}


.contact-phone{margin-bottom: 25px;}
.contact-phone_head:before{
    content: '';
    position: absolute;
    left: -60px;
    top: -12px;
    width: 48px;
    height: 48px;
    background: url(../Icons/telephone.svg) no-repeat center top;
    background-size: 48px 48px;
}
.contact-phone_text a{
    font-size: 24px;
    color: #f0f0f0;
    text-decoration: none;
}
.contact-rekv{font-family:'SFUIDisplay-Light';}

.contact-map{
    position: absolute;
    top: 0;
    right: 50%;
    transform: translate(951px,0);
    width: 1040px;
    height: 534px;
}
.contact-map img{
    position: absolute;
    top: 0;
    left: 0;
}

.page-footer {
    min-height: 100px;
    padding: 20px 0;
}
.page-footer_inn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}
.footer-logo{
    display: flex;
    align-items: center;
}
.footer-logo_text {
    font-size: 14px;
    margin-left: 15px;
}
.footer-phone a {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
}
.footer-phone_text {
    margin-left: 8px;
    font-size: 24px;
}
.page-footer_center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.page-footer_polite{margin-bottom: 5px;}
.page-footer_polite a{
    color: #000;
    font-family:'SFUIDisplay-Medium';
}
.page-footer_copy{font-size: 14px;}

.footer-dev{
    display: none;
    text-align: center;
    padding: 30px 0 0;
    font-size: 15px;
}
.footer-dev a{
    color: #000;
}


.ver1-body .page-head{background: url(../img/ver1-head.jpg) no-repeat center top;}
.ver1-body .apartments-block{background: url(../img/apartments-bg_ver1.jpg) no-repeat center top;}
.ver1-body .head-phone a{
    background: #eaac7c;
    height: 50px;
    width: 255px;
    border-radius: 30px;
    color: #fff;
    justify-content: center;
}
.ver1-body .head-phone_text{font-size: 18px;}

.ver2-body .page-head{
    background: url(../img/ver2-head.jpg) no-repeat center top;
    color: #000;
    min-height: 793px;
}
.ver2-body .apartments-block{
    background: url(../img/apartments-bg_ver2.jpg) no-repeat center top;
    min-height: 1408px;
}
.ver2-body .head-phone a{
    background: #eaac7c;
    height: 50px;
    width: 255px;
    border-radius: 30px;
    color: #fff;
    justify-content: center;
}
.ver2-body .head-phone_text{font-size: 18px;}

.ver3-body .page-head{
    background: url(../img/ver3-head.jpg) no-repeat center top;
    color: #000;
/*    min-height: 908px;*/
}
.ver3-body .apartments-block{
    background: url(../img/apartments-bg_ver2.jpg) no-repeat center top;
    min-height: 1408px;
}
.ver3-body .head-phone a{
    background: #eaac7c;
    height: 50px;
    width: 255px;
    border-radius: 30px;
    color: #fff;
    justify-content: center;
}
.ver3-body .head-phone_text{font-size: 18px;}

.page-head{
    min-height: 800px;
    color: #fff;
}

.ver1-1-body .page-head{
    background: url(../img/ver1-1-head.jpg) no-repeat center top;
    position: relative;
    overflow: hidden;
}
.ver1-1-body .head-title{font-size: 60px;}
.ver1-1-body .head-text{margin-bottom: 35px;}
.ver1-1-body .apartments-block{
    background: url(../img/apartments-bg_ver2.jpg) no-repeat center top;
}
.ver2-1-body .page-head{
    background: url(../img/ver2-1-head.jpg) no-repeat center top;
    min-height: 907px;
}
.ver2-1-body .head-phone a{
    background: #eaac7c;
    height: 50px;
    width: 255px;
    border-radius: 30px;
    color: #fff;
    justify-content: center;
}
.ver2-1-body .head-phone_text{font-size: 18px;}
.ver2-1-body .head-title{font-size: 45px;}
.ver2-1-body .head-text{margin-bottom: 170px;}
.ver2-1-body .apartments-block{background: url(../img/apartments-bg_ver2-1.jpg) no-repeat center top;}

.ver3-1-body .page-head{
    background: #fcfcfc url(../img/ver3-1head.jpg) no-repeat center top;
    color: #000;
    min-height: 870px;
}
.ver3-1-body .head-phone a{color: #000;}
.ver3-1-body .head-title{font-size: 45px;}
.ver3-1-body .head-text{margin-bottom: 170px;}
.ver3-1-body .head-calc{background: rgba(255,255,255, .5);}
.ver3-1-body .head-calc_inn{background: #383838;}
.ver3-1-body .head-calc{color: #fff;}
.ver3-1-body .head-calc_inp{background: #272727;}
.ver3-1-body .head-calc_label{
    color: #000;
    background: url(../img/head-calc_label-bl.png) no-repeat right 40px;
}
.ver3-1-body .head-calc_inp {color: #fff;}
.ver3-1-body .apartments-block{background: url(../img/apartments-bg_ver2.jpg) no-repeat center top;}


.page-head_inn{
    position: relative;
}
.head-calc {
    position: absolute;
    top: 120px;
    right: 9px;
    width: 430px;
    height: 610px;
    background: rgba(255,255,255, .2);
    border-radius: 20px;
    padding: 20px;
    color: #000;
}
.head-calc_inn{
    background: #fff;
    /* min-height: 100%; */
    border-radius: 20px;
        padding: 20px 30px;
}
.head-calc_title{
    text-transform: uppercase;
    font-size: 24px;
    font-family:'SFUIDisplay-Bold';
    text-align: center;
    margin-bottom: 4px;
}
.head-calc_subtitle{
    text-align: center;
    font-size: 16px;
    font-family:'SFUIDisplay-Medium';
    margin-bottom: 14px;
}
.head-calc_form{
    font-family:'SFUIDisplay-Light';
}
.head-calc_rooms{margin-bottom: 9px;}
.head-calc_rooms-head{
    margin-bottom: 10px;
}
.head-calc_radioblock{
    display: flex;
}
.head-calc_radio {
    cursor: pointer;
    font-size: 16px;
    padding: 10px 17px;
    border-radius: 20px;
    color: #9e9e9e;
    z-index: 4;
}
.head-calc_radio.active {
    background: #eaac7c;
    color: #000;
}
.head-calc_inp-box{margin-bottom: 11px;}
.head-calc_inp{
    height: 43px;
    width: 100%;
    border-radius: 20px;
    background: #e5e5e5;
    border: none;
    font-size: 16px;
    padding: 0 15px;
    font-family: 'SFUIDisplay-Bold';
}
.head-calc_inp-area{
    width: 175px;

}

.head-calc_inp-area::-webkit-inner-spin-button { 
  display: none;
}
.head-calc_inp-head{
    margin-bottom: 5px;
}
.head-calc_btn{
    width: 100%;
}
.head-calc_bott{
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
}
.head-calc_label{
    position: absolute;
    top: 250px;
    left: -620px;
    background: url(../img/head-calc_label.png) no-repeat right 40px;
    height: 87px;
    width: 566px;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    font-size: 18px;
}




.modal-spec{
    width: 986px;
    height: 550px;
    position: fixed;
    top: 16%;
    left: 16%;
    margin-top: -1px;
    display: none;
    z-index: 5;
        box-shadow: 0 4px 15px rgba(0,0,0,.2);
    border: 20px solid #ffffff33;
    border-radius: 20px;
}
.modal-spec_inn{
    width: 100%;
    height: 100%;
    display: flex;
    background: url(../img/modal-bg.png) no-repeat;
    background-color: #111;

}

.modal-head_top {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    margin-bottom: 100px;
}

.modal-head-logo {
    display: flex;
    align-items: center;
}
.modal-head-addr {
    display: flex;
}
.modal-head-logo_text {
    font-size: 14px;
    font-family: 'SFUIDisplay-Light';
    margin-left: 15px;
    color: #fff;

}


.modal-spec_text{
    padding: 0px 0px 0px 140px;
}
.modal-spec_title{
    font-size: 37px;
    font-family: 'BebasNeue-Bold';
    margin-bottom: 100px;
    position: relative;
    color: #fff;
}

.modal-spec_title:before{
    content: '';
    position: absolute;
    top: 50%;
    left: -140px;
    width: 100px;
    height: 2px;
    background: #eaac7c;
}

.modal-logo_img img{
    width: 80px;
}
.modal-spec_desc{
    color: #fff;
    font-size: 37px;
    font-family: 'BebasNeue-Bold';
}

.modal-spec_desc:before {
    content: '';
    position: absolute;
    top: 75%;
    left: 0px;
    width: 100px;
    height: 2px;
    background: #eaac7c;
}
.modal-spec_inp{
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    border-radius: 30px;
    border: none;
    background: #e8e8e8;
    width: 280px;
    margin-bottom: 10px;
}
.modal-spec_btn{
    width: 280px;
}

.modal-spec_form .check-icon{
    background: #eaac7c;
}
.modal-spec_form .check-icon.active{
    background: #eaac7c url(../img/check-icon2.png) no-repeat center center;
}

.modal-spec1 .modal-spec_img{
    background: url(../img/modal-spec_img.jpg) no-repeat;
}
.modal-spec1 .modal-spec_img img{
    left: -12px;
}

.modal-spec2 .modal-spec_img img{
    left: 50%;
    transform: translate(-50%,0);
}
.modal-spec2 .modal-spec_text{
    padding: 40px 50px 0;
}


.modal-file{
    background: #131714;
}
.modal-file .modal-close{
    background: url(../img/modal-close_wh.png) no-repeat;
    background-size: contain;
}
.modal-file .modal-spec_img img{
    left: -25px;
    width: 500px;
    top: 50%;
    transform: translate(0,-50%);
}
.modal-file_head{
    font-size: 19px;
    text-transform: uppercase;
    font-family: 'SFUIDisplay-Bold';
    margin-bottom: 15px;
}

.modal-file .modal-spec_inp-head{
    margin-bottom: 15px;
}
.modal-file .modal-spec_text{
    color: #fff;
    padding: 20px 30px;
}
.modal-file .modal-spec_title{
    font-size: 32px;
    margin-bottom: 20px;
}



.modal-file_type{
    margin-bottom: 15px;
}

.modal-file_type-item {
    display: inline-block;
    vertical-align: top;
    width: 70px;
    height: 70px;
    margin: 0 5px;
    background-size: contain;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
}

.modal-file_type-item:hover {
    transform: scale(1.07);
}

.modal-file_type-whats{
    background: url(../img/whatsapp-hv.png) no-repeat center center;
    background-size: contain;
}
.modal-file_type-whats.active{
    transform: scale(1.07);
    border: 1px solid green;
}

.modal-file_type-viber{
    background: url(../img/viber-hv.png) no-repeat center center;
    background-size: contain;
}
.modal-file_type-viber.active{
    transform: scale(1.07);
    border: 1px solid #71459e;
}

.modal-file_type-teleg{
    background: url(../img/telegram-hv.png) no-repeat center center;
    background-size: contain;
}
.modal-file_type-teleg.active{
    transform: scale(1.07);
    border: 1px solid #00b7f4;
}

.modal-file_type-phone{
    background: url(../img/phone-call-hv.png) no-repeat center center;
    background-size: contain;
}
.modal-file_type-phone.active{
    transform: scale(1.07);
    border: 1px solid #e6a676;
}


.modal-callback{
    width: 545px;
    height: 470px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -1px;
    background: #fff;
    display: none;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
}
.modal-callback_inn{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
.modal-callback_head{
    margin-bottom: 30px;
    font-size: 22px;
    font-family:'SFUIDisplay-Bold';
}
.modal-callback_form{
    width: 255px;
}
.modal-callback_inp{
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    border-radius: 30px;
    border: none;
    background: #e8e8e8;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.modal-callback_btn{
    width: 100%;
}
.modal-callback_form .check-icon.active {
    background: #eaac7c url(../img/check-icon2.png) no-repeat center center;
}

.modal-callback_form .check-icon {
    background: #eaac7c;
    margin-right: 0;
}
.modal-callback_form .check-text{
    text-align: left;
}

.modal-exit{
    width: 986px;
    height: 328px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -1px;
    background: #fff;
    display: none;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
}
.modal-exit_inn{
    width: 100%;
    height: 100%;
    display: flex;
}
.modal-exit_video{
    width: 460px;
    height: 100%;
    flex: none;
    position: relative;
    overflow: hidden;
}
.modal-exit_play{
    width: 50px;
    height: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.modal-exit_text{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
}
.modal-exit_head{
    font-size: 48px;
    font-family:'BebasNeue-Bold';
    color: #eaac7c;
    margin-bottom: 20px;
}
.modal-exit_desc{
    font-size: 30px;
    font-family:'BebasNeue-Bold';
    color: #272727;
}
.modal-exit_desc span{
    display: inline-block;
    background: #eaac7c;
    margin-bottom: 3px;
    padding: 0 5px;
    color: #fff;
}


.modal-close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 19px;
    height: 20px;
    cursor: pointer;
    background: url('../img/modal-close.png');
    background-size: contain;
    z-index: 2;
}

#overlay {
    z-index:4;
    position:fixed;
    background-color:#000;
    opacity:0.6;
    -moz-opacity:0.6;
    filter:alpha(opacity=60);
    width:100%; 
    height:100%;
    top:0;
    left:0;
    display:none;
}
#quiz-overlay {
    z-index: 3;
    position: fixed;
    background-color: #000;
    opacity: 0.6;
    width: 100%; 
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}


.animated{
  animation-duration: 20.5s;
}
.bounceInLeft{
  animation-duration: 0.5s;
}
.bounceOutRight{
  animation-duration: 20.5s;
}



.thanks-wrap{
    color: #fff;
}
.thanks-top{
    padding-top: 35px;
    margin-bottom: 90px;
}
.thanks-block{
    padding-bottom: 140px;
}
.thanks-block_inn{
    display: flex;
    margin-bottom: 70px;
}
.thanks-img{
    width: 360px;
    height: 480px;
    background: #44372c;
}
.thanks-img img{
    margin-top: -20px;
    margin-left: -20px;
}
.thanks-text{
    padding-top: 80px;
    margin-left: 65px;
    position: relative;
}
.thanks-title{
    margin-bottom: 30px;
    font-size: 60px;
    font-family:'BebasNeue-Bold';
    color: #eaac7c;
}
.thanks-desc{
    margin-bottom: 50px;
    font-size: 18px;
}
.thanks-tel_title{
    font-size: 18px;
}
.thanks-tel_link{
    font-size: 30px;
    font-family:'SFUIDisplay-Medium';
    color: #eaac7c;
}
.thanks-name{
    position: absolute;
    bottom: 20px;
    right: 15px;
    font-style: italic;
}

.thanks-social{
    background: url(../img/thanks-social.jpg) no-repeat center top;
    padding: 25px 0 150px;
}
.thanks-social_head{
    font-size: 48px;
    text-align: center;
    font-family:'BebasNeue-Bold';
    margin-bottom: 70px;
}
.thanks-social_head span{
    color: #eaac7c;
}
.thanks-social_box{
    max-width: 710px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.thanks-social_img{
    width: 300px;
    height: 300px;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 40px 0px rgba(234, 172, 124, 0.55);
}
.thanks-social_btn{
    width: 300px;
}
.thanks-video_inn{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.thanks-video_text{
    font-size: 30px;
    font-family:'SFUIDisplay-Bold';
}
.thanks-video_text span{
    color: #eaac7c;
}
.thanks-video_video{
    position: relative;
}
.thanks-video_play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: url(../img/thanks-video_play.png) no-repeat;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-size: contain;
}



.open-pages{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.open-pages_list{
    background: #fff;
    padding: 10px;
    position: absolute;
    top: 40px;
    left: 0;
    display: none;
    z-index: 5;
}
.open-pages_list div{margin-bottom: 7px;}

@keyframes  play_top {
    0% {box-shadow: 0 0 rgba(255,255,255,.6);}
    100% {box-shadow: 0 0 0 20px rgba(255,255,255,0);}
}

.back-box{
    position: fixed;
    top: 30px;
    right: 50%;
    transform: translate(500px,0);
    background: #fff;
    padding: 12px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: play_top 1s infinite;
    z-index: 55;
    border: 1px solid #ccc;
}
.back-box a{
    color: #000;
    text-decoration: none;
}

img {
    opacity: 1;
    transition: opacity 0.3s;
}

img[data-src] {
    opacity: 0;
}

.parametrs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: 'SFUIDisplay-Bold';
}

.head-calc_radio.active {
    background: #eaac7c;
    color: #000;
}

ul.parametrs .check-param {
    background: #eaac7c;
    color: #000;
}

.check-param-blick{

    overflow: hidden;
    position: relative;

    cursor: pointer;
    transition: all 0.2s ease-in-out;
}


.check-param-blick:after {
    content: '';
    transform: translateZ(0);
    pointer-events: none;
    z-index: 1;
    margin-left: 60px;
    width: 60px;
    height: 350px;
    background: #fff;
    animation-delay: 0.05s;
    position: absolute;
    left: -40px;
    top: -150px;
    animation-timing-function: ease-in-out;
    transition: all 0.1s;
    animation-name: slideme;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    transform: rotate(45deg);
}

.cur-wrapper {
    height: 43px;
    width: 175px;
    border-radius: 20px;
    background: #e5e5e5;
    border: none;
    font-size: 16px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    font-family: 'SFUIDisplay-Bold';
}

.apartments-content_video {
    width: 100%;
}
.o-video {
    width: 600px;
    height: 400px;
}
.o-video > iframe {
  width: 100%;
  height: 100%;
  border: 0;
    border-radius: 30px;
}

.video-container{
    margin: 0 auto 20px;
    position: relative;
    width: 445px;
    height: 270px;
    overflow:hidden;
    background: #000;
    border-radius: 30px;

}
.video-container iframe, .video-container object, .video-container embed{
    position:absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
}