/*------------------------hiding theme mobile menu------------------*/

    .mobile-header{
        width:100%; height:auto; 
        display:none;
    }

    .mobile-menu-head{
        width:100%; height:auto; min-height: 100px;
        background-color: #fff;
        padding: 20px; box-sizing: border-box;
        display: flex; flex-direction: row; gap: 10px;
       
    }
    
    .mobile-menu-head .logo{
        width:calc(100% - 70px); height: auto;       
    }
    
    .mobile-menu-head .logo img{
        width:280px; height: auto;       
    }
    

    .mobile-menu-head .menu-icon{
        width:70px; height: auto;
        position: relative;
    }
    


    @media screen and (max-width: 767px){
        .mobile-header{
            display:block;
        }
    }
    
    
    .mobile-menu-container{
        width: 100%; height: auto;
        background-color: #002858 ;
        padding: 20px 0; box-sizing: border-box;
        display:none;
    }
     
    .mobile-menu-container a{
        color: #fff ;
        font-size: 16px;
    }
    
    .mobile-menu-container ul{
       list-style: none;
    }
    
    .mobile-menu-container .menu-item{
        width: 100%;
        margin: 30px 0;
    }
    
    .mobile-menu-container .sub-menu{
       display: none;
    }



/*--------------------------------------------------icon container------------------------------------------------------*/

    .iconContainer{
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 500;
        position:absolute;
        top: 20px;
        right: 0;
        display: none;
    }
    
    .topBar, .middleBar, .bottomBar{
        width: 100%;
        height: 3px;
        margin:  5px 0px ;
        background-color: #002858;
    }
    
    .change .topBar{
       transform: rotate(-45deg) translate(-7px, 3px);
    }
    
    .change .middleBar{
        opacity: 0;
    }
    
    .change .bottomBar{
    transform: rotate(45deg) translate(-7px, -5px);;
    }
    
    
    @media only screen and (max-width:767px){
        .iconContainer{
            display: block;
        }
    }
    
    /*------------------------------------------------------------------------------------------*/
    
    .fa-solid{
        font-size: 18px;
        margin-left:5px;
        color:white;
    }


    

