header {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    will-change: top;
    width: 100%;
    max-width: 100vw;
    transition: transform .4s ease;
    display: flex;
}

header:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #282826;
    z-index: 4;
}

.header_body {
    position: relative;
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    height: 106px;
}

#company_logo {
    min-width: 300px;
    display: flex;
    align-items: center;
    width: 15%;
    justify-content: center;
    z-index: 4;
    position: relative;
    text-align: center;
}

#company_logo a {
    display: flex;
    align-items: center;
    color: #E25D34;
    font-size: 48px;
}

#company_logo img {
    /* max-width: 215px;
    max-height: 77px;*/
    max-width: 100%;
    display: block;
}



.header_burger{
   display: none;
    margin-right: 80px;
}

.header_menu {
    z-index: 4;
    margin-right: 80px;
}

.header_list {
    display: flex;
    z-index: 2;
}

.header_list li {
    list-style: none;
    margin: 0 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_link {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header_list li:first-child .header_link {
    border: 1px solid;
    background: #171717;
    width: 55px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border-color: #d4d0c5;
}

.header_list li:first-child .header_link.active, .header_list li:first-child .header_link:hover {
    border-color: #E25D34;
}

.header_link:hover,.header_link.active{
    color: #E25D34;
}

@media screen and (max-width: 991px){
    body.lock{
        overflow: hidden;
    }
    .header_body{
        height: 76px;
    }
    #company_logo {
        min-width: 200px;
    }
    #content{
        padding-top: 76px;
    }

    .header_burger{
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 4;
    }


    .header_burger span{
        position: absolute;
        background-color: #fff;
        left: 0;
        top: 9px;
        width: 100%;
        height: 2px;
        transition: all 0.3s ease 0s;
    }

    .header_burger:before,
    .header_burger:after{
        content: '';
        background-color: #fff;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
    }
    .header_burger:before{
        top: 0;
    }
    .header_burger:after{
        bottom: 0;
    }
    .header_burger.active span{
        transform:scale(0);
    }
    .header_burger.active:before{
        transform: rotate(45deg);
        top: 9px;
    }
    .header_burger.active:after{
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .header_menu{
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(40, 40, 38, 0.90);
        z-index: 3;
        padding: 106px 0 0 0;
        transition: all 0.3s ease 0s;
        overflow: auto;
        margin-right: 0;
    }

    .header_menu.active{
        top: 0;
    }

    .header_list{
       display: block;
    }

    .header_list li {
        list-style: none;
        margin: 0 0 20px 0;
    }
}

.select-whitebox {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: left;
    line-height: 28px;
    background: #d4d0c5;
    cursor: pointer;
    position: relative;
    z-index: 4;
}

.select-country{
    width: 49px;
    position: absolute;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select-country .flag {
    display: inline-block;
    padding: 5px 0 0 0;
}

.select-country .flag img {
    height: 15px;
}

.select-whitebox .options {
    display: none;
    position: absolute;
    top: 100%;
    background: #d4d0c5;
    border-radius: 4px;
    border: 1px solid #ddd;
    min-width: 100%;
    z-index: 1;
}

.select-whitebox .options.show{
    display: block;
    transition: all 0.3s ease 0s;
}

.select-whitebox .options .option {
    display: block;
    padding: 0px 12px;
}
