nav{
    position: fixed;
    width: 100vw;
    padding: 1rem 3rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--color-dark-gray);
    display: none;
    z-index: 100;
}
.nav-logo img{
    width: 2rem;
}
nav ul li a{
    color: white;
    font-weight: bold;
}
nav ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.nav-bars{
    display: none;
}
@media (max-width: 1024px){

    nav ul li a{
        font-size: .9rem;
    }
}
@media (max-width:767px){

    nav{
        justify-content: space-between;flex-wrap: wrap;
    }
    nav ul{
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 5rem 2rem;
    }
    nav ul li{
        padding: 2rem 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    nav ul li a{
        font-size: 2rem;
        text-align: center;
    }
    .nav-logo img{
        width: 2rem;
    }
    .nav-bars{
        display: block;
    }
    .nav-bars img{
        width: 2rem;
    }
    button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
    }
    .ul-active{
        display: flex;
    }
}

.navbar-active-always{
    display: flex;
    position: relative;
}
.navbar-active-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
}