/*! 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;
}
.btn{
    border-radius: 131px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF3E3E;
    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: #DC1E1E;
    margin-bottom: 5px;
    padding: 20px 35px 12px 20px;
    text-align: center;
    font-size: 12px;
    text-align: center;
    color: #FFFFFF;
    line-height: 13px;
    animation: btnAnim 1s ease infinite;
}
@keyframes btnAnim {
    0% {
        box-shadow: 0 0 0 0 rgb(220 30 30 / 80%);
    }
    
    100% {
        box-shadow: 0 0 0 15px rgb(220 30 30 / 0%);
    }
}
.aside_hide{
    background: #C50707;
    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{
    background: rgba(26, 26, 26, 0.5);
    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;
}
.header_group{
    display: flex;
}
.header_text{
    border-left: 1px solid #757575;
    padding-left: 22px;
    font-weight: 800;
    font-size: 13px;
    color: #FFFFFF;
    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: 65px;
}
.header_time{
    line-height: 18px;
    color: #FFFFFF;
    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: #FFFFFF;
    line-height: 27px;
    transition: all 0.3s;
}
.header_number:hover{
    color: #FF3E3E;
}
.header_adres{
    width: 225px;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
    margin-right: 27px;
    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: #FFFFFF;
    margin-bottom: 10px;
    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;
    justify-content: center;
}
.header_message{
    display: flex;
    margin: 0 8px;
    transition: all 0.3s;
}
.header_message:hover{
    transform: scale(1.1);
}
.main{

    background-image: url(../img/main_bg.jpg);
    background-size: cover;
    background-position: center;
}
.main .container{
    position: relative;
}
.main_wrapper{
    display: flex;
    justify-content: space-between;
    padding: 200px 0 215px;
}
.main_info{
    width: 715px;
}
.main h1{
    font-size: 60px;
    color: #FFFFFF;
    line-height: 70px;
    margin-bottom: 65px;
}
.main h1 span{
    font-weight: 800;
}
.main_inner{
    display: flex;
    margin-bottom: 70px;
}
.main_text{
    width: 320px;
    font-size: 22px;
    line-height: 30px;
    color: #FFFFFF;
    margin-right: 12px;
    padding-left: 22px;
    border-left: 2px solid #FF3E3E;
}
.main_text span{
    font-weight: 800;
}
.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;
}
.main_items{
    width: 216px;
    z-index: 1;
    padding-left: 40px;
}
.main_items::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 258px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    top: 0;
    right: -31px;
    z-index: -1;
}
.main_item{
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    text-align: right;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #444444;
    position: relative;
}
.main_item::after{
    position: absolute;
    content: "";
    background-image: url(../img/main_item.svg);
    background-size: cover;
    width: 29px;
    height: 29px;
    left: -48px;
    top: 40%;
    transform: translateY(-50%);
}
.main_item::before{
    position: absolute;
    content: "";
    width: 39px;
    height: 39px;
    filter: blur(20px);
    background: #C70C0C;    
    left: -58px;
    transform: translateY(-50%);
    top: 40%;
}
.main_item span{
    font-weight: 800;
}
.main_item span.red{
    color: #F04646;

}
.main_item:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.advantage_wrapper{
    transform: translateY(-100px);
    background: #FFFFFF;
    box-shadow: 0px 7px 34px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    position: relative;
    padding: 38px 88px 58px;
}
.advantage_item{
    position: relative;
}
.advantage_item::before{
    position: absolute;
    content: "";
    background-image: url(../img/advantage_item.svg);
    background-size: cover;
    width: 29px;
    height: 39px;
    top: -46px;
    left: 0;
}
.advantage_item-title{
    line-height: 55px;
    font-size: 40px;
}
.advantage_item-title span{
    font-weight: 800;
    font-size: 80px;
    color: #F42525;
    line-height: 1;
}
.advantage_item-text{
    font-weight: 500;
    line-height: 22px; 
    color: #000000;
    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: #F42525;
    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: -52px;
    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::before{
    position: absolute;
    content: "";
    background-image: url(../img/about_bef.png);
    background-size: cover;
    height: 342px;
    width: 570px;
    top: 56px;
    right: 47px;
}
.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;
}
.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: #F42525;
    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: #F42525;
    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 #F42525;
}
.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 #F42525;
}
.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, 0, 0, 0.35));
    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: #F42525;
    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(244, 37, 37, 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: #F42525;
    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;
}
.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: #FF3E3E;
    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: #FF3E3E;
    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: #FF3E3E;
    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: #FF3E3E;
}
.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: #C70C0C;
    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: #fff;
    color: #FF3E3E;
    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-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: #F42525;
    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;
}
.certificates{
    padding: 85px 0 115px;
    background-image: url(../img/certificates.jpg);
    background-size: cover;
    position: relative;
    border-radius: 30px;
}
.certificates::before{
    position: absolute;
    content: "";
    background-image: url(../img/certificates_bef.png);
    background-size: cover;
    height: 560px;
    width: 854px;
    bottom: 0;
    left: 10%;
}
.certificates_wrapper{
    display: flex;
    justify-content: space-between;
}
.certificates_title{
    font-weight: 800;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 50px;
}
.certificates_title span{
    color: #FF3E3E;
}
.certificates_right{
    width: 555px;
}
.certificates_text{
    font-size: 18px;
    color: #FFFFFF;
    line-height: 27px;
    margin-bottom: 25px;
}
.certificates_slider{
    margin-top: 65px;
}
.certificates_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;
}
.certificates_slider .slick-prev{
    background-image: url(../img/arrow_left.svg);
    left: -60px;
}
.certificates_slider .slick-prev:hover{
    background-image: url(../img/arrow_left2.svg);
}
.certificates_slider .slick-next{
    background-image: url(../img/arrow_right.svg);
    right: -30px;
}
.certificates_slider .slick-next:hover{
    background-image: url(../img/arrow_right2.svg);
}

.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(199, 12, 12, 0.3);
    filter: blur(10px);
    height: 39px;
    left: -10px;
    transform: translateY(-50%);
    top: 50%;
}
.showroom_inner{
    display: flex;
    justify-content: space-between;
}
.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_slide{
    border-radius: 30px;
    overflow: hidden;
}
.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-image: url(../img/team.jpg);
    background-size: cover;
    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;
}
.team_item{
    width: 23%;
    height: 335px;
    display: flex;
    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: #C70C0C;
    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;
    height: 137px;
    right: 8px;
    top: -124px;
    width: 338px;
}
.mounting_bot{
    display: flex;
    justify-content: space-between;
}
.mounting_bot-title{
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 27px;
    margin-top: 50px;
}
.mounting_slider{
    display: flex;
    width: 885px;
    justify-content: space-between;
}
.mounting_slide{
    width: 210px;
    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{
    position: relative;
    padding-left: 63px;
    color: #fff;
}
.why_item-number{
    position: absolute;
    left: 0;
    top: 0;
    background: #DC1E1E;
    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: #C70C0C;
    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: rgba(255, 62, 62, 0.9);
    border-radius: 30px;
    width: 310px;
    padding: 140px 30px 47px;
    z-index: 1;
    position: relative;
}
.why_right::before{
    position: absolute;
    content: "";
    background-image: url(../img/why_right.png);
    background-size: cover;
    height: 182px;
    top: 2px;
    right: 50%;
    transform: translateX(50%);
    z-index: -1;
    width: 302px;
}
.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;
}

.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: 310px;
}
.works_slide img{
    width: 100%;
    height: 100%;
}
.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: #FF3E3E;
}
.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;
}
.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: #C70C0C;
    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: 359.18px;
    height: 160.2px;
    top: -146px;
    left: -7px;
}
.contacts{
    position: relative;
    border-radius: 30px 0 0 30px;
    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: 30px;
    background: #FF3E3E;
    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;
}
.footer_logo-wrapper{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.footer_left{
    width: 320px;
}
.footer_logo{
    display: flex;
    margin-right: 21px;
   
}
.footer_logo-group{
    display: flex;
}
.footer_time{
    line-height: 18px;
    color: #FFFFFF;
    font-size: 12px;
    position: relative;
    padding-left: 14px;

}
.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: #FF3E3E;
}
.footer_adres{
    width: 225px;
    font-size: 12px;
    line-height: 18px;
    color: #FFFFFF;
    margin-right: 27px;
    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-title{
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    margin-bottom: 10px;
    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;
    justify-content: center;
}
.footer_message{
    display: flex;
    margin: 0 8px;
    transition: all 0.3s;
}
.footer_message:hover{
    transform: scale(1.1);
}
.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: #FF3E3E;
    border-bottom: 1px solid #FF3E3E;
}
.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;
}
.footer_link:hover{
    color: #FF3E3E;
}
.order_popup{
    border-radius: 30px;
    border: 1px solid #FF3E3E;
    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{
    color: #fff;
    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 #FF3E3E;
    width: 860px;
}
.popup_gate{
    background-image: url(../img/popup_gate.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid #FF3E3E;
    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{
    background-image: url(../img/popup_showroom.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid #FF3E3E;
    width: 860px;
}
.popup_mounting{
    background-image: url(../img/popup_mounting.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid #FF3E3E;
    width: 860px;
}
.popup_sample{
    background-image: url(../img/popup_sample.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid #FF3E3E;
    width: 860px;
}
.menu_burger{
    display: none;
}
.header_mobile{
    display: none;
}
.popular_show{
    display: none;
}
@media(max-width:1600px){
    .configuration::before {
        height: 225px;
        width: 290px;
        top: 400px;
    }
}
@media(max-width:1300px){
    .header_text{
        display: none;
    }
    .about_img{
        width: 33%;
    }
    .cost_wrapper{
        background-position: left;
    }
    .certificates::before{
        left: 0;
    }
    .reviews_link{
        width: 32%;
    }
    .reviews_link img{
        width: 100%;
        height: 100%;
    }
    .reviews_videos {
        width: 615px;
    }
}
@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%;
    }
    .certificates::before {
        height: 401px;
        width: 626px;
        left: 0;
    }
    .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{
        width: 24%;
        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;
    }
}
@media(max-width:991.98px){
    .container{
        max-width: 720px;
    }
    .header_right{
        display: none;
    }
    .main_info{
        width: 100%;
    }
    .main_wrapper{
        flex-direction: column;
        padding-bottom: 0;
    }
    .main_items::before{
        display: none;
    }
    .header_logos{
        margin-right: 0;
        flex-direction: row;
        align-items: center;
    }
    .header_logo{
        margin: 0 10px 0 0;
    }
    .main{
        margin-bottom: 300px;
    }
    .main_items{
        width: 100%;
        margin-top: 45px;
        background: rgba(26, 26, 26, 0.8);
        border-radius: 10px;
        backdrop-filter: blur(20px);
        padding: 40px 24px;
        margin-bottom: -300px;
    }
    .main_item{
        text-align: center;
        padding-top: 50px;
        
    }
    .main_item::after{
        top: 0;
        right: 50%;
        transform: translate(50%,0);
        left: auto;
    }
    .main_item::before{
        top: 0;
        right: 50%;
        transform: translate(50%,0);
        left: auto;
    }
    .advantage_wrapper{
        transform: none;
    }
    .menu_burger{
        position: absolute;
        display: block;
        width: 27px;
        height: 18px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }
    .menu_burger::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 3px;
        background: #FF3E3E;
        top: 0;
        right: 0;
        transition: all 0.3s;
    }
    .header_left{
        z-index: 2;
    }
    .menu_burger.active::before{
        transform: rotate(45deg);
        top: 8px;
    }
    .menu_burger::after{
        position: absolute;
        content: "";
        width: 100%;
        height: 3px;
        background: #FF3E3E;
        bottom: 0;
        right: 0;
        transition: all 0.3s;
    }
    .menu_burger.active::after{
        transform: rotate(-45deg);
        bottom: 7px;
    }
    .menu_burger span{
        position: absolute;
        content: "";
        width: 100%;
        height: 3px;
        background: #FF3E3E;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        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: #DC1E1E;
    }
    .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: #272726;
        top: 0;
        right: 0;
        padding-top: 75px;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    .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: #FFFFFF;
        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;
        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: 360px;
    }
    .about_img{
        width: 500px;
        height: 300px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 550px;
        top: auto;
        background-position: top;
    }
    .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;
    }

    .certificates_wrapper{
        flex-direction: column;
    }
    .certificates_slider{
        margin: 0 auto;
        width: 550px;
    }
    .certificates_right{
        width: 100%;
    }
    .certificates{
        padding-bottom: 415px;
    }
    .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_wrapper .slick-arrow{
        position: absolute;
        bottom: -36px;
        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_left.svg);
        left: 60px;
    }
    
    .team_wrapper .slick-next{
        background-image: url(../img/arrow_right.svg);
        right: 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;
    }
    .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;
    }
}
@media (max-width: 767.98px) {
    .container {
		max-width: 100%;
	}
    .header_wrapper{
        padding: 22px 0;
    }
    .header_logo{
        width: 157px;
    }
    .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: 50px;
    }
    .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;
    }
    .main_item{
        font-size: 14px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .main_items{
        margin-bottom: -360px;
    }
    .main{
        margin-bottom: 400px;
    }
    .aside{
        z-index: 12;
    }
    .aside_item{
        padding: 10px;
        font-size: 10px;
    }
    .aside_item img{
        margin-bottom: 5px;
        height: 25px;
    }
    .advantage_item{
        width: 100%;
        margin-bottom: 10px;
    }
    .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{
        left: -12px;
    }
    .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%;
        background-image: url(../img/about_img2.jpg);
        bottom: 365px;
        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::before{
        height: 130px;
        width: 217px;
        right: 15px;
        left: auto;
        bottom: 210px;
        top: auto;
    }
    .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;
    }
    .certificates{
        border-radius: 10px;
        padding: 42px 0 255px;
    }
    .certificates_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .certificates_text{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 25px;
    }
    .certificates_slider{
        width: 100%;
        padding: 0 57px;
    }
    .certificates_slide {
        text-align: center;
        display: flex !important;
        justify-content: center;
    }
    .certificates_slide img{
        width: 100%;
        height: 100%;
    }
    .certificates_slider .slick-next{
        right: 0;
    }
    .certificates_slider .slick-prev{
        left: 0;
    }
    .certificates::before{
        background-image: url(../img/certificates_bef2.png);
        width: 100%;
        height: 228px;
        bottom: 0;
        right: 0;
        left: auto;
    }
    .showroom{
        padding: 40px 0 80px;
    }
    .showroom_title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 18px;
    }
    .showroom_text span{
        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: 161px;
    }
    .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: 10px;
    }
    .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: 97px;
        top: -86px;
        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: 190px;
    }
    .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;
        width: 290px;
        margin: 0 auto;
        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: 108.11px;
        top: -100px;
        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 295px;
        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 295px;
        background-image: url(../img/popup_showroom2.jpg); 
    }
    .popup_mounting{
        border-radius: 10px;
        width: 320px;
        margin: 0 auto;
        padding: 35px 20px 295px;
        background-image: url(../img/popup_mounting2.jpg); 
    }
    .popup_sample{
        border-radius: 10px;
        width: 320px;
        margin: 0 auto;
        padding: 35px 20px 295px;
        background-image: url(../img/popup_sample2.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: 275px;
    }
    .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;
    }
}