
header{
    background: linear-gradient(90deg, #306FDB 1.81%, #1A438B 98.61%);
    position: relative;
    font-family: Fira Sans;
    color: #fff;
    font-weight: 700;
    padding: 0 16px;
}
.navigation-wrapper{
    display: flex;
    justify-content: space-between;    
    min-height: 36px;
    height: 36px;
}
.navigation .menu-left li:nth-child(2){
    margin: 0;
}
.nav-toggle{
    width: 22px;
    padding: 5px 0 8px;
}
.nav-toggle span{
    position: relative;
    display: block;
    height: 2px;
    width: 100%;
    margin-top: 4px;
    background-color: #fff;
    transition: all .25s;
}
.nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(5.4px,5.4px);
}
.nav-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
.nav-toggle.open span:last-child {
    transform: rotate(-45deg) translate(4.4px,-4.4px);
}
.nav-toggle span{
    margin-top: 5px;
}

/* collpase menu */
ul.menu-left{
    position: absolute;
    margin-right: 0;
    display: block;
    width: 100%;
    background-color: #fff;
    left: 0;
    margin-top: 35px;
    box-shadow: 0 3px 5px hsla(0,0%,0%,.1);
    overflow: hidden;
    transition: all .3s ease-out;
    z-index: 10;
    max-height: 0;
    padding: 0 15px;
}
ul.menu-left.collapse {
    max-height: 15em;
}
ul.menu-left li{
    display: flex;
    position: relative;
    transition: color .35s ease;
    color: #456;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 19px;
    border-bottom: 2px solid transparent;
}
.navigation-wrapper .logo,
.navigation-wrapper .headerlogo{
    display: flex;
    align-items: center;
}
.navigation-wrapper .logo a img,
.navigation-wrapper .headerlogo a img{
    width: 123px;
    height: auto;
    display: flex;
}

@media screen and (min-width: 767px) {
    .navigation-wrapper{
        min-height: 64px;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
    }
    .navigation .menu-left li:hover{
        border-bottom: 2px solid #fff;
    }
    ul.menu-left{
        display: flex!important;
        max-height: fit-content;
        margin: 0;
        position: unset;
        background: unset;
        box-shadow: none;
        padding: 0;
    }
    ul.menu-left li{
        color: #fff;
    }
    .navigation-wrapper .logo a img,
    .navigation-wrapper .headerlogo a img{
        width: 195px;
        height: auto;
    }
    a.hide-in-deskop.nav-toggle{
        display: none;
    }
    .navigation .menu-left li:nth-child(2){
        margin: 0 20px;
    }
    .navigation{
        margin-right: 2px;
    }
}
@media screen and (max-width: 767px) {
    ul.menu-left li a{
        padding: 0.5em 0;
    }
}