.hamContainer{
    position: fixed;
    display: flex;
    top: 0;
    right: 0;
    width: 35vw;
    height: 100vh;
    justify-content: flex-end;
    z-index: -1;
    min-width: 380px;
}
.hamInnerContainer{
    position: relative;
    width: 0%;
    padding: 69px 0px;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    background-color: white;
    white-space: nowrap;
    z-index: 5;
}
.hamXBtn{
    position: absolute;
    top: 26px;
    right: 28px;
    font-size: 20px;
    cursor: pointer;
}
.hamInfo{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 223px;
    font-size: 35px;
    position: absolute;
    right: 31px;
}
.hamInfo>a
 ,.hamInfo>div{
    margin: 0 0 30px 0;
}
.hamInfo a i{
    font-size: 4vh;
}

.loginSignupContainer{
    display: flex;   
    align-items: center;
}
.hamLoginBtn{
    display: flex;
    align-items: center;
    font-size: 36px;
    cursor: pointer;
}
.hamLoginBtn i{
    font-size: 25px;
    
}
.hamSignUpBtn{
    padding: 5px 9px;
    background: red;
    text-align: center;
    color: white;
    border-radius: 10px;
    font-size: 28px;
    cursor: pointer;
}
@media screen and (min-width: 800px){ 
	
}

@media screen and (min-width: 896px) and (max-width: 1024px){ 
    .hamContainer{
        width: 50vw;
    }
}
@media screen and (max-width:896px){ 
    .hamContainer{
        width: 100vw;
    }
	
}
@media screen and (max-width:896px) and (orientation: landscape) { 
	.hamContainer{
        width: 35vw;
        
    }
    
}