.main-header{
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: 0.3s;
    transform:translateZ(0);
    will-change:transform;
}
.main-header.scrolled{
background: #0e161e;
    /*border-bottom: 1px solid #4d4d51;*/
-webkit-box-shadow: 0px 0px 10px 0px rgba(94,94,94,1);
-moz-box-shadow: 0px 0px 10px 0px rgba(94,94,94,1);
box-shadow: 0px 0px 10px 0px rgba(94,94,94,1);
z-index: 999;
}
.scrollbar-track{
    z-index:999999 !important;
}
.main-header .header-wrapper{
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.main-header .header-wrapper .logo{
    width: 150px;
    flex: 0 0 150px;
    height: auto;
    position: relative;
    background: #fff;
    padding: 16px;
    transition: 0.3s;
    border-radius:0 0 10px 10px;
    overflow: hidden;
}
.main-header.scrolled .header-wrapper .logo{
    flex: 0 0 100px;
    width: 100px;

}

.main-header .header-wrapper .logo img{
    width: 100%;
}
.main-header .header-wrapper .menu-wrapper{
    width: 100%;
    height: auto;
    position: relative;
}
.main-header .header-wrapper .menu-wrapper .top-header{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    transition: 0.3s;
}
.main-header.scrolled .header-wrapper .menu-wrapper .top-header{
    opacity: 0;
    height: 0;
    overflow: hidden;
}
.main-header .header-wrapper .menu-wrapper .top-header .dtl{
    display: flex;
    padding: 8px 0;
    align-items: center;
    margin-left: 16px;
}
.main-header .header-wrapper .menu-wrapper .top-header .dtl a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
.main-header .header-wrapper .menu-wrapper .top-header .dtl i{
    width: 30px;
    height: 30px;
    background: #096af3;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex: 0 0 30px;
    margin-right: 10px;
}
.main-header .header-wrapper .menu-wrapper .top-header .dtl.social i{
    margin-right: 0;
    margin-left: 5px;
}
.main-header .header-wrapper .menu-wrapper .menu{
    transition: 0.3s;
}
.menu .nav-menu{
    display:flex;
    list-style:none;
    gap:24px;
    justify-content: flex-end;
    margin: 0;
}

.menu .nav-menu li{
    position:relative;
}

.menu .nav-menu li a{
    color:#fff;
    padding:12px 0;
    display:block;
    font-size:14px;
    text-decoration: none;
}
.menu .nav-menu li a:hover{
    color: #096af3;
} 
.menu .nav-menu li a i{
    font-size: 12px;
    margin-left: 8px;
}

/* =========================
NORMAL DROPDOWN
========================= */

.menu .dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    width:260px;
    background:#fff;
    display:none;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    z-index:999;
}

.menu .dropdown-menu li{
    list-style:none;
}

.menu .dropdown-menu li a{
    color:#333;
    padding:8px 18px;
    border-bottom:1px solid #eee;
    transition:0.3s;
}

.menu .dropdown-menu li a:hover{
    background:#2563eb;
    color:#fff;
}

/* =========================
MEGA MENU
========================= */

.menu .mega-menu{
    position:absolute;
    right:0;
    top:100%;
    width:650px;
    background:#fff;
    padding:16px;
    display:none;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    z-index:999;
}

.menu .mega-content{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.menu .mega-column ul{
    list-style:none;
    padding: 0;
    margin: 0;
}

.menu .mega-column ul li{
    margin-bottom:0px;
}

.menu .mega-column ul li a{
    color:#555;
    transition:0.3s;
    padding: 8px;
}

.menu .mega-column ul li a:hover{
     background:#2563eb;
    color:#fff;
}

/* =========================
MOBILE BUTTON
========================= */

.menu .menu-toggle{
    display:none;
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

 .menu .menu-toggle{
        display:block;
    }

.menu .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#111827;
        flex-direction:column;
        display:none;
        gap:0;
        padding:20px;
    }

.menu .nav-menu li{
        border-bottom:1px solid rgba(255,255,255,0.1);
    }

.menu .nav-menu li a{
        padding:15px 0;
    }

    /* NORMAL DROPDOWN MOBILE */

.menu .dropdown-menu{
        position:static;
        width:100%;
        border-radius:0;
        box-shadow:none;
        background:#1f2937;
        display:none;
    }

.menu .dropdown-menu li a{
        color:#d1d5db;
        border-color:rgba(255,255,255,0.08);
        padding-left:20px;
    }

.menu .dropdown-menu li a:hover{
        background:none;
        color:#fff;
    }

    /* MEGA MENU MOBILE */

.menu .mega-menu{
        position:static;
        width:100%;
        background:#1f2937;
        box-shadow:none;
        border-radius:0;
        padding:20px 0 0;
    }

.menu .mega-content{
        grid-template-columns:1fr;
    }

.menu .mega-column{
        margin-bottom:20px;
    }

.menu .mega-column h4{
        color:#fff;
    }

.menu .mega-column ul li a{
        color:#d1d5db;
    }

}