/* *{margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans', å¾®è»Ÿæ­£é»‘é«”;
} */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* background-color: #5d4954;  */
}
/* .logo{
  color: rgb(226, 226, 226);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 20px;
  z-index: 999;
} */
.nav-links{
   display: flex;
   justify-content: space-around;
    width: 60%;
}
.nav-links li {
  list-style: none;  
}
.nav-links a {color: #fff;text-decoration: none;letter-spacing: 3px;font-weight: bold;color: rgb(240, 232, 232);font-size: 1.5rem;}
.burger{
  display: none;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

  @media screen and (max-width:1024px){
    .nav-links{
      width: 80%;
   }
  }
  @media screen and (max-width:768px){
    body{
      overflow-x: hidden;
    }
    .nav-links
    {
      position: fixed;
      right: 0px;
      height: 90vh;
      top:0;
      background-color: rgba(103, 170, 248, .9);
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      transform:  translateX(100%);
      -webkit-transform:  translateX(100%);
      -moz-transform:  translateX(100%);
      -ms-transform:  translateX(100%);
      -o-transform:  translateX(100%);
      transition:transform 0.5s ease-in;
      -webkit-transition:transform 0.5s ease-in;
      -moz-transition:transform 0.5s ease-in;
      -ms-transition:transform 0.5s ease-in;
      -o-transition:transform 0.5s ease-in;
}
    .nav-links li{
      opacity: 0;

    }
    .nav-links li a{
      width: 50%;
    }
   .burger {
         display: block;
    padding: 5px;
    z-index: 888;
    background-color: #4a96eb;
    margin-top: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    }
  }

.nav-active{
  transform: translateX(0%);
  margin:0;
  padding:10vw;
  top:0;
  z-index: 888;
}

@keyframes navLinkFade{
  from{
      opacity: 0;
      transform: translateX(50px);
  }
  to{
      opacity: 1;
      transform: translateX(0px);
      top:0;
  }
}

.toggle .line1{
  transform: rotate(-45deg) translate(-5px,6px) ;
  -webkit-transform: rotate(-45deg) translate(-5px,6px) ;
  -moz-transform: rotate(-45deg) translate(-5px,6px) ;
  -ms-transform: rotate(-45deg) translate(-5px,6px) ;
  -o-transform: rotate(-45deg) translate(-5px,6px) ;
} 
.toggle .line2{
opacity: 0;
} 
.toggle .line3{
  transform: rotate(45deg) translate(-5px,-6px) ;
  -webkit-transform: rotate(45deg) translate(-5px,-6px) ;
  -moz-transform: rotate(45deg) translate(-5px,-6px) ;
  -ms-transform: rotate(45deg) translate(-5px,-6px) ;
  -o-transform: rotate(45deg) translate(-5px,-6px) ;
} 

