/* Start navBar CSS*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*{
    /*margin:0;
    padding:0;*/
    box-sizing:border-box;
}

.header{
    position:fixed;
    top:40px; /* height of top header */
    left:0;
    width:100%;
    z-index:9999;
    
    /*position:absolute;*/
    /*top:50px;*/
    
    
    border-bottom:2px solid hsla(216, 75%, 14%, 0.8);
    
    background-color: hsl(0, 0%, 100%);
}


.header > .row > div.logo{
    margin-top:12px;
}
/*
.header .container-fluid{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
*/

.header .row{
    display:flex;
    align-items:start;
}
.header .logo img{
    vertical-align:middle;
    width:300px;
    margin-top:-12px;
    
}
.head .logo img{
    width:130px;
    
}
.header .menu .head{
    display:none;
}
.header .menu ul{
    list-style:none;
}

.header .menu > ul > li{
    display:inline-block;
}

.header .menu > ul > li:not(:last-child){
    margin-right:13px;
}
.header .menu .dropdown{
    position:relative;
}
.header .menu a{
    text-decoration:none;
    text-transform:capitalize;
    font-size:14px;
    color:#000;
    line-height:1.5;
    display:block;
    
}

.header .menu > ul > li >a{
    padding:30px 0px 16px 0px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s linear;
    
}
.header .menu >ul > .dropdown > a{
    padding-right:15px;
}
.header .menu  i{
    font-size:10px;
    pointer-events:none;
    user-select:none;
    position:absolute;
    color:hsl(0, 0%, 0%);
    top:calc(57% - 5px);
}
.header .menu > ul > li > i{
    right:0px;
}

.header .menu .sub-menu{
    position:absolute;
    top:100%;
    left:0;
    width:230px;
    padding:15px 0;
    background-color:hsl(0, 05%, 98%);
    box-shadow:0 0 5px hsla(0, 0%, 0%, 0.5);
    z-index:1;
    transform-origin:top;
    transform:scaleY(0);
    visibility:hidden;
    opacity:0;
}

.header .menu .sub-menu-right{
    left:100%;
    top:0;
}
.header .menu .sub-menu-left{
    top:0;
    left:auto;
    right:100%;
}
.header .menu li:hover > .sub-menu{
    opacity:1;
    transform:none;
    visibility:visible;
    transition:all 0.5s ease;
}

.header .menu .sub-menu a{
    padding:6px 24px;
    font-size:13px;
}
.header .menu .sub-menu .dropdown > a{
    padding-right:34px;
}
.header .menu .sub-menu span{
    background-image:linear-gradient(hsl(196, 95%, 44%), hsl(196, 95%, 44%));
    background-size:0 1px;
    background-repeat:no-repeat;
    background-position:0 100%;
    transition:background-size 0.5s ease;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    
    
    display: block;
    font-size: 13px;
    
    
}
.header .menu .sub-menu li:hover > a > span{
    background-size:100% 1px;
}
.header .menu .sub-menu i{
    transform:rotate(-90deg);
    right:24px;
}
.primary-ul{margin-left:50px}
.header-right{
    display:flex;
} 
.header-right > *{
    margin-left:25px;
}
.header-right  .icon-btn{
    background-color:transparent;
    cursor:pointer;
    color:hsl(0, 0%, 100%);
    font-size:16px;
    
}

.header-right .open-menu-btn{
    display:none;
}
.navbar-search{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:-68px;
}
/*.navbar-search{*/
/*    margin-top:-68px;*/
/*    padding-left:10px;*/
/*}*/

.navbar-search button{
    color:#0B3F8A;
    background-color:#7AC943;
    border:1px solid #0B3F8A;
}
.navbar-search button:hover{
    background-color:#133d6c;
    color:#fff;
}
.navbar-search input{
    border:1px solid #0B3F8A;
}



@media(max-width:991px){
    
    .top-right{
        display:none;
    }
    
    .header .menu{
    position:fixed;
    top:0;
    right:0;
    width:320px;
    height:88vh;
    max-height:100vh;
    background:#195190;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
    z-index:999999;
    transform:translateX(100%);
}
    .header .menu .close-menu-btn {
        width: 35px;
        height: 35px;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        cursor: pointer;
        color:#000;
        border: none;
    }
    
    .header .menu a{
        color:#fff;
    }
    
    .topRighte{
        display:none;
    }
    .header{
        padding:12px 0;
    }
    
    .header .menu.open{
        transform:none;
    }
    .header .menu .head{
        display:flex;
        align-items:center;
        justify-content:space-between;
        margin-bottom:25px;
    }
    
    .header .menu .close-menu-btn{
        width:35px;
        height:35px;
        position:relative;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        background-color:transparent;
        cursor:pointer;
        border:none;
    }
    
    .header .menu .close-menu-btn::before,
    .header .menu .close-menu-btn::after{
        content:'';
        position:absolute;
        width:80%;
        height:2px;
        background-color:hsl(0, 0%, 100%);
    }
    .header .menu .close-menu-btn::before{
        transform:rotate(45deg);
    }
    .header .menu .close-menu-btn::after{
        transform:rotate(-45deg);
    }
    
    .header .menu > ul > li{
        display:block;
    }
    .header .menu > ul > li:not(:last-child){
        margin-right:0;
    }
    .header .menu li{
        border-bottom:1px solid hsla(0, 0%, 100%, 0.25);
    }
    .header .menu li:first-child{
        border-top:1px solid hsla(0, 0%, 100%, 0.25);
    }
    .header .menu > ul > li > a{
        padding:12px 0;
    }
    .header .menu > ul > .dropdown > a{
        padding-right:34px;
    }
    .header .menu i{
        height:34px;
        width:34px;
        border:1px solid hsla(0, 0%, 100%, 0.25);
        display:inline-flex;
        align-items:center;
        justify-content:center;
        pointer-events:auto;
        cursor:pointer;
        top:7px;
        color:#fff;
        margin-right:-15px;
    }
    
    
    .header .menu .dropdown.active > i{
        background-color:hsla(0, 0%, 100%, 0.25);
        transform:rotate(180deg);
    }
    .header .menu .sub-menu{
        position:static;
        opacity:1;
        background-color:#195190;
        transform:none;
        visibility:visible;
        transition:none;
        box-shadow:none;
        width:100%;
        display:none;
    }
    
     .header .menu .dropdown.active > .sub-menu{
        display:block;
    }
    .header .menu .sub-menu li:last-child{
        border:none;
    }
    .header .menu .sub-menu a{
        padding:12px 0 12px 15px;
    }
    .header .menu .sub-menu .sub-menu a{
        padding-left:30px
    }
     .header .menu .sub-menu .sub-menu .sub-menu a{
        padding-left:45px
    }
    .header .menu .sub-menu span{
        background-image:none;
    }
     .header .menu .sub-menu i{
        transform:none;
        right:0px;
    }
   .primary-ul{margin-left:0px}
    .header-right{
        margin-top:10px;
    }
    
     .header-right .open-menu-btn{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        height:40px;
        width:44px;
        cursor:pointer;
        position:relative;
        background-color:#091E3E;
        /*background-color:transparent;*/
        border:none;
    }
    .header-right .open-menu-btn .line{ 
        height:2px;
        width:30px;
        background-color:hsl(0, 0%, 100%);
        position:absolute;
    }
    .header-right .open-menu-btn .line-1{ 
        transform:translateY(-8px);
    }
     
    .header-right .open-menu-btn .line-3{ 
        transform:translateY(8px);
    }
    
}



.top-header{
    position:fixed;
top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    
    z-index: 99999;
    
    background:var(--primary);

    color:var(--white);

    font-size:13px;

    font-weight:500;

    min-height:40px;

    display:flex;

    align-items:center;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.top-contact{
    margin:0;
}

.topEmail,
.topMob{
    padding:0 12px;
}

.topEmail a,
.topMob a{
    display:flex;
    align-items:center;
    color:#fff;
    text-decoration:none;
    white-space:nowrap;
    overflow:hidden;
    transition:.3s;
}

.topEmail a:hover,
.topMob a:hover{
    color:#7bc043;
}

.topEmail i,
.topMob i{
    margin-right:8px;
    flex-shrink:0;
}

.topEmail span,
.topMob span{
    overflow:hidden;
    text-overflow:ellipsis;
}
.top-contact li{

    display:flex;

    align-items:center;

}

.top-contact a{

    color:#fff;

    text-decoration:none;

    display:flex;

    align-items:center;

    transition:var(--transition);

}

.top-contact a:hover{

    color:#9be25b;

}

.top-contact i{

    margin-right:8px;

    font-size:13px;

}

.top-right{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:22px;

}

.iso-text{

    white-space:nowrap;

    font-size:13px;

}

.social-icons{

    display:flex;

    gap:15px;

}

.social-icons a{

    color:#fff;

    transition:var(--transition);

    font-size:14px;

}

.social-icons a:hover{

    color:#8fd14f;

    transform:translateY(-2px);

}
/* =========================================
   Mobile (â‰¤ 767px)
========================================= */

@media (max-width:767px){

    .top-header{
        padding:0;
    }

    .container-fluid{
        padding-left:0 !important;
        padding-right:0 !important;
    }

    .top-contact{
        margin:0;
    }

    .topEmail,
    .topMob{
        padding:0 !important;
        border-right:1px solid rgba(255,255,255,.15);
    }

    .topMob{
        border-right:0;
    }

    .topEmail a,
    .topMob a{

        display:flex;
        align-items:center;
        justify-content:center;

        padding:8px 4px;

        font-size:11px;
        font-weight:500;

        color:#fff;
        text-decoration:none;
    }

    .topEmail i,
    .topMob i{
        margin-right:4px;
        font-size:14px;
        flex-shrink:0;
    }

    .topEmail span,
    .topMob span{

        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;

    }

    .top-right{
        display:none;
    }

}
@media (max-width:400px){

    .topEmail a,
    .topMob a{

        padding:6px 2px;
        font-size:10px;

    }

    .topEmail i,
    .topMob i{

        margin-right:3px;
        font-size:13px;

    }

}