header{
    position: -webkit-sticky;
    position: sticky;
    top: 0px;    
    z-index: 99;
    height:100px;
    display: flex;   
    transition: background 1s;
}

header nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.menu-header{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul{
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;    
    margin:15px 20px;
    text-decoration: none;
}

nav ul li a{
    font-size: 20px;
    text-decoration: none!important;
    color: white !important;
    font-weight: 500;    
    transition: color .5s ease;
    font-family: 'HelveticaNeue-Light';
}

nav ul li a.active, nav ul li a:hover{    
    color: white;
}


.menu-header .dropdown .btn{
    background:none;
    color:#A6A9AB;
    display: flex;
    align-items: center;
    font-size:20px;
    font-weight: bold;
    outline: none;
}

.menu-header .dropdown .dropdown-menu{
    width:100%;
    min-width: 100%;
}

.menu-header .dropdown .dropdown-menu div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size:20px;
}

@media all and (max-width: 1023px){ 

    .menu-icon{
        color:white;
        font-size:30px;
    }

    .close-icon{
        position: absolute;
        top:15px;
        right:15px;
        color:white;
    }

    header nav img.logo{
        height:45px;
    }
    .menu-burger{
        width: 31px;
        height: 31px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 0;
        background-color: transparent;
        cursor: pointer;
    }

    .menu-burger span{
        position: relative;
        width: 31px;
        height: 4px;
        margin-bottom: 5px;
        border-radius: 2px;
        transition: all .2s ease-out;
        transition: all .2s ease-in;
        background-color: #000;
        display: block;
    }

    .menu-header{
        position: fixed;
        width: 350px;
        height: 100vh;
        display: none;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start;
        background: white;
        color: #000 !important;
        margin: 0px 0px 0px -15px;
        padding: 50px 30px 0px 30px;
        top: 0px;
        right: 0px;
        transition: .5s;
        z-index: 9999!important;
        overflow-y: auto;
        box-shadow: none !important;        
        background:var(--gray2);
    }

    .menu-header .menu-header-menu-container{
        width: 100%;
    }

    .menu-header .logo{
        width:100%;
        height:auto;
        margin:15px 0px;
    }

    .menu-header ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0px;
        width: 100%;   
        text-align: center;     
    }

    nav ul li:first-child{
        margin-left: 15px;
    }

    nav ul li:first-child{
        margin-right: 15px;
    }
    

    nav ul li:hover a{
        background: none;       
    }

    nav ul li > a, .menu-header ul li a, .menu-header ul li ul.sub-menu li a{
        font-size: 18px !important; 
        font-weight: 500 !important;    
        display: block;        
        padding: 15px 15px;
        width: 100%;
        height: 100%;       
    }

    nav ul > li > a:hover, nav ul > li.current-menu-item > a, nav ul > li.current-page-ancestor > a{        
        text-decoration: none;
        color: var(--aqua-color) !important;
    }

    .menu-header .btn{
        margin:0px !important;
    }

    body.open .menu-header {  
        display: flex;      
        box-shadow: 0px 0px 10px rgba(33,33,33,.3);
    }

    .menu-header .close{
        position: absolute;
        top: 12px;
        right: 12px;
    }
    .menu-header ul.nav_bar{
        margin-top: 30px !important;
    }
    .menu-header ul.nav_bar > li{
        margin: 0px !important;
        margin-right: 0px !important;
        margin-left: -15px !important;
        padding : 0px;
    }
    .menu-header ul.nav_bar  ul.sub-menu{
        display: block !important;
        margin: 0px;
        padding: 0px;
        position: relative !important;
        top: inherit !important;
        left: inherit !important;
        width: auto !important;
        box-shadow: none !important;
        padding: 0px !important;
    }
    .menu-header{
        display: block !!important;
        z-index : 999999 !important;
    }

    body.open .overlay-menu{
        z-index: 9999;
        display: block;
        position: fixed;
        left: 0px;
        right: 0px;
        bottom: 0px;
        top: 0px;
        background-color: rgba(0, 0, 0, .3);
    }

    .menu-header-menu-container{
        padding-left:0px;
    }
}

@media all and (max-width: 767px){
    .menu-header{       
        width: 100vw;
        height:100vh;        
    }

    header, header nav{
        height: 60px;
    }
}