/*! 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}

 @font-face{
    font-family: 'GothamPro';
    src: url('../fonts/GothamPro.woff2') format('woff2'),
         url('../fonts/GothamPro.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'GothamPro';
    src: url('../fonts/GothamPro-Light.woff2') format('woff2'),
         url('../fonts/GothamPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'GothamPro';
    src: url('../fonts/GothamPro-Medium.woff2') format('woff2'),
         url('../fonts/GothamPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face{
    font-family: 'GothamPro';
    src: url('../fonts/GothamPro-Bold.woff2') format('woff2'),
         url('../fonts/GothamPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html{
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*,
*::before,
*::after{
    box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    padding: 0;
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
body{
    overflow-x: hidden;
    font-family: 'GothamPro';
}
a{
    text-decoration: none;
    outline: none;
}
.main_container{
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}
.header{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 12px 0 0;
    z-index: 10;
    transition: all 0.3s;
    overflow: hidden;
}
.header.header_fixed{
    position: fixed;
    background-color: #252524;
    padding: 12px 0;
    animation: header_anim 1 0.6s;
    transition: all .5s ease;
}
.header.header_fixed .header_logo img{
    width: 80%;
}
@keyframes header_anim{
    0%{
        top: -200px;
        opacity: 0;
    }
    100%{
        top: 0;
        opacity: 1;
    }
}
.header.header_fixed .menu::before{
    display: none;
}
.header_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.header_number-mobile{
    display: none;
}
.menu{
    display: flex;
    position: relative;
}
.menu_burger{
    display: none;
}
.menu::before{
    position: absolute;
    content: "";
    width: 250%;
    height: 1px;
    background-color: rgba(255,255,255, 0.5);
    left: 0;
    bottom: -35px;
}
.menu_item{
    margin-right: 40px;
}
.menu_item:last-child{
    margin-right: 0;
}
.menu_link{
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}
.menu_link:hover{
    color: #fff;
}
.menu_link::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #fff;
    right: 50%;
    transform: translateX(50%);
    bottom: -10px;
    transition: all 0.6s;
}
.menu_link:hover::before{
    width: 100%;
}
.header_info{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header_info-number{
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    position: relative;
}
.header_info-number:hover{
    color: #fff;
}
.header_info-number::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #fff;
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
    transition: all 0.6s;
}
.header_info-number:hover::before{
    width: 100%;
}
.header_info-mail{
    color: #fff;
}
.header_info-mail:hover{
    color: #fff;
}



.main{
    color: #fff;
    padding: 160px 0 40px;
    position: relative;
}
.main_slider{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    overflow: hidden;
    top: 0;
}
.main_slider .slick-list,
.main_slider .slick-track{
    height: 100%;
}
.main_slider::before{
    position: absolute;
    content: "";
    background-image: url(../images/main_bef.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: 1;
}
.main_slider-item{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.main_wrapper{
    position: relative;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.main_title{
    margin-top: 75px;
    width: 540px;
    font-size: 36px;
    font-weight: 500;
    line-height: normal;
}
.main_title span{
    font-size: 55px;
    display: block;
}
.main_form{
    width: 430px;
    background-color: #252524;
    padding: 35px 45px 45px;
    border-radius: 10px;
}
.main_form-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}
.main_form-inp{
    width: 100%;
    height: 50px;
    padding-left: 20px;
    border-radius: 5px;
    border: none;
    outline: none;
    margin-bottom: 20px;
}
.main_form-inp::placeholder{
    color: #434343;
}
.main_form-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px;
    border-radius: 5px;
    box-shadow: -3px 2px 7px rgba(0, 0, 0, 0.48);   
    background-color: #ed202e;
    border: none;
    outline: none!important;
    cursor: pointer;
    margin-top: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}
.main_slider .slick-dots{
    position: absolute;
    bottom: 40px;
    display: flex;
    width: 100%;
    justify-content: center;
    z-index: 4;
}
.main_slider .slick-dots button{
    border: none;
    background: none;
    font-size: 0;
    border: 2px solid #ffffff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    margin: 0 4.5px;
    outline: none;
}
.main_slider .slick-dots .slick-active button{
    background: #fff;
}

.equipment{
    padding: 47px 0;
    background-color: #eaeaea;
}
.equipment_title{
    color: #2b3330;
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    padding-top: 15px;
    position: relative;
    margin-bottom: 40px;
}
.equipment_title::before{
    position: absolute;
    content: "";
    width: 245px;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
}
.equipment_tab{
    display: flex;
    justify-content: space-between;
    margin:0 15px 35px;
}
.equipment .main_container{
    max-width: 1120px;
    margin: 0 auto;
}
.equipment_tab li {
    width: 23%;
    text-align: center;
    height: 63px;
    border-radius: 5px;
    border: 1px solid #cfcdcd;
    color: #494949;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0 30px;
    transition: all 0.3s;
}
.equipment_tab li.active{
    color: #ffffff;
    background-color: #ed202e;
}
.equipment_tab-content{
    height:0;
    overflow: hidden;
}
.equipment_tab-content.active{
    height: auto;
    overflow: visible;
}
.equipment_slider{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.equipment_item{
    width: 23%;
    border-radius: 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.29);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    margin: 0 15px;
    outline: none;
}
.equipment_item-img img {
    object-fit: contain;
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.equipment_item-img{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    padding: 0 0 100% 0;
}
.equipment_item-title{
    font-size: 12px;
    color: #444343;
    padding: 0 12px;
    margin-bottom: 25px;
    font-weight: 500;
}
.equipment_item-btns{
    background-color: #4b4949;
    display: flex;
    justify-content: space-between;
    height: 53px;
    position: relative;
}
.equipment_item-btns::before{
    position: absolute;
    content: "";
    opacity: 0.25;
    width: 0.5px;
    height: 80%;
    top: 50%;
    transform: translate(50%,-50%);
    right: 50%;
    background-color: #fff;
}
.equipment_item-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}
.equipment_item-btn:hover{
    color: #fff;
}
.arrow-arrow{
    position: absolute;
    top: 30%;
    padding: 0;
    border: none;
    background-color: #ffffff;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(30, 27, 28, 0.32);
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}
.arrow-arrow:hover{
    box-shadow: 0 0 15px rgba(30, 27, 28, 0.32);
}
.arrow-right{
    right: -60px;
    outline: none!important;
}
.arrow-left{
    left: -60px;
    outline: none!important;
}
.equipment_wrapper{
    display: flex;
    justify-content: space-between;
    margin: 50px 15px 0;
}
.equipment_btn{
    width: 48.5%;
    display: flex;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    height: 63px;
    transition: all 0.6s;
}
.equipment_btn-img{
    background-color: #ed202e;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12%;
}
.equipment_btn-title{
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4b4949;
    text-align: center;
    transition: all 0.6s;
    width: 88%;
}
.equipment_btn:hover {
    background-color: #4b4949;
}
.equipment_btn:hover .equipment_btn-title{
    color: #fff;
}
.numbers{
    display: flex;
    justify-content: space-between;
}
.numbers_item{
    width: 33.33%;
    padding: 45px 100px;
    text-align: center;
}
.numbers_item:nth-child(1){
    background-color: #ed202e;
    color:#fff;
}
.numbers_item:nth-child(2){
    background-color: #252524;
    color:#fff;
}
.numbers_item:nth-child(3){
    background-color: #f7f7f7;
    color: #4b4949;
}
.numbers_item:nth-child(3) .numbers_item-title{
    color: #ed202e;
}
.numbers_item-title{
    font-size: 24px;
}
.numbers_item-title span{
    font-size: 72px;
}
.numbers_item-text{
    font-size: 18px;
}
.questions{
    background-image: url(../images/form_bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 50px 0 65px;
    text-align: center;
    color: #ffffff;
}
.questions .main_container{
    max-width: 1120px;
}
.questions_title{
    font-size: 40px;
    font-weight: 300;
    line-height: 100%;
    margin-bottom: 10px;
}
.questions_subtitle{
    font-size: 18px;
    margin-bottom: 55px;
}
.questions_form{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.questions_inp{
    width: 31%;
    border-radius: 5px;
    height: 50px;
    border: none;
    padding-left: 20px;
    outline: none;
    margin-bottom: 35px;
}
.questions_inp::placeholder{
    color: #434343;     
}
.questions_btn{
    width: 31%;
    background-color: #ed202e;
    box-shadow: -3px 2px 7px rgba(0, 0, 0, 0.48);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    outline: none!important;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 35px;
}
.questions_consent{
    font-size: 12px;
}

.partners{
    padding: 47px 0 50px;
}
.partners_title{
    color: #2b3330;
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    padding-top: 15px;
    position: relative;
    margin-bottom: 35px;
}
.partners_title::before{
    position: absolute;
    content: "";
    width: 245px;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
}
.partners_wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.partners_item{
    width: 24.5%;
    background-color: #e5e5e5;
    height: 145px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
}
.partners_item img{
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s;
    max-width: 90%;
}
.partners_item:hover img{
    filter:none;
    opacity: 1;
}
.about{
    display: flex;
    justify-content: space-between;
    background-color: #252524;
}
.about_img{
    width: 50%;
}
.about_img img{
    width: 100%;
    height: 100%;
}
.about_info{
    width: 50%;
    padding:40px 120px 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}
.about_title{
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 25px;
}
.about_title:hover{
    color: #ffffff;
}
.about_sutitle{
    font-size: 18px;
    margin-bottom: 40px;
}
.about_item{
    font-size: 16px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 12px;
    line-height: 100%;
}
.about_item::before{
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    left: 0;
    top: 7px;
}

.faq{
    padding: 50px 0 50px;
}
.faq_title{
    color: #2b3330;
    font-size: 40px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    padding-top: 15px;
    position: relative;
    margin-bottom: 22px;
}
.faq_title::before{
    position: absolute;
    content: "";
    width: 245px;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
}

.faq_wrapper{
    max-width: 1060px;
    margin: 0 auto;
}

.faq_item{
    margin-bottom: 12px;
    max-height: 62px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq_item.active{
    max-height: 2900px;
    transition: all 1s;
}
.faq_item.active .faq_item-trigger::before{
    transform: rotate(45deg);
}
.faq_item-trigger{
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 62px;
    border-radius: 10px;
    background-color: #eaeaea;
    cursor: pointer;
    font-size: 20px;
    color: #444343;
    position: relative;
}
.faq_item-trigger::before{
    position: absolute;
    content: "+";
    font-size: 36px;
    font-weight: 300;
    color: #444343;
    left: 23px;
    transition: all 0.3s;
}
.faq_item-content{
    background-color: #eaeaea;
    border-radius: 0 5px 5px 0;
    font-size: 18px;
    color: #444343;
    padding: 0 35px 20px 35px;
    z-index: 1;
    position: relative;
}

.footer{
    background-color: #252524;
    padding: 25px 0 25px;
    color: #ffffff;
}
.footer_wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.footer_info{
    display: flex;
    flex-direction: column;
}
.footer_logo{
    margin-bottom: 35px;
    margin-top: 5px;
}
.footer_mail{
    color: #fff;
    transition: all 0.3s;
    line-height: 18px;
}

.footer_mail:hover{
    color: #ed202e;
}
.footer_number{
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
}
.footer_number:hover{
    color: #ed202e;
}
.footer_menu{
    display: flex;
    justify-content: space-between;
    width: 69%;
}
.footer_menu-link{
    font-size: 14px;
    color: #fff;
    display: block;
    transition: all 0.3s;
    line-height: 28px;
}
.footer_menu-link:hover{
    color: #ed202e;
}
.footer_right{
    padding-top: 22px;
    text-align: center;
    font-size: 12px;    
    color: #707070;
    position: relative;
}
.footer_right::before{
    position: absolute;
    content: "";
    width: 245px;
    height: 1px;
    background-color:rgba(255, 255, 255, 0.15);
    top: 0;
    right: 50%;
    transform: translateX(50%);
}
.footer_right a{
    color: #707070;
    transition: all 0.3s;
}
.footer_right a:hover{
    color: #ed202e;
}
.footer_links{
    display: flex;
    flex-direction: column;
}
@media( max-width:1300px){
    .about_info{
        padding: 25px;
    }
    .about_sutitle,
    .about_title{
        margin-bottom: 25px;
    }

}
@media( max-width:1200px){

    .menu_burger{
        top: 35px;
        display: block;
        position: fixed;
        width: 30px;
        height: 20px;
        z-index: 20;
        right: 35px;
        cursor: pointer;
    }
    .menu_burger::before,
    .menu_burger::after{
        content: "";
        background-color: #ed202e;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
    }
    .menu_burger::before{
        top: 5px;
    }
    .menu_burger::after{
        bottom: -5px;
    }
    .menu_burger span{
        position: absolute;
        background-color: #ed202e;
        left: 0;
        width: 100%;
        height: 2px;
        top: 14px;
        transition: all 0.6s;
    }
    .menu_burger.active::before{
        transform: rotate(45deg);
        top: 13px;
    }
    .menu_burger.active::after{
        transform: rotate(-45deg);
        bottom: 5px;
    }
    .menu_burger.active span{
        transform: scale(0);
    }
    .menu{
        padding-top: 200px;
        position: fixed;
        width: 100%;
        top: 0;
        right: -100%;
        height: 100%;
        z-index: 10;
        flex-direction: column;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.85);
        transition: all 0.6s;
    }
    .header_wrapper.active .menu{
        right: 0;
    }
    .header.header_fixed{
        animation: none
    }
    .header_info{
        position: fixed;
        width: 100%;
        bottom: 150px;
        align-items: center;
        right: -100%;  
        z-index: 10;
        transition: all 0.6s;
    }
    .header_wrapper.active .header_info{
        right: 0;
    }
    .menu_item{
        margin: 0 0 30px;
    
    }
    .menu_link{
        font-size: 26px;
    }
    .main_form {
        width: 410px;
    }
    .equipment_slider{
        width: 90%;
        margin: 0 auto;
    }
    .equipment_wrapper{
        width: 89%;
        margin: 50px auto 0;
    }
    .equipment_tab{
        width: 89%;
        margin: 0 auto 35px;
    }
    .arrow-right{
        right: -50px;
    }
    .arrow-left{
        left: -50px;
    }
    .equipment_tab li{
        width: 24%;
        padding: 0 25px;
    }
    .equipment_item{
       margin: 0 7px;
    }
    .header.header_fixed{
        height: 95px;
    }
    .header.header_fixed .header_logo{
        display: none;
    }
    .header_number-mobile{
        opacity: 0;
        transition: all 0.6s;
    }
    .header.header_fixed .header_number-mobile{
        position: absolute;
        top: 20px;
        left: 0;
        display: block;
        opacity: 1;
    }
    .header.header_fixed .header_number-mobile svg{
        fill: #ed202e;
    }
    .numbers_item {
        padding: 35px 25px;
    } 
    .numbers_item-title {
        font-size: 22px;
    }
    .numbers_item-title span {
        font-size: 52px;
    }
    .numbers_item-text {
        font-size: 16px;
    }   

}
@media( max-width:1100px){
    .footer_wrapper{
        flex-direction: column;
        align-items: center;
    }
    .footer_menu{
        width: 100%;
    }
    .footer_info{
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 30px;
    }
    .footer_menu-column{
        width: 27%;
    }
    .footer_links{
        align-items: flex-end;
    }
}
@media( max-width:1000px){
    .main_wrapper{
        flex-direction: column;
        align-items: center;
    }
    .main_title{
        margin-top: 0;
        text-align: center;
        margin-bottom: 35px;
    }
    .main_slider .slick-dots
    {
        bottom: 15px;
    }
    .equipment_tab{
        width: 100%;
    }
    .equipment_tab li{
        padding: 0 5px;
    }
    .equipment_wrapper{
        width: 100%;
    }

    .numbers_item {
        padding: 25px 15px;
    }
    .equipment_btn-img{
        width: 20%;
    }
    .questions {
        padding: 40px 0 25px;
    }
    .partners_item {
        height: 120px;
    }    
    .about_title {
        font-size: 32px;
    }
    .about_sutitle {
        font-size: 18px;
    }
}
@media( max-width:800px){
    .about{
        flex-direction: column-reverse;
    }
    .about_info{
        width: 100%;
    }
    .about_img{
        width: 100%;
    }
    .header.header_fixed {
        height: 52px;
    }
    .menu_burger {
        top: 12px;
    }
    .header.header_fixed .header_number-mobile {
        top: -2px;

    }
    .header.header_fixed .header_number-mobile svg{
        width: 32px;
        height: 32px;
    }
}
@media( max-width:750px){
    .numbers{
        flex-wrap: wrap;
    }
    .footer_menu-column:nth-child(1){
        display: none;
    }
    .numbers_item{
        width: 100%;
    }
    .numbers_item-text{
        width: 350px;
        margin: 0 auto;
    }
    .questions_title {
        font-size: 28px;
    }
    .questions_subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }
    .questions_inp{
        width: 51%;
    }
    .questions_btn{
        width: 51%;
    }
    .questions {
        background-position: right;
    }
    .partners_item {
        width: 48.5%;
    }
    .partners_wrapper{
        justify-content: space-evenly;
    }
    .footer_menu{
        flex-wrap: wrap;
    }
    .footer_menu-column{
        width: 100%;
    }
    .footer_menu-column:nth-child(2){
        order: 1;
        margin-top: 15px;
    }
}
@media( max-width:700px){
    .equipment_title {
        font-size: 32px;
        padding-top: 20px;
        margin-bottom: 35px;
    }    
    .equipment_wrapper{
        flex-direction: column;
    }
    .equipment_btn{
        width: 100%;
        margin-bottom: 15px;
    }
    .equipment_btn-img img{
        width: auto;
    }
}
@media( max-width:600px){
    .main_title{
        width: 100%;
    }
    .main_title{
        font-size: 32px;
    }
    .main_title span {
        font-size: 42px;
        margin-top: 10px;
    }
    .header_logo img{
        width: 100px;
    }
    .equipment_tab{
        flex-wrap: wrap;
        margin: 0 auto 15px;
    }
    .equipment_tab li {
        width: 48%;
        margin-bottom: 15px;
    }
    .equipment_slider {
        width: 80%;
    }
    .questions_subtitle{
        margin-bottom: 30px;
    }
    .questions_btn,
    .questions_inp {
        width: 70%;
    }
    .partners_title {
        font-size: 28px;
        padding-top: 20px;
        margin-bottom: 35px;
    }    
    .faq_title {
        font-size: 28px;
        padding-top: 20px;
        margin-bottom: 35px;
    }
    .faq_item-trigger{
        font-size: 18px;
    }
    .footer_menu-column:nth-child(2){
        width: 100%;
    }
}
@media( max-width:475px){
    .main_title {
    font-size: 26px;
    }
    .main_title span {
        font-size: 38px;
        margin-top: 8px;
    }
    .main_form{
        width: 100%;
        padding: 20px 20px 25px;
    }
    .main_form-title {
        font-size: 22px;
        margin-bottom: 25px;
        text-align: center;
    }
    .menu {
        padding-top: 95px;
    }
    .menu_link {
        font-size: 20px;
    }
    .menu_item {
        margin: 0 0 25px;
    }
    .header_info{
        bottom: 50px;
    }
    .equipment_title {
        font-size: 28px;
    }
    .equipment_tab li{
        font-size: 14px;
        height: 70px;
    }
    .arrow-arrow{
        width: 35px;
        height: 35px;
    }
    .arrow-arrow img {
        width: 9px;
    }
    .arrow-right{
        right: -40px;
    }
    .arrow-left{
        left: -40px;
    }
    .equipment_item-img {
        margin-bottom: 20px;
    }
    .equipment_btn-img{
        width: 20%;
    }
    .equipment_btn-title{
        width: 80%;
    }
    .numbers_item-text {
        width: 290px;
    }
    .main_slider::before{
        background-position-x:30%;
    }
    .questions_btn, .questions_inp {
        width: 95%;
    }
    
    .questions_consent {
        font-size: 11px;
    }   
    .partners_item {
        width: 48%;
        height: 95px;
    }
    .partners_item img{
        max-width: 75%;
    } 
    .about_info {
        padding: 15px;
    }
    .about_title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .about_item {
        font-size: 16px;
    }
    .faq {
        padding: 35px 0 40px;
    }
    .faq_item-trigger {
        font-size: 16px;
        padding: 0 35px;
        text-align: center;
    }
    .faq_item-trigger::before {
        font-size: 26px;
        left: 10px;
    }
    .faq_item-content {
        font-size: 16px;
        padding: 0 15px 15px 15px;
    }
    .footer_logo img{
        width: 100px;
    }
    .footer_links{
        font-size: 14px;
    }

}