nav {
  display: none;
}
@media screen and (max-width: 991px) {
  .logo-mob {
    margin: 0 auto;
  }
  nav {
    background-color: #607d8b;
    height: 90px;
    width: 100%;
    display: flex;
    padding: 5px;
    z-index: 99;
  }
  .link-bg {
    background-color: #00000069;
    width: 100%;
    position: absolute;
    height: 100vh;
    left: 0;
    top: 0;
    backdrop-filter: blur(10px);
    z-index: 1;
    display: none;
    position: fixed;
  }
  .nav_link {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    text-align: center;
    background: #fff;
    padding-left: 50px;
    transition: all 0.3s ease;
    z-index: 9;
  }
  .nav_link > li {
    line-height: 80px;
    margin: 0 5px;
    display: block;
  }
  ul li > .nav_items {
    color: #252525;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  .nav_items.selected {
    border-bottom: 1px solid #252525;
  }
  .nav_items:hover {
    color: #252525;
    transition: 0.5s all ease;
  }
  .checkbtn {
    font-size: 30px;
    color: white;
    line-height: 80px;
    margin-left: 40px;
    cursor: pointer;
  }
  #check {
    display: none;
  }
  #check:checked ~ .nav_link {
    left: -25%;
  }
  .fixedPosition {
    position: fixed;
  }
  #close {
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
  }
  #check:checked ~ li #close {
    left: -100%;
  }
}
