@media (max-width: 1585px){
  label.logo{
    font-size: 23px;
    padding-left: 15%;
  }
  .nav .nav-ul{
    margin-right: 15%;
  }
  .nav .nav-ul .nav-li a{
    font-size: 15px;
  }
}
@media (max-width: 1250px){
  .checkbtn{
    margin-right: 15%;
    display: block;
    color: grey !important;
    transition: .5s;
  }
  .nav-ul{
    position: fixed;
    width: 60%;
    height: 100vh;
    background: transparent;
    top: 80px;
    left: -100%;
    z-index: 10;
    text-align: center;
    transition: all .5s;
  }
  .nav .nav-ul .nav-li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  .nav .nav-ul .nav-li a{
    font-size: 15px;
    color: grey !important;
  }
  #check:checked ~ .nav-ul{
    background: white;
    left: 0;
  }
  #check:checked + .checkbtn{
    transform: rotate(90deg);
    color: #ec6324 !important;
  }
}

@media (max-width: 350px){
  .logo img{
    max-width: 130px;
  }
}

@media (max-width: 300px){
  .logo img{
    max-width: 100px !important;
  }
}
