.header{    
    z-index: 2;
    background:var(--primary-color);    
    position: relative;
}

.header-nav{        
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-nav .nav{
    padding: 0px;
    list-style: none;
    gap: 30px;
    padding-right: 10px;
}

.header-nav .nav li{
    display: inline-block;
}

.header-nav .nav a{    
    padding:10px;    
    color: #fff;
    height: 45px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 300;
    text-align: center;    
    text-decoration: none;
    border-radius: 8px;
}

.header-nav .nav a:hover{    
    background-color: rgba(255, 255, 255, .15);
    color: #D4C19C;
    text-decoration: none;
    outline: 0;
}    

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



@media all and (max-width: 991px){
    .menu-header{
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        position: fixed;
        top: 0;
        right: -100vw;
        z-index: 9999;
        background: var(--dark-green-color);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;    
        padding: 30px;
        overflow-y: auto;
        transition: all .2s ease-out;
        transition: all .2s ease-in;
        box-shadow: 0 0 3px rgba(0,0,0,.6);
    }

    body.open .menu-header{
        right:0px;
    }

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

    .header-nav .nav{
        margin-top:40px;
    }

    .header-nav .nav li{
        display: block;
        width:100%;
    }

    .menu-icon{
        font-size: 40px;
        cursor: pointer;
        color:white;
    }

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