
  nav {
    position: fixed;
    display: flex;
    justify-content: space-between;
    top: 0;
    right: 10px;
    left: 10px;
    padding: 15px 15px;
    padding-bottom: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 99;
    max-height: 80px;
    box-shadow: 0 2px 10px .4px  rgb(128, 128, 128);
    background-color: var(--bg-primary);
  }
  label.logo {
    color: var(--color-primary);
    font-size: 25px;
    line-height: 80px;
    padding: 0 20px;
    font-weight: bold;
  }

  nav ul li {
    display: inline-block;
    margin: 0 2px;
  }
  nav ul li a {
    color: var(--color-primary) ; 
    text-decoration: none;
    font-size: 14px;
    padding: 7px 13px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: uppercase;
  }
  nav a.active,
  nav a:hover {
    background:  var(--bg-styled);
    color: var(--bg-primary) ;
    transition: .5s;
  }
  .checkbtn {
    font-size: 22px;
    color: var(--bg-styled) ;
    float: right;
    line-height: 80px;
    /* margin-right: 30px; */
    cursor: pointer;
    display: none;
  }
  #check {
    display: none;
  }
  @media (max-width: 1050px) {
    label.logo {
      padding-left: 30px;
    }
    nav ul li a {
      font-size: 16px;
    }
  }




.switch *{
    transition: .3s;
}
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 23px;
    margin-top: 2px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
   
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    bottom: 0;
    background-color: #cccccc3d;
    border-radius: 34px;
   
}
input:checked + .slider {
    -webkit-box-shadow: 0 0 10px -4px black;
    box-shadow: 0 0 10px -4px black;
    background-color: #ffffffac;
   
}
.slider .icon {
    position: relative;
    left: 3px;
    width: 16px;
    height: 16px;
    top: 3px;
    border-radius: 50px;
    -webkit-box-shadow: inset 9px -6px var(--color-primary);
    box-shadow: inset 9px -6px var(--color-primary);

   
}
.slider.active .icon {
    left: 25px;
    -webkit-box-shadow: inset 20px -20px var(--bg-styled);
    box-shadow: inset 20px -20px var(--bg-styled);
   
}


/* drop down */

