   *{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}
header{
    top: 0%;
    width: 100%;
    height: 65px;
    background:#0c6b3d;
    z-index: 900;
    box-shadow: 0 2px 10px 1px;
    padding:15px;
    position:sticky;
    position: fixed;
  }
        

#manu{
    width:15%;
    background:hite;
    display: flex;
    float: left;
    margin-left: 100px;
    
}

#manu ul{
    width: 150px;   
    list-style: none;
    margin: 0px;
    padding:0px;
    float: left;
    background: hite;
    font-size: 20px;
    margin-top: 15px;
    margin-left: -20%;
}
#manu ul li{
    padding: 0 20px;
    font-size: 23px;
    background: white;
    border-radius: 5px;

}
#manu ul li p:hover{
    background:rgba(51, 255, 250);
    border-radius: 5px;

}
#manu ul a{
    color:black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 15px;
    padding: 0 20px;
    display: block;
    
}
#manu ul ul li:hover{
    background:rgba(51, 255, 255, 0.4);
    padding: 10px 0 10px 0px;
}



#manu ul li{
    float: left;
    position: relative;
    display: block; 
}
 #manu ul li:hover{
    background:rgba(51, 255, 250);
    border-radius: 5px;
}
#manu ul ul{
    position: absolute;
    background: white;
    top: 100%;
    left: 0%;
    padding: 0px;
    margin: 0px;    
    display: none;
    box-shadow: 1px 5px 15px;
    border-radius: 5px;
    width: 200px;
}

#manu ul li:hover > ul{
    display: block;

}
#manu ul ul li{
    float: none;
    width: 200px;
    padding: 10px 0px 10px 0px;

}
 
.slider{margin-top: 65px;}

:root{
--green:#0c6b3d;
--orange:#ff8a00;
}

.logo{
font-size:25px;
font-weight:700;
color:#fff;
float: left;
}
.logo img{
    float: left;
    width: 30%;
    height: 60px;
    border-radius: 50%;
}

.logo span{
font-size:20px;
color:var(--orange);
}

.search-box{
    width:500px;
    margin:auto 5%;
    position:relative;
    float: left;
}
.search-box input{
width:100%;
padding:14px 50px 14px 15px;
border:none;
border-radius:8px;
outline:none;
}

.search-box i{
position:absolute;
right:18px;
top:15px;
color:#666;
}
.search-input {
  display: flex;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 40px;
  height: 35px;
  margin-left: ;20%;
  padding-left: 12px;
  margin-top: 10px;
  background: white;
}
.search-input input {
  border: none;
  outline: none;
  height: 35px;
  flex: 1;
  font-size: 16px;
  background: none;
}
.search-input button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
}
#searchResult{
  width: 80%;
    background:white;
    border-radius:8px;
    margin-top:8px;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
    max-height:400px;
    overflow-y:auto; 
}
a{text-decoration: none; color: black;}
.search-item{
    display:flex;
    width: 90%;
    padding:5px 0 5px 10px;
    border-bottom:1px solid #eee;
    transition:.2s;
    margin: auto;
}
.search-item:hover{
    background:#f1f5ff;
}
.search-item img{
    width:20%;
    height:40px;
    object-fit:cover;
    border-radius:6px;
}
.search-info{
  width: 70%;
  margin-left: 5%;
}
.search-info h4{
  font-size:15px;
  color: black;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.search-info small{
    color:#666;
}


.profile{
  font-size: 24px;
  margin-top: 20px;
  margin-left: 10%;
  float: left;
  display: none;
    position:relative;
}  
.search-button{
  background: transparent;
  font-size: 24px;
  border: none;
  float: left;
  padding:0 0 0 10px;
}
.sidebar{
  position:fixed;
  width:200px;
  background:#111827;
  color:#fff;
  padding:20px;
  left:-300px;
  transition:.3s;
  z-index:999;
  display: none;
}
.sidebar.active{
    left:0;
    padding: 20px;
    overflow: auto;
  }
.sidebar h2{
  font-size:22px;
  margin-bottom:30px;
}
.sidebar h2 span{
  color:#ff4d4d; 
}

.sidebar a{
  display:block;
  padding:12px 14px;
  color:#d1d5db;
  text-decoration:none;
  border-radius:8px;
  margin-bottom:8px;
  font-size:15px;
}
.sidebar a:hover,
.sidebar a.active{
  background:#1f2937;
  color:#fff;
}

@media(max-width: 992px) {
    #manu{
        display: none;
    }
    .sidebar{
    display: block;
    width: 40%;
    top:0;
    left:-600px;
    height:100%;
    padding: 0;
  }
    .profile{
  font-size: 28px;
  float: left;
  margin-top: -0.5%;
  display: block;
  margin-right: 20px;
}
.search-button{
  background: transparent;
  font-size: 24px;
  border: none;
  float: left;
  padding:0 0 0 30px;
  border-radius: 50%;
}
#search{margin-right: 15px; display: none;}

    .search-box{
    width:40%;
}
.logo{
   font-size:28px;
}
.search-input input {
    width: 90%;
}
}

@media(max-width:525px){

  header{
    height:50px;
  }
  .logo{
   font-size:24px;
}
    .search-item{
        align-items:center;
    }
    .search-box{display: none;}
.profile{
  font-size: 28px;
  float: right;
  margin-top: -3px;
  display: block;
  margin-right: 20px;
}

.search-button{
  background: transparent;
  font-size: 24px;
  border: none;
  float: left;
  padding:0 0 0 10px;
  border-radius: 50%;
}
#search{margin-right: 15px; display: block;}
#manu{display: none;}
.sidebar{
    display: block;
    width: 60%;
    top:0;
    left:-300px;
    height:100%;
    padding: 0;
  }
  .sidebar.active{
    overflow: auto;
  }
}