nav{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    z-index: 2;
    

}
.logo  img{
    width: 10%;
  height: auto;
}
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: #5d4954;
    font-family: 'Poppins', sans-serif;
    width:100%;
}
.logo{
    color: rgb(218, 218, 218);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 50%;
    font-size: 14px;
    align-items: center;
}
.nav-links a{
    color:  rgb(218, 218, 218);
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: bold;
    transition: 0.5s
}
.nav-links a:hover{
    color:skyblue;
}
.nav-links li{
    list-style: none;
}

.nav-li{
    display: flex;
    justify-content: space-around;
    font-size: 35px;
    align-items: center;
}
.burger div{
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: rgb(218, 218, 218);
}
.burger{
    display: none;
}
.logo h4 {
    display: none;
}
@media screen and (max-width: 1024px){
    .nav-links{
        width: 70%;
    }
    .logo h4{
        display: none;
    }
}
@media screen and (max-width: 768px){
    .logo img{
        display: none;
    }
    .logo h4{
        display: block;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        display: flex;
        background-color: #5d4954;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(150%);
        transition: 0.5s ease-in;

    }
    .nav-links li{
        opacity: 0;
    }
    .burger{
        display: block;
        cursor: pointer;
    }
    .nav-active{
        transform: translateX(0%);

    }

}
@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}
