.scollMenu{
    display: none !important;
}
.elementor-sticky--active .scollMenu{
    display: block !important;
}
.custom-menu-toggle{
    cursor:pointer;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;

}
.iconMenu{
    position: relative;
    width: 25px;
}
.iconMenu:before{
    content: "";
    width: 26px;
    height: 26px;
    background-size: contain;
    background-image: url(../images/menu.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.custom-menu-toggle span{
    font-size: 16px;
    line-height: 20px;
    color: var(--white-color);
}
.custom-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    opacity:0;
    visibility:hidden;
    transition:all .4s ease;
    z-index:9998;
}
.custom-side-menu{
    position:fixed;
    top:0;
    right:-380px;
    width:350px;
    height:100vh;
    background:#fff;
    z-index:9999;
    box-shadow:0 0 30px rgba(0,0,0,.15);
    transition:all .45s cubic-bezier(.68,-0.55,.265,1.55);
    overflow: hidden;
}
.custom-side-menu.active{
    right:0;
}
.custom-menu-overlay.active{
    opacity:1;
    visibility:visible;
}
.menu-header{
    padding:25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #eee;
    background-color: #1a1a1a;
    margin-bottom: 30px;
}
.menu-header img{
    max-height:60px;
    transform:translateY(-20px);
    opacity:0;
    transition:all .5s ease .2s;
}
.custom-side-menu.active .menu-header img{
    transform:translateY(0);
    opacity:1;
}
.close-menu{
    font-size:32px;
    cursor:pointer;
    line-height:1;
    color: #fff;
}
.menu-content{
    padding:20px;
}
.menu-content ul{
    list-style:none;
    padding:0;
    margin:0;
}
.menu-content li{
    opacity:0;
    transform:translateX(-20px);
    transition:all .4s ease;
}
.custom-side-menu.active .menu-content li{
    opacity:1;
    transform:translateX(0);
}
.custom-side-menu.active .menu-content li:nth-child(1){transition-delay:.1s;}
.custom-side-menu.active .menu-content li:nth-child(2){transition-delay:.15s;}
.custom-side-menu.active .menu-content li:nth-child(3){transition-delay:.2s;}
.custom-side-menu.active .menu-content li:nth-child(4){transition-delay:.25s;}
.custom-side-menu.active .menu-content li:nth-child(5){transition-delay:.3s;}
.menu-content a{
    display:flex;
    padding:15px;
    color:#222;
    font-size:18px;
    text-decoration:none;
    transition:.3s;
    justify-content: start;
    align-items: center;
    gap: 10px;
    position: relative;
}
.menu-content a img{
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--yellow-orange-color);
    padding: 5px;
}
.menu-content a:hover{
    color:#0073e6;
    padding-left:10px;
}
.menu-content a .menu-arrow{
    height: 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
}
.side-logo{
    max-width: 200px;
}
.side-logo a,
.side-logo img{
    display: block;
}

/* ==========================================
Navigation Header
========================================== */

.menu-navigation{
    border-bottom:1px solid #eee;
    padding:12px 18px;
    background:#fff;
    flex-shrink:0;
}
.menu-back{
    display:none;
    align-items:center;
    gap:8px;
    border:none;
    background:none;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    margin-bottom:12px;
    padding:0;
    width: 100%;
    justify-content: end;
}
.menu-back.active{
    display:flex;
}

/* ==========================================
Breadcrumb
========================================== */
.menu-breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:5px;
}
.breadcrumb-item{
    padding:6px;
    background:#eef2f7;
    border-radius:6px;
    cursor:pointer;
    font-size:12px;
    transition:.2s;
}
.breadcrumb-item:hover{
    background:#dce6f6;
}
.breadcrumb-item.active{
    background:#dce6f6;
    font-weight:600;
}
.breadcrumb-separator{
    color:#999;
}

/* ==========================================
Menu Content
========================================== */
.menu-content{
    flex:1;
    position:relative;
    overflow:hidden;
}

/* ==========================================
Pages Wrapper
========================================== */
.mobile-menu-pages{
    position:relative;
    width:100%;
    min-height: 73vh;
}

/* ==========================================
Each Page
========================================== */
.menu-page{
    position:absolute;
    top:0;
    left:100%;
    width:100%;
    height:100%;
    overflow-y:auto;
    background:#fff;
    transition:left .35s ease;
    scrollbar-width: thin;
    scrollbar-color: #1a1a1a transparent;
}
.menu-page::-webkit-scrollbar {
    width: 2px;
}
.menu-page::-webkit-scrollbar-track {
    background: transparent;
}
.menu-page::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 10px;
}
.menu-page.active{
    left:0;
}
.menu-page.previous{
    left:-105%;
}

/* ==========================================
Menu List
========================================== */
.menu-page ul{
    list-style:none;
    margin:0;
    padding:0;
}
.menu-page li{
    border-bottom:1px solid #f1f1f1;
}
.menu-page li:last-child{
    border-bottom:none;
}


/* ==========================================
Title
========================================== */
.menu-page a span:first-of-type{
    flex:1;
    font-size:15px;
}

/* ==========================================
Scrollbar
========================================== */
.menu-page::-webkit-scrollbar{
    width:6px;
}
.menu-page::-webkit-scrollbar-thumb{
    background:#ddd;
    border-radius:50px;
}

/* ==========================================
Animation
========================================== */
.menu-page.enter{
    animation:slideIn .3s forwards;
}
.menu-page.leave{
    animation:slideOut .3s forwards;
}

@keyframes slideIn{
    from{
        left:100%;
    }
    to{
        left:0;
    }
}

@keyframes slideOut{
    from{
        left:0;
    }
    to{
        left:-100%;
    }
}

@media (max-width: 1100px) {
    .custom-menu-toggle{
        width: 105px;
    }
}