/*! 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;
}
html{
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*{outline:none;}
*,
*::before,
*::after{
    box-sizing: inherit;
}
body{
    overflow-x: hidden;
    font-family: 'Raleway', sans-serif;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.title{
    font-size: 34px;
    text-transform: uppercase;
    line-height: 47px;
}
.title span{
    font-weight: 700;
}
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F49C07;
    font-weight: 500;
    line-height: 16px;
    color: #FFFFFF;
    font-size: 14px;
    transition: all 0.3s;
        animation: shadow 1s ease infinite;
}
@keyframes shadow {
    0% {
      box-shadow: 0 0 0 0 rgba(244, 156, 7, .8);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(244, 156, 7, 0);
    }
  }
  @keyframes shadow2 {
    0% {
      box-shadow: 0 0 0 0 rgba(1, 57, 124, .8);
    }
    100% {
      box-shadow: 0 0 0 15px rgba(1, 57, 124, 0);
    }
  }
.btn:hover{
    background: #01397C;
    animation: shadow2 1s ease infinite;
}

.container{
    max-width:1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.header{
    position: relative;
    z-index: 10;
    background-color: #fff;
}
.header_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.scroll_links{
    position: fixed;
    z-index: 4;
    top: 40%;
    right: 90px;
    transform: scale(0);
    transition: opacity 0.5s;
    opacity: 0;
}
.scroll_links.fixed{
    transform: scale(1);
    opacity: 1; 
}
.scroll_link{
    position: relative;
    padding-right: 57px;
    display: block;
    margin-bottom: 45px;
}
.scroll_link:nth-child(1) .scroll_link-img{
    padding-right: 4px;
    padding-top: 3px;
}
.scroll_link-img::before{
    position: absolute;
    content: "";
 
    width: 48px;
    height: 48px;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    animation: scrollLink 0.8s linear infinite;

    background: rgba(244, 156, 7, 0.4);
    border-radius: 50%;
    z-index: -1;
}
.catalog_item-imgs{
    width: 100%;
    display: flex;
    justify-content: center;
}
.catalog_item-img{
    display: flex;
    justify-content: center;
}
.catalog_item:nth-child(1) .catalog_dot{
    width: 48px;
}

.catalog_item:nth-child(2) .catalog_dot{
    width: 65px;
}
.catalog_item:nth-child(3) .catalog_dot{
    width: 65px;
}
.scroll_link-title{
    text-align: right;
    font-weight: 700;
    line-height: 13px;
    color: #000000;
    font-size: 12px;
    width: 70px;
    transition: all 0.3s;
}
.scroll_link:hover .scroll_link-title{
    color: #F49C07;
}
.scroll_link-img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #F49C07;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes scrollLink{
    0%{
        width: 38px;
        height: 38px;
        opacity: 0;
    }
    50%{
        width: 48px;
        height: 48px;
        opacity: 1;
    }
    100%{
        width: 38px;
        height: 38px;
        opacity: 0;
    }
}
.header_logo{
    display: flex;
}
.header_title{
    width: 330px;
    font-weight: 500;
    line-height: 15px;
    font-size: 13px;
}
.header_order{
    display: flex;
    font-weight: 500;
    line-height: 15px;
    color: #000000;
    font-size: 14px;
    padding-bottom: 3px;
    border-bottom: 1px dashed #000000;
    position: relative;
    margin-left: 53px;
    transition: all 0.3s;
}
.header_order:hover{
    color: #F49C07;
    border-bottom: 1px dashed #F49C07;
}
.header_order::before{
    position: absolute;
    content: "";
    background: #01397C;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    left: -53px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/header_order.svg);
    background-size: 18px 18px;
    background-position: 13px 50% ;
    background-repeat: no-repeat;
}
.header_number{
    font-weight: 600;
    color: #000000;
    font-size: 22px;
    transition: all 0.3s;
}
.header_number:hover{
    color: #F49C07;
}
.header_call{
    width: 161px;
    height: 42px;
}


.main{
    background-image: url(../img/main.jpg);
    background-size: cover;
    background-position: center;
    padding: 175px 0 70px;
    position: relative;
}
.main::before{
    position: absolute;
    content: "";
    width: 38%;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(4, 56, 118, 0.9) 58.23%, rgba(1, 57, 124, 0) 100.23%);
    backdrop-filter: blur(9px);
}
.main_wrapper{
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: flex-end;
}

.main_left{
    width: 65%;
}
.main_title{
    font-weight: 800;
    line-height: 72px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 50px;
    margin-bottom: 150px;
}
.main_title span{
    font-weight: 500;
    line-height: 47px;
    font-size: 23px;
}
.main_links{
    display: flex;
    justify-content: space-between;
}

.main_btn{
    box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.16);
    width: 264px;
    height: 65px;
    font-weight: 700;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
}
.main_price{
    position: relative;
    background: #FFFFFF;
    border-radius: 0px 0px 15px 0px;
    border: 1px dashed #BABABA;
    padding: 0 22px 0 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 63px;
    font-weight: 500;
    line-height: 20px;    
    color: #000000;
    transition: all 0.3s;
}
.main_price:hover{
    color: #01397C;
}
.main_price::before{
    position: absolute;
    content: "";
    background-image: url(../img/main_price.png);
    background-size: cover;
    width: 96px;
    height: 106px;
    left: -63px;
    top: -22px;
}

.main_items{
    width: 25%;
    position: relative;
    z-index: 1;
}
.main_item{
    padding-left: 68px;
    position: relative;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
    margin-bottom: 53px;
}
.main_item img{
    position: absolute;
    left: 0;
    top: 0;
}
.main_item span{
    font-weight: 700;
    display: inline-block;
}
.main_item:last-child{
    margin-bottom: 0;
}

.advantages{
    padding: 100px 0 60px;
}
.advantages_title{
    margin-bottom: 48px;
}
.advantages_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.advantages_item{
    width: 30%;
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 22px;
}
.advantages_item span{
    font-weight: 700;
}
.advantages_item-img{
    position: absolute;
    left: 0;
    top: 0;width: 59px;
    height: 59px;
    background: #01397C;
    border-radius: 18px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.catalog{
    margin-bottom: 85px;
}

.catalog_title{
    margin-bottom: 40px;
}
.catalog_wrapper .slick-track{
    display: flex;
}
.catalog_item{
    display: flex!important;
    justify-content: space-between;
    border: 1px dashed #DBDBDB;
    border-radius: 25px 25px 0px 0px;
    height: initial;
}
.catalog_item-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.catalog_item-subtitle{
    background: #01397C;
    border-radius:  25px 0px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 20px;
    text-align: center;
    padding: 26px 0 26px 30px;   
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}
.catalog_item-subtitle img{
    position: absolute;
    left: 74px;
    top: 50%;
    transform: translateY(-50%);
}
.catalog_item-subtitle span{
    font-weight: 700;
}
.catalog_item-right{
    width: 42%;
    padding: 28px 110px 46px 0;
    position: relative;
    z-index: 1;
    user-select: text;
}
.catalog_item-title{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
}
.catalog_item-text{
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 23px;
}
.catalog_item-optiops_title{
    font-weight: 600;
    line-height: 20px;
    font-size: 14px;
}
.catalog_item-option{
    font-size: 14px;
    line-height: 20px;
    position: relative;
    padding-left: 20px;
}
.catalog_item-option::before{
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    background-color: #000;
    border-radius: 50%;
    left: 8px;
    top: 8px;
}
.catalog_item-des{
    margin-top: 10px;
    font-size: 13px;
    color: #444444;
    line-height: 22px;
    margin-bottom: 30px;
}
.catalog_item-link{
    font-weight: 600;
    line-height: 22px;
    border-bottom: 1px solid #000;
    font-size: 15px;
    display: inline-block;
    color: #000;
    margin-bottom: 33px;
}
.catalog_item-btn{
    height: 60px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.catalog_item-price{
    width: 100%;
    border: 1px solid #00397C;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #00397C;
    font-size: 16px;
    transition: all 0.3s;
}
.catalog_item-price:hover{
    background-color: #F49C07;
    border: none;
    color: #fff;
}

.catalog_wrapper .slick-arrow{
    position: absolute;
    width: 51px;
    height: 51px;
    z-index: 1;
    cursor: pointer;
    background: #F3F3F3;
    border-radius: 50%;
    border: none;
    font-size: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: 19px 8px;
    background-position: center;
    background-repeat: no-repeat;
}
.catalog_wrapper .slick-next{
    right: 20px;
    background-image: url(../img/arrow_right.svg);
}
.catalog_wrapper .slick-prev{
    left: 20px;
    background-image: url(../img/arrow_left.svg);
}
.catalog_inner{
    position: relative;
}
.catalog_dots{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.catalog_item-left{
    position: relative;
}
.catalog_dots-wrapper{
    position: absolute;
    bottom: 38px;
    right: 50%;
    transform: translateX(50%);
    width: 350px;
}
.catalog_dots-title{
    text-align: center;
    font-weight: 600;
    line-height: 18px;
    font-size: 18px;
    margin-bottom: 14px;
}
.catalog_item:nth-child(2) .catalog_dot{
    margin: 0;
}
.catalog_item:nth-child(3) .catalog_dot{
    margin: 0;
}
.catalog_item:nth-child(2) .catalog_dots-wrapper{
    width: 415px;
}
.catalog_dot{
    cursor: pointer;
    margin: 0 10px 10px;
}
.catalog_dot img{
    width: 100%;
    height: 100%;
}
.catalog_dots .slick-arrow{
    position: absolute;
    width: 36px;
    height: 36px;
    z-index: 1;
    cursor: pointer;
    background: #F3F3F3;
    border-radius: 50%;
    border: none;
    font-size: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: 14px 7px;
    background-position: center;
    background-repeat: no-repeat;
}
.catalog_dots .slick-next{
    right: -59px;
    background-image: url(../img/arrow_right.svg);
}
.catalog_dots .slick-prev{
    left: -59px;
    background-image: url(../img/arrow_left.svg);
}


.video{
    padding-bottom: 110px;
}
.video_title{
    margin-bottom: 58px;
}
.video_item{
    width: 697px;
    height: 408px;
}
.video_body{
    width: 100%;
    height: 100%;
}
.video_body iframe{
    width: 100%;
    height: 100%;
}
.video_wrapper{
    position: relative;
}
.video_text{
    width: 434px;
    background: #01397C;
    border-radius: 25px  0px;
    position: absolute;
    height: 171px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    line-height: 32px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    padding: 38px;
}


.design{
    padding: 100px 0;
    background: #F1F1F1;
    position: relative;
}
.design .container{
    position: relative;
}
.design_img{
    position: absolute; 
    top: 73px;
    left: 74px;
}
.design_title{
    margin-bottom: 55px;
}
.design_top{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.design_info{
    width: 300px;
}
.design_info-title{
    font-weight: 700;
    line-height: 26px;
    font-size: 20px;
    margin-bottom: 27px;
}
.design_info-text{
    line-height: 24px;
    margin-bottom: 25px;
}
.design_info-text:last-child{
    margin-bottom: 0;
}
.design_top-items{
    width: 24.5%;
}
.design_top-items .desing_item{
    width: 100%;
    margin-bottom: 27px;
}
.desing_item-img{
    width: 90%;
    margin-bottom: 16px;
    display: flex;  
}
.desing_item-img img{
    width: 100%;
    height: 100%;
}
.desing_item-text{
    font-size: 14px;
    line-height: 20px;
}
.desing_item-text span{
    font-weight: 700;
}
.desing_item-text .number{
    color: #004799;
}
.desing_item-text .number i{
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
}
.design_bot{
    display: flex;
    justify-content: space-between;
}
.desing_item{
    width: 24.5%;
}
.design_item-info{
    width: 20%;
}
.design_item-info_img{
    display: flex;
}
.design_item-info_text{
    font-weight: bold;
    line-height: 24px;
}

.panels{
    padding: 90px 0;
}
.panels_title{
    margin-bottom: 30px;
}
.panels_text{
    line-height: 26px;
    color: #000000;
    margin-bottom: 43px;
    max-width: 1015px;
}
.panels_text span{
    font-weight: 700;
}
.panels_items{
    display: flex;
    justify-content: space-evenly;
}
.panels_item{
    width: 31%;
}
.panels_item-title{
    background: #003A7D;
    border: 1px dashed #F0F0F0;
    border-radius: 0px 15px 0px 0px;
    margin-bottom: 16px;
    width: 287px;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #FFFFFF;
}
.panels_item-title span{
    font-weight: 600;
    margin-left: 10px;
}
.panels_item-text{
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}
.panels_item-img{
    margin-bottom: 25px;
}
.panels_item-subtitle{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 14px;
}
.panels_item-subtitle span{
    font-weight: 600;
}
.panels_item-option{
    line-height: 26px;
    padding-left: 25px;
    position: relative;
}
.panels_item-option::before{
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}
.panels_item-option span{
    font-weight: 700;
}
.panels_item-options{
    margin-bottom: 17px;
}
.panels_item-desc{
    font-size: 14px;
    color: #404040;
    line-height: 20px;
}


.ways{
    padding-bottom: 100px;
}
.ways_title{
    margin-bottom: 50px;
}
.ways_items{
    display: flex;
    justify-content: space-between;
    margin-bottom: 54px;
}
.ways_item{
    width: 24%;
    background-size: cover;
    height: 260px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}
.ways_item-title{
    position: absolute;
    bottom: 17px;
    right: 50%;
    transform: translateX(50%);
    font-size: 14px;
    text-align: center;
    text-decoration-line: underline;
    color: #FFFFFF;
    transition: all 0s 0.3s;
    line-height: 20px;
    z-index: 1;
}
.scroll{
    border-radius: 50%;
    background-color: #F49C07;
    width: 38px;
    height: 38px;
    z-index: 8;
    position: fixed;
    bottom: 50px;
    right: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    transform: scale(0);
}
.scroll.fixed{
    transform: scale(1);
}
.ways_item:hover .ways_item-title{
    opacity: 0;
    transition: all 0s 0s;
}
.ways_item-text{
    background: #003A7D;
    max-height: 50px;
    font-size: 14px;
    color: rgba(225,255,255, 0);
    line-height: 20px;
    padding: 20px;
    transition: all 0.3s linear;
    position: relative;
}
.ways_item-text::before{
    position: absolute;
    content: "";
    background-image: url(../img/ways_item.svg);
    background-size: cover;
    width: 40px;
    height: 14px;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
}
.ways_item-text span{
    font-weight: 700;
}
.ways_item:hover .ways_item-text{
    max-height: 100%;
    color: #FFFFFF;
}
.ways_inner{
    display: flex;
    justify-content: space-between;
}
.ways_inner-text{
    width: 65%;
    padding-left: 190px;
    line-height: 26px;
    position: relative;
}
.ways_inner-text::before{
    position: absolute;
    content: "";
    background-image: url(../img/ways_inner-text.png);
    width: 260px;
    height: 195px;
    left: -53px;
    top: 50%;
    transform: translateY(-50%);
}
.ways_inner-text span{
    font-weight: 700;
}
.ways_inner-links{
    width: 32%;
}
.ways_inner-btn{
    height: 68px;
    font-weight: 700;
    line-height: 22px;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.ways_links-text{
    text-align: center;
    font-weight: 600;
    line-height: 20px;
    font-size: 15px;
}


.colors_content{
    display: none;
}
.colors_content.active{
    display: flex;
}
.colors{
    padding-bottom: 100px;
}
.colors_titile{
    margin-bottom: 45px;
}
.colors_wrapper{
    display: flex;
    justify-content: space-between;
    height: 500px;
}
.colors_tabs{
    width: 34%;
    padding-right: 60px;
    border-right: 2px solid #D2D2D2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.colors_tab{
    width: 100%;
    position: relative;
    padding: 25px 44px 72% 0;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    font-weight: 300;
    line-height: 26px;
    font-weight: 300;
    color: #000000;
    font-size: 18px;
    cursor: pointer;
}
.colors_tab::after{
    position: absolute;
    content: "";
    width: 335px;
    background-image: url(../img/colors_tab-bef2.png);
    background-size: cover;
    width: 213px;
    height: 158px;
    top: 9px;
    right: 26px;
    z-index: -1;
}
.colors_tab.active::after{
    background-image: url(../img/colors_tab-bef.png);
}
.colors_tab:first-child{
    margin-bottom: 12px;
}
.colors_tab img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    right: 0;
    opacity: 0.3;
}
.colors_tab.active img{
    opacity: 1;
}
.colors_tab.active {
   color: #fff;
   font-weight: 500;
}
.colors_tab.active::before{
    position: absolute;
    content: "";
    height: 100%;
    width: 2px;
    background-color: #004799;
    top: 0;
    right: -62px;
}
.colors_content{
    width: 60%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.colors_item{
    width: 28%;
    text-align: center;
    margin: 6px 0;
}
.colors_item-img{
    width: 100%;
    display: flex;
}
.colors_item-img img{
    width: 100%;
    height: 100%;
}
.colors_item-title{
    font-weight: 300;
    line-height: 16px;
    font-size: 14px;
}
.colors_inner{
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.colors_inner-text{
    width: 55%;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    line-height: 28px;
}
.colors_inner-text::before{
    position: absolute;
    content: "";
    border: 4px dashed #004799;
    width: 90px;
    top: -18px;
    bottom: -16px;
    border-right: none;
    left: 0;
}
.colors_inner-text span{
    font-weight: 700;
    display: block;
}
.colors_inner-btn{
    width: 349px;
    height: 68px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;   
}

.drivers{
    padding: 80px 0 110px;
    background: #F1F1F1;
}
.drivers_title{
    margin-bottom: 48px;
}
.drivers_items{
    max-width: 910px;
    margin: 0 auto 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.drivers_item{
    width: 43.5%;
    height: 263px;
    background-repeat: no-repeat;
    background-size: 100% calc(100% - 66px);
    position: relative;
    margin-bottom: 65px;
    overflow: hidden;
}
.drivers_item::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 66px;
    background: #2D2D2D;
    bottom: 0;
    left: 0;
}
.drivers_item-wrapper{
    background: rgba(45, 45, 45, 0.9);
    height: 100%;
    padding: 25px 20px 30px 20px; 
    position: relative;
    transform: translateY(calc(100% - 66px));
    transition: all 0.6s;
}
.drivers_item-wrapper::before{
    position: absolute;
    content: "";
    background-image: url(../img/drivers_item-wrapper.svg);
    background-size: cover;
    width: 38px;
    height: 38px;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    transition: all 0.1s;
}
.drivers_item:hover .drivers_item-wrapper{
    transform: none;
    padding: 30px 20px 30px 20px; 
}
.drivers_item:hover .drivers_item-wrapper::before{
    opacity: 0;
}
.drivers_item-title{
    color: #FFFFFF;
    margin-bottom: 25px;
    text-align: center;
}
.drivers_item-title span{
    font-weight: 700;
}
.drivers_item-option{
    margin-bottom: 15px;
    padding-left: 65px;
}
.drivers_item-name{
    font-weight: 500;
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 5px;
}
.drivers_item-value{
    width: 200px;
    height: 7px;
    background: #EDEDED;
    border-radius: 10px;
    position: relative;
}
.drivers_item-value span{
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: #F49C07;
    border-radius: 10px;
}

.drivers_wrapper{
    max-width: 910px;
    margin: 0 auto 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.drivers_wrapper-info{
    width: 53%;
}
.drivers_wrapper-title{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}
.drivers_wrapper-text{
    font-size: 18px;
    line-height: 26px;
}
.drivers_wrapper::before{
    position: absolute;
    content: "";
    border: 4px dashed #004799;
    width: 90px;
    top: -26px;
    bottom: -23px;
    border-right: none;
    left: -25px;
}
.drivers_wrapper-btn{
    width: 307px;
    height: 64px;
    font-size: 20px;
    text-transform: uppercase;
}

.sample{
    padding: 80px 0 100px;
}
.sample_title{
    margin-bottom: 40px;
}
.sample_wrapper{
    display: flex;
    justify-content: space-between;
}
.sample_left{
    width: 67.5%;
}
.sample_left-img img{
    width: 100%;
    height: 100%;
}
.sample_right{
    width: 27%;
}
.sample_left-text{
    line-height: 26px;
    margin-bottom: 50px;
}
.sample_left-text span{
    font-weight: 700;
}
.sample_right-title{
    font-weight: 700;
    line-height: 26px;
    font-size: 20px;
    margin-bottom: 35px;
}
.sample_right-text{
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
}
.sample_right-btn{
    height: 62px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.sample_right-order{
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #F49C07;
    margin-bottom: 17px;
    font-size: 20px;
    color: #474747;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}
.sample_right-order:hover{
    background-color: #F49C07;
    color: #fff;
}
.sample_right-ready{
    line-height: 18px;
    text-align: center;
    color: #000000;
    font-size: 14px;
}
.sample_right-ready span{
    font-weight: bold;
}
.warranty_title .number{
    font-size: 60px;
}
.warranty_title{
    margin-bottom: 60px;
}
.warranty_inner{
    background-image: url(../img/warranty_inner.jpg);
    background-size: cover;
    position: relative;
}
.warranty_inner::before{
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(0, 58, 125, 0.7) 43.73%, #003A7D 70.5%);
}
.warranty_inner::after{
    position: absolute;
    content: "";
    background-image: url(../img/pol.svg);
    background-size: cover;
    width: 45px;
    height: 89px;
    top: 50%;
    right: calc(50% - 1px);
    transform: translateY(-50%)
}
.warranty_wrapper{
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.warranty_items{
    width: 45%;
    display: flex;
    justify-content: space-evenly;

}

.warranty_item{
    border: 2px dashed #FFFFFF;
    padding: 35px 17px 25px;
    text-align: center;
    border-radius:20px 0px  0px 0px;
    width: 215px;
}   
.warranty_item:last-child{
    border-radius: 0px 20px 0px 0px;
}
.warranty_item-years{
    font-weight: 700;
    line-height: 30px;
    color: #FFFFFF;
    font-size: 33px;
    margin-bottom: 15px;
}
.warranty_item-years span{    
    font-size: 79px;
}
.warranty_item-title{
    font-weight: 700;
    line-height: 30px;
    color: #F49C07;
    font-size: 27px;
    margin-bottom: 3px;
}
.warranty_item-text{
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 20px;
}
.warranty_item-subtitle{
    font-weight: 700;
    line-height: 20px;
    color: #FFFFFF;
    font-size: 27px;
}
.warranty_info{
    width: 50%;
    padding: 70px 0px 70px 50px;
}
.warranty_info-title{
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 30px;
    margin-bottom: 7px;
}
.warranty_info-title span{
    font-weight: 700;
}
.warranty_info-text{
    font-weight: 700;
    line-height: 26px;
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 40px;
}
.warranty_info-btn{
    width: 295px;
    height: 66px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

.gallery{
    padding: 110px 0;
}
.gallery_title{
    margin-bottom: 40px;
}
.gallery_wrapper .slick-track{
    display: flex;
}
.gallery_wrapper .slick-list{
    
    padding: 0 29%!important;
}
.gallery_item{
    height: initial;
    margin: 0 50px;
    transform: scale(0.81);
    height: 490px;
    position: relative;
    transition: all 0.3s;
}
.gallery_item::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgba(225,255,255, 0.4);
    transition: all 0.3s;
}
.gallery_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slick-current.gallery_item::before{
    display: none;
}
.slick-current.gallery_item{
    transform: scale(1);
}

.gallery_wrapper .slick-arrow{
    position: absolute;
    width: 51px;
    height: 51px;
    z-index: 1;
    cursor: pointer;
    background: #F3F3F3;
    border-radius: 50%;
    border: none;
    font-size: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: 19px 8px;
    background-position: center;
    background-repeat: no-repeat;
}
.gallery_wrapper .slick-next{
    right: 25%;
    background-image: url(../img/arrow_right.svg);
}
.gallery_wrapper .slick-prev{
    left: 25%;
    background-image: url(../img/arrow_left.svg);
}



.showroom{
    padding-bottom: 110px;
}
.showroom_wrapper{
    background: #343434;
    display: flex;
    justify-content: space-between;
    padding: 40px 90px;
}
.showroom_info{
    width: 40%;
}
.showroom_title{
    font-weight: 700;
    line-height: 54px;
    color: #FFFFFF;
    font-size: 34px;
    margin-bottom: 20px;
}
.showroom_text{
    font-weight: 600;
    line-height: 32px;
    color: #FFFFFF;
    font-size: 22px;
}
.showroom_img{
    display: flex;
}

.form{
    background-image: url(../img/form_bg.jpg);
    background-size: cover;
    padding: 60px 0;
}
.form_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form_inner{
    max-width: 450px;
}
.form_title{
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 34px;
    margin-bottom: 40px;
}
.form_text{
    font-weight: 500;
    line-height: 30px;
    color: #FFFFFF;
    font-size: 22px;
}
.form_inner{
    background: rgba(9, 52, 102, 0.8);
    border-radius: 0px 30px;
    border: 1px dashed #FFFFFF;
    padding: 40px 35px;
}
.form_inner-title{
    font-weight: 600;
    line-height: 26px;
    text-align: center;
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 35px;
}
.form_inner-inp{
    width: 324px;
    height: 55px;
    margin: 0 auto 20px;
    padding-left: 15px;
    display: block;
    border: none;
}
.form_inner-inp::placeholder{
    color: #000;
}
.form_inner-btn{
    width: 325px;
    height: 63px;
    margin: 0 auto 18px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}
.form_inner-ok{
    font-size: 12px;
    text-align: center;
    color: #FFFFFF;
    line-height: 14px;
    width: 288px;
    margin: 0 auto;
}
.footer{
    padding: 45px 0 20px;
}
.footer_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.footer_messanges{
    display: flex;
}
.footer_messange{
    display: flex;
    margin: 0 7px;
    transition: all 0.3s;
}
.footer_messange:hover{
    transform: scale(1.1);
}
.footer_mail{
    font-size: 14px;
    color: #000000;
    line-height: 22px;
    padding-left: 28px;
    position: relative;
    transition: all 0.3s;
}
.footer_mail:hover{
    color: #F49C07;
}
.footer_mail::before{
    position: absolute;
    content: "";
    background-image: url(../img/footer_mail.svg);
    background-size: cover;
    width: 18px;
    height: 18px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer_question{
    font-size: 14px;
    color: #000000;
    line-height: 22px;
    padding-left: 27px;
    position: relative;
    transition: all 0.3s;
}
.footer_question:hover{
    color: #F49C07;
}
.footer_question::before{
    position: absolute;
    content: "";
    background-image: url(../img/footer_question.svg);
    background-size: cover;
    width: 16px;
    height: 16px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer_number{
    font-weight: 600;
    color: #000000;
    font-size: 24px;
    transition: all 0.3s;
}
.footer_number:hover{
    color: #F49C07;
}
.footer_bot{
    display: flex;
    justify-content: space-between;
}
.footer_text{
    font-size: 14px;
    color: #737373;
    line-height: 20px;
    margin-bottom: 10px;
}
.footer_polit{
    font-size: 12px;
    text-decoration-line: underline;
    color: #737373;
    line-height: 18px;
    transition: all 0.3s;
}
.footer_polit:hover{
    color: #F49C07;
}
.footer_inner{
    font-size: 12px;
    color: #737373;
    line-height: 18px;
}
.mfp-close-btn-in .mfp-close{
    transition: all 0.3s;
    font-size: 38px;
    color:  #fff;
    margin: 15px;
}
.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8); }
   
  .mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
   
  .mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); }
   
  .mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8; }
   
  .mfp-zoom-in.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0; }
   
  .mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0; }


    .order_popup{
        background: #01397C;
        box-shadow: 0px 0px 25px rgba(66, 41, 0, 0.35);
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
        padding: 50px 35px;
        text-align: center;
    }
    .order_popup-title{
        font-weight: 700;
        line-height: 30px;
        text-align: center;
        color: #FFFFFF;
        font-size: 22px;
        margin-bottom: 15px;
    }
    .order_popup-text{
        font-weight: 500;
        text-align: center;
        color: #FFFFFF;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .order_popup-inp{
        width: 297.67px;
        height: 58.35px;
        display: block;
        margin: 0 auto 20px;
        padding-left: 15px;
    }
    .order_popup-ok{
        font-size: 12px;
        color: #FFFFFF;
        line-height: 14px;
        margin-bottom: 20px;
    }
    #popup_diller  .order_popup-ok{
        margin-top: 20px;
        margin-bottom: 0;
    }
    .order_popup-btn{
        width: 297.67px;
        height: 60px;
        margin: 0 auto;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
        font-size: 16px;
        cursor: pointer;
        border: none;
    }

    .popup_price{
        background: none;
        width: 920px;
        max-width: 920px;
        margin: 0 auto;
        position: relative;
    }
    .popup_body-pcice{
        display: flex;
        justify-content: space-between;
    }
    .popup_body-pcice .popup_body-form{
        width: 50%;
        background-color: #fff;
    }
    .popup_body-media{
        width: 50%;
        background-color: #003A7D;
        position: relative;
        padding: 50px 35px 65px;
        display: flex;
        align-items: flex-end;
    }
    .popup_body-img{
        position: absolute;
        top: -35px;
        right: 0;
    }
    .popup_price .popup_body-form{
        padding: 43px 23px;
    }
    .popup_price .popup_body-title{
        color: #000;
    }
    .popup_price .popup_body-text{
        color: #000;
    }
    .popup_price .popup_body-ok{
        color: #000;
        max-width: 295px;
        margin: 0 auto;
    }
    .popup_price .fancybox-close-small{
        right: 45px;
        top: 35px;
    }
    .popup_price .popup_body-btn{
        background: #003A7D;
        margin-bottom: 20px;
    }
    .popup_body-sale{
        font-weight: 500;
        line-height: 24px;
        color: #FFFFFF;
        font-size: 18px;
        display: flex;
        align-items: center;
    }
    .popup_body-sale span{
        font-weight: 700;
        font-size: 47px;
        line-height: 29px;  
        white-space: nowrap;
        color: #F49C07;
    }
    
    .popup_body-title{
        font-weight: 700;
        line-height: 26px;
        font-size: 22px;
        text-align: center;
        margin-bottom: 19px;
    }
    .popup_body-text{
        font-weight: 500;
        line-height: 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    .popup_body-inp{
        width: 297.67px;
        height: 58.35px;
        display: block;
        margin: 0 auto 20px;
        padding-left: 15px;
        border: 1px solid #B9B9B9;
    }
    .popup_body-btn{
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        cursor: pointer;
        width: 298px;
        height: 56px;
        margin: 0 auto 19px;
        font-weight: bold;
        line-height: 19px;
        text-align: center;
        text-transform: uppercase;
        color: #FFFFFF;
        font-size: 16px;
    }
    .popup_body-ok{
        font-size: 12px;
        text-align: center;
        line-height: 14px;
    }
    .header_mobile-links{
        display: none;
    }
    .header_mobile-menu{
        display: none;
    }



    .thanks{
        background-image: url(../img/main.jpg);
        background-size: cover;
        background-position: center;
        padding: 153px 0 290px;
    }
    .thanks_title{
        font-weight: 700;
        line-height: 47px;
        color: #FFFFFF;
        font-size: 36px;
    }
    .thanks_subtitle{
        font-weight: 500;
        line-height: 47px;
        color: #FFFFFF;
        font-size: 23px;
        margin-bottom: 60px;
    }
.thanks_btn{
    width: 299px;
    height: 65px;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    font-weight: 700;
}




.popup_size{
    max-width: 980px;
    margin: 0 auto;
}
.popup_zam-wrapper{
    display: flex;
    background-color: #fff;
}
.popup_zam-img{
    display: flex;
}
.popup_zam-img picture{
    display: flex;
}
.popup_zam-form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.popup_zam-form{
    padding: 45px;
}
.popup_zam-title{
    font-weight: bold;
    line-height: 22px;
    font-size: 20px;
    margin-bottom: 24px;
    width: 100%;
}
.popup_zam-item{
    margin-bottom: 15px;
    width: 100%;
}
.popup_zam-item:nth-child(2),
.popup_zam-item:nth-child(3),
.popup_zam-item:nth-child(4),
.popup_zam-item:nth-child(5){
    width: 48%;
}
.popup_zam-item_title{
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 9px;
}

.popup_zam-inp{
    width: 100%;
    height: 42px;
    border: 1px solid #B6B6B6;
    padding-left: 15px;
}
.popup_zam-btn{
    border: none;
    width: 100%;
    height: 62px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    margin-bottom: 10px;
    cursor: pointer;
}
.popup_zam-ok{
    font-size: 12px;
    text-align: center;
    line-height: 17px;
}
.popup_size .mfp-close{
    color:#616161;
    margin: 0;
}






    @media(max-width:1600px){
        .gallery_wrapper .slick-list {
            padding: 0 20%!important;
        }
        .gallery_wrapper .slick-next {
            right: 15%;
        }
        .gallery_wrapper .slick-prev {
            left: 15%;
        }
        .main{
            padding: 100px 0 70px;
        }
    }
    @media(max-width:1400px){
        .main_left {
            width: 60%;
        }
        .main_title{
            font-size: 46px;
        }
        .main_items {
            width: 30%;
        }
    }
    @media(max-width:1150px){
        .header_title{
            display: none;
        }
        .main_title {
            font-size: 42px;
            margin-bottom: 80px;
        }
        .main{
            padding: 140px 0 60px;
            background-position: center;
        }
        .main_links{
            flex-direction: column;
            align-items: center;
        }
        .main_btn{
            margin-bottom: 35px;
        }
        .main_items {
            width: 35%;
        }
        .main_wrapper{
            align-items: center;
        }
        .scroll_links{
            right: 15px;
        }
        .scroll{
            right: 15px;
        }
        .catalog_item-subtitle img{
            left: 50px;
        }
        .video_item{
            width: 550px;
            height: auto;
        }
        .video_body {
            position: relative;
            padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
            height: 0;
            overflow: hidden;
          }
          .video_body iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-width: 0;
            outline-width: 0;
          }
          .design_img{
              left: 15px;
          }
          .design_item-info_text{
              font-size: 14px;
          }
          .panels_item {
            width: 40%;
        }
        .ways_item{
            height: 215px;
        }
        .warranty_item{
            width: 200px;
        }
        .gallery_wrapper .slick-list {
            padding: 0 15%!important;
        }
        .gallery_item{
            margin: 0 20px;
        }
        .gallery_wrapper .slick-next {
            right: 10%;
        }
        .gallery_wrapper .slick-prev {
            left: 10%;
        }
        .popup_zam-form{
            width: 100%;
        }
        .popup_zam-img{
            width: 100%;
        }
        .popup_zam-img img{
            width: 100%;
            height: 100%;
        }
        .popup_zam-wrapper{
            flex-direction: column;
        }
        .popup_size{
            max-width: 500px;
        }
    }
    @media(max-width:991px){
        .main_wrapper{
            flex-direction: column;
            padding-bottom: 240px;
        }
        .main_left{
            width: 100%;
            margin-bottom: 35px;
        }
        .main_links{
            align-items: flex-start;
            position: absolute;
            bottom: 0;
            width: 100%;
            left: 0;
        }
        .main_price{
            margin-left: 50px;
        }
        .main_items{
            width: 100%;
        }
        .main::before{
            top: auto;
            bottom: 0;
            width: 100%;
            height: 60%;
        }
        .advantages_item{
            width: 48%;
        }
        .catalog_item{
            flex-direction: column;
        }
        .catalog_item-left{
            width: 100%;
            align-items: center;
            margin-bottom: 200px;
         
        }
        .catalog_item-right{
            width: 100%;
            padding: 20px 15px 30px;
        }
        .catalog_wrapper .slick-arrow{
            top: 25%;
        }
        .catalog_dots-wrapper{
            bottom: auto;
            top: 500px;
            left: 50%;
            transform: translateX(-50%);
        }
        .video_text{
            position: relative;
            transform: none;
            top: auto;
            left: auto;
            width: 100%;
        }
        .video_wrapper{
            flex-direction: column-reverse;
            display: flex;
        }
        .video_item{
            width: 100%;
        }
        .design_top{
            flex-direction: column;
        }
        .design_info{
            width: 100%;
        }
        .design_top-items{
            display: flex;
            justify-content: space-between;
            width: 100%;
        }
        .design_top-item {
            width: 48%;
        }
        .design_top-items .desing_item{
            width: 48%;
        }
        .design_img{
            position: relative;
            top: auto;
            left: auto;
        }
        .design_bot{
            flex-wrap: wrap;
        }
        .design_bot  .desing_item:nth-child(4){
            order: -3;
        }
        .design_bot  .desing_item:nth-child(3){
            order: -2;
        }
        .design_bot  .desing_item:nth-child(2){
            order: -1;
        }
        .desing_item{
            width: 48%;
            margin-bottom: 27px;
        }
        .design_item-info{
            width: 48%;
            margin-bottom: 27px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .design_item-info_img{
            width: 140px;
        }
        .design_item-info_img img{
            width: 100%;
            height: 100%;
        }
        .panels_items{
            justify-content: space-between;
        }
        .panels_item {
            width: 45%;
        }
        .ways_item-text{
            font-size: 14px;
            padding: 15px;
            line-height: 18px;
        }
        .ways_items{
            flex-wrap: wrap;
        }
        .ways_item{
            width: 48%;
            margin-bottom: 15px;
        }
        .ways_inner{
            flex-direction: column;
        }
        .ways_inner-text{
            width: 100%;
            padding-left: 0;
            padding-top: 175px;
            margin-bottom: 30px;
        }
        .ways_inner-text::before{
            top: 0;
            right: 50%;
            transform: translateX(50%);
            left: auto;
            width: 214px;
            height: 160px;
            background-size: cover;
        }
        .ways_inner-links{
            width: 100%;
        }
        .colors_wrapper{
            flex-direction: column;
            height: auto;
        }
        .colors_tabs{
            width: 100%;
            flex-direction: row;
            padding-right: 0;
            padding-bottom: 30px;
            border-right: none;
            border-bottom: 2px solid #D2D2D2;
            margin-bottom: 40px;
        }
        .colors_tab {
            width: 100%;
            position: relative;
            padding: 25px 60px 34%;
        }
        .colors_tab::after {
            top: 10px;
            right: 32px;
        }
        .colors_tab.active::before{
            width: 100%;
            height: 2px;
            bottom: -32px;
            top: auto;
            transform: none;
            right: 0;
        }
        .colors_wrapper{
            width: 738px;
            margin: 0 auto;
        }
        .colors_tab:first-child{
            margin-bottom: 0;
        }
        .colors_content{
            width: 100%;
        }
        .colors_inner-text{
            display: none;
        }
        .drivers_item {
            width: 48%;
            margin-bottom: 35px;
        }
        .drivers_wrapper{
            flex-direction: column;
        }
        .drivers_wrapper-info{
            width: 100%;
            margin-bottom: 45px;
            padding-left: 30px;
            position: relative;
        }
     
        .drivers_wrapper-info::before {
            position: absolute;
            content: "";
            border: 4px dashed #004799;
            width: 90px;
            top: -26px;
            bottom: -23px;
            border-right: none;
            left: 0;
        }
        .drivers_wrapper::before{
            display: none;
        }
        .sample_wrapper{
            flex-direction: column;
        }
        .sample_left{
            width: 100%;
            margin-bottom: 45px;
        }
        .sample_right{
            width: 100%;
        }
        .warranty_wrapper{
            flex-direction: column;
        }
        .warranty_items{
            width: 100%;
            padding: 40px 0;
        }
        .warranty_info{
            width: 100%;
            padding: 40px 0;
        }
        .warranty_inner::before{
            width: 100%;
            height: 50%;
            top: auto;
            bottom: 0;
        }
        .warranty_inner::after{
            transform: translate(50%,-74%) rotate(90deg);
        }
        .warranty_inner::before{
            background-image: url(../img/warranty_inner-mobil.jpg);
            background-size: cover;
            background-position: center;
        }
        .warranty_info-btn{
            margin: 0 auto;
        }
        .gallery_wrapper .slick-list {
            padding: 0!important;
        }
        .gallery_item{
            margin: 0 15px;
        }
        .gallery_wrapper .slick-next{
            right: 15px;
        }
        .gallery_wrapper .slick-prev{
            left: 15px;
        }
        .showroom_wrapper{
            flex-direction: column;
        }
        .showroom_info{
            width: 100%;
            margin-bottom: 40px;
        }
        .showroom_img{
            width: 100%;
        }
        .showroom_img img{
            width: 100%;
            height: 100%;
        }
        .form_wrapper{
            flex-direction: column;
            align-items: flex-start;
        }
        .form_info{
            margin-bottom: 35px;
        }
        .form_inner{
            margin: 0 auto;
        }
        .form{
            background-position: 13%;
        }
        .footer_top{
            flex-direction: column;
        }
        .footer_messanges,
        .footer_logo{
            margin-bottom: 25px;
        }
        .footer_mail{
            margin-bottom: 6px;
        }
        .footer_question{
            margin-bottom: 25px;
        }
        .footer_bot{
            flex-direction: column;
        }
        .footer_bot{
            margin-bottom: 25px;
        }
        .popup_body-pcice{
            flex-direction: column-reverse;
        }
        .popup_price{
            width: 680px;
        }
        .popup_body-pcice .popup_body-form{
            width: 100%;
        }
        .popup_body-media{
            width: 100%;
            padding: 200px 25px 30px;
        }
        .popup_body-img{
            width: 230px;
            right: 50%;
            transform: translateX(50%);
        }
        .popup_body-img img{
            width: 100%;
            height: 100%;
        }
        .popup_body-sale span{
            margin-left: 5px;
        }
    }
    @media(max-width:760px){
        .header_order {
            display: none;
        }
        .header_number{
            display: none;
        }
        .header_call{
            display: none;
        }
        .header_wrapper{
            justify-content: center;
        }
        .header_wrapper{
            padding: 9px 0;
        }
        .header_logo{
            width: 154px;
        }
        .header_logo img{
            width: 100%;
            height: 100%;
        }
        .header_mobile-links{
            display: flex;
            justify-content: space-between;
            background-color: #fff;
            position: fixed;
            bottom: 0;
            width: 100%;
            left: 0;
            padding: 5px 25px;
        }
        .header_mobile-burger,
        .header_mobile-link{
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            height: initial;
            font-size: 12px;
            text-align: center;
            color: #000000;
            line-height: 20px;
        }
        .header_mobile-burger{
            padding-top: 5px;
        }
        .scroll_links{
            display: none;
        }
        .header_mobile-menu{
            display: block;
            position: fixed;
            width: 100%;
            height: 100%;
            top: -100%;
            right: 0;
            background-color: #fff;
            z-index: 10;
            transition: all 0.6s;
            padding: 10px;
            overflow-y: scroll;
        }
        .header_mobile-menu.active{
            top: 0;
        }
        .header_mobile-logo{
            display: flex;
            margin-bottom: 50px;
        }
        .header_mobile-close{
            position: absolute;
            right: 15px;
            top: 15px;
            width: 20px;
            height: 18px;
            background-image: url(../img/close.svg);
            background-size: cover;
        }
        .scroll_link{
            width: 200px;
            margin: 0 auto 40px;
            padding-right: 0;
            padding-left: 59px;
            font-size: 14px;
            font-weight: 500;
        }
        .scroll_link-img{
            right: auto;
            left: 0;
        }
        .catalog_item{
            justify-content: flex-start;
        }
        .scroll_link-title{
            width: auto;
            text-align: left;
        }
        .header_mobile-menu .header_number{
           display: flex;
           justify-content: center;
           margin-top: 60px;
           margin-bottom: 50px;
        }
        .header_mobile-menu .header_call{
            display: flex;
            margin: 0 auto;
        }
        .main {
            padding: 124px 0 50px;
            background-image: url(../img/main_mobile.jpg);
        }
        .main_title{
            font-size: 31px;
            line-height: 46px;
            margin-bottom: 120px;
        }
        .main_title span{
            font-size: 18px;
            line-height: 32px;
            display: block;
        }
        .main_title br{
            display: none;
        }
        .main_item{
            font-size: 14px;
            line-height: 18px;
            margin-bottom: 22px;
        }
        .main_price{
            width: 240px;
            height: 53px;
            font-size: 14px;
            line-height: 16px;
            padding-right: 5px;
        }
        .main::before{
            height: 55%;
        }
        .advantages{
            padding: 50px 0;
        }
        .advantages_title{
            margin-bottom: 27px;
        }
        .title {
            font-size: 24px;
            line-height: 34px;
        }
        .advantages_item{
            width: 100%;
        }
        .advantages_item{
            margin-bottom: 28px;
            font-size: 14px;
        }
        .catalog_title{
            margin-bottom: 27px;
        }
        .catalog_item-subtitle{
            font-size: 16px;
            line-height: 20px;
            padding: 15px 25px 15px 72px;
            text-align: left;
            min-height: 70px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .catalog_item-subtitle span{
            display: contents;
        }
        .catalog_item-subtitle img {
            left: 20px;
        }
        .catalog_item-img{
            width: 280px;
        }
        .catalog_item-img img{
            width: 100%;
            height: 100%;
        }
        .catalog_wrapper .slick-arrow{
            width: 32px;
            height: 32px;
            top: 205px;
            background-size: 16px 8px;
        }
        .catalog_wrapper .slick-next{
            right: 5px;
        }
        .catalog_wrapper .slick-prev{
            left: 5px;
        }
        .catalog_item-left{
            margin-bottom: 137px;
        }
        .catalog_dots .slick-track{
            display: flex;
        }
        .catalog_dots-wrapper{
           width: 100%;
           position: relative;
           transform: none;
           left: auto;
           top: auto;
           right: auto;
           margin-top: 25px;
        }
        .catalog_item:nth-child(3) .catalog_dot{
            flex: 1;
        }
        .catalog_item:nth-child(2) .catalog_dot{
           flex: 1;
        }
        .catalog_item:nth-child(2) .catalog_dots-wrapper{
            width: 100%;
        }
        .catalog_dot {
            height: initial;
        }
        .catalog_dot img{
            width: 100%;
            height: 100%;
        }
        .catalog_dots .slick-next {
            right: -30px;
        }
        .catalog_dots .slick-prev{
            left: -30px;
        }
        .catalog_item-title{
            font-size: 20px;
            margin-bottom: 15px;
        }
        .catalog_item-text{
            font-size: 14px;
            margin-bottom: 10px;
            line-height: 20px;
        }
        .catalog_item-des{
            font-size: 12px;
            margin-bottom: 8px;
        }
        .catalog_item-link{
            font-size: 14px;
            margin-bottom: 20px;
        }
        .catalog_item-btn{
            font-size: 12px;
            height: 50px;
            margin-bottom: 15px;
        }
        .catalog_item-price{
            font-size: 14px;
            height: 50px;
        }
        .video_title{
            margin-bottom: 25px;
        }
        .video_text{
            font-size: 18px;
            line-height: 26px;
            padding: 25px 30px;
        }
        .video{
            padding-bottom: 60px;
        }
        .design{
            padding: 50px 0;
        }
        .design_title{
            margin-bottom: 30px;
        }
        .design_info-title{
            font-size: 16px;
            margin-bottom: 16px;
        }
        .design_info-text{
            font-size: 14px;
            line-height: 20px;
        }
        .design_img{
            width: 100%;
        }
        .design_img img{
            width: 100%;
            height: 100%;
        }
        .design_top-items{
            flex-wrap: wrap;
        }
        .desing_item,
        .design_top-items .desing_item{
            width: 100%;
            margin-bottom: 20px;
        }
        .design_item-info{
            width: 100%;
            margin-bottom: 0;
        }
        .design_item-info_img{
            width: 78px;
        }
        .panels{
            padding: 50px 0 5px;
        }
        .panels_title{
            margin-bottom: 20px;
        }
        .panels_text{
            font-size: 14px;
            margin-bottom: 25px;
        }
        .panels_items{
            flex-direction: column;
        }
        .panels_item{
            width: 100%;
            margin-bottom: 45px;
        }
        .panels_item-text {
            font-size: 16px;
            line-height: 24px;
        }
        .panels_item-subtitle {
            font-size: 18px;
            line-height: 22px;
        }        
        .panels_item-option{
            font-size: 14px;
        }
        .panels_item-desc {
            font-size: 11px;
        }
        .ways_title{
            margin-bottom: 27px;
        }
        .ways_item{
            display: flex !important;
            height: 290px;
        margin-bottom: 0;
        }
        .ways_item-text{
            max-height: 100%;
            color: #FFFFFF;
            padding: 0 20px;
            display: flex;
            align-items: center;
            height: 50%;
        }
        .ways_item-text span{
            display: contents;
        }
        .ways_item-title{
            display: none;
        }
        .ways_items .slick-arrow{
            position: absolute;
            width: 32px;
            height: 32px;
            z-index: 1;
            cursor: pointer;
            background: #F3F3F3;
            border-radius: 50%;
            border: none;
            font-size: 0;
            top: 50%;
            transform: translateY(-50%);
            background-size: 19px 8px;
            background-position: center;
            background-repeat: no-repeat;
        }
        .ways_items .slick-next{
            right: 6px;
            background-image: url(../img/arrow_right.svg);
        }
        .ways_items .slick-prev{
            left: 6px;
            background-image: url(../img/arrow_left.svg);
        }
        .ways_items{
            margin-bottom: 20px;
        }
        .ways_inner-text{
            font-size: 14px;
            line-height: 22px;
        }
        .ways_inner-btn{
            height: 59px;
            font-size: 16px;
        }
        .ways_links-text{
            font-size: 14px;
        }
        .ways{
            padding-bottom: 50px;
        }
        .colors_titile{
           margin-bottom: 33px;
        }
        .colors_tab{
            font-size: 13px;
        }
        .colors_tabs{
            padding-bottom: 20px;
        }
        .colors_tab.active::before{
            bottom: -22px;
        }
        .colors_item{
            width: 48%;
        }
        .colors{
            padding-bottom: 50px;
        }
        .drivers{
            padding: 50px 0;
        }
        .drivers_title{
            margin-bottom: 28px;
        }
        .drivers_item{
            width: 100%;
            margin-bottom: 25px;
        }
        .drivers_item:hover .drivers_item-wrapper{
            padding: 25px 10px;
        }
        .drivers_item-wrapper{
            padding: 25px 10px;
        }
        .drivers_item-option{
            padding: 0 20px;
            width: 100%;
        }
        .drivers_item-title{
            font-size: 14px;
        }
        .drivers_item-value{
            width: 100%;
        }
        .drivers_items{
            margin-bottom: 50px;
        }
        .drivers_wrapper-btn{
            width: 100%;
        }
        .drivers_wrapper{
            margin-bottom: 0;
        }
        .sample_left-img{
            width: calc(100% + 30px);
            transform: translateX(-15px);
        }
        .sample{
            padding: 50px 0;
        }
        .sample_title{
            margin-bottom: 20px;
        }
        .sample_left-text{
            font-size: 14px;
            line-height: 22px;
            margin-bottom: 30px;
        }
        .sample_left{
            margin-bottom: 30px;
        }
        .sample_right-ready{
            font-size: 12px;
        }
        .warranty_items {
            flex-direction: column;
            align-items: center;
        }
        .warranty_item{
            margin-bottom: 20px;
            width: 188px;
        }
        .warranty_item:last-child{
            margin-bottom: 0;
        }
        .warranty_info-title{
            font-size: 16px;
            line-height: 26px;
            margin-bottom: 10px;
        }
        .warranty_info-btn{
            width: 100%;
        }
        .warranty_inner::before{
            height: 400px;
        }
        .warranty_info{
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .warranty_inner::after{
            top: auto;
            bottom: 400px;
                transform: translate(50%,26%) rotate(
            90deg
            );
            
        }
        .warranty_inner{
            background-image: url(../img/warranty_inner-mobil2.jpg);
            background-size: 100% calc(100% - 400px);
        }
        .warranty_title .number {
            font-size: 46px;
        }
        .warranty_title{
            margin-bottom: 27px;
        }
        .gallery_item{
            height: 200px;
            transform: none;
        }
        .gallery_item::before{
            display: none;
        }
        .gallery{
            padding: 40px 0;
        }
        .gallery_title{
            margin-bottom: 28px;
        }
        .gallery_wrapper .slick-arrow{
            width: 35px;
            height: 35px;
        }
        .showroom_wrapper{
            padding: 50px 12px;
        }
        .showroom_title{
            font-size: 24px;
            line-height: 38px;
        }
        .showroom_text{
            font-size: 18px;
            line-height: 26px;
        }
        .showroom{
            padding-bottom: 50px;
        }
        .form{
            padding: 45px 0 60px;
        }
        .form_title{
            font-size: 24px;
            line-height: 34px;
            margin-bottom: 20px;
        }
        .form_text{
            font-size: 18px;
            line-height: 26px;
        }
        .form_inner{
            width: 100%;
            padding: 40px 20px;
        }
        .form_inner-title{
            font-size: 16px;
            line-height: 24px;
            margin-bottom: 16px;
        }
        .form_inner-inp{
            width: 100%;
            height: 51px;
        }
        .form_inner-btn{
            width: 100%;
            height: 57px;
            font-size: 14px;
        }
        .form_inner-ok{
            width: 100%;
        }
        .form {
            background-position: 19%;
        }        
        .footer_logo{
            width: 153px;
        }
        .footer_logo img{
            width: 100%;
            height: 100%;
        }
        .footer_text{
            font-size: 12px;
        }
        .order_popup{
            padding: 50px 15px 40px;
        }
        .order_popup-inp{
            width: 100%;
            height: 50px;
        }
        .order_popup-btn{
            width: 100%;
            height: 50px;
        }
        .popup_price{
            width: 100%;
        }
        .popup_body-media {
            display: none;
        }
        #popup_price .mfp-close{
            color: #000;
            margin: 0;
        }
        .popup_body-img{
            width: 190px;
        }
        .popup_body-sale{
            font-size: 14px;
            line-height: 20px;
        }
        .popup_body-sale span{
            font-size: 32px;
            line-height: 29px;
        }
        .popup_price .popup_body-form {
            padding: 27px 15px 50px;
        }
        .popup_body-title{
            font-size: 17px;
            line-height: 22px;
            margin-bottom: 17px;
        }
        .popup_body-text{
            font-size: 14px;
            line-height: 20px;
        }
        .popup_body-btn,
        .popup_body-inp{
            width: 100%;
        }
        .thanks {
            padding: 92px 0 133px;
        }
        .thanks_title{
            font-size: 28px;
            line-height: 37px;
            margin-bottom: 5px; 
        }
        
        .thanks_subtitle{
            font-size: 19px;
            margin-bottom: 30px;
            line-height: 29px;
        }
        .thanks_btn{
            width: 265px;
            height: 58px;
        }   
        .scroll_link:nth-child(3) .scroll_link-img {
            padding-right: 4px;
            padding-top: 3px;
        }     
        .warranty_items{
            margin-bottom: 50px;
        }
        .footer{
            padding-bottom: 80px;
        }
        .footer_bot{
            width: 240px;
            margin: 0 auto 25px;
        }
        .footer_inner{
            width: 240px;
            margin: 0 auto;
        }
        .footer_polit {
            font-size: 11px;
        }
        .header_mobile-navs{
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 40px;
        }
        .header_mobile-nav{
            display: block;
            margin-bottom: 20px;
            font-size: 20px;
            color: #000;
        }
        .popup_zam-form{
            padding: 30px 12px;
        }
        .popup_zam-title{
            text-align: center;
            font-size: 18px;
        }
        .popup_zam-item:nth-child(2), .popup_zam-item:nth-child(3), .popup_zam-item:nth-child(4), .popup_zam-item:nth-child(5){
            width: 100%;
        }
        .popup_zam-img{
            display: none;
        }
        .popup_zam-img img{
            object-fit: cover;
        }
        .catalog_item-imgs{
            width: 280px
        }
        .colors_wrapper{
            width: auto;
        }
        .colors_tab::after{
            width: 112px;
            height: 75px;
            top: 4px;
            right: 13px;
        }
        .colors_tab {
            padding: 7px 20px 34%;
        }
        .scroll{
            bottom: 80px;
        }
        .catalog_wrapper .catalog_dots-wrapper .slick-arrow{
            top: 25px;
        }
        .desing_item-img{
            width: 100%;
        }
        .catalog_dot {
            cursor: pointer;
            margin: 0px 5px 5px;
        }
        .catalog_item-left {
            margin-bottom: 15px;
        }
        .main::before {
            background: linear-gradient(to top, rgba(4, 56, 118, 0.9) 85.23%, rgba(1, 57, 124, 0) 100.23%);
        }
        .colors_inner{
            margin-top: 40px;
            width: 100%;
            font-size: 16px;
            height: 51px;
        }
    }
    @media(max-width:340px){
        .catalog_item-imgs {
            width: 230px;
        }
        .footer_inner,
        .footer_bot{
            width: 200px;
        }
        .catalog_item-link {
            font-size: 12px;
        }
        .catalog_item:nth-child(3) .catalog_dot{
            width: 45px;
        }
        .catalog_item:nth-child(2) .catalog_dot{
            width: 45px;
        }
        .main_title {
            font-size: 28px;
            line-height: 42px;
        }
        .catalog_item:nth-child(1) .catalog_dot {
            width: 44px;
        }
    }


    .gates_popup{
        background: #FFFFFF;
        box-shadow: 0px 18px 35px rgba(0, 0, 0, 0.12);
        border-radius: 25px;
        border: 1px dashed #004799;
        max-width: 1110px;
        margin: 0 auto;
        padding: 55px 55px 35px 35px;
    }
    .gates_popup-wrapper{
        display: flex;
        justify-content: space-between;
    }
    .gates_popup-left{
        width: 30%;
    }
    .gates_popup-right{
        width: 65%;
    }
    .gates_popup-title{
        font-weight: 700;
        line-height: 33px;
        text-align: center;
        color: #000000;
        font-size: 28px;
        margin-bottom: 50px;
    }
    .gates_popup-item{
        margin-bottom: 25px;
        padding-left: 50px;
        position: relative;
    }
    .gates_popup-item img{
        position: absolute;
        top: 0;
        left: 0;
    }
    .gates_popup-text{
        line-height: 22px;
        margin-bottom: 20px;
    }
    .gates_popup-text:last-child{
        margin-bottom: 0;
    }
    .gates_popup-text span{
        font-weight: 700;
    }
    .gates_popup-subtitle{
        font-weight: 700;
        margin-bottom: 5px;
    }
    .gates_popup-option{
        line-height: 24px;
        padding-left: 30px;
        position: relative;
    }
    .gates_popup-option::before{
        position: absolute;
        content: "";
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: #000;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    .gates_popup-inner{
        margin-top: 10px;
        line-height: 30px;
        font-size: 20px;
        padding-left: 125px;
        font-weight: 600;
        position: relative;
        margin-left: 40px;
    }
    .gates_popup-inner img{
        position: absolute;
        top: 0;
        left: 0;
    }
    .gates_popup-inner span{
        font-weight: 700;
    }
    .gates_popup .mfp-close{
        color: #BBBBBB;
    }
    @media(max-width:1200px){
        .gates_popup-inner{
            margin-left: 0;
        }
        .gates_popup-right{
            width: 60%;
        }
    }
    @media(max-width:992px){
        .gates_popup-wrapper{
            flex-direction: column;
        }
        .gates_popup-left{
            width: 100%;
            margin-bottom: 45px;
        }
        .gates_popup-img{
            display: flex;
            justify-content: center;
        }
        .gates_popup-right{
            width: 100%;
        }
    }
    @media(max-width:475px){
        .gates_popup-title{
            margin-bottom: 10px;
            font-size: 20px;
            line-height: 23px;
        }
        .gates_popup-img img{
            width: 100%;
            height: 100%;
        }
        .gates_popup{
            padding: 45px 15px 30px;
        }
        .gates_popup-option{
            padding-left: 15px;
        }
        .gates_popup-option::before{
            left: 0;
        }
        .gates_popup-inner{
            padding-left: 0;
            padding-top: 90px;
            font-size: 16px;
            line-height: 24px;
        }
        .gates_popup-inner img{
            left: 50%;
            transform: translateX(-50%);
        }
    }