*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
}
header{
    /* height: 7vh; */
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    padding: 0px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .lnavbar ul{
    list-style: none;
}
header .lnavbar ul li{
    position: relative;
    float: left;
}
header .lnavbar ul li a{
    font-size: 15px;
    font-weight: 900;
    font-family:'Open Sans', sans-serif;
    padding: 10px;
    color:#0e3477;
    display: block;
}
header .lnavbar ul li a:hover{
    /* background-color: #0a4fc7; */
    color: rgb(4, 5, 95);
}
header .lnavbar ul li ul{
    position: absolute;
    top: 39px;
    left: 0;
    width: 250px;
    background-color: #f5f5f5;
    display: none;
    transition: all 0.3s;
}
header .lnavbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgb(187, 187, 187);
    font-size:10px;
    font-weight: 800;
   /* margin-bottom: -10px; */
    
}

header .lnavbar ul li ul li a{
   font-size: 13px;
    
}
header .lnavbar ul li ul li ul{
    left: 250px;
    top: 0;
}
 header .lnavbar ul li:focus-within >ul,
header .lnavbar ul li:hover >ul{
    display: initial;
} 

#lmenu-bar{
    display: none;
}
header label{
    font-size:20px;
    color: #1d407c;
    cursor: pointer;
    display: none; 
}
@media(max-width:1126px){
    header{
        padding: 5px;
        /* height:0vh; */
        /* width: 100%; */
       /* overflow-y: auto; */
    }
    #logoimg{
        height:20px;
    }
    header label{
        display: initial;
        
    }
    header .lnavbar{
        position: absolute;
        top: 100%;
        height: 100vh !important;
        left: 0;
        right: 0;
        background-color: rgb(212, 208, 208);
        border-top: 1px solid white;
        display: none;
        
       
    }
    header .lnavbar ul li{
        width: 100%;
        
    }
    header .lnavbar ul li ul{
        position: relative;
        width: 100%;
        overflow: auto;
    }
    header .lnavbar ul li ul{
        position: relative;
        top: 0px;
        left: 0;
        width: 100%;
        background-color: #e2dfdf;
        display: none;
        transition: all 0.3s;
        scroll-behavior: smooth;       
    }
    header .lnavbar ul li ul li{
        background: #eee;
       
    }
    header .lnavbar ul li ul li ul{
        background-color:rgb(226, 226, 226) ;
        width: 100%;
        left: 30px;
    }

    #lmenu-bar:checked ~ .lnavbar{
        display: initial;
    }

    #close:checked ~ .lnavbar{
        display: none;
    }
    #fa{
        transform: rotate(-90deg);
    }
    
    #fa2{
        transform: rotate(-90deg);
    }
    #fa3{
        transform: rotate(-90deg);
    }
    #fa4{
        transform: rotate(-90deg);
    }

    
}

