* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: black;
    font-family: "Poppins", sans-serif;
    z-index: 2;
}


.nav-links {
    display: flex;
    justify-content: space-around;
    width: 59%;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: rgb(226, 226, 226);
    text-decoration: none;
    letter-spacing: 1px;
    margin : 20px;
    font-weight: bold;
    font-size: 19px;
}

.logo h5{
    color: rgb(226, 226, 226);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 16px;

}

h5{
    color: rgb(224, 162, 67);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
    margin : 0 0 13px 0 ;

}

.burger {
    display: none;
    
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(226, 226, 226);
    margin: 5px;
    transition: all 0.3s ease;
    
}


@media screen and (max-width: 1024px) {
    .nav-links {
        width: 60%;
    }

    



}

@media screen and (max-width: 917px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        position: fixed;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #3679859f;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 40.39%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    
    .nav-links li {
        opacity: 0;
        text-align: center;
    }
    
    .burger {
        display: block;
        cursor: pointer;
    }
}

.nav-active {
        transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

