html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a{
    color: #fff;
    text-decoration: none;
}
* { margin: 0; padding: 0; }

body{
    font-family: 'Geometria';
    font-weight: normal;
    font-style: normal;
}
:root {
    --animat:400ms ease-in-out;
    --animat-new:400ms linear;
}
@keyframes flickerAnimation {
    0%   { opacity:1; rotate(0deg)}
    50%  { opacity:0.7;transform: rotate(3deg) }
    100% { opacity:1;transform: rotate(0deg) }
}
@-o-keyframes flickerAnimation{
    0%   { opacity:1; rotate(0deg)}
    50%  { opacity:0.7;transform: rotate(3deg) }
    100% { opacity:1;transform: rotate(0deg) }
}
@-moz-keyframes flickerAnimation{
    0%   { opacity:1; rotate(0deg)}
    50%  { opacity:0.7;transform: rotate(3deg) }
    100% { opacity:1;transform: rotate(0deg) }
}
@-webkit-keyframes flickerAnimation{
    0%   { opacity:1; rotate(0deg)}
    50%  { opacity:0.7;transform: rotate(3deg) }
    100% { opacity:1;transform: rotate(0deg) }
}
.header{
    position: fixed;
    width:100%;
    left:0;
    top:0;
    z-index: 9999999;
}
.center_inheader{
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin:0 auto;
    position: relative;
    z-index: 2;
}
.logo_block svg{
    width: 100%;
    height: auto;
}
.logo_block{
    width: 157px;
    height: 76px;
    display: block;
    /*background-image: url('/img/logo_block.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;*/
    flex-shrink: 0;
}
.butt_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu_style a{
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    font-weight: 500;
    text-align: left;
    padding: 5px 0;
    position: relative;
    margin:0 10px;
    color: #FFFFFF;
    white-space: nowrap;
    cursor: pointer;
}
.menu_block{
    display: flex;
    align-items: center;
    justify-content: center;
}
.animation:hover,.menu_style a.list_menu:hover:before, .detail, .detail:hover,.animation,.menu_block a:before, .header{
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.dr_icon{
    width: 200px;
    height: 200px;
    background-image: url('/img/dr_icon.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
.apple-day{
    position:absolute;
    /*width: 240px;*/
    /* height: 180px;*/
    z-index: 99999;
    background-repeat: no-repeat;
    bottom: 110px;
    left: 4%;
    /*opacity: 0;
    visibility: hidden;*/
    transition: var(--animat);
}
.timer .button_style{
    margin-bottom: 10px;
    max-width: 240px;
}
.apple-day.active{
    opacity:1;
    visibility:visible;
}
#counter{
    /*color: #fef486;*/
    /*position: absolute;*/
    /*bottom: -40px;*/
    width: 220px;
    color:#ce131a ;

    line-height: 1;
}
.counter_bg{
    background: #E7B73D;
    border-radius: 30px;
    box-shadow: 0px 10px 30px rgba(119, 47, 26,  0.3);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.counter__outer{
    display:flex;
    justify-content:center;
}
.up div{
    font-size: 16px!important;
    white-space:nowrap;
}
.up{
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:bold;
    padding-top:10px;
    padding-bottom:10px;
    text-align:center;
}
.up div:nth-child(1){

}
.up div:nth-child(2){
    white-space:nowrap;
}
.counter__container{
    text-align:center;
    font-size:26px;
    font-weight:bold;
    padding:0 5px
}
.counter__time{
    text-transform:uppercase;
    font-size:40%;
    letter-spacing:0.5pxl;
    font-weight:normal;
    padding-top:5px;
}
.menu_style a.list_menu:hover:before,.menu_style a.list_menu.active:before{
    background-color: #fff;
    right:0;
}
.menu_style a.list_menu:before{
    content: '';
    position: absolute;
    left:0;
    right:100%;
    background-color: transparent;
    height:1px;
    bottom:0;
    display: none;
}
.menu_style a,.menu_style a:hover,.tab_comlectac,.tab_comlectac:hover{
    background-size: 200% 100%;
    transition-delay: 0s!important;
    transition: background-position .5s,background-size .5s;
}
.tab_comlectac{
    display: inline-block;
    background-image: linear-gradient(90deg,#E7B73D,#E7B73D 50%,rgba(35, 31, 32, 0.5) 0);
    background-position: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.flat-gift img{
    height: 24px;
    margin-right: 10px;
    -webkit-animation: flatBall 3s infinite;
    -moz-animation: flatBall 3s infinite;
    -o-animation: flatBall 3s infinite;
    animation: flatBall 3s infinite;
    position: relative;
    top: -2px;
}

.flat-gift {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    font-size: 12px;
    padding: 10px 21px 8px 21px;
    line-height: 1.2;
    border-radius: 10px;
    line-height: 1.4;
    height: auto;
    margin: 0px 0 17px 0;
    background-color: #bc0404;
    letter-spacing: 1px;
}

.tab_comlectac.active{
    display: inline-block;
    background-image: linear-gradient(90deg,rgba(35, 31, 32, 1),rgba(35, 31, 32, 1) 50%,rgba(35, 31, 32, 1) 0);
    background-position: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.menu_style a{
    display: inline-block;
    background-image: linear-gradient(90deg,#E7B73D,#E7B73D 50%,#fff 0);
    background-position: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.menu_style a:hover,.tab_comlectac:hover {
    background-position: 0;
}
.button_style:hover{
    /*border-color:#772F1A;
    background-color: #772F1A;*/
}
.header.dopstyleheader{
    background-color: #291000;
}
.no_input_style.button_style{
    padding: 0;
}
.no_input_style input{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 14px;
    display: block;
    background: transparent;
    border: none;
    outline: none;
    line-height: 1;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    font-family: 'Geometria';
    cursor: pointer;
    width: 100%;
    height: 50px;
    border-radius: 30px;
    padding: 0 31px;
}
.button_style{
    border: 2px solid #E7B73D;
    font-size: 14px;
    height: 50px;
    padding: 0 31px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #E7B73D;
    box-shadow: 0px 10px 30px rgba(119, 47, 26, 0.3);
    color: #fff;
}
.button_block.left_sort{
    justify-content: flex-start;
}
.button_block{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.phone_new{
    margin-right: 15px;
}
a.phone:hover:after{
    opacity: 1;
    z-index: 2;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
a.phone:hover:before{
    opacity: 0;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
a.phone:after{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7px;
    width: 14px;
    height: 14px;
    background-image: url('/img/phone_yel.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
a.phone:before,.menu_style a.phone:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7px;
    width: 14px;
    height: 14px;
    background-image: url('/img/phone.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    z-index: 1;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
a.phone:hover{
    color: #E7B73D;
}
a.phone,.menu_style a.phone {
    padding: 0;
    padding-left: 15px;
    position: relative;
    font-size: 16px;
    line-height: 1;
    display: block;
    font-weight: 500;
    white-space: nowrap;
}
.section_carusel{
    width: 100%;
    position: relative;
}
.slideblock_new:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(41, 16, 0, 0) 71.35%, rgba(41, 16, 0, 0.3) 100%), linear-gradient(180deg, rgba(41, 16, 0, 0.3) 0%, rgba(9, 5, 3, 0) 24.48%), linear-gradient(0deg, rgba(41, 16, 0, 0.5), rgba(41, 16, 0, 0.5));
}
.section{
    position: relative;
    overflow: hidden;
}
.slideblock_new{
    position: relative;
    height: 560px;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}
.big_tex_new{
    font-weight: 800;
    font-size: 48px;
    line-height: 1.25;
    color: #FFFFFF;
    margin-bottom: 36px;
}
.banner_text{
    position: absolute;

    width: 1100px;
    /*width: 96%;*/
    top: 50%;
    left: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
    -webkit-transform:  translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -o-transform:  translateY(-50%) translateX(-50%);
    transform:  translateY(-50%) translateX(-50%);
    z-index: 3;
    text-align: center;
    opacity: 1;
    display: block;
}
.block_of_car{
    position: relative;
}
.fix-course{
    position:absolute;
    top: -60px;
    z-index:20;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    background: #cb100c;
    line-height: 1;
    padding: 10px 20px 8px 20px;
    font-weight: 500;
    white-space: nowrap;
    font-size: 14px;
}
.fix-course::before,.fix-course::after{
    display:block;
    position:absolute;
    width:30px;
    content:'';
    height: 100%;
    top:0;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.fix-course::before{
    left: -27px;
    background-image: url(../img/flag.svg);
    background-position: top right;
}
.fix-course::after{
    right: -27px;
    background-image: url(../img/flag-right.svg);
    background-position: top left;
}
.transparent_style:hover{
    background-color: transparent;
    border-color: #fff;
}
.transparent_style{
    background-color: transparent;
    border-color: #fff;
    margin-left: 31px;
}
.owl-theme .owl-controls{
    position: absolute;
    width: 100%;
    left:0;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform:  translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform:  translateY(-50%);
    transform:  translateY(-50%);
    display: flex;
    z-index: 3;
    height: 0;
}
.owl-theme .owl-controls {
    margin-top: 0;
}
.owl-theme .owl-controls .owl-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
}
.general_carusel_style.owl-theme .owl-controls .owl-nav{
    padding-left: 50px;
    padding-right: 20px;
}
.owl-theme .owl-controls .owl-nav [class*=owl-]{
    width: 48px;
    height: 48px;
    background-color: transparent;
    border-radius: 0;
    display: block;
    position: relative;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.general_carusel_style.owl-theme .owl-controls .owl-nav [class*=owl-]:before{
    background-image: url(../img/arr_black.svg);
}
.owl-theme .owl-controls .owl-nav [class*=owl-]:before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    background-image: url(../img/arr.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.owl-theme .owl-controls .owl-nav .owl-next:before{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.bottom_info, .bottom_info a{
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.bottom_info{
    position: absolute;
    bottom: 22px;
    width: 100%;
    left: 0;
    z-index: 3;
    display: flex;
    padding: 0 60px;
    align-items: center;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0.9;
}
.metro_block:before{
    width: 17px;
    height: 14px;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/metro.svg);
}
.adress_text_new:after{
    opacity: 0;
    background-image: url(../img/adress_text_new_yel.svg);
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.adress_text_new:hover:after{
    opacity: 1;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.adress_text_new:hover:before{
    opacity: 0;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.adress_text_new:before{
    background-image: url(../img/adress_text_new.svg);
    opacity: 1;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.adress_text_new:before,.adress_text_new:after{
    width: 12px;
    height: 16px;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;

}
.metro_block{
    position: relative;
    padding-left: 26px;
}
.adress_text_new{
    position: relative;
    padding-left: 22px;
}
.scroll_icon{
    position: absolute;
    width: 26px;
    height: 26px;
    left: 50%;
    margin-left: -13px;
    /*background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/scroll_icon.svg);*/
    cursor: pointer;
}
.section_one{
    padding-top: 80px;
}
.zaglav_block{
    font-size: 36px;
    line-height: 1.25;
    color: #231F20;
    font-weight: bold;
    margin-bottom: 12px;
}
.left_right_otsts{
    padding-left: 120px;
    padding-right: 120px;
}
.flex_benefit{
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.benefit_big_block{
    text-align: center;
}
.benefit_block{
    width: 31%;
    margin:30px auto 0 auto;
    background: #FFFFFF;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    display: flex;
    padding: 20px 33px;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 176px;
}
.icon_benefit{
    width: 48px;
    height: 48px;
    /*background-size: contain;
    background-repeat: no-repeat;
    background-position: center;*/
    margin-top: 6px;
    flex-shrink: 0;
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text_benefit{
    width: 100%;
}
.benefit_name{
    font-size: 18px;
    line-height: 1.27;
    color: #231F20;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}
.benefit_text{
    font-size: 14px;
    line-height: 1.5;
    color: #231F20;
    opacity: 0.5;
    text-align: left;
}
.right_part{
    width: 55%;
    padding-right: 120px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.left_part{
    width: 45%;
    padding-right: 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    flex-shrink: 0;
    margin-top: 42px;
    position: relative;
}
.flex_two{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.small_zaglav{
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #E7B73D;
    margin-bottom: 12px;
    font-weight: bold;
}
.descript_about ul li:before{
    position: absolute;
    content: '';
    left: 0;
    top: 14px;
    height: 1px;
    width: 15px;
    background-color: #E7B73D;
}
.descript_about ul li{
    padding-left: 25px;
    position: relative;
}
.descript_about ul{
    list-style-type: none;
}
.descript_about p{
    padding-bottom: 10px;
}
.descript_about strong{
    font-weight: 500;
}
.descript_about{
    font-size: 16px;
    line-height: 1.75;
    color: #231F20;
    margin-bottom: 35px;
}
.dark_style:hover{
    /* background-color: transparent;
     color: #772F1A;*/
}
.dark_style:hover:before,.yelow_but:hover:before{
    width: 100%;
}
.dark_style:before{
    background-color: #E7B73D;
}
.yelow_but:before{
    background-color: #772F1A;
}
.dark_style:before,.yelow_but:before{
    left: 0;
    top: 0;
    width: 0;
    height:50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 0;
    z-index: 1;
}
.dark_style span,.yelow_but span{
    z-index: 3;
    position: relative;
}
.dark_style{
    background-color: #772F1A;
    border-color: #772F1A;
    position: relative;
    border: none;
    overflow: hidden;
}
.yelow_but.transparent_style:before{
    background-color: #fff;
}
.yelow_but.transparent_style:hover span{
    color: #000;

}
.yelow_but.transparent_style:after{
    content: '';
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    border-radius: 30px;
}

.yelow_but{
    overflow: hidden;
    border: none;
    position: relative;
}
.left_part div img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.07);
}

.image_one{
    width: 70%;
}
.image_two{
    width: 75%;
    position: absolute;
    right: 60px;
    z-index: 2;
    top:19%;
}
.image_three{
    width:54%;
    z-index: 3;
    left: 140px;
    margin-top: -30px;
    position: relative;
}
.flats_block{
    text-align: center;
}
.zaglav_descript{
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
    color: #828282;
}

.genplan_block_left img{
    width: 100%;
    box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.07);
    border-radius: 0px 10px 10px 0px;
}
.genplan_block_right{
    padding-right: 120px;
}
.genplan_block_left,.genplan_block_right{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.genplan_block_left{
    width: 43%;
    max-width: 800px;
    flex-shrink: 0;
}
.genplan_block_right{
    width: 100%;
}
.genplan_block_left{
    padding-right: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.ipoteca_left{
    padding-right: 40px;
}
.ipoteca_right{
    padding-left: 40px;
    margin-top: 32px;
    margin-bottom: 36px;
}
.ipoteca_right,.ipoteca_left{
    width: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    flex-shrink: 0;
}
.ipoteca_right img{
    width: auto;
}
.dop_right{
    margin-top: 36px;
    padding-left: 96px;

}
.dop_descript{
    opacity: 0.5;
}
.ipoteca_block .descript_about:before{
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 55px;
    height: 2px;
    background-color:#E7B73D ;
}
.ipoteca_block .descript_about{
    padding-left: 76px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.logo_image_one,.logo_image_two{
    width: 100%;
    padding: 24px 37px;
    min-height: 153px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.logo_image_one{
    background: #B3DBFF;
    box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    position: relative;
    z-index: 2;
}
.logo_image_two{
    background: #FFEAB3;
    box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    float: right;
    clear: both;
}
.buttons_block_style{
    display: flex;
    justify-content: center;
}
.general_carusel_style:before{

}
.general_carusel_style:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 298px;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index:1;
}
.general_carusel_style{
    padding-left: 120px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 30px;
    position: relative;
    display: flex;
}
/*.general_carusel_style.two_item_style:before {*/
/*    display: none;*/
/*}*/
/*.general_carusel_style.two_item_style {*/
/*padding-right: 120px;*/
/*    max-width: 1340px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/
.two_item_style .flat_block{
    width: 94%;
    max-width: 505px;
    margin: 0 auto;
}
.two_item_style .flat_item{
    padding-left: 0;
}
.document_item img{
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}
.document_item{
    /*  height: 450px;*/
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery_item{
    width: 500px;
    height: 330px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.carusel_gallery{
    margin-bottom: 36px;
}
.contact_flex{
    margin-top: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.general_flat_block  .owl-stage-outer {
    height: 520px;
}
.map_block{
    width: 100%;
    height: 301px;
    box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}
.contact_zaglav{
    font-size: 18px;
    line-height: 1.28;
    font-weight: bold;
    color: #772F1A;
    margin-bottom: 20px;
}
.contact_descript p,.contact_descript a{
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 8px;
    color: #231F20;
}
.contact_descript a:hover{
    color: #E7B73D;
    cursor: pointer;
}
.contact_info{
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: flex-start;
    width: auto;
    flex-shrink: 0 ;
}
.contact_item{
    /*width: 50%;*/
    padding-left: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.footer_block{
    padding-top: 68px;
    padding-bottom: 40px;
    width: 100%;
    background-color: #291000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.bottom_block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.footer_logo{
    width: 130px;
    height: 62px;
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
}
.royal_hous{
    width: 74px;
    height: 65px;
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(/img/royal_hous.svg);
}
.footer_menu_style{
    margin-top: 28px;
}


.create{
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.all_reserv{
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.32px;
    color: #FFFFFF;
    opacity: 0.5;
}
.our_logo:hover{
    opacity: 1;
}
.our_logo{
    display: block;
    width: 78px;
    height: 18px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(/img/our_logo.svg);
    opacity: 0.5;
}
.soc_set_block{
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform:  translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform:  translateX(-50%) translateY(-50%);
    transform:  translateX(-50%) translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.social{
    width: 24px;
    height: 24px;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    cursor: pointer;
    margin: 0 10px;
}
.social:hover{
    opacity: 1;
}
.telega{
    background-image: url(/img/telega.svg);
}
.tops{
    margin-left:15px;
}
.fb{
    background-image: url(/img/fb.svg);
}
.insta{
    background-image: url(/img/insta.svg);
}
.youtube{
    background-image: url(/img/youtube.svg);
}
.flex_block{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
.contact_ekran{
    width: 100%;
}
.contact_ekran .form-group.for-message{
    width: 100%;
    max-width: 100%;
}
.contact_ekran .form-group{
    width: 30%;
    max-width: 413px;
    margin-bottom: 36px;
}
.form-group{
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 30px;
}

textarea.form-control.form_textarea {
    height: 90px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
}
input.form-control,textarea.form-control {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(35, 31, 32, 0.5);
    height: 60px;
    font-weight: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: 0;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Geometria';
    text-align: center;
}
input.form-control::-webkit-input-placeholder,.form_textarea::-webkit-input-placeholder { color: rgba(35, 31, 32, 0.5);}
input.form-control::-moz-placeholder,.form_textarea::-moz-placeholder           { color: rgba(35, 31, 32, 0.5);}
input.form-control:-moz-placeholder,.form_textarea:-moz-placeholder            {color: rgba(35, 31, 32, 0.5);}
input.form-control:-ms-input-placeholder,.form_textarea:-ms-input-placeholder       {color: rgba(35, 31, 32, 0.5);}

.form-control:-webkit-autofill{
    -webkit-box-shadow: inset 0 0 0 50px #fff !important;
    -webkit-text-fill-color: rgba(35, 31, 32, 0.5) !important;
    color: rgba(35, 31, 32, 0.5) !important;
}
.button-group{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.button-group input.button_style{
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    font-family: 'Geometria';
}
.feedback_block{
    padding-bottom: 80px;
}
.animac_strelka {
    width: 53px;
    height: 53px;
    position: absolute;
    left: 50%;
    top: -18px;
    background-image: url(../img/strelka.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: -230px;
}
.animac_strelka {
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(1,0,0,1);
    animation-duration: 1.5s;
    animation-name: blink_arr;
    -webkit-animation-name: blink_arr;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-animation-duration: 1.5s;
}
@keyframes blink_arr {
    0% {

        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes blink_arr {
    0% {

        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.feed_back_zaglav{
    font-size: 36px;
    line-height: 1.25;
    text-align: center;
    font-weight: bold;
    color: #231F20;
    margin-bottom: 36px;
}
.complectac_block{
    display: none;
}
.complectac_block.active{
    display: block;
    width: 100%;
}
.complectac_block_flex{
    align-items: center;
    justify-content: space-between;
    display: flex;
}
.colum_block{
    width: 30%;
}
.colum_image{
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    margin: 30px 0;
}
.small_block{
    height: 239.58px;
}
.big_block{
    height: 447.92px;
}
.colun_text{
    position: absolute;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 14px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #231F20;
    font-weight: bold;
    bottom: 13px;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    min-width: 143px;
}

.flats_button{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 11;
}
.flats_but{
    height:  40px;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#231F20;
    font-weight: bold;
    letter-spacing:0.05em;
    background: rgba(231, 183, 61, 0.2);
    box-sizing: border-box;
    position: relative;
    border-radius: 30px;
    text-transform: uppercase;
    margin: 0 12px;
    margin-top: 30px;
    padding: 0 32px;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
}
.flats_but:before {
    left: 0;
    top: 0;
    width: 0;
    height: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    content: '';
    position: absolute;
    background-color: #E7B73D;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 0;
    z-index: 1;
}
.flats_but:hover span {
    background-position: 0;
}
.flats_but span,.flats_but:hover span {
    background-size: 200% 100%;
    transition-delay: 0s!important;
    transition: background-position .3s ease,background-size .3s ease;
}
.flats_but span {
    z-index: 3;
    position: relative;
    background-image: linear-gradient(90deg,#fff,#fff 50%,#231F20 0);
    background-position: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    display: block;
}
.flats_but.active span{
    background-image: linear-gradient(90deg,#fff,#fff 50%,#fff 0);
}
.flats_but:hover:before {
    width: 100%;
}
.general_flat_block.active{
    z-index: 2;
    opacity: 1;
    position: relative;
}
.general_flat_block{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.flats_but.active,.flats_but.active:hover{
    color: #FFFFFF;
    background-color: #E7B73D;
    cursor: default;
}
.flats_but:hover{
    background-color: #E7B73D;
    color: #fff;
}
.flats_carousel_block{
    position: relative;
}

.flat_item{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 70px 20px;
}

.flat_block{
    width: 505px;
    /* height: 470px; */
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 5px 25px 35px -0px rgba(0, 0, 0, 0.07);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    padding-top: 65px;
    padding-left: 40px;
    padding-right: 40px;
    transition: var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.flat_block:hover{
    box-shadow: 5px 25px 25px -0px rgb(230, 182, 61, 0.15);
    cursor:pointer;
}
.image_flat{
    width: 100%;
    height: 260px;
    margin: 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 25px;
    z-index: 1;
}
.dop_info_block{
    background: rgba(119, 47, 26, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: absolute;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    height: 70px;
    top: 0;
}
.text_info strong{
    font-weight: bold;
}
.slide_subtext {
    font-size: 21px;
    margin-bottom: 20px;
    color: #e7b73d;
}
.video-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
body .news_panel .video-js.vjs-fluid:not(.vjs-audio-only-mode), body .news_panel video{
    height: 100%;
    width: 100%;
}
.news_panel__image{
    position: relative;
}
.start div{
    line-height: 140%;
    padding:0 10px;
}
.start__after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 230px;
    background-image: url(../img/cake.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index:3;
}
.walkers {
    margin-top:20px;
    text-align: center;
}
.walkers img{
    max-width: 100%;
    border-radius: 10px;
}
.start{
    cursor: pointer;
    position: absolute;
    bottom: 50px;
    z-index: 99;
    text-align: center;
    background: #ce131a;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(255,255,255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-animation: flickerAnimation 1s infinite;
    -moz-animation: flickerAnimation 1s infinite;
    -o-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
}
.text_info{
    font-size: 16px;
    line-height:1.25;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 500;
    max-width: 94%;
    padding: 0 10px;
}
.room_count{
    font-size: 18px;
    line-height: 1.27;
    font-weight: bold;
    text-align: center;
    color: #231F20;
    width: 100%;
}
.squer_block{
    width: 100%;
    text-align: center;
}
.squer_block p strong{
    font-weight: 500;
}
.squer_block p{
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #828282;
}
.squer_block,.fancybox-container .fancy_squer_block{
    font-size: 16px;
    line-height: 1.75;
    color: #828282;
    text-align: center;
    position: relative;
    margin-bottom: 17px;
}
.fancybox-container .image_flat{
    width: 50%;
    margin: 0;
    margin-right: 5%;
    height: 350px;
}
.fancybox-container .squer_block{
    text-align: left;
}
.fancybox-container .flat_item{
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-bottom: 50px;
    height: 100%;}

.type_flat{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.fancy_squer_block{
    display: none;
}
.fancybox-container .flat_block{
    max-width:100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /*padding-top: 90px;*/
}
.fancybox-container .dop_info_block{
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.fancybox-container .room_count{
    text-align: left;
}
.fancybox-container .quick-view-carousel{
    width: 100%;
    min-height: 90%;
}
.fancybox-container .fn_fancybox_image,.fancybox-container .fn_fancybox_flat{
    margin: 0;
    padding: 0;
    height: 100%;
}
.fancybox-container .fancybox-close-small{
    display: none;
}
.fancybox-container .type_flat{
    /*float: left;*/
    width: 30%;
    order: 1;
    display: block;
}
.fancybox-container .type_flat .type_name{
    text-align: left;
    margin-bottom: 15px;
}
.fancybox-container .fn_fancybox_flat {
    height: auto;
    box-shadow: none;
}
.fancybox-container .buttons_flat{
    display: none;
}
.fancybox-container .fancy_squer_block{
    display: block;
    text-align: left;
}
.fancybox-container .fancy_squer_block .buttons_flat{
    display: block;
    position: static;
    margin-top: 20px;
}
.fn_fancybox_image .galery_image{
    top:0;
    height: 100%;
}
.fancybox-slide{
    overflow: auto;
}
sup {
    vertical-align: super;
    font-size: 10px;
}
.zaglav_flat{
    color: #fff;
    position: absolute;
    left: 0;
    right: 58%;
    z-index: 3;
    top: 106px;
}

.plan_butts{
    margin-top: -34px;
    position: relative;
    z-index: 111;
}
.flats_carousel_block .owl-theme .owl-controls {
    margin-top: -35px;
}
.biger_feed{
    font-size: 42px;
    color: #772F1A;
}
.flat_but_style{
    display: flex;
    align-items: center;
    justify-content:flex-start;
    margin-top: 30px;
    padding-bottom: 20px;
}
.complectac_flex{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-left: 40px;
}
.flex_dop_block{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.tab_comlectac.active{
    color: rgba(35, 31, 32, 1);
}
.tab_comlectac:hover{
    color: rgba(35, 31, 32, 1);
}
.tab_comlectac{
    font-size: 14px;
    line-height: 1.28;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(35, 31, 32, 0.5);
    margin: 0 12px;
    cursor: pointer;
}

.menu_icon{
    display: none;
}
.menublock_popup.active{
    transition: var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.menublock_popup.active{
    left: 0;
}

.menublock_popup{
    transition: 400ms linear;
    -webkit-transition: 400ms linear;
    -moz-transition: 400ms linear;
    -o-transition: 400ms linear;
}
.menublock_popup{
    position: fixed;
    top:0;
    bottom:0;
    left:-300px;
    width:230px;
    /*padding:80px 30px 30px 30px;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #291000;
    /*display: none;*/
    z-index:1059;
}
.menublock_popup .menu_style{
    width:170px;
    margin:110px 30px 30px 30px;
}
.menublock_popup .menu_style a{
    margin: 5px 0;
    width: 100%;
}

.popup_style{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    /*background-color: rgba(0, 0, 0, 0.4);*/
    z-index: 9999999999;
}

.local_popup{
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    -webkit-transition: 200ms linear;
    -moz-transition: 200ms linear;
    -ms-transition: 200ms linear;
    -o-transition: 200ms linear;
    transition: 200ms linear;
}
.local_popup.active{
    -webkit-transition: 200ms linear;
    -moz-transition: 200ms linear;
    -ms-transition: 200ms linear;
    -o-transition: 200ms linear;
    transition: 200ms linear;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    /* background-color: rgba(0, 0, 0, 0.4);*/
}
.panel{
    width: 920px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: #fff;
    padding:43px 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}
.blur_block{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    filter: blur(10px);
}
.center_new{
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.popup_groop .animac_strelka{
    margin-left: -152px;
}
.popup_feedback{
    padding-top: 12px;
}
.popup_groop{
    margin-top: 0px;
}
.popup_close:before,.popup_close:after{
    background-color: #828282;
    content: '';
    height: 20px;
    left: 17px;
    position: absolute;
    top: 8px;
    width: 2px;
    -webkit-transition: var(--animat-new);
    -moz-transition: var(--animat-new);
    -ms-transition: var(--animat-new);
    -o-transition: var(--animat-new);
    transition: var(--animat-new);
}
.popup_close:hover:before,
.popup_close:hover:after{
    background-color: #E7B73D;
    -webkit-transition: var(--animat-new);
    -moz-transition: var(--animat-new);
    -ms-transition: var(--animat-new);
    -o-transition: var(--animat-new);
    transition: var(--animat-new);
}
.popup_close:before{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.popup_close:after{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.popup_close:hover:after,.popup_close:hover:before{
    background-color: #828282;
    -webkit-transition: var(--animat-new);
    -moz-transition: var(--animat-new);
    -ms-transition: var(--animat-new);
    -o-transition: var(--animat-new);
    transition: var(--animat-new);
}
.popup_close{
    position: absolute;
    top: 21px;
    right: 25px;
    width: 36px;
    height: 36px;
    cursor: pointer;
}
.blur_class{
    filter: blur(10px);
    /*position: fixed;*/
}
.section_one {
    position: relative;
}
.benefit_big_block:before{
    content: '';
    position: absolute;
    /*width: 478px;*/
    height:2022px;
    background-image: url(../img/benefit_before.svg);
    background-size:  contain;
    background-repeat: no-repeat;
    background-position: left top;
    opacity: 0.35;
    top: -120px;
    /*bottom: -400px;*/
    right: 64%;
    left: 0;
    z-index: -1;
}
.benefit_big_block:after{
    content: '';
    position: absolute;
    /*width: 672px;*/
    height: 2526px;
    background-image: url(../img/benefit_after.svg);
    background-size:  contain;
    background-repeat: no-repeat;
    background-position: right top;
    opacity: 0.35;
    top: 255px;
    right: 0;
    left: 50%;
    z-index: -1;
}
.flats_carousel_block:after{
    content: '';
    position: absolute;
    /*width: 672px;*/
    height: 2526px;
    background-image: url(../img/flats_after.svg);
    background-size:  contain;
    background-repeat: no-repeat;
    background-position: left top;
    opacity: 0.35;
    top:50px;
    right: 50%;
    left:0;
    z-index: -1;
}
.komplectacia_block:before{
    content: '';
    position: absolute;
    /*width: 672px;*/
    height: 2526px;
    background-image: url(../img/komplectacia_before.svg);
    background-size:  contain;
    background-repeat: no-repeat;
    background-position: right top;
    opacity: 0.35;
    top: 29%;
    left: 52%;
    right: 0;
    z-index: -1;
}
.docs_block:before{
    content: '';
    position: absolute;
    /*width: 672px;*/
    height: 2526px;
    background-image: url(../img/docs_block_before.svg);
    background-size:  contain;
    background-repeat: no-repeat;
    background-position: left top;
    opacity: 0.35;
    top: -279px;
    left: 0;
    right: 65%;
    z-index: -1;
}
.gallery_block:before{
    content: '';
    position: absolute;
    /*width: 672px;*/
    height: 2000px;
    background-image: url(../img/gallery_block_before.svg);
    background-size:  contain;
    background-repeat: no-repeat;
    background-position: right top;
    opacity: 0.35;
    top: 85%;
    right: 0;
    left: 65%;
    z-index: -1;
}
.icon_benefit svg {
    width: 48px;
    height: 48px;
}
.left_part_compl img{
    max-width: 100%;
}
.left_part_compl{
    width: 50%;
    padding-top: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.right_part_compl{
    width: 40%;
    padding-top: 20px;
}
.bullets{
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.namber_bull{
    flex-shrink: 0;
    margin-right: 13px;
}
.bullets.active{
    color: #552100;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.bullets.active span{
    background: #772F1A;
    box-shadow: 0px 18px 35px rgba(0, 0, 0, 0.07);
    color: #fff;
    border: 1px solid #772F1A;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.bullets span,.number_naruzh{
    background: transparent;
    font-size: 18px;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    text-align: center;
    color: #231F20;
    border: 1px solid #C4C4C4;
    font-weight: bold;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
@keyframes flatBall {
    0%   { transform:rotate(-5deg); }
    50%  { transform:rotate(5deg); }
    100% { transform:rotate(-5deg); }
}
@-o-keyframes flatBall{
    0%   { transform:rotate(-5deg); }
    50%  { transform:rotate(5deg); }
    100% { transform:rotate(-5deg); }
}
@-moz-keyframes flatBall{
    0%   { transform:rotate(-5deg); }
    50%  { transform:rotate(5deg); }
    100% { transform:rotate(-5deg); }
}
@-webkit-keyframes flatBall{
    0%   { transform:rotate(-5deg); }
    50%  { transform:rotate(5deg); }
    100% { transform:rotate(-5deg); }
}
.flat-ball{
    position: absolute;
    top: 62px;
    left: 10px;
    -webkit-animation: flatBall 3s infinite;
    -moz-animation: flatBall 3s infinite;
    -o-animation: flatBall 3s infinite;
    animation: flatBall 3s infinite;
    z-index: 10;
    width: 100px;
}
.flat-ball img{
    width: 100%;
    height: auto;
}
.number_naruzh{
    position: absolute;
    background: #E7B73D;
    color: #fff;
    border: 1px solid #E7B73D;
    margin-right: 2px;
    margin-left: 10px;

}
.number_naruzh:hover{
    background: #772F1A;
    box-shadow: 0px 18px 35px rgba(0, 0, 0, 0.07);
    color: #fff;
    border: 1px solid #772F1A;
    cursor: pointer;
}
.one_naruzh{
    right: 0;
    top: 15%;
}
.two_naruzh{
    right: 8%;
    top: 50%;
}
.three_naruzh{
    right: 35%;
    top: 58%;
}
.four_naruzh{
    right: 73%;
    top: 67%;
}
.five_naruzh{
    left: 10%;
    top: 26%;
}

.complectac_item:hover .image_complectac{
    opacity: 1;
    cursor: pointer;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.complectac_item:hover .complectac_name,.complectac_item:hover .comlectact_descript {
    color: #fff;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.complectac_item{
    width: 47%;
    min-height: 0px;
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF), url(.jpg), #C4C4C4;
    box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    /*max-width: 503px;*/
    margin-top: 60px;
    padding: 22px 32px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.image_complectac:before{
    background: linear-gradient(0deg, rgba(35, 31, 32, 0.6), rgba(35, 31, 32, 0.6)), #C4C4C4;
    box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.07);
}
.main_block_compectac{
    position: relative;
    z-index: 3;
}
.image_complectac:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 10px;
    background-color: rgba(35, 31, 32, 0.45);
}
.image_complectac{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.complectac_name{
    text-align: center;
    padding: 0;
    padding-top: 18px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.complectac_icon{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.comlectact_descript{
    font-size: 16px;
    line-height: 1.75;
    color: #828282;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.vnutr_flex{
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.genplan_metka:before{
    content: '';
    position: absolute;
    left: 9%;
    top: -14px;
    width: 19px;
    height: 14px;
    background-image: url(../img/count.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    opacity: 0.75;
}
.genplan_metka{
    position: absolute;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    text-align: center;
    /*justify-content: center;*/
    color: #231F20;
    min-width: 90px;
    max-width: 100px;
    padding: 0 12px;
    z-index: 1;
    min-height: 30px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 16px;
}
.two_metka{
    right: 24%;
    top: 7%;
}
.one_metka{
    right: 42%;
    top: 10%;
}
.three_metka{
    right: 50%;
    top: 16%;
}
.four_metka{
    right: 30%;
    top: 16%;
}
.five_metka {
    right:43%;
    top: 24%;
}
.six_metka{
    right: 18%;
    top: 24%;
}
.seven_metka{
    left: 29%;
    top: 30%;
}
.eight_metka{
    left: 54%;
    top: 29%;
}
.nine_metka{
    left: 34%;
    top: 47%;
}
.ten_metka{
    left:53%;
    top: 46%;
}
.six_metka.genplan_metka{
    margin-right: 20px;
}
.elev_metka.genplan_metka{
    margin-right: 40px;
}
.elev_metka{
    right: 8%;
    top: 44%;
}
.twel_metka{
    left:16%;
    top: 55%;
}
.thurd_metka{
    left:33%;
    bottom: 14%;
}
.fortyn_metka{
    left: 53%;
    bottom: 21%;
}
.fiftin_metka{
    left: 70%;
    bottom: 25%;
}
.genplan_block_left{
    position: relative;
}
.sixteen_metka:after{
    content: '';
    position: absolute;
    left: -26px;
    top: -80px;
    margin-top: -7px;
    background-image: url(../img/arr_road.svg);
    background-position: left   center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 96px;
    height: 96px;
    transform: rotate(-6deg);
}
.mobile_genplan{
    display: none;
}
.sixteen_metka:before{
    content: '';
    position: absolute;
    left: -26px;
    top: 50%;
    margin-top: -7px;
    background-image: url(../img/vas_metro.svg);
    background-position: left   center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 17px;
    height: 14px;
}
.sixteen_metka{
    position: absolute;
    bottom: 5%;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: bold;
    color: #FFFFFF;
    opacity: 0.9;
    right: 5%;
    margin-right: 40px;
}
.mask_animac {
    position: absolute;
    left: 0;
    z-index: 10;
    top: 0;
    bottom: 0;
    background-color: #291000;
    opacity: 0;
    display: none;
}
.center .mask_animac {
    animation-timing-function: ease;
    animation-duration:1s;
    -webkit-animation-name: image_animac;
    animation-name: image_animac;
    -webkit-animation-timing-function: ease;
    -webkit-animation-duration:1s;
    display: none;
}


@keyframes image_animac {
    0% {
        left:0;
        right:90%;
        opacity: 1;
    }
    25% {
        left:0;
        right:40%;
    }

    100% {
        left:100%;
        right:0;
        opacity: 1;
    }
}
@-webkit-keyframes image_animac {
    0% {
        left:0;
        right:90%;
        opacity: 1;
    }
    25% {
        left:0;
        right:40%;
    }

    100% {
        left:100%;
        right:0;
        opacity: 1;
    }
}

.slideblock_new:after{
    position: absolute;
    content: '';
    right:0;
    top:0;
    bottom:0;
    background-color: #fff;
    z-index: 5;
    display: none;
}
.center .slideblock_new:after{
    animation-timing-function: ease;
    animation-duration:1s;
    -webkit-animation-name: bef_anim;
    animation-name: bef_anim;
    -webkit-animation-timing-function: ease;
    -webkit-animation-duration:1s;
    display: none;
}
@keyframes bef_anim {
    0% {
        left:0;
    }
    100% {
        left:100%;
    }
}
@-webkit-keyframes bef_anim {
    0% {
        left:0;
        width:100%;
    }
    100% {
        left:100%;
        width:0;
    }
}
.scroll-down.svg,.scroll-down path{
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.scroll-down.svg:hover .scroller{
    fill: #E7B73D;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.scroll-down:hover path{
    fill: #E7B73D;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.owl-theme .owl-controls .owl-nav [class*=owl-]{
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{
    opacity: 0.5;
    transition:var(--animat);
    -webkit-transition: var(--animat);
    -moz-transition: var(--animat);
    -o-transition: var(--animat);
}
.bottom_info a:hover{
    color: #E7B73D;
}
.fancybox-slide .document_item img{
    max-height: 530px;
}
.fancybox-slide .document_item{
    width: 100%;
    justify-content: center;
    max-height: 100%;
    margin: 0!important;
    padding: 0!important;
    text-align: center;
}
.panel_new img{
    max-width: 96%;
    max-height: 96%;
}
.panel_new.active{
    -webkit-transition: 200ms ease-in-out;
    -moz-transition: 200ms ease-in-out;
    -ms-transition: 200ms ease-in-out;
    -o-transition: 200ms ease-in-out;
    transition: 200ms ease-in-out;
}
.panel_new{
    opacity: 1;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    /* padding: 43px 100px;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*box-shadow: 0px 25px 70px rgba(0, 0, 0, 0.07);
    border-radius: 10px;*/
    -webkit-transition: 200ms ease-in-out;
    -moz-transition: 200ms ease-in-out;
    -ms-transition: 200ms ease-in-out;
    -o-transition: 200ms ease-in-out;
    transition: 200ms ease-in-out;
}
.detail_butt{
    margin-left: 15px;
}
.text_plashka{
    position: absolute;
    z-index: 11;
    left: -1px;
    bottom: 70px;
    padding: 20px 30px;
    background-color: #E78F3D;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 17px;
    line-height: 1.25;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0px 3px 0px 0 rgba(252, 252, 251, 0.3);
}
.small_font{
    font-size: 12px;
}

.top_otst{
    margin-top: 20px;
}
img.desctop_img{
    display: block;
}
img.mob_img{
    display: none;
}
.sale_popup img{
    max-width: 96%;
    max-height: 100%;
}
.sale_popup{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 111111;
}
.big_tex_new sup{
    font-size: 20px;
}
.back_block{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: #E7B73D;
    box-shadow: 1px 1px 8px rgba(0,0,0,.25);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    justify-content: center;
    letter-spacing: 0.05em;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
}
.fixed_online_button{
    position: absolute;
    top: 17%;
    right: 5%;
    z-index: 999999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(1,0,0,1);
    animation-duration: 1.5s;
    animation-name: blink_fix;
    -webkit-animation-name: blink_fix;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-animation-duration: 1.5s;
}
@keyframes blink_fix {
    0% {

        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes blink_fix {
    0% {

        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
.form-group select option {
    width: 100%;
    text-align: center;
}
.form-group select{
    font-size: 16px;
    line-height: 1.75;
    color: rgba(35, 31, 32, 0.5);
    height: 60px;
    font-weight: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: 0;
    margin: 0;
    padding: 0 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Geometria';

}
.online_ofice_popup .form-group select, .online_ofice_popup .form-group input{
    text-align: left;
    padding: 0 35px;
}
.online_ofice_popup .panel {
    max-width: 700px;
    padding-left: 70px;
    padding-right: 70px;
}
.online_ofice_popup .small_zaglav {
    text-transform: none;
}
.online_ofice_popup .popup_feedback {
    max-width: 500px;
    margin: 0 auto;
}
.online_ofice_popup .form-group select{
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 95% 50%;
    background-image: url(../img/triangle.svg);
}
.logo_blockru .logo_ru{
    display: block;
}
.logo_blockru .logo_ua{
    display: none;
}
.logo_blockua .logo_ru{
    display: none;
}
.logo_blockua .logo_ua{
    display: block;
}
.lang_block{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
}
.lang_item{
    display: inline-block;
    background-image: linear-gradient(90deg,#E7B73D,#E7B73D 50%,#fff 0);
    background-position: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    font-weight: 500;
    text-align: left;
    position: relative;
    margin-right:7px;
    color: #FFFFFF;
    white-space: nowrap;
    cursor: pointer;
    background-size: 200% 100%;
    transition-delay: 0s!important;
    transition: background-position .5s,background-size .5s;
}
.lang_item.active:before{
    content: ' ';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -5px;
}
.lang_item.active{
    opacity: 1;
    position: relative;
}
@keyframes balls {
    0%   { top:0; }
    50%  { top:-10px; }
    100% { top:0; }
}
@-o-keyframes balls{
    0%   { top:0; }
    50%  { top:-10px; }
    100% { top:0; }
}
@-moz-keyframes balls{
    0%   { top:0; }
    50%  { top:-10px; }
    100% { top:0; }
}
@-webkit-keyframes balls{
    0%   { top:0; }
    50%  { top:-10px; }
    100% { top:0; }
}
.ny_balls{
    position: absolute;
    top:0;
    left:0;
    z-index: 1;
    width: 170px;
    height: 600px;
    background-size: contain;
    background-position: center top;
    background-image: url(../img/balls-ny-33.png);
    background-repeat: no-repeat;
    -webkit-animation: balls 3s infinite;
    -moz-animation: balls 3s infinite;
    -o-animation: balls 3s infinite;
    animation: balls 3s infinite;
}
.nbu {
    position: absolute;
    right: 0;
    top: 18%;
    z-index: 100;
    background: #ce151a;
    color: white;
    padding: 10px 20px;
    line-height: 140%;
    border-radius: 20px 0 0 20px;
    box-shadow: 0px 1px 0 8px rgb(255 255 255 / 10%);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
}
.fancybox-slide .flat-gift{
    padding: 10px 0 10px 0;
    line-height: 16px;
}
.fancybox-slide .flat-gift img{
    height:24px;
}
.menublock_popup .lang_mob .lang_item{
    margin-left: 0;
    margin-right: 15px;
    width: auto;
}
.menublock_popup .lang_mob{
    margin-top: 10px;
    justify-content: flex-start;
}
.lazyl{
    background-image: none!important;
}
.fixed_online_button.fix{
    background:#ce131a;
    top: 22%;
    border-radius: 10px 0 0 10px;
    animation: none;
    right: 0;
    padding: 15px;
    cursor: auto;
}
.fixed_online_button.fix .back_block{
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-size: 15px;
}
.plashka_info{
    position: absolute;
    left: 10px;
    background: #ce131a;
    top: 17%;
    border-radius:10px;
    padding: 15px;
    cursor: auto;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    -webkit-animation-name: pulse-black ;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-animation-duration: 1.8s;
    z-index: 10;
}
@keyframes pulse-black {
    0% {

        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
.fancybox-container{
    z-index: 99999999!important;
}
.timer{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 60px;
    z-index: 1000;
    color: white;
    width: 100%;
}
.timer_text{
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: bold;
    color:#ce131a ;
    font-size: 18px;
    padding: 0 0 10px 0;
    display: block;
    text-align: center;
    /*animation-iteration-count: infinite;*/
    /*animation-timing-function: cubic-bezier(1,0,0,1);*/
    /*animation-duration: 1.5s;*/
    /*animation-name: blink_fix;*/
    /*-webkit-animation-name: blink_fix;*/
    /*-webkit-animation-iteration-count: infinite;*/
    /*-webkit-animation-timing-function: linear;*/
    /*-webkit-animation-duration: 5s;*/
}
.sale_popup.fn_fb_event_popup {
    z-index: 11111111;
}
.fb_img img{
    max-width: 100%;
}
.fb_img{
    display: block;
    max-width: 96%;
}
.walkers-fix{
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
.flat-3d{
    position: absolute;
    right: 10px;
    top: 17%;
    background-color: #E7B73D;
    box-shadow: 0px 10px 30px rgb(119 47 26 / 30%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 40px;
    padding: 0 19px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
}
.popup_3d iframe{
    height: 90vh;
    width: 100%;
}
.popup_3d .panel{
    width: 100%;
    padding: 0 35px;
    box-shadow: none;
    background: transparent;
}
.popup_3d .popup_close{
    right: 10px;
    top: -40px;
}
.flat-heart{
    max-width: 35px;
    position: absolute;
    left: -18px;
    top: -1px;
    z-index: 100;
    transform: rotate(-20deg);
}
.flat-heart img{
    width: 100%;
}
.counter_bg .dark_style{
    background-color: rgba(255, 255, 255, 0.62);
    color:#772F1A;
    border-color: rgba(255, 255, 255, 0.62);
}
.counter_bg .dark_style:before{
    background-color: #f1ce71;
}
.sale_flat {
    position: absolute;
    left: 16px;
    width: 60px;
    height: 60px;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-transform: uppercase;
    top: 80px;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 1px;
    background-image: url(../img/sale_flat.svg);
    background-size: contain;
    background-position: center center;
    transform: rotate(-10deg);
}

.gift_top svg {
    width:100%;
    height:auto;
}

.start_gift {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -55px;
    z-index: 10;
    left: 50%;
    margin-left: -50px;
}
.start_gift svg{
    width:100%;
    height:auto;
}

.gift_top {
    top: 90px;
    left: 10px;
    width: 92px;
    height: 100%;
    margin-left: 10px;
    display: flex;
}
.nbu .nbu {
    top: 75px;
}

.nbu{
    transition-duration: .3s;
    cursor: pointer;
}
.nbu:hover{
    opacity:.7;
}
