@media only screen and (max-width: 1600px) {
    .header_link{
        padding-left: 20px;
        padding-right: 20px;
    }
    .header_contacts_phone{
        margin-right: 20px;
    }
    .header_contact_button{
        width: 200px;
    }

}

@media only screen and (max-width: 1400px) {
    .header_contacts_phone_number{
        font-size: 14px;
    }
    .header_contacts_phone p, .header_link{
        font-size: 12px;
    }
    .header_contact_button,.header_contact_button_close{
        width: 150px;
        font-size: 12px;
    }
    header .inner{
        height: 68px;
    }
    .header_menu_button{
        width: 68px;
        height: 68px;
    }
    .header_contact_button, .header_link, .header_contact_button_close{
        line-height: 68px;
    }
    .header_logo img{
        height: 50px;
    }
    .header_menu_button span{
        width: 30px;
    }
    .header_menu_button span:first-child{
        margin-bottom: 7px;
    }
    .header_menu_button:hover span:first-child {
        margin-bottom: 12px;
    }

}

@media only screen and (max-width: 1200px) {
    .header_dropdown, .header_link, .header_contacts_phone{
        display: none;
    }
    .home_main_video{
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .header_menu_body-inner{
        top: 70px;
        right: 0;
        padding-right: 50px;
        left: 50px;
    }
}

@media only screen and (max-width: 768px) {
    header .inner{
        height: 54px;
    }
    .header_menu_button{
        width: 54px;
        height: 54px;
    }
    .header_contact_button, .header_link{
        line-height: 54px;
        height: 54px;
        width: 54px;
    }
    .header_menu_button span {
        width: 20px;
        background-color: #ee9534;
    }
    .header_menu_button span:first-child{
        margin-bottom: 7px!important;
    }
    .header_logo{
        left: calc(50% - 30px);
    }
    .header_logo img {
        height: 40px;
    }
    .header_logo span{
        display: none;
    }
    .header_contact_button, .header_menu_button{
        background: none;
    }
    .header_contact_button .icon_phone{
        display: block;
        margin: 0;
    }
    .header_contact_button .icon_plus, .header_contact_button span{
        display: none;
    }
    .header_contact_button_close{
        border: none;
        line-height: 54px;
        height: 54px;
        width: 54px;
        text-align: center;
    }
    .header_contact_button_close span{
        display: none;
    }
    .header_contact_button_close svg{
        margin-right: 0;
    }
}

@media only screen and (max-width: 667px) {
    .header_menu_links a{
        font-size: 18px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {

}

/*==========  Mobile First Method  ========== */
/* Custom, iPhone Retina */
@media only screen and (min-width: 769px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
    /* */
}

@-webkit-keyframes e {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes c {
    0%, 100% {
        -webkit-transform: translate3d(0, -3px, 0);
        -moz-transform: translate3d(0, -3px, 0);
        transform: translate3d(0, -3px, 0);
        -webkit-animation-timing-function: linear;
        -moz-animation-timing-function: linear;
        -o-animation-timing-function: linear;
        animation-timing-function: linear;
    }
    50% {
        -webkit-transform: translate3d(0, 3px, 0);
        -moz-transform: translate3d(0, 3px, 0);
        transform: translate3d(0, 3px, 0);
    }
}