header
{
    display: flex;
    width: 100%;
    justify-content: center;
}

.header_sized
{
    display: flex;
    width: calc( 100% - 20px );
    /*
    max-width: 1440px;
    */
    height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    background: #FFF;
}

.header_logo_c
{
    display: flex;
    height: 100%;
    align-items: center;
}

.header_logo_c img
{
    height: 100%;
    margin-left: 10px;
}

.header_menu
{
    height: 100%;
    width: calc( 100% - 100px );
    max-width: 840px;
}


@media (max-width: 1199px)
{
    .header_sized
    {
        width: 100%;
        margin-top: unset;
        height: 70px;
        margin: unset;
        padding: unset;
    }

    .header_logo_c
    {
        display: none !important;
    }

    .header_menu
    {
        width: 100%;
        max-width: unset;
    }
}


body.with_sticky_menu header
{
    position: fixed;
    /* box-shadow: 0px 0px 24px #2A2A2D;*/
    background: #FFF;
    z-index: 999999999;
}

body.with_sticky_menu .site_after_header
{
    margin-top: 70px
}
