*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Cairo", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:"slnt" 0;
  color: #ffffff;
}
a{
  text-decoration: none;
}
header{
  background-color: black;
  width: 100vw;
  height: 9.3vh;
  padding-left: 10vw;
  padding-right: 10vw;
}
nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
nav .left{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-width: 50%;
  height: 100%;
  /* background-color: aliceblue; */
}
nav .left .logo{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
nav .left .logo #img-1{
  width: 150px;
}
nav .left .logo #img-2{
  width: 30px;
}
nav .left ul{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
nav .left a{
  padding: 5px 8px 5px 8px;
  transition: 0.3s;
}
nav .left a:hover{
  background-color: #ffffff38;
  border-radius: 5px;
}
nav .right .login{
  background-color: rgb(0, 122, 71);
  width: 70px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}
nav .right .login:hover{
  background-color: rgb(1, 98, 58);
}
nav .right .login h2{
  font-weight: 700;
}
nav .right{
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 20px;
  min-width: 40%;
  height: 100%;
  /* background-color: aliceblue; */
}
nav .right .search{
  font-size: 20px;
  cursor: pointer;
}
nav .right .language{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* background-color: #ffffff; */
  padding: 8px 10px 8px 10px;
  border-radius: 100px;
  border: #ffffff7c solid 2px;
  transition: 0.3s;
  cursor: pointer;
}
nav .right .language:hover{
  background-color: #ffffff67;
}
nav .right .language h2{
  font-size: 15px;
}
nav .right .language img{
  width: 25px;
  height: 25px;
  border-radius: 100px;
}