.mob_menu
    {
        display:none;
    }
    .desktop_menu{
        display: block;
    }
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
  }
  
  .navbar .menu-items {
    display: flex;
  }
  
  .navbar .nav-container li {
    list-style: none;
  }
  
  .navbar .nav-container a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
    margin: 5px 10px;
    font-family: "Bad Script", cursive;
  }
  
  .navbar .nav-container a:hover{
      font-weight: bolder;
  }
  /*
  .nav-container {
    display: block;
    position: relative;
    height: 60px;
  }*/
  
  .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 25px;
    width: 25px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  
  .nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .nav-container .hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }
  
  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  
  .navbar .menu-items {
    padding-top: 30px;
    box-shadow: inset 0 0 2000px rgb(255 255 255 / 15%);
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    transform: translateX(-100%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    text-align: left;
    background: #141414;
    top: 9px;
    position: relative;
  }
  
  .navbar .menu-items li {
    /*margin-bottom: 1.2rem;
    font-size: 1.5rem;*/
    font-weight: 500;
    color: #fff;
    
  }
  .dropdown-menu li a
  {
    color:#000 !important;
  }
  .logo {
    font-size: 1.2rem;
    color: #0e2431;
    width: 60%;
    margin: 0 auto;
    text-align: center;
  }
  
  .nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
  
  @media only screen and (max-width: 900px) 
   {
    .mob_menu
    {
        display:block;
    }
    .desktop_menu{
        display: none;
    }
    .cart{
        right: -30px;
        position: relative;
    }

  }