
li {
    list-style: none;
}

a {
    text-decoration: none;
}

.header{
    position: fixed;
    width: 100%;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 1.5rem;
    background: black;
    color: #fff;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffb254;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link{
    font-size: 1.1rem;
    font-weight: 600;
    padding: .5rem;
    color: #ffb254;
    transition: 0.3s ease;
    border-radius: 5px;
}

/* .nav-link:hover{
    background-color: #e9bd43;
    color: #fff;
} */

.nav-logo img{
    width: 50px;
    padding: 10px;
}

@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -101%;
        top: 3.5rem;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        border: 1px solid #ffb254;
        /* box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05); */
       /* box-shadow: rgba(255, 255, 255, 0.9) 0px 1px 2px 0px, rgba(255, 255, 255, 0.8) 0px 1px 3px 1px; */
    }

    .nav-menu.active {
        left: 0;
        z-index: 1;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }
}