.header{
    position:absolute;
    width:100%;
    z-index: 9999;
    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
        background: rgba(0, 0, 0, 0.18);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.header.gcss-header-hidden{
    transform:translateY(-100%);
}

.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.header-topbar{
    width:100%;
    background:#0086D9;
}

.header-topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    padding:10px 20px;
}

.header-topbar_inf{
    display:flex;
    align-items:center;
    gap: 10px;
     color:white;
    font-size:13px;
}

.header-topbar_red{
    display:flex;
    gap:15px;
}

.header-topbar_red a{
    width:20px;
    height:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:white;
    transition:.3s;
}

.header-topbar_red a:hover{
    transform:translateY(-3px);
}

.header-menu{
    overflow:visible;
} 

.header-menu_nav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

li{
        letter-spacing: 0.05rem;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

.header-menu_nav ul{
    display: flex;
    justify-content:space-between;
    align-items: center;
    gap: 30px;
    list-style: none;
    
}

.header-menu_nav a {
    font-weight: 600;
    font-size: inherit;
    color: white;
    text-decoration: none;
    position: relative;
    
}

.header-menu_nav a {
    font-weight: 600;
    font-size: inherit;
    color: white;
    text-decoration: none;
    position: relative;
    transition: all 20s ease;
}

.header-menu_nav a:hover {
    color: #1aaaff;
}

.header-menu_nav  a::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 19px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1aaaff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.6s ease-out;
}

.header-menu_nav .logo-home_a::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 78px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1aaaff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.6s ease-out;
}

.header-menu_nav a:hover::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mod-menu li{
    position:relative;
}

.mod-menu li:hover > .mod-menu__sub{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mod-menu__heading{
    color:white !important;
    font-size:inherit;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    position:relative;
}

.mod-menu__heading::before{
    content:"▼";
    font-size:15px;
    color:#fff;
    display:inline-block;
    transition:transform .3s ease;
}

.mod-menu__heading::after{
    content:"";
    position:absolute;
    width:100%;
    left:0;
    top:25px;
    height:2px;
    background:#1aaaff;
    transform:scaleX(0);
    transform-origin:bottom right;
    transition:transform .6s ease-out;
}

.nav-item.item-108:hover > .mod-menu__heading::before{
    transform:rotate(180deg);
}

.nav-item.item-108:hover > .mod-menu__heading::after{
    transform:scaleX(1);
    transform-origin:bottom left;
}

.mod-menu__sub{
    position:absolute;
    top:220%;
    left:0;
    min-width:280px;
    background:#fff;
    border-top:3px solid #0086D9;
    list-style:none;
    padding:0;
    margin:0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:ALL .35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    z-index:9999;
    display:block !important;
    border-radius:0 0 10px 10px;
}

.mod-menu__sub li{
    display:block;
    width:100%;
    border-bottom:1px solid #f0f0f0;
}

.mod-menu__sub li:last-child{
    border-bottom:none;
}

.mod-menu__sub li a{
    display:block;
    width:100%;
    padding:15px 20px;
    background:#fff;
    color:#0086D9 !important;
    text-decoration:none;
    white-space:nowrap;
    transition:.3s ease;
    font-size:16px;
    font-weight:700;
}

.mod-menu__sub li a:hover{
    background:#f5f5f5;
    border-left:4px solid #0086D9;
    padding-left:25px;
}

.mod-menu__sub li a::after{
    display:none !important;
}

.mod-menu__sub .deeper.parent{
    position:relative;
}

.mod-menu__sub .deeper.parent > .mod-menu__sub{
    position:absolute;
    top:0;
    left:100%;
    min-width:250px;
    background:#fff;
    border-top:3px solid #0086D9;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    opacity:0;
    visibility:hidden;
    transform:translateX(10px);
    transition:all .3s ease;
    z-index:10000;
}

.mod-menu__sub .deeper.parent:hover > .mod-menu__sub{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}

.menu-toggle{
    display:none;
    width:48px;
    height:48px;
    border:none;
    background:none;
    cursor:pointer;
    z-index:10002;
    position:relative;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

.menu-toggle span{
    display:block;
    width:30px;
    height:3px;
    margin:6px auto;
    background:#fff;
    border-radius:5px;
    transition:.35s;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:100;
}

.menu-overlay.gcss-overlay-active{
    opacity:1;
    visibility:visible;
}

body.gcss-lock-scroll{
    overflow:hidden;
}

.header.gcss-header-sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    animation:gcssHeaderDown .35s ease;
}

.header.gcss-header-sticky .header-topbar{
    display:none;
}

.header.gcss-header-sticky .header-menu{
    top:0;
       background: rgba(0, 0, 0, 0.18);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    backdrop-filter: blur(5px);
    box-shadow:0 8px 30px rgba(0,0,0,.15);
}

.header.gcss-header-sticky .logo img{
    height:55px;
    transition:.35s;
}

@keyframes gcssHeaderDown{
    from{
        transform:translateY(-100%);
    }
    to{
        transform:translateY(0);
    }
}

@media (max-width: 1024px){
    .header-topbar .container{
        justify-content:center;
        gap:12px;
    }
    
    .header-menu{
        padding:18px;
    }
    
     .header-menu_nav{
        gap:20px;
    }
    
    .header-menu_nav ul{
        gap:18px;
    }
    
    .logo img{
        height:60px;
    }
}

@media (max-width:768px){

    .header-topbar{
        display:none;
    }

    .header{
        position:fixed;
        top:0;
        left:0;
    }

    .header-menu{
        position:relative;
        top:0;
        padding:15px 20px;
        background:#0086D9;
        
    }

    .header-menu_nav{
        width:100%;
        justify-content:space-between;
        align-items:center;
    }

    .logo img{
        height:55px;
    }
    
    .menu-toggle{
        display:block;
    }

    .header-menu_nav{
        justify-content:space-between;
    }

    .header-menu_nav > ul{
        position:fixed;
        top:0;
        right:-100%;
        width:320px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        padding:120px 30px;
        gap:0;
        background: #0086D9;
        z-index:10001;
        overflow-y:auto;
    }

    .mod-menu.gcss-menu-open{
        right:0;
    }
    
    .header-menu_nav > ul li{
        width:100%;
        border-bottom:1px solid #ececec;
    }

    .header-menu_nav > ul li a{
        display:block;
        width:100%;
        padding:20px 0;
        color: white;
    }

    .header-menu_nav a::after{
        display:none;
    }
    
    .mod-menu__sub{
        position:static;
        display:block !important;
        max-height:0;
        overflow:hidden;
        opacity:0;
        transition:
        max-height .35s ease,
        opacity .35s ease;
        background:#f8fafc;
        box-shadow:none;
        border:none;
        padding-left:18px;
    }
    
    .mod-menu__sub .mod-menu__sub{
        padding-left:20px;
    }
    
    .mod-menu__sub .deeper.parent > .mod-menu__sub{
        position:static;
        top:auto;
        left:auto;
        min-width:100%;
        transform:none;
        box-shadow:none;
        border:none;
        opacity:1;
        visibility:visible;
    }
    
    .mod-menu__sub .deeper.parent:hover > .mod-menu__sub{
        opacity:inherit;
        visibility:inherit;
        transform:none;
    }
    
    
    .parent.gcss-submenu-open > .mod-menu__sub{
         max-height:2000px;
        opacity:1;
    }
    
    .parent > .mod-menu__heading::before{
        transition:.35s;
    }

    .parent.gcss-submenu-open > .mod-menu__heading::before{
        transform:rotate(180deg);
    }

    .mod-menu__sub.active{
        display:block !important;
    }

    .mod-menu__sub li{
        border:none;
    }
    
    .mod-menu__heading::after {
        height: 0px;
    }
    
    .mod-menu__sub li > a,
    .mod-menu__sub li > .mod-menu__heading{
        padding:16px 0;
        font-size:15px;
    }
    
     .mod-menu__heading{
        width:100%;
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:18px 0;
        color: white !important;
        cursor:pointer;
    }

    .mod-menu__heading::before{
        order:2;
        transition:.3s;
        color:#1d3557;
    }

    .mod-menu__heading.open::before{
        transform:rotate(180deg);
    }
    
    .mod-menu li:hover>.mod-menu__sub{
        opacity:unset;
        visibility:unset;
        transform:none;
    }
    
    .header-menu_nav > .mod-menu > li > a,
    .header-menu_nav > .mod-menu > li > .mod-menu__heading{
        font-size:18px;
        font-weight:700;
        color:#fff;
    }

    .mod-menu > li > .mod-menu__sub > li > a,
    .mod-menu > li > .mod-menu__sub > li > .mod-menu__heading{
        font-size:16px;
        font-weight:600;
        color:#0f172a;
    }

    .mod-menu__sub .mod-menu__sub li a{
        font-size:15px;
        font-weight:500;
        color:#475569;
        padding-left:20px;
    }
    
    .mod-menu > li > .mod-menu__sub{
        padding-left:18px;
    }
    
    .mod-menu__sub .mod-menu__sub{
        padding-left:20px;
    }
    
    .mod-menu__sub .mod-menu__sub .mod-menu__sub{
        padding-left:20px;
    }
    
    .hero-slider{
        padding-top: 85px;
    }
    
    .header-menu_nav{
    min-width:0;
}

.logo{
    flex-shrink:0;
}

.menu-toggle{
    flex-shrink:0;
}

    
}