nav{
  display: flex;
  height: 70px;
  width: 100%;
  background-color: #f8b133;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
  z-index: 1;
}
nav .logo{
  color: white;
  font-size: 35px;
  font-weight: 600;
  z-index: 1;

}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  z-index: 1;

}

nav ul li{
  margin: 0 5px;
  z-index: 1;

}

nav ul li a{
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  z-index: 1;

}
nav ul li a.active,
nav ul li a:hover{
color: #ffffff;
  z-index: 1;

}

nav .menu-btn i{
  color: #000000;
  cursor: pointer;
  display: none;
  z-index: 1;

}
@media (max-width: 920px) {
  nav .menu-btn i{
      display: block;
      z-index: 1;

  }
  nav ul{
      position: fixed;
      top: 250px;
      left: -120%;
      background-color: #f8b133;
      height: 80vh;
      width: 100%;
      text-align: center;
      display: block;
      transition: all 0.3s ease;
      z-index: 1;

  }
  nav ul.open{
      left: 0;
      z-index: 1;

  }
  nav ul li{
      width: 50%;
      margin: 10px 0;
      z-index: 1;
  }
  nav ul li a {
      font-size: 23px;
      z-index: 1;
  }
  nav ul li a.active,
  nav ul li a:hover{
      background: none;
      color: #ffffff;
      z-index: 1;
  }   
}


