@import url('../../css/fonts.css');
@import url('../../css/bootstrap.css');

@-webkit-keyframes stickySlideDown {
    0% {
        opacity: 0.7;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes stickySlideDown {
    0% {
        opacity: 0.7;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
*{
    box-sizing: border-box;
    outline: 0 !important;
}
html,body {
    margin: 0;
    overflow-x: hidden;
    min-width: 320px;
    min-height: 100vh;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    /*font-family: 'Manrope', sans-serif;*/
    background: #ecf0f3;
    font-weight: 400;
}
input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=text]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=number]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder{
    font-family: 'Montserrat', sans-serif;
}

html.opened,
body.opened{
    overflow-y: hidden;
    position:relative;
    height: auto;
}
@media (max-width: 990px){
    html.opened, body.opened {
        overflow: hidden;
        position: relative;
        height: 100vh;
    }
}
.hidden {
    display: none !important;
}
.text-indent{
    text-indent: -9999px;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
a {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
a,span {
    display: inline-block;
}
a:hover, a:focus, button:focus, button:active{
    text-decoration: none;
    outline: 0;
}
button{
    cursor: pointer;
}
/* For Firefox */
input[type='number'] {
    -moz-appearance:textfield;
}
/* Webkit browsers like Safari and Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="search"] {
    -webkit-appearance: none;
}
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
.form-control.error:not([type=checkbox]):not([type=radio]){
    border-color: #e6342a;
}
/*-----------------------------------------------------------*/
.bars::after, .bars::before {
    position: absolute;
    content: "";
    left: 0;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #4774b9;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.bars {
    display: none;
    position: relative;
    vertical-align: middle;
    width: 30px;
    height: 2px;
    background-color: #4774b9;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
}
.bars::before {
    top: -6px;
}
.bars::after {
    top: 6px;
}
.closed-menu > span {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.closed-menu > span:after,
.closed-menu > span:before {
    left: 5px;
    width: 20px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}
/*-----------------------------------------------------------*/
.wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1140px;
    padding: 0 15px;
    position: relative;
}
section{
    padding: 40px 0;
}
section h2{
    text-align: center;
    color:#4774b9;
    font-size: 36px;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 15px;
}
section h2+h3{
    color:#272727;
    text-align: center;
    margin-top: 0;
    font-weight: 400;
    font-size: 26px;
}
section.white_bg{
    background: #fff;
}
section.blue_bg{
    background: #ecf0f3;
}
section.dark_blue_bg{
    background: #4774b9;
    color: #fff;
}
section.dark_blue_bg h2{
    color:#fff;
}
section.dark_blue_bg h2+h3{
    color: #d2dae5;
    max-width: 785px;
    display: block;
    margin: 0 auto 30px;
}
section.contact_form h2{
    color: #e6342a;
}
.difference{padding-bottom: 60px;}
.logo{
    max-width: 120px;
    margin-right: 30px;
    width: 100%;
}
.btn_red{
    text-decoration: none;
    color:#fff;
    font-weight: 700;
    background: #e6342a;
    padding: 13px 30px;
    border-radius: 35px;
    font-size: 16px;
    border: none;
    box-shadow: 3px 3px 3px 0px rgba(0,0,0,.3);
    transition: all .3s ease;
}
.btn_red:hover{
    box-shadow: 3px 3px 3px 0px rgba(0,0,0,.5);
}
.flex_list{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
}
ul.white_blocks {
    margin: 0 -15px;
}
ul.white_blocks > li{
    padding: 20px;
    background: #fff;
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, .1);
    margin: 15px;
}
/*
header{
    background: transparent;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1001;
    height: 70px;
    transition: all .3s ease;
}
header .wrapper {
    height: 70px;
    background: #fff;
    margin: 0 -15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, .1);
}
header.sticky{
    animation-name: stickySlideDown;
    transition: none;
    background: #fff;
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, .1);
}
header.sticky .wrapper{
    box-shadow: none;
}
header nav {
    width: calc(100% - 150px);
    margin-right: -15px;
    margin-top: -5px;
    margin-bottom: -5px;
    height: 70px;
    text-align: right;
}
header nav > a{
    color:#4774b9;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    margin-right: 30px;
    vertical-align: middle;
    border-bottom: 2px solid transparent;
    transition: all .3s ease;
}
header nav > a:not(.logo2):not(.phone):hover{
    border-color: inherit;
}
header nav > a.logo2{
    border-left: 1px solid #ddd;
    border-bottom: none;
    height: 100%;
    width: 70px;
    text-align: center;
    margin: 0;
    background: url(../images/icons/acd-01.svg) no-repeat center / contain;
}
header nav > a.phone{
    text-align: center;
    border-bottom: none;
    border-left: 1px solid #ddd;
    height: 100%;
    width: 70px;
    margin: 0;
}
header .phone > i,
header .logo2 > i {
    display: inline-block;
    color:#4774b9;
    line-height: 70px;
    font-size: 28px;
}
*/
section.banner{
    margin-top: 70px;
    padding: 0;
    position: relative;
}
section.banner .wrapper{
    padding: 0 15px 30px;
    position: static;
}
section.banner .wrapper-inner{
    /*background: #ecf0f3 url(../images/icons/SVG_HERO.svg) no-repeat center right / contain;*/
    background: #ecf0f3 url(../images/banner-mini.png) no-repeat center right / contain;
    opacity: .3;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
section.banner h1{
    color:#4774b9;
    font-size: 46px;
    max-width: 645px;
    font-weight: 300;
    margin-top: 0;
    line-height: 46px;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}
section.banner h1+p{
    margin-top: 0;
    margin-bottom: 40px;
    color:#272727;
    font-size: 18px;
    max-width: 60%;
    position: relative;
    z-index: 1;
}
section.for_what ul {
    margin: 0 -15px;
}
section.for_what ul > li{
    width: calc(33% - 30px);
    margin: 15px;
    color:#272727;
    font-size: 16px;
    line-height: 28px;
}
section.for_what ul > li img{
    max-width: 100px;
    margin-left: 0;
    display: block;
    margin-bottom: 20px;
}
section.how_works img.logo_big{
    max-width: 160px;
    display: block;
    margin: 15px auto 30px;
}
section.how_works ul{
    margin: 0 -10px;
    align-items: stretch;
}
section.how_works ul > li {
    background: #fff;
    width: calc(50% - 30px);
    margin: 15px;
    color:#272727;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, .1);
    position: relative;
    padding-left: 100px;
}
section.how_works ul > li > .img{
    width: 80px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
section.how_works ul > li > .img1{
    background: url(../images/icons/SVG_11.svg) no-repeat center / cover ;
}
section.how_works ul > li > .img2{
    background: url(../images/icons/SVG_22.svg) no-repeat center / cover ;
}
section.how_works ul > li > .img3{
    background: url(../images/icons/SVG_33.svg) no-repeat center / cover ;
}
section.how_works ul > li > .img4{
    background: url(../images/icons/SVG_44.svg) no-repeat center / cover ;
}
section.how_works ul > li p{
    margin-top: 25px;
    padding-right: 20px;
    margin-bottom: 25px;
}
section.difference ul{
    margin: 0 -15px;
}
section.difference ul li {
    width: calc(33% - 30px);
    margin: 15px;
    color:#fff;
    font-size: 16px;
    position: relative;
    padding-top: 15px;
    margin-top: 0;
    line-height: 28px;
}
section.difference ul li:before{
    content:'';
    width: 100px;
    height: 2px;
    background: #d2dae5;
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    opacity: .7;
}
section.difference .more.btn_red{
    display: block;
    margin: 30px auto 0;
    max-width: 280px;
    text-align: center;
}
section.primenenie{
    background: url(../images/bg/background.jpg) no-repeat center / cover;
}
section.primenenie ul{
    margin: 0 -15px;
    align-items: stretch;
}
section.primenenie ul > li {
    width: calc(33% - 30px);
    margin: 15px;
    display: flex;
    flex-flow: column nowrap;
}
section.primenenie ul > li > img{
    max-width: 100px;
    display: inline-block;
    margin-bottom: 15px;
}
section.primenenie ul > li h4{
    color:#4774b9;
    font-weight: 300;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: auto;
}
section.primenenie ul > li p{
    color: #272727;
    font-size: 16px;
    margin: 10px 0 0;
}
section.preimushestva article{
    display: flex;
    align-items: flex-start;
    margin: 0 -10px 20px;
}
section.preimushestva article > p {
    width: 50%;
    color:#272727;
    font-size: 16px;
    margin: 5px 15px;
    line-height: 28px;
}
section.preimushestva ul{
    align-items: stretch;
}
section.preimushestva ul > li{
    width: calc(33% - 30px);
}
section.preimushestva ul > li.phone_item{
    background: #fff url(../images/icons/SVG_crop1.svg) no-repeat right bottom / 50%;
}
section.preimushestva ul > li.hat_item{
    background: #fff url(../images/icons/SVG_crop2.svg) no-repeat right bottom / 50%;
}
section.preimushestva ul > li.arrows_item{
    background: #fff url(../images/icons/SVG_crop3.svg) no-repeat right bottom / 50%;
}
section.preimushestva ul > li.hand_item{
    background: #fff url(../images/icons/SVG_crop4.svg) no-repeat right bottom / 50%;
}
section.preimushestva ul > li.cursor_item{
    background: #fff url(../images/icons/SVG_crop5.svg) no-repeat right bottom / 50%;
}
section.preimushestva ul > li.stretch_item{
    background: #fff url(../images/icons/SVG_crop6.svg) no-repeat right bottom / 50%;
}
section.preimushestva ul > li > h3{
    color:#4774b9;
    font-weight: 300;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
}
section.preimushestva ul > li p{
    color:#272727;
    font-size: 16px;
    line-height: 28px;
}
section.oborudovanie{
    text-align: center;
}
section.oborudovanie ul {
    margin: 0 -15px;
    align-items: stretch;
}
section.oborudovanie ul > li{
    width: calc(33% - 30px);
    margin: 15px;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}
section.oborudovanie ul > li p{
    color:#4774b9;
    font-weight: 300;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: auto;
    padding-top: 10px;
    border-top: 2px solid;
    width: 100%;
}
section.oborudovanie ul > li .img {
    padding-bottom: 50%;
    width: 100%;
    display: block;
    margin-bottom: 30px;
}
section.special h2+h3{
    color: #4774b9;
}
section.special ul {
    margin: 30px -15px 0;
    justify-content: flex-start;
}
section.special ul > li{
    width: calc(33% - 30px);
    margin: 15px;
    color: #4774b9;
    position: relative;
    padding-top: 15px;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 28px;
}
section.special ul > li:before{
    content:'';
    width: 100px;
    height: 2px;
    background: #4774b9;
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
}
section.potrebitel article {
    text-align: center;
}
section.potrebitel ul {
    margin: 0 -15px;
    text-align: left;
    margin-bottom: 40px;
}
section.potrebitel ul > li {
    width: calc(25% - 30px);
    margin: 15px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #fff;
    position: relative;
    padding-top: 15px;
}
section.potrebitel ul > li img{
    max-width: 100px;
    display: block;
    margin-right: auto;
}
section.main_param{
    text-align: center;
}
section.main_param ul {
    margin: 0 -15px;
    align-items: stretch;
}
section.main_param ul > li{
    width: calc(33% - 30px);
    margin: 15px;
}
section.main_param ul > li img {
    display: block;
    max-width: 120px;
    margin: 0 auto;
}
section.main_param ul > li p{
    color:#272727;
    font-size: 16px;
    line-height: 28px;
}
section.main_param ul > li:last-of-type{
    padding: 0;
}
section.main_param ul > li:last-of-type > a{
    width: 100%;
    height: 100%;
    background:#3b7be5;
    color:#fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
section.main_param ul > li:last-of-type > a p{
    color: #fff;
}
section.contact_form form {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    width: calc(100% - 120px);
}
section.contact_form form .form-group{
    width: calc(33% - 30px);
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
}
section.contact_form .form-group.two-third_box{
    width: calc(66% - 30px);
}
section.contact_form form .form-group input[type=tel],
section.contact_form form .form-group input[type=text],
section.contact_form form .form-group input[type=email],
section.contact_form form .form-group textarea{
    width: 100%;
    box-shadow: none;
    background:#fff;
    border: 1px solid#ccc;
    padding: 4px 8px;
    height: 40px;
    font-size: 16px;
    resize: none;
}
input:not([type=checkbox]):not([type=radio]):focus,
textarea:focus{
    border-color: #4774b9 !important;
}
section.contact_form form .form-group textarea{
    height: 120px;
}
section.contact_form .wrapper{
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
}
section.contact_form .wrapper > h2 {
    width: 100%;
}
section.contact_form .wrapper > h2 + p{
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto 30px;
    font-size: 24px;
    max-width: 767px;
    color:#272727;
}
section.contact_form .socials {
    width: 120px;
    text-align: center;
    font-size: 42px;
}
section.contact_form .socials > li:not(:last-child) {
    margin-bottom: 10px;
}
section.contact_form .socials > li> a{
    color: #4774b9;
    transition: all .3s ease;
}
section.contact_form .socials > li> a:hover{
    transform: scale(1.05);
}
section.contact_form  form button {
    margin-top: 30px;
    margin-left: auto;
    display: block;
    border: none;
    cursor: pointer;
}
section.high_standarts{
    background:#afc3e6;
    color: #272727;
}
section.high_standarts h2{
    color: #4774b9;    
}
section.high_standarts article {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 28px;
}
section.high_standarts article > a{
    margin-left: 30px;
}
section.high_standarts article .pdf_link,
section.high_standarts article .pdf_link > img{
    max-width: 160px;
}
section.callback_manage {
    background: #afc3e6;
    color: #272727;
}
section.callback_manage h2 + p{
    color: #272727;
    text-align: center;
    margin-top: 0;
    font-weight: 400;
    font-size: 26px;
}
section.callback_manage ul {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
}
section.callback_manage ul li{
    width: 100%;
    text-align: center;
}
section.callback_manage ul li:first-child{
    margin-bottom: 15px;
}
section.callback_manage img{
    max-width: 200px;
    width: 100%;
    height: 100px;
}
section.medical {
    background: #afc3e6;
    color: #272727;
}
section.medical ul {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    max-width: 767px;
    margin: 0 auto;
}
section.medical img{
    max-width: 240px;
    height: 120px;
}
section.medical ul li{
    margin: 0 30px;
    line-height: 28px;
    font-size: 16px;
}
/*
footer{
    background: #4774b9;
    color: #fff;
    padding: 30px 0;
}
footer .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
footer .list_products{
    font-size: 16px;
}
footer .list_products li:not(:last-child){
    margin-bottom: 10px;
}
footer ul.contacts {
    color:#fff;
    font-size: 16px;
    font-weight: 500;
}
footer ul.contacts > li:not(:last-child){
    margin-bottom: 8px;
}
footer ul.contacts > li > a{
    color: #fff;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
}
footer ul.contacts > li > i{
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
footer .logo{
    display: flex;
    width: auto;
    color:#fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    flex-wrap: wrap;
    line-height: 14px;
}
footer .logo > img {
    width: 120px;
    height: 80px;
    margin-right: 30px;
}
footer .privacy_terms img {
    max-width: 240px;
    display: block;
    margin-bottom: 20px;
}
footer .privacy_terms a{
    text-decoration: none;
    color: #fff;
    display: block;
    margin: 10px 0;
    font-size: 12px;
}
*/
@media(max-width: 1230px){
    section.banner > .wrapper{
        padding: 30px 15px;
    }
    section.for_what ul,
    section.difference ul,
    section.primenenie ul {
        margin: 0 -15px;
    }
}
/*
@media(max-width: 1190px){
    header{
        height: 40px;
    }
    .logo {
        max-width: 70px;
        margin-right: 20px;
    }
    header nav{
        height: 40px;
        width: calc(100% - 100px);
    }
    header .wrapper{
        height: 40px;
    }
    header nav > a.phone,
    header nav > a.logo2{
        height: 40px;
    }
    header nav > a{
        font-size: 16px;
        font-weight: 600;
        margin-right: 15px;
    }
    header .phone > i, header .logo2 > i{
        line-height: 40px;
        font-size: 20px;
    }
}
*/
@media(max-width: 990px){
    /*
    footer .logo > img {
        width: 80px;
        height: 40px;
        margin-right: 0;
    }
    footer .privacy_terms img {
        max-width: 140px;
        display: block;
        margin-bottom: 15px;
    }
    footer ul.contacts{
        font-size: 12px;
    }
    footer ul.contacts > li:not(:last-child) {
        margin-bottom: 5px;
    }
    footer .list_products{
        font-size: 12px;
    }
    footer .list_products li:not(:last-child) {
        margin-bottom: 5px;
    }
    footer .privacy_terms a{
        margin: 5px 0;
    }
    
    header nav{
        margin-right: 15px;
        border-right: 1px solid #ccc;
    }
    header nav.active > a:not(.logo2):not(.phone){
        display: block;
        background: #fff;
        padding: 15px;
        width: 100%;
        position: absolute;
        z-index: 10001;
        top: 40px;
        left: 0;
        right: 0;
        text-align: center;
        border-top: 1px solid #ccc;
        border-bottom: 0;
    }
    header nav.active > a:not(.logo2):not(.phone):nth-child(2){
        top: 93px;
    }
    header nav.active > a:not(.logo2):not(.phone):nth-child(3){
        top: 146px;
    }
    header nav.active > a:not(.logo2):not(.phone):nth-child(4){
        top: 199px;
    }
    header nav.active > a:not(.logo2):not(.phone):nth-child(5){
        top: 252px;
    }
    header nav.active > a:not(.logo2):not(.phone):hover{
        border-color: #ccc;
    }
    */
    .bars {
        display: inline-block;
        cursor: pointer;
    }
    section.banner h1{
        font-size: 32px;
        line-height: 36px;
    }
    section h2{
        font-size: 24px;
    }
    section h2 + h3,
    section.primenenie ul > li h4,
    section.preimushestva ul > li > h3,
    section.oborudovanie ul > li p{
        font-size: 18px;
    }
    /*
    header nav > a:not(.logo2):not(.phone){
        display: none;
    }
    */
    section.for_what ul > li img{
        max-width: 80px;
        margin: 0 auto;
    }
    section.for_what ul > li,
    section.how_works ul > li,
    section.difference ul li,
    section.primenenie ul > li p,
    section.preimushestva article > p,
    section.preimushestva ul > li p,
    section.special ul > li,
    section.potrebitel ul > li,
    section.main_param ul > li p,
    section.high_standarts article{
        font-size: 14px;
        line-height: 24px;
    }
    section.how_works img.logo_big{
        max-width: 120px;
        margin: 0px auto 30px;
    }
    section.banner > .wrapper{
        background-position: bottom right;
    }
}
@media(max-width: 767px){
    section.primenenie ul > li > img{
        margin: 0 auto 15px;
    }
    /*
    footer .wrapper{
        flex-wrap: wrap;
    }
    footer .privacy_terms{
        width: 100%;
    }
    footer ul.contacts,
    footer .list_products {
        width: 33%;
        margin-bottom: 15px;
    }
    footer .logo{
        width: 33%;
        max-width: 110px;
        margin-right: 15px;
        margin-bottom: 15px;
        max-width: calc(33% - 15px);
    }
    */
    section.callback_manage img{
        max-width: 80px;
        height: 50px;
    }
    .btn_red{
        font-size: 14px;
        padding: 10px;
    }
    section.banner{
        margin-top: 40px;
    }
    section.banner h1 {
        font-size: 24px;
        line-height: 32px;
        max-width: 360px;
    }
    section.banner h1 + p{
        font-size: 16px;
        max-width: 100%;
    }
    section.for_what ul > li {
        width: 100%;
        margin: 15px 15px 0;
    }
    section.how_works img.logo_big {
        max-width: 80px;
    }
    section {
        padding: 30px 0;
    }
    section h2 {
        font-size: 20px;
    }
    section h2 + h3, 
    section.primenenie ul > li h4, 
    section.preimushestva ul > li > h3, 
    section.oborudovanie ul > li p,
    section.callback_manage h2+p{
        font-size: 16px;
    }
    section.how_works ul > li{
        width: 100%;
        margin-bottom: 5px;
        padding-left: 0;
        padding-top: 110px;
        display: block;
        max-width: 320px;
    }
    section.how_works ul > li > .img{
        width: 100%;
        height: 115px;
        background-size: 100% !important;
        background-position: top center !important;
    }
    section.how_works ul > li > .img1 {
        background: url(../images/icons/SVG_mobile-25.svg) no-repeat center / contain;
    }
    section.how_works ul > li > .img2 {
        background: url(../images/icons/SVG_mobile-26.svg) no-repeat center / contain;
    }
    section.how_works ul > li > .img3 {
        background: url(../images/icons/SVG_mobile-27.svg) no-repeat center / contain;
    }
    section.how_works ul > li > .img4 {
        background: url(../images/icons/SVG_mobile-28.svg) no-repeat center / contain;
    }
    section.how_works ul > li p{
        padding-right: 15px;
        padding-left: 15px;
    }
    section.difference ul li,
    section.special ul > li{
        width: 100%;
        margin: 15px 15px 30px;
        text-align: center;
        padding-top: 10px;
    }
    section.difference ul li:last-child,
    section.special ul > li:last-child{
        margin-bottom: 0;
    }
    section.difference ul li:before,
    section.special ul > li:before{
        left: 50%;
        transform: translateX(-50%);
    }
    section.special ul{
        justify-content: center;
    }
    section.preimushestva ul > li {
        width: calc(50% - 30px);
    }
    section.potrebitel ul > li {
        padding-top: 10px;
        width: calc(50% - 30px);
    }
    section.main_param ul > li {
        width: calc(50% - 30px);
    }
    section.contact_form form{
        width: calc(100% - 80px);
    }
    section.contact_form form .form-group,
    section.contact_form .form-group.two-third_box{
        width: 100%;
        margin-bottom: 15px;
        margin-left: 0;
        margin-right: 0;
    }
    section.contact_form form button{
        width: 100%;
    }
    section.contact_form .socials {
        width: 80px;
        text-align: center;
        font-size: 36px;
        padding-left: 15px;
    }
    .order_1{-webkit-box-ordinal-group: 2;-ms-flex-order: 1;order: 1;}
    .order_2{-webkit-box-ordinal-group: 3;-ms-flex-order: 2;order: 2;}
    .order_3{-webkit-box-ordinal-group: 4;-ms-flex-order: 3;order: 3;}
    .order_4{-webkit-box-ordinal-group: 5;-ms-flex-order: 4;order: 4;}
    .order_5{-webkit-box-ordinal-group: 6;-ms-flex-order: 5;order: 5;}
    .order_6{-webkit-box-ordinal-group: 7;-ms-flex-order: 6;order: 6;}
    .order_7{-webkit-box-ordinal-group: 8;-ms-flex-order: 7;order: 7;}
    .order_8{-webkit-box-ordinal-group: 9;-ms-flex-order: 8;order: 8;}
    .order_9{-webkit-box-ordinal-group: 10;-ms-flex-order: 9;order: 9;}
    .order_10{-webkit-box-ordinal-group: 11;-ms-flex-order: 10;order: 10;}
}
@media(max-width: 480px){
    /*
    footer ul.contacts{
        width: 100%;
        margin-bottom: 30px;
    }
    footer .list_products {
        width: 50%;
        margin-bottom: 30px;
    }
    footer .logo {
        width: 50%;
        margin-right: 30px;
        margin-bottom: 30px;
        max-width: calc(50% - 30px);
    }
    */
    section.medical ul li{
        margin: 0;
        font-size: 14px;
        line-height: 24px;
    }
    section.medical ul li:last-child{
        padding-left: 15px;
    }
    section.medical img{
        max-width: 120px;
        height: 60px;
    }
    section.preimushestva article {
        flex-wrap: wrap;
    }
    section.primenenie ul > li{
        width: 100%;
        text-align: center;
    }
    section.primenenie ul > li p{
        margin: 0;
    }
    section.preimushestva article > p{
        width: 100%;
    }
    section.preimushestva ul > li {
        width: 100%;
        margin-bottom: 5px;
        background-size: 25% !important;
    }
    section.oborudovanie ul > li {
        max-width: 290px;
        width: 100%;
        margin: 15px 15px 30px;
    }
    section.potrebitel ul > li {
        width: 100%;
        text-align: center;
        margin-bottom: 0;
    }
    section.potrebitel ul > li img{
        max-width: 80px;
        margin: auto;
    }
    section.main_param ul > li {
        width: 100%;
        max-width: 290px;
    }
    section.high_standarts article{
        flex-wrap: wrap;
    }
    section.high_standarts article > a{
        display: block;
        margin: 15px auto;
    }
    /*
    footer{
        padding: 15px 0;
    }
    footer .logo{
        flex-wrap:wrap;
    }
    footer .logo > img {
        width: 70px;
        height: 35px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    footer .logo > p{
        margin: 0;
        font-size: 12px;
    }
    footer ul.contacts {
        color:  #fff;
        font-size: 14px;
        font-weight: 600;
    }
    */
}

header {
    padding-bottom: 25px;
    min-height: 90px;
}
header nav {
    width: 100%;
    height: 95px;
    position: fixed;
    z-index: 9999;
    background-color: #fff;
}
header nav.animate {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.slide {
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.small-nav {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    width: 20%;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18pt;
    font-weight: 700;
}
.logo img {
    max-width: 240px;
    height: 60px;
    display: block;
}
.menu {
    width: 80%;
    height: 95px;
}
.page-menu {
    width: 100%;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.page-menu li {
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    margin-right: 25px;
}
.page-menu li> a {
    text-decoration: none;
    position: relative;
    color: #1F373D;
}
.page-menu li:last-child{
    margin-right: 0;
}
.active {
    color: #4774b9;
}
.left {
    float: left;
}
.hide {
    display: none;
}
.pointer {
    cursor: pointer;
}
.right {
    float: right;
}
.page-menu li > a:hover {
    text-decoration: none;
    color: #4774b9;
}
.text-underline{text-decoration: underline !important;}
footer {
    background-color: #1F373D;
    width: 100%;
    color: #fff;
    padding: 15px 0px;
}
.footer-top {
    border-bottom: 1px solid #919EB1;
    padding-bottom: 45px;
}
.footer-logo h4 {
    margin-bottom:60px;
}
.footer-logo h4 > img {
    display: block;
    margin: 0;
    max-width: 115px;
    width: 100%;
}
.footer-logo p {
    font-size: 13px;
    font-weight: 400;
}
.footer-bottom {
    padding-top: 30px;
}
.footer-column h5 {
    padding-bottom: 35px;
}
.footer-column a {
    color: #fff;
    display: flex;
    font-size: 13px;
    padding-bottom: 18px;
    text-decoration: none;
}
footer .footer-icon{
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
footer .footer-icon + span {
    display: inline-block;
    vertical-align: middle;
}
footer h5, 
footer .h5 {
    font-size: 14px;
    font-weight: 400;
    color: #919EB1;
}
@media only screen and (max-width: 1199px) {
    .wrapper{
        max-width: 960px;
    }
}
@media only screen and (max-width: 991px) {
    .menu {
        background-color: #fff;
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 70px;
        right: 100%;
        text-align: center;
        z-index: 999;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }
    .page-menu {
        width: 100%;
        height: 50vh;
        text-align: center;
        float: none;  
        display: flex;
        flex-direction: column;
    }
    .page-menu li {
        font-size: 15pt;
        padding: 2vh;
        margin: 0 auto !important;
    }
    .page-menu li > a {
        color: #4774b9;
    }
    .menu-button {
        width: 40px;
        height: 40px;
        display: block;
        margin-top: 26px;
    }
    .menu-button span {
        width: 40px;
        height: 5px;
        background-color: #1F373D;
        display: block;
        margin: 6px 0px;
    }
    .logo img{height: 48px;}
    .wrapper{
        max-width: 720px;
    }
    section.banner{
        margin-top: 10px;
    }
    section.banner h1{
        max-width: 100%;
        margin-bottom: 30px;
    }
    section.banner h1+p{
        max-width: 100%;
        margin-bottom: 0;
    }
    section.banner .wrapper-inner {
        background: #ecf0f3 url(../images/banner-mini.png) no-repeat bottom right / contain;
        opacity: 0;
    }
}
@media only screen and (max-width: 768px) {
    .visible-xs{display: block;}
    .hidden-xs{display: none !important;}
    .mb-xs-0{margin-bottom: 0 !important;}
    .footer-logo h4 {
        float: left;
    }
    .footer-logo p {
        float: right;
    }
    .container {
        max-width: 540px;
    }
}
@media only screen and (max-width: 575px) {
    .footer-bottom {
        text-align: center;
    }
    .footer-column a {
        display: list-item;
        list-style: none;
    }
}
@media only screen and (max-width: 380px) {
    .footer-column{margin-bottom: 30px;}
    .footer-column h5 {
        padding-bottom: 15px;
    }
}