.search_li{
    margin-right: 30px;
    margin-bottom: 0px;
}
.header{
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 7%;
    z-index: 1000;
}
.hgh{
    color: #fd7e14;
}
.header img{
    width: 50px;
    height: 50px;
    margin: 0;
}
.header .logo_txt{
    font-weight: bolder;
    font-size: 30px;
    color: #333;
    font-family: monospace;
}
.header .menu-bar ul{
    list-style: none;
}
.header .menu-bar ul li{
    position: relative;
    float: left;
}
.header .menu-bar ul li a{
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    display: block;
}
.search_bar input{
    width: 200px;
    border: 1px solid #fd7e14;
    height: 30px;
    box-shadow: 5px 5px 5px #fd7e14;
}
.search_bar button{
    color: white;
    font-size: 15px;
    padding: 6px 15px 7px; 
    background-color: #fd7e14;
    box-shadow: 5px 5px 5px #fd7e14;
    border: 0px;
    margin-left: -4px;
}
.search_bar button:hover, 
.search_bar input:hover{
    box-shadow: 5px 5px 5px #e83e8c;
}
.header .menu-bar ul li a:hover{
    background-color: #fd7e14;
    color: #ffffff;
}
.header .menu-bar ul li ul{
    position: absolute;
    left: 0;
    width: 120px;
    background: #fff;
    display: none;
}
.header .menu-bar ul li ul li{
    width: 120px;
    display: flex;
    border-top: 1px solid #fd7e14;
    border-right: 1px solid #fd7e14;
}
.header .menu-bar ul li:focus-within > ul,
.header .menu-bar ul li:hover > ul{
    display: initial;
}
#abc{
    display: none;
}
.header label{
    font-size: 30px;
    cursor: pointer;
    display: none;
}

@media(max-width:1200px){
   .header label{
    display: initial;
    }
    .header .menu-bar{
        position: absolute;
        top:100%; left: 0; right: 0;
        background: #fff;
        border: 1px solid #000;
        display: none;
    }
    .header .menu-bar ul li{
        width: 100%;
    }
    .header .menu-bar ul li ul{
        position: relative;
        left: 0; 
    }
    .header .menu-bar ul li ul li{
        background: #eee;   
    }
    .header .menu-bar ul li:focus-within > ul,
.header .menu-bar ul li:hover > ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
    #abc:checked ~ .menu-bar{
        display: initial;
    }
}
.slider img{
    width: 100%;
    height: 100%;
}
