/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}




p,
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    padding: 0;
    font-weight: 400;
}
html{
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*{outline:none;}
*,
*::before,
*::after{
    box-sizing: inherit;
}
body{
    overflow-x: hidden;
    font-family: "Raleway", sans-serif;
    background-color: #EAEAEA;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.scroll{
    position: fixed;
    right: 10%;
    bottom: 75px;
    z-index: 1;
    cursor: pointer;
    transform: scale(0);
    transition: all 0.3s;
}
.scroll.fixed{
    transform: scale(1);
}
.container{
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 15px;
}

.header{
    position: fixed;
    width: 100%;
    background-color: #EAEAEA;
    top: 0;
    right: 0;
    z-index: 10;
}
.header_wrapper{
    padding: 60px 0 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo{
    display: flex;
}
.menu{
    display: flex;
}
.menu a{
    font-weight: 600;
    line-height: 14px;
    color: #272E45;
    font-size: 14px;
    margin-left: 52px;
    transition: all 0.3s;
}
.menu a:hover{
    color: #F7A500;
}

.main{
    margin-top: 126px;
    background-image: url(../img/main.jpg);
    background-size: cover;
    background-position: center;
    padding: 62px 0;
}
.main_logo{
    display: flex;
    margin-bottom: 58px;
    width: 456px;

}
.main_logo img{
    width: 100%;
    height: auto;
}
.main_title{
    font-weight: 800;
    line-height: 78px;
    font-size: 60px;
    margin-bottom: 13px;
    color: #fff;
    text-transform: uppercase;
    max-width: 1000px;
}
.main_text{
    color: #fff;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 64px;
    font-size: 28px;
    max-width: 340px;
}
.btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F7A500;
    box-shadow: 0px 2px 4px 0px #00000040;
    width: 234px;
    height: 56px;
    font-size: 25px;
    font-weight: 500;
    line-height: 32px;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s;
}
.btn:hover{
    background: #EAEAEA;
    color: #272E45;
}
.about{
    margin: 87px 0 141px;
}
.about_wrapper{
    display: flex;
    align-items: center;
    margin-bottom: 68px;
}
.about_img{
    width: 589px;
    height: 315px;
    border-radius: 10px 200px 10px 10px;
    display: flex;
    overflow: hidden;
    margin-right: 40px;
}
.about_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_info{
    width: 540px;
    line-height: 30px;
    font-size: 25px;
}
.about_info p{
    margin-bottom: 30px;
}
.about_info p:last-child{
    margin-bottom: 0;
}
.about_info span{
    font-weight: 600;
}
.about_items{
    display: flex;
    justify-content: center;
}
.about_item{
    width: 230px;
    margin: 0 4px;
}
.about_item-title{
    font-weight: 600;
    line-height: 23px;
    text-align: center;
    font-size: 18px;
}
.about_item-img{
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.catalog_tabs{
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #9B9BA3;

    margin-bottom: 46px;
}
.catalog_tab{
    width: 456px;
    margin: 0 40px;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    text-align: center;
    color:  #9B9BA3;
    padding-bottom: 44px;
    cursor: pointer;
    position: relative;
}
.catalog_tab.active::before{
    position: absolute;
    content: "";
    width: 100%;
    height:3px;
    background-color: #272E45;
    bottom: -2px;
    left: 0;
    border-radius: 20px;
}
.catalog_tab.active{
    color: #272E45;
}
.catalog_tab span{
    font-size: 25px;
    display: block;
    line-height: 32px;
}
.catalog_item-img{
    width: 381px;
    display: flex;
}
.catalog_item{
    padding-left: 120px;

}
.catalog_item-img img{
    width: 100%;
    height: auto;
}
.catalog_item-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}
.catalog_item-info{
    padding-top: 40px;
    width: calc(100% - 410px);
}
.catalog_item-info ul{
    line-height: 32px;
    color: #272E45;
    font-size: 25px;
    margin-bottom: 40px;
}
.catalog_item-info li{
    display: flex;
}
.catalog_item-info li::before{
    position: relative;
    content: "";
    margin: 12px 19px 0;
    width: 4px;
    min-width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color:  #272E45;
    display: block;
}
.catalog_item-more{
    border: 1px solid #272E45;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: url(../img/more_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    transition: all 0.3s;
    cursor: pointer;
}
.catalog_item-more.active{
    transform: rotate(0deg);
}
.catalog_item-inner{
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}
.catalog_item-inner:last-child{
    margin-bottom: 0;
}
.catalog_item-subtitle{
    max-width: 380px;
    font-size: 25px;
    line-height: 32px;   
    color: #272E45;
    font-weight: 700;
    text-transform: uppercase;
}
.catalog_item-desc{
    width: calc(100% - 410px);
    padding-right:130px;
}
.catalog_item-desc{
    font-size: 17px;
    line-height: 20px;
}
.catalog_item-desc span{
    font-weight: 600;
}
.catalog_item-desc p{
    margin-bottom: 20px;
}
.catalog_item-desc p:last-child{
    margin-bottom: 0;
}
.catalog_inner{
    margin-bottom: 141px;
}
.catalog_item-content{
    display: none;
}
.catalog_content{
    display: none;
}
.catalog_content.active{
    display: block;
}
.catalog_item-way{
    font-size: 25px;
    margin-bottom: 18px;
    color:#272E45;
    line-height: 32px;
    padding-left: 40px;
}
.rate{
    padding: 45px 0 80px;
    background: #272E45;
}
.rate_title{
    font-weight: 700;
    line-height: 49px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 86px;
    text-transform: uppercase;
    font-size: 35px;
}
.rate_wrapper{
    display: flex;
}
.rate_item{
    flex: 1;
    text-align: center;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
    font-size: 17px;
    border-right: 3px solid #7F8694;
    padding-bottom: 56px;
}
.rate_item:last-child{
    border: none;
}
.rate_item span{
    color: #F7A500;
}
.rate_item img{
    display: block;
    margin: 0 auto 30px;
}
.slider_page{
    width: 1092px;
    margin: 0 auto;
    box-sizing: border-box;
    padding:60px 0 0;
}
.slider_page-block{
    margin: 141px 0;
}
.slider_page-item{
    background: #FFFFFF;
    border-radius: 10px 80px 10px 10px;
    padding: 24px 23px;
    overflow: hidden;
    height: 472px;
    box-sizing: border-box;
    position: relative;
    width: 364px;
    transition: all 0.3s;
    user-select: none;
}
.slider_page .swiper-wrapper{
    align-items: center;
}
.slider_page-item::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    right: 0;
    background: #272E4580;
    transition: all 0.3s;
}
.slider_page-img{
    height: 248px;
    display: flex;
    border-radius: 10px 80px 10px 10px;
    overflow: hidden;
    margin-bottom: 26px;
    filter: grayscale(1);
}
.slider_page-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider_page-item.swiper-slide-active{
    transform: scale(1.25, 1.19);
    z-index: 2;
    box-shadow: -5px 0px 4px 0px #00000040;

}
.slider_page-item.swiper-slide-active .slider_page-img{
    filter: grayscale(0);
}
.slider_page-item.swiper-slide-active::before{
    opacity: 0;
}
.slider_page-text{
    font-size: 15px;
    line-height: 18px;
    color: #262B40;
}
.slider_page-dots{
    margin-top: 124px;
    display: flex;
    justify-content: center;
}
.slider_page-dots span{
    box-shadow: 0px 2px 4px 0px #00000040 inset;
    width: 22px;
    height: 22px;
    margin: 0 11px;
    background: #FFFFFF;
    opacity: 1;
}
.slider_page-dots span:last-child{
    order: -1;
}
.slider_page-dots span.swiper-pagination-bullet-active{
    background: #9B9BA3;
}
.provision{
    margin-bottom: 141px;
}
.provision_title{
    font-size: 35px;
    line-height: 41px;
    font-weight: 700;
    margin-bottom: 70px;
    text-align: center;
    text-transform: uppercase;
}
.provision_tabs{
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #9B9BA3;
    margin-bottom: 64px;
}
.provision_tab{
    width: 262px;
    font-size: 25px;
    line-height: 29px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #9B9BA3;
    margin: 0 70px;
    padding-bottom: 25px;
    position: relative;
}
.provision_tab.active{
    color: #272E45;
}
.provision_tab.active::before{
    position: absolute;
    content: "";
    width: 100%;
    height:3px;
    background-color: #272E45;
    bottom: -2px;
    left: 0;
    border-radius: 20px;
}
.provision_inner{
    display: flex;
    padding: 0 105px;
}
.provision_img{
    width: 197px;
    height: 197px;
    margin-right: 101px;
    display: flex;
}
.provision_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.provision_info{
    width: 675px;
}
.provision_info p{
    line-height: 20px;
    color: #272E45;
    font-size: 17px;
    margin-bottom: 30px;
}
.provision_info p:last-child{
    margin-bottom: 0;
}
.provision_btn{
    margin-top: 40px;
    width: 234px;
    font-size: 17px;
    text-transform: uppercase;
}
.provision_content{
    display: none;
}
.provision_content.active{
    display: block;
}
.provision_link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 198px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    height: 198px;
}
.provision_link img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video_block{
    background: #272E45;
}
.video_block-item{
    display: flex;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}
.video_block-item img{
    width: 100%;
    height: auto;
}
.contacts{
    margin: 141px 0;
}
.contacts_title{
    font-weight: 700;
    line-height: 45px;
    text-align: center;
    margin-bottom: 34px;
    font-size: 35px;
    text-transform: uppercase;
    color: #272E45;
}
.contacts_subtitle{
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-bottom: 54px;
    color: #272E45;
}
.contacts_form{
    background: #272E45;
    border-radius: 10px 100px 10px 10px;
    padding: 73px 70px 50px 90px;
    width: 1026px;
    margin: 0 auto 141px;
}
.contacts_form-wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.contacts_form-inps{
    width: 314px;
}
.contacts_form-inp{
    width: 100%;
    display: block;
    box-shadow: 0px 4px 4px 0px #00000040 inset;
    height: 57px;
    padding-left: 31px;
    border-radius: 50px;
    margin-bottom: 15px;
    border: none;
    font-size: 20px;
    font-weight: 300;
}
.contacts_form-area{
    box-shadow: 0px 4px 4px 0px #00000040 inset;
    border: none;
    height: 201px;
    width: 460px;
    font-size: 20px;
    font-weight: 300;
    display: block;
    border-radius: 20px;
    padding: 24px 28px;
}
.contacts_form-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 46px;
}
.contacts_form-ok input{
    display: none;
}
.contacts_form-ok{
    font-size: 11px;
    font-weight: 300;
    line-height: 13px;
    color: #fff;
    display: flex;
    align-items: center;
}
.contacts_form-ok span{
    background: #FFFFFF;
    width: 17px;
    height: 17px;
    border-radius: 5px;
    box-shadow: 0px 1px 4px 0px #00000040 inset;
    margin-right: 15px;
    cursor: pointer;
    position: relative;
    display: block;
}
.contacts_form-ok input:checked + span::before{
    position: absolute;
    content: "";
    background: #F7A500;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    top: 3px;
    right: 3px;
}
.contacts_form-ok a{
    color: #fff;
    margin-left: 4px;
}
.contacts_btn{
    margin: 0 auto;
    border: none;
    cursor: pointer;
}
.contacts_form-file {
    width: 430px;
}
.contacts_form-file input{
    display: none;
}
.contacts_form-file span{
    font-weight: 300;
    line-height: 23px;
    font-size: 20px;
    border-bottom: 1px solid;
    color: #fff;
    display: block;
    width: fit-content;
    cursor: pointer;
}
.contacts_items{
    display: flex;
    justify-content: center;
}
.contacts_item{
    display: flex;
    align-items: center;
    margin: 0 58px;
    font-size: 25px;
    line-height: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: #272E45;
}
.contacts_item img{
    margin-right: 42px;
}
.contacts_item a{
    color: #272E45;
}
.contacts_item.mail a{
    color: #F7A500;
}

.footer{
    padding: 64px 0 80px;
    background: #272E45;
}
.footer_logo{
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}
.footer_polit{
    font-weight: 300;
    line-height: 13px;
    text-align: center;
    font-size: 11px;
    border-bottom: 1px solid;
    color: #fff;
    display: block;
    width: fit-content;
    margin: 0 auto 18px;
}
.footer_text{
    font-weight: 300;
    line-height: 12px;
    text-align: center;
    color: #fff;
    font-size: 10px;
    width: 345px;
    margin: 0 auto;
}
.menu_burger{
    display: none;
}
.poliyt_popup{
    padding: 60px 100px;
}
.poliyt_popup-title{
    font-size: 54px;
    line-height: 63px;
    font-weight: 700;
    color: #272E45;
    margin-bottom: 10px;
}
.poliyt_popup-subtitle{
    font-weight: 700;
    line-height: 28px;
    font-size: 24px;
    color: #272E45;
    margin-bottom: 20px;
}
.poliyt_popup p{
    font-weight: 700;
    line-height: 19px;
    font-size: 16px;
    margin-bottom: 20px;
}
.poliyt_popup p strong{
    font-weight: 800;
}



@media (max-width: 1249.98px) {
    .container {
            max-width: 968px;
    }
    .main_title {
        line-height: 76px;
        font-size: 58px;
    }
    .main_logo{
        width: 540px;
        margin-bottom: 44px;
    }
    .main_logo img{
        width: 100%;
        height: auto;
    }
    .main_text {
        line-height: 34px;
        margin-bottom: 50px;
        font-size: 28px;
        max-width: 360px;
    }
    .header_wrapper{
        padding: 30px 0;
    }
    .main{
        margin-top: 88px;
    }
    .scroll{
        right: 15px;
    }
    .about_wrapper{
        justify-content: space-between;
    }
    .about_info {
        width: 450px;

    }
    .about_img {
        width: 450px;
        margin-right: 0;
    }
    .about_item {
        width: 224px;
    }
    .catalog_tab {
        width: 390px;
        margin: 0 20px;
    }
    .about{
        margin-bottom: 90px;
    }
    .catalog_item-desc{
        padding-right: 0;
    }
    .catalog_item{
        padding-left: 60px;
    }
    .rate_item{
        font-size: 15px;
        padding-left:20px;
        padding-right:20px;
    }
    .rate_item:last-child br{
        display: none;
    }
    .slider_page{
        width: 100%;
    }
    .slider_page-block{
        margin-bottom: 90px;
    }
    .provision_tab{
        margin: 0 20px;
    }
    .provision_inner{
        padding: 0 30px;
    }
    .provision_info {
        width: 560px;
    }
    .contacts_form{
        width: 100%;
        padding: 60px;
    }
}
@media (max-width: 991.98px){
    .container{
        max-width: 698px;
    }
    .header{
        box-shadow: 0px 4px 4px 0px #00000040;
    }
    .header_inner{
        padding-top: 54px;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 68px;
        background-color: #EAEAEA;
        right: 0;
        opacity: 0;
        visibility: hidden;
        overflow: auto;
        padding-bottom: 90px;
        transition: all 0.4s;
        box-shadow: 0px 4px 4px 0px #00000040 inset;
    }
    .header_inner.active{
        opacity: 1;
        visibility: visible;
    }
    .menu{
        flex-direction: column;
        align-items: center;
    }
    .menu a{
        line-height: 20px;
        margin-bottom: 46px;
        font-size: 20px;
        font-weight: 600;
        display: block;
        margin-left: 0;
    }
    .header_wrapper{
        position: relative;
        padding: 20px 0;
        justify-content: center;
    }
    .main{
        margin-top: 68px;
        background-image: url(../img/main2.jpg);
        padding-bottom: 500px;
    }
    .menu_burger{
        position: absolute;
        display: block;
        right: 0;
        width: 20px;
        height: 14px;
        top: 50%;
        transform: translateY(-50%);
    }
    .menu_burger::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #272E45;
        top: 0;
        right: 0;
        transition: all 0.3s;
    }
    .menu_burger.active::before{
        transform: rotate(45deg);
        top: 6px;
    }
    .menu_burger::after{
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #272E45;
        bottom: 0;
        right: 0;
        transition: all 0.3s;
    }
    .menu_burger.active::after{
        transform: rotate(-45deg);
        bottom: 6px;
    }
    .menu_burger span{
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #272E45;
        top: 6px;
        right: 0;
        transition: all 0.3s;
    }
    .menu_burger.active span{
        transform: scale(0);
    }
    .main_logo{
        width: 480px;
        margin: 0 auto 30px;
    }
    .main_title{
        text-align: center;
        line-height: 58px;
        font-size: 46px;
    }
    .main_text{
        text-align: center;
        margin: 0 auto 50px;
    }
    .main_btn {
        margin: 0 auto;
    }
    .about_wrapper{
        flex-direction: column;
    }
    .about_img{
        width: 100%;
        height: 360px;
        border-radius: 10px 230px 10px 10px;
        margin-bottom: 22px;
    }
    .about_info{
        width: 100%;
    }
    .about_items{
        gap:  40px 3.5%;
        flex-wrap: wrap;
    }
    .about_item{
        margin: 0;
        width: 48%;
    }
    .about_item:nth-child(3){
        order: 1;
    }
    .catalog_tabs{
        justify-content: space-between;
    }
    .catalog_tab{
        width: 49%;
        margin: 0;
    }
    .catalog_item{
        padding-left: 0;
    }
    .catalog_item-img {
        width: 300px;
    }
    .catalog_item-info {
        width: calc(100% - 320px);
    }
    .catalog_item-info ul{
        font-size: 18px;
        line-height: 24px;
    }
    .catalog_item-info li::before {
        margin: 10px 10px 0;
    }
    .catalog_item-desc {
        width: calc(100% - 200px);
    }
    .rate_title{
        margin-bottom: 65px;
    }
    .rate_wrapper{
        flex-direction: column;
    }
    .rate_item{
        border: none;
    }
    .rate_item:last-child br{
        display: block;
    }
    .slider_page-item.swiper-slide-active{
        transform: none;
        box-shadow: none;
    }
    .slider_page{
        width: 400px;
        padding: 0;
    }
    .slider_page-item::before{
        display: none;
    }
    .slider_page-block{
        margin: 80px 0;
    }
    .slider_page-dots{
        margin-top: 63px;
    }
    .provision_tabs{
        justify-content: space-between;
        padding: 0 2%;
        margin-bottom: 32px;
    }
    .provision_tab{
        width: 30%;
        margin: 0;
        font-size: 20px;
        line-height: 24px;
    }
    .provision{
        margin-bottom: 84px;
    }
    .provision_inner{
        padding: 0;
    }
    .provision_img{
        width: 98px;
        height: 98px;
        margin-right: 30px;
    }
    .provision_info {
        width: 510px;
    }
    .video_block-item{
        width: 100%;
    }
    .video_block-item picture{
        width: 100%;
        height: auto;
    }
    .contacts{
        margin: 64px 0;
    }
    .contacts_form-wrapper{
        flex-direction: column;
        margin-bottom: 11px;
    }
    .contacts_form-inps{
        width: 100%;
    }
    .contacts_form-area{
        width: 100%;
    }
    .contacts_form-inner{
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .contacts_form-file{
        width: 100%;
        margin-bottom: 32px;
    }
    .contacts_items{
        flex-direction: column;
        align-items: center;
    }
    .contacts_item{
        flex-direction: column;
        margin: 10px 0;
    }
    .contacts_item img{
        margin-right: 0;
        margin-bottom: 11px;
    }
    .poliyt_popup{
        padding: 70px 20px 70px 38px;
    }
    .poliyt_popup-title{
        font-size: 22px;
        line-height: 26px;
    }
    .poliyt_popup-subtitle{
        font-size: 14px;
        line-height: 16px;
    }
    .poliyt_popup p{
        line-height: 16px;
        font-size: 14px;
        margin-bottom: 14px;
    }
    .video_block{
        padding: 30px 0 28px;
    
    }
    .video_block-item{
        width: 668px;
        max-width: 100%;
    }
}
@media (max-width: 767.98px){
    .container{
        max-width: 100%;
        padding: 0 10px;
    }
    .video_block{
        padding: 30px 0 28px;
    
    }
    .video_block-item{
        width: 308px;
        max-width: calc(100% - 20px);
    }
    .header_logo{
        width: 101px;
    }
    .header_logo img{
        width: 100%;
        height: auto;
    }
    .header_wrapper{
        padding: 17px 0;
    }
    .main{
        margin-top: 53px;
        padding: 46px 0 340px;
    }
    .main_logo{
        width: 313px;
        margin-bottom: 32px;
    }
    .main_title{
        font-size: 31px;
        margin-bottom: 18px;
        line-height: 40px;
    }
    .main_text{
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 28px;
        max-width: 240px;
    }
    .header_inner{
        top: 53px;
    }
    .btn{
        width: 193px;
        height: 46px;
        font-size: 20px;
    }
    .about{
        margin: 48px 0 96px;
    }
    .about_img{
        height: 169px;
        width: 316px;
        max-width: 100%;
    }
    .about_info{
        width: 316px;
        max-width: 100%;
        font-size: 15px;
        line-height: 18px;
    }
    .about_info p {
        margin-bottom: 18px;
    }
    .about_wrapper{
        margin-bottom: 27px;
    }
    .about_item-img{
        width: 74px;
        margin: 0 auto 18px;
    }
    .about_item-img img{
        width: 100%;
        height: auto;
    }
    .about_item{
        width: 45%;
    }
    .about_item-title{
        font-size: 12px;
        line-height: 16px;
    }
    .catalog_tab{
        font-size: 12px;
        line-height: 16px;
        padding-bottom: 18px;
    }
    .catalog_tab span {
        font-size: 15px;
        line-height: 19px;
    }
    .catalog_tabs{
        margin-bottom: 12px;
    }
    .catalog_tab br{
        display: none;
    }
    .catalog_item-img {
        margin-left: 24px;
        width: 140px;
    }
    .catalog_item-info {
        padding-top: 28px;
        width: calc(100% - 170px);
    }
    .catalog_item-info ul{
        font-size: 11px;
        line-height: 14px;
        margin-bottom: 25px;
    }
    .catalog_item-info li::before {
        margin: 4px 4px 0;
        width: 2px;
        height: 2px;
        min-width: 2px;
    }
    .catalog_item-more{
        width: 25px;
        background-size: 6px 4px;
        height: 25px;
    }
    .catalog_item-subtitle{
        font-size: 12px;
        line-height: 16px;
    }
    .catalog_item-wrapper{
        margin-bottom: 26px;
    }
    .catalog_item-desc {
        width: calc(100% - 106px);
        font-size: 9px;
        line-height: 11px;
    }
    .catalog_item-desc p {
        margin-bottom: 12px;
    }
    .catalog_item-inner{
        margin-bottom: 20px;
    }
    .catalog_item-way{
        font-size: 11px;
        line-height: 14px;
        margin-bottom: 5px;
        padding-left: 4px;
    }
    .catalog_inner{
        margin-bottom: 72px;
    }
    .rate{
        padding: 54px 0;
    }
    .rate_title{
        margin-bottom: 32px;
        font-size: 25px;
        line-height: 35px;
    }
    .rate_item img{
        width: 37px;
        margin-bottom: 28px;
    }
    .slider_page-block {
        margin: 76px 0;
    }
    .slider_page{
        width: 292px;
        max-width: 100%;
    }
    .slider_page-item {
        padding: 16px 20px;
        height: auto;
        min-height: 360px;
    }
    .slider_page-img{
        height: 190px;
        margin-bottom: 20px;
    }
    .slider_page-text{
        font-size: 12px;
        line-height: 14px;
    }
    .slider_page-dots span{
        width: 14px;
        height: 14px;
        margin: 0 7px !important;
    }
    .provision_title{
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 36px;
    }
    .provision_tab{
        font-size: 12px;
        line-height: 16px;
        padding-bottom: 12px;
    }
    .provision_img{
        width: 72px;
        margin-right: 0;
        height: 72px;
    }
    .provision_info{
        width: calc(100% - 92px);
    }
    .provision_inner{
        padding-left: 30px;
        justify-content: space-between;
    }
    .provision_info p {
        line-height: 11px;
        font-size: 9px;
        margin-bottom: 9px;
    }
    .provision_btn{
        width: 130px;
        height: 25px;
        font-size: 9px;
        margin-top: 18px;
    }

    .contacts_title{
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 10px;
    }
    .contacts_subtitle{
        font-size: 9px;
        line-height: 11px;
        margin-bottom: 20px;
    }
    .contacts_form{
        padding: 34px 20px 48px;
        border-radius: 10px 60px 10px 10px;
        margin-bottom: 54px;
    }
    .contacts_form-inps{
        width: 226px;
        margin: 0 auto;
    }
    .contacts_form-inp{
        height: 25px;
        margin-bottom: 11px;
        font-size: 12px;
        padding-left: 14px;
    }
    .contacts_form-area{
        width: 226px;
        margin: 0 auto;
        font-size: 12px;
        padding-left: 14px;
        height: 97px;
        border-radius: 10px;
    }
    .contacts_form-file{
        width: 226px;
        margin: 0 auto 34px;
    }
    .contacts_form-file span{
        font-size: 12px;
        line-height: 14px;
    }
    .contacts_form-ok{
        width: 226px;
        font-size: 9px;
        line-height: 11px;
        margin: 0 auto;
        white-space: nowrap;
    }

    .contacts_form-ok span{
        width: 5px;
        height: 5px;
        min-width: 5px;
        margin-right: 9px;
    }
    .contacts_form-ok input:checked + span::before{
        width: 3px;
        height: 3px;
        top: 1px;
        right: 1px;
    }
    .contacts_btn{
        width: 130px;
        height: 25px;
        font-size: 9px;
        line-height: 11px;
        text-transform: uppercase;
    }
    .contacts_form-inner{
        margin-bottom: 30px;
    }
    .contacts_item img{
        width: 74px;
        margin-bottom: 11px;
    }
    .contacts_item{
        margin: 0 0 20px;
    }
    .contacts_item a{
        font-size: 15px;
        line-height: 19px;
    }
    .footer{
        padding: 34px 0 54px;
    }
    .footer_logo{
        width: 101px;
        margin: 0 auto 16px;
    }
    .footer_logo img{
        width: 100%;
        height: auto;
    }
    .footer_polit{
        font-size: 9px;
        line-height: 11px;
    }
    .footer_text{
        font-size: 6px;
        line-height: 9px;
        width: 208px;
    }
    .scroll{
        width: 25px;
        height: 25px;
    }
    .scroll img{
        width: 100%;
        height: auto;
    }
    .provision_content:last-child .provision_inner{
        padding-left: 0;
    }
    .provision_link{
        width: 75px;
        height: auto;
        border-radius: 14px;
    }
}

@media (max-width: 454.98px){
    .main_title {
        font-size: 25px;
        line-height: 34px;
    }
    .main_logo{
        max-width: 100%;
    }
    .expiration_date {
        font-size: 15px;
        line-height: 17px;
    }
}

@-webkit-keyframes pulsate {
    50% { color: #fff; text-shadow: 0 -1px rgba(0,0,0,.3), 0 0 5px #ffd, 0 0 8px #fff; }
}
@keyframes pulsate {
    50% { color: #fff; text-shadow: 0 -1px rgba(0,0,0,.3), 0 0 5px #ffd, 0 0 8px #fff; }
}
.contacts_form-ok.active, .contacts_form-ok.active a {
    color: red;
    text-shadow: 0 -1px rgba(0,0,0,.1);
    -webkit-animation: pulsate 1.2s linear infinite;
    animation: pulsate 1.2s linear infinite;
}
.contacts_form-send {
    color: #fff;
    text-align: center;
    font-size: 32px;
}
.expiration_date {
    text-align: center;
    margin-bottom: 50px;
    color: #272E45;
    font-weight: 400;
    font-size: 17px;
    line-height: 19px;
}