/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}







p,
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    padding: 0;
    font-weight: 400;
}
html{
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*{outline:none;}
*,
*::before,
*::after{
    box-sizing: inherit;
}
body{
    overflow-x: hidden;
    font-family: 'Manrope', sans-serif;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.container{
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}
.fancybox-close-small{
    color: #fff !important;
}
.whell_link{
    position: fixed;
    left: 30px;
    bottom: 80px;
    height: 108px;
    width: 98px;
    display: flex;
    z-index: 9;
    animation: wheelAnim 1.2s infinite;
}
.whell_link img{
    width: 100%;
    height: 100%;
}
@keyframes wheelAnim{
    0%{
        transform: rotate(15deg);
    }
    50%{
        transform: rotate(-15deg);  
    }
    100%{
        transform: rotate(15deg);
    }
}
.btn{
    border-radius: 131px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF891D;
    box-shadow: 0px 6px 20px rgba(255, 137, 29, 0.5);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    line-height: 22px; 
    animation: btnAnim 1s ease infinite;
    position: relative;
}
.aside{
    position: fixed;
    right: -15px;
    bottom: 50px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: 127px;
    transition: all 0.3s;
}
.aside.hide{
    right: -150px;
}
.aside_item{
    border-radius: 10px;
    background: #005ABE;
    margin-bottom: 5px;
    padding: 20px 35px 12px 20px;
    text-align: center;
    font-size: 12px;
    text-align: center;
    color: #FFFFFF;
    line-height: 13px;
    animation: btnAnim2 1s ease infinite;
}
@keyframes btnAnim {
    0% {
        box-shadow: 0 0 0 0 rgb(255 137 29 / 80%);
    }
    
    100% {
        box-shadow: 0 0 0 15px rgb(255 137 29 / 0%);
    }
}
@keyframes btnAnim2 {
    0% {
        box-shadow: 0 0 0 0 rgb(0 90 190 / 80%);
    }
    
    100% {
        box-shadow: 0 0 0 15px rgb(0 90 190 / 0%);
    }
}
.aside_hide{
    background: #005ABE;
    border-radius: 5px;
    width: 27px;
    height: 27px;
    margin-left: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
    position: relative;
}
.aside_hide img{
    display: none;
}
.aside_hide::before{
    position: absolute;
    content: "";
    width: 18px;
    height: 1px;
    transform:translate(50%,-50%) rotate(-45deg);
    background-color: #fff;
    top: 50%;
    right: 50%;
}
.aside_hide::after{
    position: absolute;
    content: "";
    height: 18px;
    width: 1px;
 
    background-color: #fff;
    top: 50%;
    right: 50%;
    transform:translate(50%,-50%) rotate(-45deg);
}
.aside_hide.hide{
    margin-left: -70px;
}
.aside_hide.hide img{
    display: flex;
    transform: rotate(180deg);
}
.aside_hide.hide::after,
.aside_hide.hide::before{
    display: none;
}
.aside_item img{
    margin-bottom: 10px;
}
.header{
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 10;
}
.header_wrapper{
    display: flex;
    justify-content: space-between;
    padding: 28px 0;
}
.header_left{
    display: flex;
    align-items: center;
}
.header_logos{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 23px;
}
.header_logo{
    display: flex;
    margin-bottom: 9px;
    width: 209px;
}
.header_logo img{
    width: 100%;
    height: auto;
}
.header_group{
    display: flex;
}
.header_text{
    border-left: 1px solid rgba(95, 95, 95, 0.3);
    padding-left: 22px;
    font-weight: 800;
    font-size: 13px;
    color: #000000;
    line-height: 18px;
    width: 340px;
}
.header_right{
    display: flex;
    align-items: center;
}
.header_link{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 40px;
}
.header_time{
    line-height: 18px;
    color: #000000;
    font-size: 12px;
    position: relative;
    padding-left: 14px;

}
.header_time::before{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00B35C;
    left: 0;
    top: 5px;
}
.header_time span{
    font-weight: 800;
}
.header_number{
    font-weight: 800;
    font-size: 20px;
    color: #000000;
    line-height: 27px;
    transition: all 0.3s;
}
.header_number:hover{
    color: #00B35C;
}
.header_adres{
    width: 225px;
    font-size: 12px;
    line-height: 18px;
    color: #000000;
    margin-right: 60px;
    padding-left: 30px;
    position: relative;
}
.header_adres::before{
    position: absolute;
    content: "";
    background-image: url(../img/adres.svg);
    background-size: cover;
    width: 18px;
    height: 26px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header_adres span{
    font-weight: 800;
}
.header_messages-title{
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 14px;
    position: relative;
}
.header_messages-title::before{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00B35C;
    left: 0;
    top: 5px;
}
.header_messages-title span{
    font-weight: 800;
}
.header_messages-items{
    display: flex;
    width: 186px;
    background: #1DC875;
    border-radius: 50px;
    height: 37px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 16px;
    padding-right: 24px;
    position: relative;
}
.header_messages-items::before{
    position: absolute;
    content: "";
    background-image: url(../img/whats_bef.svg);
    background-size: cover;
    width: 22px;
    height: 22px;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
}
.main{
    position: relative;
}
.main_img{
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
}
.main .container{
    position: relative;
}
.main_wrapper{
    display: flex;
    justify-content: space-between;
    padding: 164px 0 184px;
}
.main_subtitle{
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 28px;
    font-size: 30px;
}
.main_subtitle span{
    color: #FF891D;
}
.main h1{
    font-size: 60px;
    color: #000000;
    line-height: 70px;
    font-weight: 700;
    margin-bottom: 14px;
}
.main_desc{
    font-weight: 600;
    font-size: 30px;
    color: #000000;
    margin-bottom: 45px;
    max-width: 430px;
    line-height: 40px;
}
.main_inner{
    margin-bottom: 50px;
}
.main_text{
    width: 320px;
    font-size: 22px;
    line-height: 30px;
    color: #fff;
    margin-right: 12px;
    padding-left: 22px;
    border-left: 2px solid #0079FF;
    margin-bottom: 28px;
}
.main_text:last-child{
    margin-bottom: 0;
}
.main_text span{
    font-weight: 800;
}
.main_item {
    font-size: 18px;
    color: #000000;
    line-height: 22px;
    margin-bottom: 24px;
    padding-left: 36px;
    position: relative;
}
.main_item::before{
    position: absolute;
    content: "";
    background-image: url(../img/main_item.svg);
    background-size: cover;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
}
.main_item span{
    font-weight: 800;
}
.main_item:last-child{
    margin-bottom: 0;
}
.main_items{
    margin-bottom: 50px;
}
.main_btn{
    height: 82px;
    width: 355px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.main_btn::before{
    position: absolute;
    content: "";
    background-image: url(../img/calendar.svg);
    background-size: cover;
    bottom: 0;
    left: 0;
    width: 83px;
    height: 77px;
    z-index: -1;
}


.advantage_wrapper{
    transform: translateY(-100px);
    background: #1F65B3;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    position: relative;
    padding: 26px 88px 58px;
}
.advantage_item{
    position: relative;
}
.advantage_item-title{
    line-height: 55px;
    font-size: 40px;
    color: #fff;
}
.advantage_item-title span{
    font-weight: 800;
    font-size: 80px;
    color: #fff;
    line-height: 1;
}
.advantage_item-text{
    font-weight: 500;
    line-height: 22px; 
    color: #fff;
    font-size: 16px;
}
.quiz{
    margin-bottom: 125px;
}
.quiz_wrapper{
    background-image: url(../img/quiz.jpg);
    background-size: cover;
    border-radius: 30px;
    padding: 90px 70px 165px;
    position: relative;
}
.quiz_title{
    font-size: 40px;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 55px;
    width: 570px;
}
.quiz_title span{
    font-weight: 800;
}
.quiz_inner{
    display: flex;
    align-items: center;
    padding-left: 70px;
}
.quiz_text{
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 0.05em;
    color: #FF891D;
    margin-right: 45px;
    line-height: 41px;
}
.quiz_btn{
    height: 82px;
    width: 294px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.quiz_btn::before{
    position: absolute;
    content: "";
    background-image: url(../img/calendar.svg);
    background-size: cover;
    bottom: 0;
    left: 0;
    width: 83px;
    height: 77px;
    z-index: -1;
}
.quiz_img{
    position: absolute;
    bottom: -65px;
    display: flex;
    left: 96px;
}

.about{
    border-radius: 30px;
    margin-bottom: 100px;
    background: #F2F2F2;
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}
.about_wrapper{
    display: flex;
    justify-content: flex-end;
}
.about_img{
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    height: 100%;
    width: 38%;
    background-size: cover;
    background-position: right;
    background-image: url(../img/about_img.jpg);
}
.about_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
.about_inner{
    width: 770px;
    justify-content: space-between;
    display: flex;
    align-items: flex-end;

}
.about_info{
    width: 470px;
}
.about_title{
    font-size: 40px;
    color: #000000;
    line-height: 50px;
    margin-bottom: 58px;
}
.about_title span{
    font-weight: 800;
}
.about_text{
    font-size: 18px;
    color: #000000;
    line-height: 29px;
    margin-bottom: 25px;
}
.about_text span{
    font-weight: 800;
}
.about_text:last-child{
    margin-bottom: 0;
}
.about_item{
    margin-bottom: 55px;
    padding-left: 52px;
    position: relative;
    width: 265px;
}
.about_item::before{
    position: absolute;
    content: "";
    background-image: url(../img/about_item.svg);
    background-size: cover;
    width: 29px;
    height: 29px;
    left: 0;
    top: 22px;
}
.about_item-title{
    font-weight: 800;
    color: #0052AC;
    font-size: 60px;
}
.about_item-title span{
    font-weight: 400;
    font-size: 30px;
    color: #000000;
    line-height: 41px;
}
.about_item-text{
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    line-height: 22px;
}

.color{
    margin-bottom: 117px;
}
.color_wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 65px;
}
.color_info{
    width: 505px;
}
.color_title{
    line-height: 50px;
    color: #000000;
    font-size: 40px;
    margin-bottom: 40px;
}
.color_title span{
    font-weight: 800; 
}
.color_subtitle{
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    line-height: 25px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.color_subtitle span{
    width: 44px;
    background: #0052AC;
    height: 44px;
    margin-right: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 25px;
}
.color_type-tabs{
    display: flex;
    margin-bottom: 30px;
}
.color_type-tab{
    background: #F4F4F4;
    border: 1px solid #CDCDCD;
    width: 116px;
    border-radius: 70px;
    height: 64px;
    margin-right: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.color_type-tab img{
    max-width: 100%;
    max-height: 100%;
}
.color_type-tab.active{
    border: 1px solid #0052AC;
}
.color_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.color_item{
    border: 1px solid #B6B6B6;
    border-radius: 70px;
    width: 116px;
    height: 64px;
    margin-bottom: 15px;
    cursor: pointer;
}
.color_item.active{
    border: 1px solid #0052AC;
}
.color_img-wrapper{
    width: 640px;
    height: 511.14px;
    display: flex;
    background-image: url(../img/color_img-wrapper.jpg);
    background-size: cover;
    background-position: center;
    padding: 127px 167px 113px 173px;
    border-radius: 30px;
    overflow: hidden;
}
.color_img{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: all 0.3s;
}
.color_content{
    display: none;
}
.color_content.active{
    display: block;
}
.color_inner{
    display: flex;
    justify-content: space-between;
    padding: 25px 50px 30px 55px;
    filter: drop-shadow(0px 7px 34px rgba(0, 69, 146, 0.6));
    border-radius: 30px;
    background-image: url(../img/color_form.jpg);
    background-position: center;
    background-size: cover;
    align-items: center;
    position: relative;
}
.color_inner-number{
    position: absolute;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #FFFFFF;
    width: 44px;
    background: #0052AC;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -19px;
    left: 0;
}
.color_inner-number::before{
    position: absolute;
    content: "";
    width: 58px;
    background: rgba(0, 69, 146, 0.6);
    filter: blur(25px);
    height: 58px;
    z-index: -1;
    top: 0;
    right: 50%;
    transform: translateX(50%);
}
.color_text{
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 31px;
    max-width: 360px;
}
.color_text span{
    font-weight: 400;
}
.color_person{
    width: 155px;
}
.color_person-img{
    height: 123px;
    width: 123px;
    margin: 0 auto 6px;
    overflow: hidden;
    border-radius: 50%;
}
.color_person-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.color_form{
    width: 580px;
}
.color_person-title{
    font-weight: 800;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    position: relative;
}
.color_person-title::before{
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0052AC;
    left: -15px;
    top: 6px;
}
.color_person-text{
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
}
.color_form .jb_title{
    display: none;
}
.color_form  label.jbForCheckbox{
    width: 100%;
    text-align: right;
}
.color_form .jb_form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.color_form-inp{
    height: 71.35px;
    width: 278.44px;
    padding-left: 27px;
    border-radius: 110px;
    border: none;
    background: #F4F4F4;
}
.color_form-btn{
    width: 281px;
    height: 71px;
    cursor: pointer;
    border:  none;
    z-index: 1;
}
.jbForm input[type=submit]{
    cursor: pointer;
}
.color_form-ok{
    width: 100%;
    text-align: right;
    font-size: 12px;
    color: #B6B6B6;
    line-height: 16px;
    margin-top: 20px;
}

.drivers{
    padding: 80px 0 105px;
    border-radius: 30px;
    background: #F2F2F2;
}
.drivers_title{
    font-size: 40px;
    color: #000000;
    margin-bottom: 35px;
    line-height: 50px;
}
.drivers_title span{
    font-weight: 800;
}
.drivers_wrapper{
    display: flex;
    justify-content: space-between;
}
.drivers_item{
    width: 24%;
    border-radius: 30px;
    padding: 40px 30px;
    background-size: cover;
}
.drivers_item-img{
    width: 100%;
    height: 205px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.drivers_item-img img{
    max-width: 100%;
    max-height: 100%;
}
.drivers_item-title{
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 25px;
}
.drivers_item-subtitle{
    font-weight: 800;
    font-size: 18px;
    color: #0052AC;
    margin-bottom: 16px;
    line-height: 25px;
    padding-left: 15px;
    position: relative;
}
.drivers_item-subtitle::before{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0052AC;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.drivers_item-text{
    line-height: 19px;
    font-size: 14px;
}
.drivers_item:nth-child(2n){
    color: #fff;
}
.drivers_item:nth-child(2n) .drivers_item-subtitle{
    color: #fff;
}
.drivers_item:nth-child(2n) .drivers_item-subtitle::before{
    background: #fff;
}
.configuration{
    padding: 85px 0 90px;
    position: relative;
    overflow: hidden;
}
.configuration::before{
    position: absolute;
    content: "";
    background-image: url(../img/configuration_bef.png);
    background-size: cover;
    height: 293px;
    width: 485px;
    top: 310px;
    left: 18px;
}
.configuration_wrapper{
    display: flex;
    justify-content: space-between;
}
.configuration_info{
    min-width: 350px;
    margin-right: 90px;
}
.configuration_title{
    font-weight: 800;
    font-size: 40px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 50px;
}
.configuration_text{
    font-size: 20px;
    line-height: 27px;
    color: #000000;
}
.configuration_text span{
    font-weight: 800;
    display: block;
}
.configuration_slider{
    width: 1330px;
}
.configuration_slide{
    margin-right: 15px;
    width: 367px;
    height: initial;
    margin-top: 15px;
}
.configuration_slide.slick-current {
    margin-top: 0;
    width: 367px;
}
.configuration_slide.slick-current  ~ .configuration_slide{
    width: 305px;
}
.configuration_slide.slick-current .configuration_slide-img{
    height: 275px;
}
.configuration_slide-img{
    height: 229px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
   
}
.configuration_slide-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.configuration_slide-text{
    line-height: 22px;
    font-size: 16px;
}
.configuration_slider .slick-arrow{
    position: absolute;
    top: 300px;
    font-size: 0;
    background: none;
    background-size: cover;
    border: none;
    cursor: pointer;
    z-index: 1;
    width: 31px;
    height: 16px;
    transition: all 0.3s;
}
.configuration_slider .slick-track{
    display: flex;
}
.configuration_slider .slick-prev{
    background-image: url(../img/arrow_left.svg);
    left: -190px;
}
.configuration_slider .slick-prev.slick-disabled{
    background-image: url(../img/arrow_left2.svg); 
}
.configuration_slider .slick-next{
    background-image: url(../img/arrow_right.svg);
    left: -80px;
}
.configuration_slider-counter{
    position: absolute;
    left: 300px;
    top: 295px;
    display: flex;
}
.configuration_wrapper{
    position: relative;
}
.configuration_slider-current{
    font-size: 18px;
    color: #0052AC;
    line-height: 25px;
}
.configuration_slider-total{
    font-size: 18px;
    color: #ACACAC;
    line-height: 25px;
}

.step{
    padding: 95px 0 40px;
    background-image: url(../img/step.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.step::before{
    position: absolute;
    content: '';
    height: 100%;
    width: 60%;
    left: 0;
    top: 0;
    z-index: -1;
    backdrop-filter: blur(30px);
    background: rgba(0, 0, 0, 0.01);
}
.step_title{
    font-size: 40px;
    color: #FFFFFF;
    line-height: 50px;
    margin-bottom: 85px;
}
.step_title span{
    font-weight: 800;
}
.step_title .red{
    color: #FF891D;
}
.step_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1025px;
}
.step_item{
    width: 30%;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 85px;
    padding-top: 51px;
    position: relative;
}
.step_item:nth-child(3n)::before{
    display: none;
}
.step_item::before{
    position: absolute;
    content: "";
    width: calc(100% - 60px);
    right: 0;
    border: 1px dashed #696969;
    top: 12px;
}
.step_item span{
    font-weight: 800;
}
.step_item-dot{
    position: absolute;
    top: 0;
    left: 15px;
    width: 29px;
    z-index: 1;
    height: 29px;
}
.step_item-dot::before{
    position: absolute;
    content: "";
    width: 39px;
    height: 39px;
    filter: blur(20px);
    background: #004897;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    z-index: -1;
}
.cost{
    padding: 105px 0 115px;
}
.cost_wrapper{
    background-image: url(../img/cost.jpg);
    background-size: cover;
    background-position: center;
    padding: 77px 0 140px 70px;
    border-radius: 30px;
    position: relative;
}
.cost_title{
    font-weight: 800;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 50px;
    margin-bottom: 20px;
}
.cost_text{
    font-size: 20px;
    color: #FFFFFF;
    line-height: 27px;
    margin-bottom: 40px;
}
.cost_text span{
    font-weight: 800;
}
.cost_img{
    position: absolute;
    left: 69px;
    bottom: -100px;
}
.cost_btn{
    height: 82px;
    background-color: #EB760C;
    color: #fff;
    width: 294px;
    margin-left: 316px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
.cost_btn::before{
    position: absolute;
    content: "";
    background-image: url(../img/calendar.svg);
    background-size: cover;
    bottom: 0;
    left: 0;
    width: 83px;
    height: 77px;
    z-index: -1;
    opacity: 0.2;
}
.popular_title{
    text-align: center;
    font-size: 40px;
    color: #000000;
    line-height: 50px;
    margin-bottom: 40px;
}
.popular_title span{
    font-weight: 800;
}
.popular_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.popular_item{
    width: 30%;
    margin-bottom: 30px;
}
.popular_item-img{
    border-radius: 30px;
    height: 300px;
    display: flex;
    margin-bottom: 5px;
    overflow: hidden;
}
.popular_item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popular_item-inner{
    background: #F2F2F2;
    border-radius: 30px;
    padding: 30px;
}
.popular_item-title{
    font-weight: 800;
    font-size: 20px;
    color: #000000;
    margin-bottom: 24px;
    line-height: 27px;
}
.popular_item-info{
    display: flex;
    justify-content: space-between;
}
.popular_item-value{
    font-size: 12px;
    color: #939393;
    margin-bottom: 15px;
    line-height: 16px;
}
.popular_item-value span{
    font-size: 16px;
    color: #000000;
    line-height: 22px;
    display: block;
}
.popular_item-price{
    font-size: 22px;
    text-align: center;
    color: #000000;
    margin-bottom: 10px;
    line-height: 30px;
}
.popular_item-order{
    width: 100%;
    height: 61px;
}
.popular_item-btn{
    width: 152px;
    height: 42.39px;
    margin-bottom: 19px;
}
.popular_item-calc{
    background: #13447C;
    box-shadow: none;
    height: 42.39px;
    width: 152px;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.popular_item-calc::before{
    position: absolute;
    content: "";
    background-image: url(../img/calendar2.svg);
    background-size: cover;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 39px;
    z-index: -1;
}

.find_block{
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.find_block::before{
    position: absolute;
    content: "";
    width: 840px;
    height: 602px;
    background-image: url(../img/find_block.png);
    background-size: cover;
    z-index: -1;
    right: 50%;
    transform: translateX(50%);
    top: 25px;
}
.find_block-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.find_block-info{
    width: 375px;
}
.find_block-title{
    font-size: 40px;
    color: #000000;
    line-height: 50px;
    margin-bottom: 40px;
}
.find_block-title span{
    font-weight: 800;
}
.find_block-text{
    font-size: 24px;
    color: #000000;
    line-height: 33px;
}
.find_block-text span{
    font-weight: 800;
}
.find_inner{
    background: #333333;
    border-radius: 30px;
    width: 400px;
    padding: 45px 22px;
}
.find_inner-prof{
    padding-left: 150px;
    min-height: 123px;
    position: relative;
    display: flex;
    flex-direction: column;
   justify-content: center;
   margin-bottom: 20px;
   margin-left: 20px;
}
.find_inner-img{
    position: absolute;
    width: 123px;
    height: 123px;
    border-radius: 50%;
    overflow: hidden;
    top: 0;
    left: 0;
}
.find_inner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.find_inner-text{
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    margin-bottom: 26px;
    text-align: center;
}
.find_inner-title{
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    position: relative;
}
.find_inner-title::before{
    position: absolute;
    content: "";
    background: #0052AC;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: -15px;
    top: 6px;
}
.find_inner-subtitle{
    font-size: 14px;
    line-height: 19px;
    color: #FFFFFF;
}
.find_inner-btn{
    height: 82px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.find_inner-btn::before{
    position: absolute;
    content: "";
    background-image: url(../img/calendar.svg);
    background-size: cover;
    bottom: 0;
    left: 0;
    width: 83px;
    height: 77px;
    z-index: -1;
}

.showroom{
    padding: 80px 0 100px;
}
.showroom_title{
    font-size: 40px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 50px;
}
.showroom_title span{
    font-weight: 800;
}
.showroom_wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 65px;
}
.showroom_text{
    width: 310px;
    line-height: 32px;
    font-size: 22px;
}
.showroom_text span{
    font-weight: 800;
}
.showroom_items{
    width: 940px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.showroom_item{
    width: 49%;
    line-height: 22px;
    font-size: 16px;
    padding-left: 48px;
    position: relative;
}
.showroom_item::after{
    position: absolute;
    content: "";
    background-image: url(../img/dot.svg);
    background-size: cover;
    width: 29px;
    height: 29px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.showroom_item::before{
    position: absolute;
    content: "";
    width: 39px;
    background: rgba(0, 82, 173, 0.4);
    filter: blur(10px);
    height: 39px;
    left: -10px;
    transform: translateY(-50%);
    top: 50%;
}
.showroom_inner{
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
}
.showroom_info{
    width: 420px;
    background-image: url(../img/showroom_info.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 60px 55px 65px;
}
.showroom_info-adres{
    position: relative;
    font-weight: 800;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 22px;
    line-height: 24px;
    padding-left: 30px;
}
.showroom_info-adres::before{
    position: absolute;
    content: "";
    background-image: url(../img/adres.svg);
    background-size: cover;
    width: 18px;
    height: 27px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.showroom_info-text{
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 35px;
    line-height: 24px;
}
.showroom_info-btn{
    height: 82px;
    text-transform: uppercase;
}
.showroom_slider{
    width: 690px;
}
.showroom_slider .slick-track{
    display: flex;
}
.showroom_slide{
    border-radius: 30px;
    overflow: hidden;
    height: inherit;
}
.showroom_slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showroom_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 1;
    background: none;
    font-size: 0;
    width: 31px;
    height: 16px;
    transition: all 0.3s;
}
.showroom_slider .slick-prev{
    background-image: url(../img/arrow_left.svg);
    left: -60px;
}
.showroom_slider .slick-prev:hover{
    background-image: url(../img/arrow_left2.svg);
}
.showroom_slider .slick-next{
    background-image: url(../img/arrow_right.svg);
    right: -60px;
}
.showroom_slider .slick-next:hover{
    background-image: url(../img/arrow_right2.svg);
}

.team{
    padding: 75px 0 100px;
    background: #F2F2F2;
    border-radius: 30px;
}
.team_title{
    font-size: 40px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 50px;
}
.team_title span{
    font-weight: 800;
}
.team_wrapper{
    display: flex;
    justify-content: space-between;
    padding: 0 90px;
}
.team_wrapper .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 1;
    background: none;
    font-size: 0;
    width: 31px;
    height: 16px;
    transition: all 0.3s;
    
}
.team_wrapper .slick-prev{
    background-image: url(../img/arrow_left2.svg);
    left: 0px;
}

.team_wrapper .slick-next{
    background-image: url(../img/arrow_right2.svg);
    right: 0px;
}
.team_item{
    margin: 0 10px;
    height: 334px;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    padding: 21px 38px;
}
.team_item-prof{
    font-weight: 700;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 24px;
    text-transform: uppercase;
}
.team_item-name{
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 24px;
}

.mounting{
    margin: 86px 0;
}
.mounting_wrapper{
    padding: 80px 50px 90px 80px;
    background-image: url(../img/mounting_wrapper.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}
.mounting_top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.mounting_title{
    line-height: 50px;
    color: #FFFFFF;
    font-size: 40px;
}
.mounting_title span{
    font-weight: 800;
    display: block;
}
.mounting_text{
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    line-height: 24px;
    width: 465px;
}
.mounting_text span{
    font-weight: 800;
}
.mounting_inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
}
.mounting_subtitle{
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 27px;
    margin-bottom: 30px;
}
.mounting_items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 620px;
    margin-bottom: -25px;
}
.mounting_item{
    position: relative;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 22px;
    padding-left: 55px;
}
.mounting_item:nth-child(2n){
    width: 55%;
}
.mounting_item::after{
    position: absolute;
    content: "";
    background-image: url(../img/dot.svg);
    background-size: cover;
    width: 29px;
    height: 29px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.mounting_item::before{
    position: absolute;
    content: "";
    width: 39px;
    background: rgba(0, 82, 172, 0.7);
    filter: blur(10px);
    height: 39px;
    left: -5px;
    transform: translateY(-50%);
    top: 50%;
}
.sample_form .jbForm input[type=submit],
.mountin_form .jbForm input[type=submit]{
    font-size: 13px;
}
.mounting_btn{
    height: 82px;
    text-transform: uppercase;
    width: 317px;
    position: relative;
    margin-right: 60px;
}
.mounting_btn::before{
    position: absolute;
    content: "";
    background-image: url(../img/mounting_car.png);
    background-size: cover;
    width: 362px;
    height: 241px;
    right: 50%;
    transform: translateX(50%);
    top: -181px;
}
.mounting_bot{
    display: flex;
}
.mounting_bot-title{
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 27px;
    margin-top: 50px;
}
.mounting_slider{
    display: flex;
    width: 780px;
    justify-content: space-between;
}
.mounting_slide{
    width: 33%;
    text-align: center;
    color: #fff;
}
.mounting_slide-img{
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    margin: 0 auto 13px;
    width: 134px;
    height: 134px;
}
.mounting_slide-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mounting_slide-title{
    font-weight: 800;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 4px;
}
.mounting_slide-text{
    line-height: 18px;
    font-size: 14px;
}

.reviews{
    margin-bottom: 100px;
}
.reviews_title{
    font-size: 40px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 40px;
}
.reviews_title span{
    font-weight: 800;
}
.reviews_links{
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
}
.reviews_inner{
    display: flex;
    justify-content: space-between;
}
.reviews_videos{
    width: 705px;

}
.reviews_video{
    height: 440px;
    overflow: hidden;
    border-radius: 30px;
}
.reviews_video img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviews_videos .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 1;
    background: none;
    font-size: 0;
    width: 31px;
    height: 16px;
    transition: all 0.3s;
}
.reviews_videos .slick-prev{
    background-image: url(../img/arrow_left3.svg);
    left: 18px;
}

.reviews_videos .slick-next{
    background-image: url(../img/arrow_right3.svg);
    right: 18px;
}
.reviews_slider{
    width: 550px;
    padding: 0 39px;
}
.reviews_slide{
    height: 440px;
    margin: 0 6px;
}
.reviews_slide img{
    width: 100%;
    height: 100%;
}
.reviews_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 1;
    background: none;
    font-size: 0;
    width: 31px;
    height: 16px;
    transition: all 0.3s;
}
.reviews_slider .slick-prev{
    background-image: url(../img/arrow_left2.svg);
    left: 0;
}

.reviews_slider .slick-next{
    background-image: url(../img/arrow_right2.svg);
    right: 0;
}

.why{
    padding: 85px 0 95px;
    background-image: url(../img/why.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}
.why_title{
    font-size: 40px;
    color: #FFFFFF;
    line-height: 50px;
    margin-bottom: 75px;
}
.why_title span{
    font-weight: 800;
}
.why_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.why_left{
    width: 930px;
}
.why_items{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.why_item-title{
        
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
    margin-bottom: 18px;
}
.why_item-title span{
    font-weight: 800;
}
.why_item{
    position: relative;
    padding-left: 63px;
    color: #fff;
}
.why_item-number{
    position: absolute;
    left: 0;
    top: 0;
    background: #0052AD;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    z-index: 1;
}
.why_item-number::before{
    position: absolute;
    content: "";
    width: 53px;
    background: #0052AD;
    filter: blur(10px);
    height: 53px;
    z-index: -1;
    border-radius: 50%;
}
.why_risk-title{
    padding-left: 63px;
    font-size: 20px;
    line-height: 27px;
    color: #FFFFFF;
    margin-bottom: 55px;
    position: relative;
}
.why_risk-title::before{
    position: absolute;
    content: "";
    background-image: url(../img/arrow_risk.svg);
    background-size: cover;
    left: 50px;
    bottom: -35px;
    transform: rotate(90deg);
    height: 16px;
    width: 39px;
}
.why_risk-title span{
    margin-left: 69px;
    font-weight: 800;
    position: relative;
}
.why_risk-title span::before{
    position: absolute;
    content: "";
    background-image: url(../img/arrow_risk.svg);
    background-size: cover;
    width: 39px;
    height: 16px;
    left: -54px;
    top: 50%;
    transform: translateY(-50%);
}
.why_risk-items{
    display: flex;
    justify-content: space-between;
}
.why_risk-item{
    padding-left: 56px;
    position: relative;
}
.why_risk-item::before{
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(../img/why_risk-item.png);
    left: 0;
    top: -10px;
    background-size: cover;
    border-radius: 50%;
}
.thanks_page .main_text{
    width: 100%;
    margin-bottom: 45px;
    font-size: 26px;
}
.why_risk-item_title{
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 18px;
    line-height: 24px;
}
.why_risk-item_text{
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
}
.why_risk-item::after{
    position: absolute;
    content: "";
    background-image: url(../img/arrow_risk-long.svg);
    background-size: cover;
    width: 61px;
    height: 16px;
    right: -73px;
    top: 5px;
}
.why_risk-item:last-child:after{
    display: none;
}
.why_right{
    background: #0052AC;
    border-radius: 30px;
    width: 310px;
    padding: 40px 10px;
    z-index: 1;
    position: relative;
}
.why_right-title{
    font-size: 22px;
    line-height: 30px;
    color: #FFFFFF;
    margin-bottom: 45px;
    text-align: center;
}
.why_right-title span{
    font-weight: 800;
}
.why_right-subtitle{
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 10px;
}
.why_right-img{
    display: flex;
    width: 147px;
    margin: 0 auto;
}
.why_right-img img{
    width: 100%;
    height: auto;
}
.works{
    padding: 85px 0 95px;
}
.works_title{
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 32px;
}
.works_title span{
    font-weight: 800;
}
.works_text{
    line-height: 27px;
    font-size: 20px;
}
.works_top{
    margin-bottom: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.works_btn{
    width: 292px;
    height: 82px;
    text-transform: uppercase;
}
.works_slider{
    width: 100vw;
}
.works_slide{
    margin: 0 7px;
    height: 400px;
}
.works_slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.works_slider .slick-arrow{
    position: absolute;
    bottom: -55px;
    border: none;
    cursor: pointer;
    z-index: 1;
    background: none;
    font-size: 0;
    width: 31px;
    height: 16px;
    transition: all 0.3s;
}
.works_slider .slick-prev{
    background-image: url(../img/arrow_left2.svg);
    right: calc(50% + 330px);
}

.works_slider .slick-next{
    background-image: url(../img/arrow_right2.svg);
    left: calc(50% + 330px);
}
.works_slider .slick-dots{
    position: absolute;
    display: flex;
    justify-content: center;
    right: 50%;
    transform: translateX(50%);
    bottom: -55px;
}
.works_slider .slick-dots button{
    font-size: 0;
    border: none;
    width: 10px;
    cursor: pointer;
    background: none;
    background: #C4C4C4;
    padding: 0;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}
.works_slider .slick-dots .slick-active button{
    background: #0052AD;
}
.sample{
    margin: 100px 0;
}
.sample_wrapper{
    display: flex;
    justify-content: space-between;
    padding: 78px 82px 75px 85px;
    background-image: url(../img/sample_wrapper.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}
.sample_title{
    font-size: 40px;
    color: #FFFFFF;
    line-height: 50px;
    margin-bottom: 57px;
}
.sample_title span{
    font-weight: 800;
}
.sample_left{
    width: 610px;
}
.sample_right{
    width: 365px;
}
.sample_text{
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 55px;
    line-height: 26px;
}
.popup_wheel{
    position: relative;
    overflow: visible;
    width: 800px;
    padding-left: 280px;
    background: #FFFFFF;
    border-radius: 30px;
}
.popup_wheel .popup_body-end{
    min-height: 360px;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.popup_wheel-left{
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translate(-50%,-50%) rotate(90deg);
}
.popup_wheel-left::before{
    position: absolute;
    content: "";
    background-image: url(../img/wheel_arrow.svg);
    background-size: cover;
    display: block;
    height: 37px;
    width: 45px;
    right: 50%;
    transform: translate(50%,-50%) rotate(-90deg);
    top: 40px;
}
.popup_body-text{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}   
.popup_body-text span{
    color: #FF891D;
}
#jbForm_wheel_form input[type=submit]{
    display: none;
}
.wheel_btn{
    width: 281px;
    height: 71px;
    margin-bottom: 16px;
    animation: none;
    box-shadow: none;
    text-transform: uppercase;
}
.popup_body-title{
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin-bottom: 16px;
    line-height: 34px;
}
.popup_wheel-left canvas{
    width: 580px;
    height: 580px;
}
.popup_body-win{
    width: 405px;
    height: 133px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #FF891D;
    border-radius: 30px;
    font-weight: 700;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 32px;
}
.popup_body-end{
    display: none;
}
.popup_body-end.active{
    display: flex;
}
.popup_body-start.active{
    display: none;
}

.popup_body-desc{
    font-size: 14px;
    color: #626262;
    width: 168px;
    line-height: 18px;
    position: absolute;
    right: 20px;
    bottom: 117px;
}
.popup_body-desc span{
    color: #EA4700;
}

.sample_subtitle{
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 22px;
    line-height: 27px;
}
.sample_inner{
    display: flex;
}
.sample_person{
    width: 180px;
    text-align: center;
    color: #fff;
    margin-right: 30px;
}
.sample_person-img{
    width: 134px;
    height: 134px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 13px;
}
.sample_person-title{
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 26px;
}
.sample_person-text{
    line-height: 18px;
    font-size: 14px;
}
.sample_item{
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 22px;
    padding-left: 40px;
    position: relative;
}
.sample_item::after{
    position: absolute;
    content: "";
    background-image: url(../img/dot.svg);
    background-size: cover;
    width: 29px;
    height: 29px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.sample_item::before{
    position: absolute;
    content: "";
    width: 39px;
    height: 39px;
    background: rgba(0, 76, 160, 0.8);
    filter: blur(10px);
    left: -5px;
    transform: translateY(-50%);
    top: 50%;
}
.sample_desc{
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    margin-left: 235px;
    width: 400px;
    position: relative;
}
.sample_desc::after{
    position: absolute;
    content: "";
    background-image: url(../img/sample_desc.png);
    background-size: cover;
    height: 596.72px;
    right: -572px;
    width: 642.69px;
    bottom: -193px;
}

.sample_desc span{
    font-weight: 800;
}
.sample_right-text{
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 160px;
    line-height: 24px;
}
.sample_btn{
    height: 82px;
    width: 100%;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}
.sample_btn::before{
    position: absolute;
    content: "";
    background-image: url(../img/sample_car.png);
    background-size: cover;
    width: 362px;
    height: 241px;
    top: -183px;
    right: 50%;
    transform: translateX(50%);
}
.contacts{
    position: relative;
    overflow: hidden;
}
.contacts_inner{
    padding: 165px 0;
    position: relative;
    width: 505px;
    z-index: 1;
}
.contacts_inner::before{
    position: absolute;
    content: "";
    width: 200%;
    right: 0;
    top: 0;
    height: 100%;
    border-radius: 0;
    background: #0052AD;
    z-index: -1;
}
.contacts_title{
    font-weight: 800;
    font-size: 40px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 55px;
}
.contacts_adres{
    padding-left: 39px;
    position: relative;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
}
.contacts_adres::before{
    position: absolute;
    content: "";
    background-image: url(../img/contacts_adres.svg);
    background-size: cover;
    width: 24px;
    height: 35px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.contacts_adres span{
    font-weight: 800;
}
.map{
    position: absolute;
    width: 65%;
    height: 100%;
    top: 0;
    right: 0;
}
.map iframe{
    width: 100%;
    height: 100%;
}

.footer{
    padding: 60px 0;
    background: #282828;
}
.footer_wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}
.footer_logo-wrapper{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.footer_logo{
    display: flex;
    margin-right: 21px;
   
}
.footer_logo-group{
    display: flex;
}
.footer_logo-text{
    font-weight: 800;
    line-height: 17.76px;
    color: #fff;
    width: 208px;
    font-size: 13px;
    padding-left: 22px;
    position: relative;
}
.footer_logo-text::before{
    position: absolute;
    content: "";
    background-color: #5F5F5F4D;
    left: 0;
    top: 50%;
    height: 43px;
    width: 1px;
    transform: translateY(-50%);
}
.footer_time{
    line-height: 18px;
    color: #FFFFFF;
    font-size: 12px;
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
}
.footer_time::before{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00B35C;
    left: 0;
    top: 5px;
}
.footer_time span{
    font-weight: 800;
}
.footer_number{
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 27px;
    margin-bottom: 25px;
    transition: all 0.3s;
}
.footer_number:hover{
    color: #0052AD;
}
.footer_messages{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer_adres{
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
    padding-left: 30px;
    position: relative;
}
.footer_adres::before{
    position: absolute;
    content: "";
    background-image: url(../img/adres.svg);
    background-size: cover;
    width: 18px;
    height: 26px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer_adres span{
    font-weight: 800;
}
.footer_messages-links{
    display: flex;
}
.footer_messages-link{
    display: flex;
    margin: 0 15px;
}
.footer_messages-title{
    font-size: 12px;
    line-height: 16px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 14px;
    position: relative;
}
.footer_messages-title::before{
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00B35C;
    left: 0;
    top: 5px;
}
.footer_messages-title span{
    font-weight: 800;
}
.footer_messages-items{
    display: flex;
    width: 186px;
    background: #1DC875;
    border-radius: 50px;
    height: 37px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 16px;
    padding-right: 24px;
    position: relative;
}
.footer_messages-items::before{
    position: absolute;
    content: "";
    background-image: url(../img/whats_bef.svg);
    background-size: cover;
    width: 22px;
    height: 22px;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
}
.footer_link{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer_text{
    font-weight: 800;
    font-size: 13px;
    color: #FFFFFF;
    line-height: 18px;
}
.footer_dev{
    font-size: 14px;
    text-align: right;
    border-bottom: 1px solid #B4B4B4;
    color: #B4B4B4;
    line-height: 20px;
    transition: all 0.3s;
}
.footer_dev:hover{
    color: #0052AD;
    border-bottom: 1px solid #0052AD;
}
.footer_inner{
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
}
.footer_link{
    font-size: 12px;
    color: #929292;
    line-height: 20px;
    transition: all 0.3s;
}
a.footer_link:hover{
    color: #0052AD;
}
.order_popup{
    border-radius: 30px;
    border: 1px solid #0052AD;
    width: 860px;
    background: none;
    background-image: url(../img/order_popup.jpg);
    background-size: cover;
    background-position: center;
    padding: 60px;
}
.order_popup-wrapper{
    display: flex;
    justify-content: flex-end;
}
.order_popup-title{
    font-size: 26px;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 32px;
}
.order_popup-title span{
    font-weight: 800;
}
.order_popup-inner{
    width: 355px;
}
.order_popup-inp{
    width: 278.44px;
    background: #F4F4F4;
    border-radius: 110px;
    height: 71.35px;
    margin-bottom: 15px;
    border: none;
    padding-left: 25px;
}
.order_popup-btn{
    width: 281px;
    height: 71px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}
.order_popup-ok{
    font-size: 11px;
    line-height: 14px;
    color: #9D9D9D;
    width: 315px;
}
.fancybox-slide--html .fancybox-close-small{
    top: 10px;
    right: 10px;
}

.popup_catalog{
    background-image: url(../img/popup_catalog.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid #0052AD;
    width: 860px;
}
.popup_gate{
    background-image: url(../img/popup_gate.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid #0052AD;
    padding: 120px 90px;
    width: 860px;
}
.popup_gate .jbForm input[type=submit]{
    display: inline-flex;
    margin-left: 30px;
}

.popup_gate  .jbForm label.jbForCheckbox{
    width: 100%;
}
.popup_gate .jb_input{
    display: inline-block;
}
.popup_showroom{
    border: 1px solid #0052AD;
    background-image: url(../img/order_popup.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    width: 860px;
}
.popup_mounting{
    background-image: url(../img/popup_mounting.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid #0052AD;
    width: 860px;
    min-height: 471px;
}
.popup_sample{
    background-image: url(../img/popup_mounting.jpg);
    border: 1px solid #0052AD;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    min-height: 471px;
    width: 860px;
}
.menu_burger{
    display: none;
}
.header_mobile{
    display: none;
}
.popular_show{
    display: none;
}
.video_block{
    margin: 100px 0;
}
.video_block-wrapper{
    display: flex;
    justify-content: center;
}
.video_block-slider{
    width: 800px;
}
.video_block-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video_block-slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 1;
    background: none;
    font-size: 0;
    width: 31px;
    height: 16px;
    transition: all 0.3s;
}
.video_block-slider .slick-prev{
    background-image: url(../img/arrow_left.svg);
    left: -60px;
}
.video_block-slider .slick-prev:hover{
    background-image: url(../img/arrow_left2.svg);
}
.video_block-slider .slick-next{
    background-image: url(../img/arrow_right.svg);
    right: -60px;
}
.video_block-slider .slick-next:hover{
    background-image: url(../img/arrow_right2.svg);
}
.video_block-items{
    width: 260px;
}
.video_block-items .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    z-index: 1;
    background: none;
    font-size: 0;
    width: 31px;
    height: 16px;
    transition: all 0.3s;
}
.video_block-items .slick-prev{
    background-image: url(../img/arrow_left.svg);
    left: -60px;
}
.video_block-items .slick-prev:hover{
    background-image: url(../img/arrow_left2.svg);
}
.video_block-items .slick-next{
    background-image: url(../img/arrow_right.svg);
    right: -60px;
}
.video_block-items .slick-next:hover{
    background-image: url(../img/arrow_right2.svg);
}
.video_popup{
    padding: 0;
    background: none;
    max-width: 100%;
    background-color: #000;
}
.video_popup video{
    width: 100%;
    height: auto;
}
.header_phone-mobile{
    display: none;
}
.thanks_page {
    overflow: hidden;
    min-height: 90vh;
}
.thanks_page .main_desc{
    max-width: 100%;
}
.thanks_page .main_wrapper{
    padding-top: 210px;
}

.certificates{
    padding: 85px 0 50px;
    background: #F2F2F2;

}
.certificates_wrapper{
    display: flex;
    justify-content: space-between;
}
.certificates_left{
    width: 520px;
}
.certificates_title{
    font-weight: 800;
    line-height: 50px;
    margin-bottom: 40px;
    font-size: 40px;
}
.certificates_img{
    display: flex;

    width: 420px;
    height: 513px;
    position: relative;
}
.certificates_img::before{
    position: absolute;
    content: "";
    background-image: url(../img/certificates_img-bef.svg);
    background-size: contain;
    width: 219px;
    height: 79px;
    right: -128px;
    top: 131px;
}
.certificates_img img{
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}
.certificates_right{
    width: 685px;
}
.certificates_text{
    line-height: 27px;
    font-size: 18px;
    margin-bottom: 14px;
}
.certificates_list{
    line-height: 27px;
    font-size: 18px; 
}

.certificates_list li{
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}
.certificates_list li::before{
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    top: 12px;
    left: 6px;
}
.certificates_list li:last-child{
    margin-bottom: 0;
}
.footer_mail{
    line-height: 18px;
    margin-top: 14px;
    display: block;
    font-size: 12px;
    position: relative;
    padding-left: 32px;
    color: #fff;
}
.footer_mail::before{
    position: absolute;
    content: "";
    background-image: url(../img/footer_mail.svg);
    background-size: cover;
    width: 20px;
    height: 16px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sogl_popup h2,
.polit_popup h2{
    margin-bottom: 30px;
}
.sogl_popup p,
.polit_popup p{
    margin-bottom: 20px;
    line-height: 24px;
}




@media(max-width:1600px){
    .configuration::before {
        height: 225px;
        width: 290px;
        top: 400px;
    }
    .certificates_right {
        width: 630px;
    }
}
@media(max-width:1300px){
    .header_text{
        display: none;
    }
    .about_img{
        width: 33%;
    }
    .cost_wrapper{
        background-position: left;
    }
    .reviews_link{
        width: 32%;
    }
    .reviews_link img{
        width: 100%;
        height: 100%;
    }
    .reviews_videos {
        width: 615px;
    }
    .video_block-slider{
        margin: 0 60px;
        width: 660px;
    }
    .video_block-items{
        margin: 0 60px;
    }
}
@media(max-width:1200px){
    .container{
        max-width: 998px;
    }
    .advantage_wrapper{
        padding: 35px 40px 30px;
    }
    .quiz_wrapper{
        padding: 70px 50px 150px;
    }
    .quiz_inner{
        padding-left: 50px;
    }
    .about_inner {
        width: 555px;
    }
    .about_title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    .about_text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .about_info {
        width: 325px;
    }
    .about_item{
        padding-left: 35px;
    }
    .about_img {
        width: 40%;
    }
    .color_img-wrapper {
        width: 485px;
        height: 445.14px;
        padding: 110px 110px 100px 115px;
    }
    .color_wrapper{
        align-items: center;
    }
    .color_info{
  
        width: 455px;
    }
    .color_item{
        width: 105px;
    }
    .color_inner{
        flex-wrap: wrap;
    }
    .color_text{
        max-width: 100%;
        margin-bottom: 25px;
    }
    .drivers_item{
        padding: 30px 20px;
    }
    .popular_item {
        width: 32%;
    }
    .showroom_items {
        width: 665px;
    }
    .showroom_text {
        width: 275px;
        line-height: 30px;
        font-size: 20px;
    }
    .showroom_slider {
        width: 590px;
    }
    .showroom_info {
        width: 355px;
        padding: 50px 20px 65px;
    }
    .showroom_slider .slick-prev{
        left: 10px;
    }
    .showroom_slider .slick-next{
        right: 10px;
    }
    .team_item{
        height: 265px;
        border-radius: 20px;
        padding: 15px 20px;
    }
    .mounting_wrapper{
        padding: 50px 30px 80px 30px;
    }
    .mounting_btn{
        margin-right: 0;
    }
    .mounting_items{
        width: 560px;
    }
    .mounting_text{
        width: 425px;
    }
    .mounting_slide{
        width: 190px;
    }
    .reviews_slider{
        width: 35%;
    }
    .reviews_slide{
        height: auto;
    }
    .reviews_videos{
        width: 60%;
    }
    .reviews_inner{
        align-items: flex-start;
    }
    .reviews_video {
        height: 370px;
    }
    .why_wrapper{
        flex-direction: column;
    }
    .why_right{
        margin-top: 25px;
    }
    .works_slide{
        height: 260px;
    }
    .sample_wrapper {
        padding: 50px 25px 50px 25px;
    }
    .sample_left {
        width: 500px;
    }
    .sample_desc::after {
        height: 432.72px;
        right: -379px;
        width: 438.69px;
        bottom: -140px;
    }
    .footer_wrapper{
        flex-wrap: wrap;
    }
    .footer_left{
        width: 100%;
        margin-bottom: 25px;
        text-align: center;
        justify-content: center;
    }
    .footer_logo-wrapper{
        justify-content: center;
    }

    .video_block-wrapper{
        flex-direction: column;
    }
    .video_block-slider{
        width: 100%;
        margin: 0 0 40px;
        padding: 0 60px;
    }
    .video_block-slider .slick-prev{
        left: 0;
    }
    .video_block-slider .slick-next{
        right: 0;
    }
    .video_block-items{
        margin: 0 auto;
    }
    .popup_wheel-left{
        left: 80px;
    }
    .popup_wheel-left canvas{
        width: 540px;
        height: 540px;
    }
    .popup_wheel{
        padding-left: 415px;
    }
    .popup_wheel-left {
        left: 150px;
    }
    .popup_body-win {
        width: 320px;
        padding: 20px 20px;
    }
    .popup_body-desc{
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
    }
    .popup_body-text{
        margin-bottom: 20px;
    }
    .main_img {
        width: 950px;
        top: auto;
        bottom: 0;
    }
    .main_img img{
        width: 100%;
        height: auto;
    }
    .certificates_wrapper{
        flex-direction: column;
        position: relative;
        padding-bottom: 550px;
    }
    .certificates_right{
        width: 100%;
    }
    .certificates_img{
        position: absolute;
        bottom: 0;
        left: 0;
    }
}
@media(max-width:991.98px){
    .container{
        max-width: 720px;
    }
    .header_right{
        display: none;
    }
    .main_info{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .main_items{
        order: 1;
        margin-bottom: 0;
    }
    .main_desc{
        margin-bottom: 300px;
    }
    .main_wrapper{
        flex-direction: column;
        padding-bottom: 0;
    }
    .header{
        background-color: #fff;
    }
    .header_logos{
        margin-right: 0;
        flex-direction: row;
        align-items: center;
    }
    .header_logo{
        margin: 0 10px 0 0;
    }
    .main{
        margin-bottom: 40px;
    }
    .main_btn{
        margin-bottom: 34px;
        width: 440px;
        max-width: 100%;
    }
    .main_img {
        width: 940px;
        top: auto;
        bottom: 200px;
    }
    .main_desc {
        margin-bottom: 438px;
    }
    .advantage_wrapper{
        transform: none;
    }
    .menu_burger{
        position: absolute;
        display: block;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #1F65B2;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }
    .menu_burger::before{
        position: absolute;
        content: "";
        width: 22px;
        height: 3px;
        background: #fff;
        top: 15px;
        right: 11px;
        transition: all 0.3s;
    }
    .header_left{
        z-index: 2;
    }
    .menu_burger.active::before{
        transform: rotate(45deg);
        top: 21px;
    }
    .menu_burger::after{
        position: absolute;
        content: "";
        width: 22px;
        height: 3px;
        background: #fff;
        bottom: 15px;
        right: 11px;
        transition: all 0.3s;
    }
    .menu_burger.active::after{
        transform: rotate(-45deg);
        bottom: 21px;
    }
    .menu_burger span{
        position: absolute;
        content: "";
        width: 22px;
        height: 3px;
        background: #fff;
        top: 21px;
        right: 11px;
        transition: all 0.3s;
    }
    .menu_burger.active span{
        transform: translateY(-50%) scale(0);
    }
    .header_wrapper{
        position: relative;
    }
    .header{
        position: fixed;
    }
    .aside{
        width: 100%;
        bottom: 0;
        flex-direction: row;
        justify-content: space-between;
        right: 0;
        background: #005ABE;
    }
    .aside_hide{
        display: none;
    }
    .aside_item{
        animation: none;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .header_mobile{
        display: flex;
        position: fixed;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100%;
        background: #fff;
        top: 0;
        right: 0;
        padding-top: 125px;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        overflow: auto;
        padding-bottom: 120px;
    }
    .header_mobile.active{
        opacity: 1;
        visibility: visible;
    }
    .header_mobile .header_text{
        display: block;
        padding-left: 0;
        border: none;
        margin-bottom: 35px;
    }
    .menu a{
        font-size: 18px;
        text-align: center;
        color: #000;
        margin-bottom: 25px;
        line-height: 25px;
        display: block;
    }
    .header_messages{
        margin-bottom: 40px;
    }
    .advantage{
        margin: 30px 0;
        padding-top: 30px;
    }
    .advantage_wrapper{
        flex-wrap: wrap;
     
    }
    .advantage_item::before{
        top: -10px;
    }
    .advantage_item{
        width: 50%;
        padding-top: 35px;
        margin-bottom: 20px;
    }
    .quiz_wrapper{
        background-image: url(../img/quiz2.jpg);
        background-position: center 20%;
        width: 65%;
        margin: 0 auto;
        padding: 350px 20px 35px 25px;
    }
    .quiz_title{
        font-size: 20px;
        line-height: 27px;
        width: auto;
    }
    .quiz_text{
        line-height: 25px;
        font-size: 18px;
        margin-right: 0;
        margin-bottom: 35px;
    }
    .quiz_inner{
        padding-left: 0;
    }
    .quiz_inner{
        flex-direction: column;
        align-items: flex-start;
    }
    .quiz_btn{
        height: 67px;
        width: 100%;
        font-size: 14px;
    }
    .quiz_img{
        height: 74px;
        width: 99.33px;
        bottom: 116px;
        right: 24px;
        left: auto;
    }
    .quiz{
        margin-bottom: 55px;
    }
    .about_inner{
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    .about_info{
        width: 100%;
        margin-bottom: 380px;
    }
    .team_wrapper{
        padding: 0;
    }
    .team_wrapper .slick-arrow{
        top: auto;
        transform: none;
        bottom: -60px;
    }
    .team_wrapper .slick-next{
        right: 60px;
    }
    .team_wrapper .slick-prev{
        left: 60px;
    }
    .about_img{
        width: 500px;
        height: 305px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 625px;
        top: auto;
        background-position: top;
    }
    .about_item:last-child{
        margin-bottom: 0;
    }
    .color_wrapper{
        flex-direction: column-reverse;
        position: relative;
        padding-top: 140px;
    }
    .color_title{
        position: absolute;
        top: 0;
    }
    .color_info{
        width: 100%;
    }
    .color_item{
        width: 24%;
    }
    .color_img-wrapper{
        margin-bottom: 35px;
    }
    .color_inner{
        text-align: center;
        justify-content: center;
    }
    .color_form-ok{
        text-align: center;
    }
    .color_person{
        margin-bottom: 25px;
    }
    .drivers_wrapper{
        flex-wrap: wrap;
    }
    .drivers_item {
        width: 48%;
        margin-bottom: 25px;
    }
    .configuration_wrapper{
        flex-direction: column;
    }
    .configuration_info{
        margin-right: 0;
        margin-bottom: 25px;
    }
    .configuration::before{
        display: none;
    }
    .configuration_slider{
        width: 100%;
    }
    .configuration_slider-counter{
        top: auto;
        bottom: 0;
        left: auto;
        right: 50%;
        transform: translateX(50%);
    }
    .configuration_wrapper{
        padding-bottom: 40px;
    }
    .configuration_slider .slick-arrow{
        bottom: -42px;
        top: auto;
        left: auto;
        transform: translate(50%,-50%);
    }
    .configuration_slider .slick-prev{
        right: calc(50% + 55px);
    }
    .configuration_slider .slick-next{
        right: calc(50% - 55px);
    }
    .step_item{
        width: 48%;
    }
    .step_item::before{
        display: none;
    }
    .step_title br{
        display: none;
    }
    .step::before{
        display: none;
    }
    .cost_wrapper {
        width: 65%;
        margin: 0 auto;
        background-image: url(../img/cost2.jpg);
        padding: 330px 20px 45px;
    }
    .cost {
        padding: 50px 0 130px;
    }

    .cost_btn{
        margin-left: 0;
        height: 70px;
        width: 100%;
        font-size: 14px;
    }
    .cost_img{
        height: 144px;
        width: 190px;
    }
    .cost_img img{
        width: 100%;
        height: 100%;
    }
    .popular_item {
        width: 48%;
    }
    .find_block-wrapper{
        flex-direction: column;
    }
    .find_block-info{
        width: 100%;
        margin-bottom: 235px;
    }
    .showroom_wrapper{
        flex-direction: column;
    }
    .showroom_text{
        width: 100%;
        margin-bottom: 25px;
    }
    .showroom_items{
        width: 100%;
    }
    .showroom_inner{
        flex-direction: column;
    }
    .showroom_info{
        width: 100%;
        margin-bottom: 38px;
    }
    .showroom_slider{
        width: 100%;
    }
    .showroom_slider .slick-arrow{
        bottom: -36px;
        top: auto;
        transform: none;
    }
    .showroom_slider .slick-next{
        right: 60px;
    }
    .showroom_slider .slick-prev{
        left: 60px;
    }
 
    .team_item{
        margin: 0 6px;
        display: flex !important;
    }
    .mounting_text{
        position: absolute;
        bottom: 300px;
        right: 50%;
        transform: translateX(50%);
    }
    .mounting_wrapper{
        padding-bottom: 450px;
        position: relative;
    }
    .mounting_btn{
        position: absolute;
        bottom: 30px;
        right: 50%;
        transform: translateX(50%);
    }
    .mounting_inner{
        width: 100%;
        margin-bottom: 30px;
    }
    .mounting_items{
        width: 100%;
    }
    .mounting_bot{
        flex-direction: column;
    }
    .mounting_slider{
        width: 100%;
    }
    .mounting_bot-title{
        margin-top: 0;
        margin-bottom: 20px;
    }
    .reviews_links{
        flex-direction: column;
        align-items: center;
    }
    .reviews_link{
        width: 60%;
        margin-bottom: 10px;
        display: flex;
    }
    .reviews_inner{
        flex-direction: column;
    }
    .reviews_videos{
        width: 100%;
        margin-bottom: 25px;
    }
    .reviews_slider{
        width: 50%;
        margin: 0 auto;
    }
    .why_left{
        width: 100%;
    }
    .why_items{
        flex-direction: column;
    }
    .why_item{
        width: 100%;
        margin-bottom: 20px;
    }
    .why_item br{
        display: none;
    }
    .why_risk-title{
        padding-left: 0;
    }
    .why_risk-items{
        flex-direction: column;
    }
    .whell_link{
        width: 55px;
        left: 24px;
    bottom: 115px;
        height: 62px;
    }
 
    .why_risk-item{
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 50px;
    }
    .why_risk-item br{
        display: none;
    }
    .why_risk-title::before{
        left: 1px;
    }
    .why_risk-title{
        margin-bottom: 70px;
    }
    .why_risk-item::after{
        top: auto;
        bottom: 30px;
        left: -10px;
        transform: rotate(90deg);
    }
    .works_slide{
        height: 210px;
    }
    .works{
        padding-bottom:220px;
        position: relative;
    }
    .works_btn{
        position: absolute;
        bottom: 40px;
        right: 50%;
        transform: translateX(50%);
    }
    .sample_wrapper{
        flex-direction: column;
        background-image: url(../img/sample_wrapper2.jpg);
        background-position: 50% 73%;
    }
    .sample_left{
        width: 100%;
        margin-bottom: 35px;
    }
    .sample_desc{
        margin-left: 0;
        margin-top: 35px;
        margin-bottom: 325px;
        width: 100%;
    }
    .sample_desc::after {
        height: 432.72px;
        right: 50%;
        transform: translateX(50%);
        width: 438.69px;
        bottom: -380px;
    }
    .sample_right{
        width: 100%;
    }
    .sample_btn::before{
        right: 50%;
        transform: translateX(50%);
        left: auto;
    }
    .contacts_inner{
        width: 100%;
        padding: 80px 0;
    }
    .contacts_inner::before{
        width: 100vw;
        right: 50%;
        border-radius: 10px;
        transform: translateX(50%);
        left: auto;
    }
    .map{
        position: relative;
        width: 100%;
        height: 300px;
    }
    .contacts{
        border-radius: 0;
    }
    .footer{
        padding-bottom: 140px;
    }
    .footer_wrapper{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer_adres{
        margin-right: 0;
        margin-bottom: 28px;
    }
    .footer_messages{
        margin-bottom: 28px;
    }
    .footer_time{
        margin-bottom: 28px;
    }
    .footer_link{
        align-items: center;
        margin-bottom: 8px;
    }
    .footer_inner{
        flex-direction: column-reverse;
        align-items: center;
    }
    .order_popup{
        padding: 50px 30px;
    }
    .popup_gate{
        padding: 95px 50px;
    }
    .find_inner{
        width: 100%;
    }
    .find_block::before {
        height: 272px;
        width: 535px;
        top: 240px;
    }
    .thanks_page{
        margin-bottom: 0;
        padding-bottom: 70px;
    }
    .popup_wheel {
        padding-left: 370px;
    }
    .popup_wheel-left canvas {
        width: 400px;
        height: 400px;
    }
    .popup_wheel-left {
        left: 175px;
    }
    .popup_body-win {
        line-height: 26px;
        font-size: 18px;
    }
    .whell_link{
        width: 55px;
        left: 24px;
    bottom: 115px;
        height: 62px;
    }
    .whell_link img{
        width: 100%;
        height: 100%;
    }
    .header_phone-mobile{
        display: flex;
        margin-right: 60px;
        width: 45px;
        height: 45px;
        margin-top: 14px;
    }
    .thanks_page .main_wrapper{
        padding-top: 160px;
    }
    .thanks_page .main_img {
        bottom: 160px;
    }
    .footer_messages-links{
        margin-bottom: 20px;
    }
}
@media (max-width: 767.98px) {
    .container {
		max-width: 100%;
	}
    .header_wrapper{
        padding: 22px 0;
    }
    .header_logo{
        width: 178px;
    }
    .header_logo img{
        width: 100%;
        height: 100%;
    }
    .header_group{
        width: 64px;
    }
    .header_group img{
        width: 100%;
        height: 100%;
    }
    .header_mobile .header_text{
        width: 275px;
    }
    .main_wrapper{
        padding-top: 110px;
    }
    .main h1{
        line-height: 38px;
        font-size: 36px;
        margin-bottom: 7px;
    }
    .main_desc{
        font-size: 21px;
        line-height: 30px;
        margin-bottom: 290px;
    }
    .main_img{
        width: 760px;
        right: 60%;
        transform: translateX(50%);
        height: 500px;
        bottom: 200px;
    }
    .main_img img {
        width: 100%;
        object-fit: cover;
        height: 100%;
        object-position: top;
    }
    .main_inner{
        flex-direction: column;
    }
    .main_text{
        width: 240px;
        margin-bottom: 30px;
        line-height: 22px;
        font-size: 16px;
    }
    .main_inner{
        margin-bottom: 20px;
    }
    .main_btn{
        width: 100%;
        height: 62px;
    }
    .aside{
        z-index: 12;
        opacity: 0;
        visibility: hidden;
        transition: all 0.6s;
    }
    .aside.fixed{
        opacity:1;
        visibility: visible;
    }
    .aside_item{
        padding: 10px;
        width: 33%;
        font-size: 10px;
    }
    .aside_item img{
        margin-bottom: 5px;
        height: 25px;
    }
    .advantage_item{
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    .advantage_item-title{
        font-size: 20px;
    }
    .advantage_item-title span{
        font-size: 40px;
    }
    .advantage_item-text{
        line-height: 19px;
        font-size: 14px;
    }
    .advantage_item::before{
        right: 50%;
        transform: translateX(50%);
        left: auto;
    }
    .about{
        border-radius: 0;
        padding: 40px 0 50px;
    }
    .about_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 35px;
    }
    .about_text{
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 25px;
    }
    .about_img{
        width: 100%;
        bottom: 470px;
        background-position: center;
        max-width: 365px;
    }
    .about_item{
        margin-bottom: 20px;
    }
    .about_item:last-child{
        margin-bottom: 0;
    }
    .about_item-title{
        font-size: 50px;
    }
    .about_item-title span{
        font-size: 20px;
    }
    .about{
        margin-bottom: 40px;
    }
    .color{
        margin-bottom: 50px;
    }
    .color_title{
        line-height: 30px;
        font-size: 22px;
        width: 290px;
    }
    .color_wrapper{
        padding-top: 85px;
    }
    .color_img-wrapper{
        width: 360px;
        border-radius: 10px;
        height: 235px;
        padding: 45px 92px 42px 94px;
    }
    .color_subtitle span{
        width: 34px;
        height: 34px;
    }
    .color_subtitle{
        font-size: 14px;
    }
    .color_type-tab{
        height: 37px;
        width: 24%;
        margin-right: 0;
    }
    .color_type-tabs{
        justify-content: space-between;
    }
    .color_item{
        height: 37px;
        margin-bottom: 8px;
    }
    .color_text{
        line-height: 24px;
        font-size: 16px;
    }
    .color_inner{
        padding:45px 11px ;
    }
    .color_form-inp{
        width: 100%;
        margin-bottom: 12px;
        height: 61px;
    }
    .color_form-btn{
        width: 100%;
        height: 61px;
    }
    .color_form-ok br{
        display: none;
    }
    .color_form-ok{
        font-size: 11px;
    }
    .drivers_item {
        width: 100%;
        margin-bottom: 15px;
    }
    .drivers{
        border-radius: 0;
        padding: 25px 0 50px;
    }
    .drivers_title{
        font-size: 22px;
        line-height: 50px;
        margin-bottom: 16px;
    }
    .drivers_item-title{
        font-size: 16px;
        margin-bottom: 6px;
    }
    .drivers_item-subtitle{
        font-size: 16px;
        margin-bottom: 6px;
    }
    .drivers_item-text{
        font-size: 12px;
    }
    .configuration{
        padding: 32px 0 45px;
    }
    .configuration_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .configuration_text{
        line-height: 22px;
        font-size: 16px;
    }
    .configuration_info{
        max-width: none;
    }
    .configuration_slide,
    .configuration_slide.slick-current{
        width: calc(100vw - 30px);
        margin-top: 0;
    }
    .configuration_slide .configuration_slide-img, 
    .configuration_slide.slick-current .configuration_slide-img{
        height: 220px;
        margin-bottom: 18px;
    }
    .configuration_slide-text {
        line-height: 19px;
        font-size: 14px;
    }
    .step{
        border-radius: 0;
        padding: 50px 0;
    }
    .step_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .step_item{
        width: 100%;
        margin-bottom: 15px;
        line-height: 19px;
        font-size: 14px;
        padding-top: 40px;
    }
    .step_item-dot{
        left: 0;
        
    }
    .popular_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .popular_item{
        width: 100%;
        margin-bottom: 20px;
        display: none;
    }
    .popular_item.active{
        display: block;
    }
    .popular_item:nth-child(1),
    .popular_item:nth-child(2),
    .popular_item:nth-child(3){
        display: block;
    }
    .popular_item-img{
        border-radius: 10px;
        height: 265px;
        margin-bottom: 0;
    }
    .popular_item-inner{
        border-radius: 10px;
        padding: 20px 15px;
    }
    .popular_item-title{
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 16px;
    }
    .popular_item-value span{
        font-size: 14px;
    }
    .popular_item-price{
        font-size: 20px;
    }
    .popular_show{
        width: 152px;
        background: #A3A3A3;
        border-radius: 131px;
        height: 42.39px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        font-weight: 800;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        letter-spacing: 0.05em;
        color: #FFFFFF;
        text-transform: uppercase;
    }
    .popular_show.active{
        display: none;
    }
    .find_block{
        padding: 45px 0 55px;
    }
    .find_block-title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 18px;
        width: 290px;
    }
    .find_block-text{
        line-height: 22px;
        font-size: 16px;
        width: 290px;
    }
    .find_block::before{
        top: 200px;
    }
    .find_inner{
        width: 100%;
        padding: 30px 20px;
    }
    .find_inner-prof{
        margin-left: 0;
        padding-left: 115px;
        min-height: 91px;
    }
    .find_inner-img{
        width: 91px;
        height: 91px;
    }
    .find_inner-text{
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 25px;
    }
    .find_inner-btn{
        height: 60px;
        width: 100%;
        line-height: 18px;
        font-size: 13px;
    }
    .showroom{
        padding: 40px 0 80px;
    }
    .team_item{
        height: 115vw;
        border-radius: 8vw;
    }
    .showroom_title{
        font-size: 20px;
        line-height: 30px;
        width: 296px;
        margin-bottom: 18px;
    }
    .showroom_text{
        line-height: 22px;
        font-size: 14px;
    }
    .showroom_item{
        width: 100%;
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 18px;
    }
    .showroom_wrapper{
        margin-bottom: 30px;
    }
    .showroom_info{
        padding: 38px 20px 50px;
        border-radius: 10px;
    }
    .showroom_info-adres{
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .showroom_info-text{
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 25px;
    }
    .showroom_info-btn{
        height: 64.41px;
        width: 100%;
        font-size: 13px;
    }
    .find_inner{
        border-radius: 10px;
    }
    .showroom_slide{
        border-radius: 10px;
        height: 70vw;
    }
    .team{
        border-radius: 0px;
        padding: 40px 0 80px;
    }
    .team_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    .team_item{
        margin: 0;
        border-radius: 10vw;
    }
    .mounting{
        margin: 50px 0 35px;
    }
    .mounting_wrapper{
        padding: 40px 15px 330px;
    }
    .mounting_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .mounting_top{
        margin-bottom: 0;
    }
    .mounting_subtitle{
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .mounting_item{
        font-size: 14px;
        margin-bottom: 20px;
    }
    .mounting_bot-title{
        line-height: 22px;
        font-size: 16px;
    }
    .mounting_slider{
        width: 235px;
        margin: 0 auto;
    }
    .mounting_slider .slick-arrow{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        cursor: pointer;
        z-index: 1;
        background: none;
        font-size: 0;
        width: 31px;
        height: 16px;
        transition: all 0.3s;
    }
    .mounting_slider .slick-prev{
        background-image: url(../img/arrow_left.svg);
        left: -10px;
    }
    .mounting_slider .slick-next{
        background-image: url(../img/arrow_right.svg);
        right: -10px;
    }
    .mounting_btn{
        height: 66.22px;
        bottom: 52px;
        width: calc(100% - 30px);
        font-size: 12px;
    }
    .mounting_btn::before{
        height: 146px;
        top: -120px;
        width: 239px;
    }
    .mounting_text{
        font-size: 14px;
        line-height: 20px;
        width: 250px;
        bottom: 230px;
    }
    .reviews_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .reviews_link{
        width: 100%;
    }
    .reviews_links{
        margin-bottom: 5px;
    }
    .reviews_video{
        height: 185px;
        border-radius: 10px;
    }
    .reviews_slider{
        width: 100%;
    }
    .reviews{
        margin-bottom: 50px;
    }
    .why{
        border-radius: 0px;
        padding: 45px 0 0;
    }
    .why_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    .why_title br{
        display: none;
    }
    .why_item-text{
        font-size: 13px;
        line-height: 19px;
    }
    .why_item-title{
        margin-bottom: 5px;
        font-size: 16px;
    }
    .why_items{
        margin-bottom: 15px;
    }
    .why_risk-title{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .why_risk-title span{
        width: 100%;
        text-align: right;
        margin-top: 5px;
    }
    .why_risk-title span::before {
        top: 55%;
        right: 175px;
        left: auto;
    }
    .why_risk-item_title{
        font-size: 16px;
        margin-bottom: 5px;
    }
    .why_right{
        margin-top: 0;
    }
    .why_risk-item:last-child{
        padding-bottom: 0;
        margin-bottom: 30px;
    }
    .why_right{
        width: 100%;
    }
    .works{
        padding: 50px 0 185px;
    }
    .works_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 18px;
    }
    .works_text{
        line-height: 22px;
        font-size: 16px;
    }
    .works_top{
        margin-bottom: 25px;
    }
    .works_slide {
        height: 86vw;
    }
    .works_slider .slick-dots{
        bottom: -40px;
    }
    .works_slider .slick-dots button{
        width: 7px;
        height: 7px;
        margin: 0 2px
    }
    .works_btn{
        width: 225px;
        height: 63.18px;
        font-size: 14px;
    }
    .works_slider .slick-prev {
        right: calc(50% + 100px);
    }
    .works_slider .slick-next {
        left: calc(50% + 100px);
    }
    .works_slider .slick-arrow{
        bottom: -43px;
    }
    .sample{
        margin: 0 0 50px;
    }
    .sample_wrapper{
        padding: 40px 20px 60px;
        border-radius: 10px;
    }
    .sample_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .sample_text{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 25px;
    }
    .sample_inner{
        flex-direction: column;
        align-items: center;
    }
    .sample_person{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .sample_item{
        font-size: 14px;
        margin-bottom: 15px;
    }
    .sample_desc{
        margin-bottom: 225px;
        line-height: 22px;
        font-size: 14px;
    }
    .sample_desc::after{
        height: 207.3px;
        bottom: -235px;
        width: 235.3px;
    }
    .sample_right-text{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 115px;
    }
    .sample_btn{
        height: 61px;
        font-size: 13px;
        text-align: center;
        padding: 15px;
    }
    .sample_btn::before{
        height: 146px;
        top: -130px;
        width: 245.46px;
 
    }
    .contacts_inner{
        padding: 45px 0;

    }
    .contacts_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .contacts_adres{
        line-height: 22px;
        font-size: 16px;
    }
    .footer{
        padding-bottom: 120px;
    }
    .order_popup{
        border-radius: 10px;
        width: 320px;
        margin: 0 auto;
        padding: 35px 20px 310px;
        background-image: url(../img/order_popup2.jpg);
    }
    .order_popup-inner{
        width: 100%;
    }
    .order_popup-title{
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 20px;
        text-align: center;
    }
    .order_popup-ok{
        width: 100%;
        text-align: center;
    }
    .popup_catalog{
        border-radius: 10px;
        width: 320px;
        margin: 0 auto;
        padding: 35px 20px 295px;
        background-image: url(../img/popup_catalog2.jpg); 
    }
    .popup_gate{
        padding: 68px 20px 75px;
        width: 320px;
        border-radius: 10px;
    }
    .order_popup-title br{
        display: none;
    }
    .popup_gate .jbForm input[type=submit]{
        margin-left: 0;
    }
    .popup_gate .jb_input{
        display: block;
    }
    .jbForm .jb_title br{
        display: none;
    }
  
    .order_popup-inp{
        width: 100%;
    }
    .order_popup-btn{
        width: 100%;
        font-size: 13px;
    }
    .popup_showroom{
        border-radius: 10px;
        width: 320px;
        margin: 0 auto;
        padding: 35px 20px 355px;
        background-image: url(../img/order_popup2.jpg); 
    }
    .popup_mounting{
        border-radius: 10px;
        width: 320px;
        margin: 0 auto;
        padding: 35px 20px 315px;
        background-image: url(../img/popup_mounting2.jpg); 
    }
    .popup_sample{
        border-radius: 10px;
        width: 320px;
        margin: 0 auto;
        padding: 35px 20px 315px;
        background-image: url(../img/popup_mounting2.jpg);  
    }
    .quiz_wrapper{
        width: 290px;
        padding-top: 250px;
    }
    .cost_title{
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .cost_text{
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .cost_wrapper {
        width: 290px;
        padding-top: 230px;
    }
    .find_block::before{
        height: 272px;
        width: 381px;
        top: 215px;
    }
    .color_form .jb_input{
        width: 100%;
    }
    .color_form label.jbForCheckbox{
        text-align: center;
    }
    .thanks_page{
        margin-bottom: 0;
    }
    .thanks_page .main_text {
        width: 100%;
        margin-bottom: 45px;
        font-size: 20px;
    }
    .main::before{
        width: 80%;
    }
    .step_item:last-child span{
        display: block;
    }
    .header_messages,
    .header_number,
    .menu{
        width: 100%;
    }
    .header_number{
        display: block;
    }
    .header_messages {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .header_mobile{
        top: 0;
        padding-top: 127px;
        padding-bottom: 190px;
    }
    .video_block{
        margin: 40px 0;
    }
    .video_block-items,
    .video_block-slider{
        padding: 0;
        padding-bottom: 40px;
    }
    .video_block-items .slick-arrow,
    .video_block-slider .slick-arrow{
        top: auto;
        transform: none;
        bottom: 0;
    }
    .video_block-items .slick-prev{
        left: 0;
    }
    .video_block-items .slick-next{
        right: 0;
    }
    .video_block-items{
        width: 100%;
    }
    .video_block-item img{
        width: 100%;
        height: 100%;
    }
    .popup_wheel{
        padding: 200px 20px  40px 20px;
        margin-top: 160px;
      
        width: 310px;
    }
    .popup_wheel-left canvas{
        width: 380px;
        height: 380px;
    }
    .popup_wheel-left{
        left: auto;
        right: 50%;
        transform: translate(50%,-50%) rotate(90deg);
        top: 20px;
    }
    #popup_wheel .fancybox-close-small{
        color: #fff;
        top: -140px;
    }
    .popup_wheel-left::before {
        height: 23px;
        width: 28px;
        top: 28px;
    }
    .wheel_btn{
        max-width: 100%;
    }
    .popup_wheel .popup_body-end{
        min-height: 1px;
    }
    .popup_wheel .popup_body-start  .popup_body-title{
        text-align: left;
    }
    .popup_wheel  .popup_body-start     label.jbForCheckbox,
    .popup_wheel  .popup_body-start     .popup_body-text{
        text-align: left;
    }
    .popup_body-desc{
        font-size: 13px;
    }
    .popup_body-end .popup_body-title{
        width: 205px;
    }
    .popup_body-win{
        width: 282px;
        line-height: 27px;
        font-size: 18px;
        height: 110px;
    }
    .popup_body-title {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 24px;
    }
    .thanks_page .main_wrapper {
        padding-top: 110px;
    }
    .thanks_page .main_img{
        bottom: 108px;
    }
    .certificates{
        padding: 40px 0 60px;
    }
    .certificates_left{
        width: 100%;
    }
    .certificates_title{
        line-height: 50px;
        margin-bottom: 10px;
        font-size: 22px;
    }
    .certificates_text {
        line-height: 21px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .certificates_list li{
        line-height: 21px;
        font-size: 14px;
    }
    .certificates_img{
        width: 100%;
        height: auto;
    }
    .certificates_wrapper {
        padding-bottom: 130vw;
    }
    .certificates_img::before{
        top: -43px;
        transform: translateX(50%);
        right: 50%;
    }
    .footer_logo-wrapper{
        flex-direction: column;
    }
    .footer_logo-text{
        margin-top: 20px;
        padding-left: 0;
    }
    .footer_logo-text::before{
        display: none;
    }
    .footer_items{
        margin-bottom: 24px;
    }
    .footer_adres{
        margin-bottom: 14px;
    }
    .footer_mail{
        width: fit-content;
        margin: 0 auto;
    }
    .footer_adres{
        width: 240px;
    }
    .header_wrapper{
        padding: 15px 0;
    }
    .header_phone-mobile{
        margin-top: 10px;
    }
}

#sogl_popup .fancybox-close-small,
#polit_popup .fancybox-close-small {
    color: #000 !important;
}