@media(max-width: 1047px){
    .nav-container {
        padding: 20px 20px !important;
    }
    .nav-items{
        display: none;
    }
    .nav-container{
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    #logo-div{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
}

@media(max-width: 765px){
    .nav-container {
        padding: 20px 15px !important;
        display: flex !important;
        justify-content: center !important;
        position: relative !important;
    }
    .ham-container {
        display: flex !important;
        position: absolute !important;
        left: 15px !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: auto 0 !important;
        height: 24px !important; 
        align-items: center !important;
        justify-content: center !important;
        z-index: 10 !important;
        font-size: 1.5rem !important;
        color: #333 !important;
    }
    
    .nav-items, .nav-itmes-icons {
        display: none !important;
    }
    .nav-unordered-icons {
        display: none !important;
    }
    #logo-div {
        text-align: center !important;
        margin: 0 auto !important;
    }
    #logo-div img {
        max-width: 120px !important;
        height: auto !important;
    }
    #ham {
        display: block !important;
    }
}

.nav-sidebar {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100%;
    background-color: #fff;
    padding: 25px 30px 40px;

    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;

    z-index: 1000;
    overflow-y: auto;
}

.nav-sidebar.active {
    transform: translateY(0);
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.nav-cancel {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-signin {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
}

.nav-sidebar-ul,
.navbar-sidebar-ul {
    list-style: none;
    padding: 0;
}

.nav-sidebar-ul li,
.navbar-sidebar-ul li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.nav-sidebar-ul li:hover,
.navbar-sidebar-ul li:hover {
    padding-left: 8px;
    color: #3b82f6;
}

#ham{
    display: none;
}

.header-big-container{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #faf9f6 !important;
}

.nav-container{
     padding: 20px 0px;
}