header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(22, 135, 167);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  padding: 0px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: all .1s;
}

header .logo img{
  width: 280px;
  margin-top: 5px;
  padding-left: 10px;
  padding-right: 10px;

}

header .navbar ul{
  list-style: none;
}

header .navbar ul li{
  position: relative;
  float: left;
  text-decoration: none;
}

header .navbar ul li a{
  font-size: 20px;
  padding: 20px;
  color: white;
  display: block;
}

header .navbar ul li a:hover{
  background: rgb(22, 135, 167);
  color: white(39, 102, 120);
}

header .navbar ul li ul{
  position: absolute;
  left: 0;
  width: 200px;
  background: rgb(22, 135, 167);
  display: none;
  padding-right: 10px;
}

header .navbar ul li ul li{
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, .1);
  white-space: nowrap;
  
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
  display: initial;
}

#menu-bar{
  display: none;
}

header label{
  font-size: 30px;
  cursor: pointer;
  display: none;
  color: white;
}