.nav{
    /* position: relative; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}


.nav-container{
    display: flex;
    padding: 0px 40px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: space-between;
    border-bottom: #ff5e0063 1px solid;
    /* box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.4); */
    box-sizing: border-box;
    height: 80px;
}

.nav a{
    display: flex;
}

.nav h1{
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.nav .nav-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.nav .nav-bar li{
    display: flex;
    margin: 0 12px;
    list-style: none;
    cursor: pointer;
}

.nav .nav-bar a{
    color: #ccc;
    text-decoration: none;
    font-weight: bolder;
}.nav .nav-bar a:hover {
    color: #ffd700;
}

.nav_active{
    color: #fff;
    border-bottom: 2px solid #fff;
    box-sizing: border-box;
    font-weight: bolder;
}

.active2{
    color: #fff !important;
    box-sizing: border-box;
    font-weight: bolder;
    background-color: rgba(255, 217, 0, 0.3);
    box-shadow: 0px 0px 5px rgba(255, 217, 0, 0.8);
}.active2:hover {
    color: #fff !important;
    background-color: rgba(255, 217, 0, 0.6)!important;
    box-shadow: 0px 0px 5px rgba(255, 217, 0, 0.8)!important;
}

.nav i{
    display: none !important;
    color: #fff; 
    font-size: 1.5rem !important;
    justify-content: space-between !important;
    align-items: center;
}

.nav img{
    width: auto;
    height: 50px;
    margin-right: 12px;
}

.nav .menu{
    opacity: 0;
    position: fixed;
    top: 80px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    width: 100%;
    left: 0%;
    display: none;
}

.nav .menu ul{
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 12px;
    padding: 12px 24px;
    list-style: none;
}

.nav .menu a{
    color: #aaa;
    text-decoration: none;
    padding: 12px 24px;
    display: block;
    text-transform: capitalize;
    font-size: 1rem;
}

.nav .menu a:hover{
    color: #fff !important;
    font-weight: bolder;
    background-color: rgb(0, 0, 0, 0.6);
    box-shadow: 0px 0px 5px rgba(255, 217, 0, 0.2);
}

@media screen and (max-width: 1023px){
    .nav .nav-bar{
        display: none;
    }
    .nav i{
        display: flex !important;
    }
}