@charset "UTF-8";
/* CSS Document */

#navigationContainer{
    height: 100vh;
    width:00px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 2px 0px 8px gray;
    overflow: hidden;
    z-index: 4000;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition:.5s ease-in-out;
}
.navLi{
    list-style-type: none;
    color: rgba(204,21,0,1.00);
    font-size: 20px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    width:200px;
    text-align: center;
    margin: 0;
    padding: 10px 0;
    transition: .2s ease-in-out;
}
.navLi:hover{
    background-color:rgba(204,21,0,1.00);
    color: #fff;
}
        
        
        
#navUl{
    padding: 0;
    margin: 0;
}
nav ul a{
    text-decoration: none;
}
#navLogo{
    width:200px;
    margin: 30px 0;
    z-index: 3000;
    transition: .5s ease-in-out;
    opacity: 0;
}

#topSpace{
    height:150px;
    position: fixed;
    width:100%;
    background-color:#fff;
    top:0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;

}
#headLogo{
    width:200px;
    transition: .5s ease-in-out;
}

#hamContainer{
            position: fixed;
            top:20px;
            left: 20px;
            text-align: center;
            cursor: pointer;
            transition:.5s ease-in-out;
            z-index: 4000;
            box-shadow: none !important;
    background-color: rgba(255,255,255,0) !important;
            
        }
        .ham{
            width:50px;
            height:3px;
            margin: 11px auto;
            background-color: rgba(204,21,0,1.00);
            border-radius: 1px;
            transition: .2s ease-in-out;
            
        }
        #hamContainer:hover #ham-2{
            width:40px;
        }
@media only screen and (max-width: 800px){
    #hamContainer{
        left: 10px;
        top:10px;
    }
    
    .ham{
        width:40px;
        margin: 8px auto;
    }
    
}




