 .h_header_container{
            border-bottom: 1px solid #ddd;
            position: sticky;
            top: 0      ;
            z-index: 999; 
            background: #1CB3F8;        
            transition: 0.2s
        }
        .h_header_new, .h_header_new > div{
            display: flex;
            justify-content: space-between;        
            align-items: center;        
        }
        .h_header_new{       
            padding: 10px 20px;
        }
        .logo{
            margin-right: 50px;
        }
        .h_header_new .logo img{
            height: 40px;
        }
        .h_header_new .h_new_links{
            display: flex;
            justify-content: space-between;    
            height: 30px;  
            width: 40%;  
        }
        .h_header_new .h_new_links li{
            margin-left: 5px;
            margin-right: 5px ;
            padding: 5px;
            position: relative;
        }
        .h_header_new .h_new_links li a{
           font-size: 16px;
           color: #fff;
           font-weight: bold;
           transition: 0.4s
        }
        .h_header_new .h_new_links li div{
           width: 0;
           height: 3px;
           bottom: -16px;
           position: absolute;
           z-index: -1;
           background: transparent;
           transition: 0.4s
        }
        
        .h_header_new .h_new_links li.active div{
            width: 100%;
            background: rgb(5, 160, 231);
            margin-left: -5px
        }
        
        .h_header_new .h_new_links li:hover div{
            width: 100%;
            background: rgb(5, 160, 231);
            transition: 0.4s
        }
        .h_header_new .h_new_links img{
            position: absolute;
            top: -10px;
            right: 0;
        }
        .h_header_new ul{
            height: 20px;        
        }
        
        .h_sel_qu{
            margin-top: -10px;
            font-size: 16px;
            color: #fff;
            font-weight: bold;
            position: relative;
            width: 90px
        }
        .h_sel_qu li{
            padding: 5px
        }
        .h_sel_qu li i{
            padding: 5px
        }
        .h_sel_qu div{
            height: 0;
            top: 30px;    
            width: 80px;
            overflow: hidden;   
            position: absolute;
            background: white;
            transition: 0.5s;
            box-shadow: 1px 1px 4px #ddd
        }
        .h_sel_qu img{
            width: 12px;
            float: right;
            margin-top: 4px;  
            transition: 0.3s      
        }
        .h_sel_qu:hover div{
            height: 40px;           
            transition: 0.5s
        }
        .h_sel_qu:hover img{
            transform: rotate(180deg);
            transition: 0.3s
        }
        .h_search_bar{
            padding: 9px 10px;
            background: rgb(9, 161, 231);
            border-radius: 5px;
        }
        .h_search_bar a{
            color: white;
            font-size: 16px
        }
        .h_form_search{
            display: flex;
            justify-content: space-between;
        }
        .h_form_search form{
            width: unset;
            margin-right: 20px;
        }