.dropbtn {
    background-color:#f9db33;
    color: black;
    font-size: 200%;
    position: absolute;
    z-index: 200;
    top: 17px;
    font-weight: bolder;
    padding: 10px;
    border: none;
    cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    color:#eee;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
  
    position: absolute;
    right: 50px;
  
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .menu {
  
      font-size: 95%;
     height:100%;
      position: relative;
      background-color:  #428dee;
      min-width: 300px;
      box-shadow: 0px 0px 1px 0px rgb(35, 30, 44);
      z-index: 400;
      top:0px;
      right: 0px;
      opacity: 0.9;
      display: none;
      animation: slideYas1 ease 0.4s ;
  }
  
    .menu.show {
      display: block;
  }
  
  .dropdown-content1 {
    display: none;
    font-size: 90%;
    min-height: 200px;
    position: absolute;
    background-color: white;
    min-width: 200px;
    z-index: 300;
    top:125px;
    animation: slideYas3 ease 0.4s ;
  }
  .dropdown-content2 {
    display: none;
    font-size: 90%;
    min-height: 200px;
    position: relative;
    box-shadow:0px 0px 2px black;
    left: 50px;
    text-align: right;
    background-color:#2a2a31;
    min-width: 200px;
    z-index: 300;
    top:0px;
      animation: slideYas1 0.4s ;
  }
    #categov:hover .dropdown-content2{
      display: block;
    }
  /* Links inside the dropdown */
  .menu a {
    color: white;
    font-size: larger;
    padding: 20px 20px;
    text-align: left;
    text-decoration: none;
    display: block;
  }
  .dropdown-content1 a {
    color: black;
    padding: 12px 16px;
    text-align: left;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .menu a:hover {background-color: #ddd;}
  .dropdown-content1 a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}
  
.menu-btn {
    z-index: 3;
    display: none;
    cursor: pointer;
    transition: all 0.5s ease-out;
    }
    
    /* Styling the hamburger lines */
    .menu-btn .btn-line {
    width: 28px;
    height: 3px;
    margin: 0 0 5px 0;
    background: white;
    transition: all 0.5s ease-out;
    }
    
    /* Adding transform to the X */
    .menu-btn.close {
    transform: rotate(180deg);
    }
    
    /* Styling the three lines
    to make it an X */
    .menu-btn.close .btn-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-btn.close .btn-line:nth-child(2) {
    opacity: 0;
    }
    
    .menu-btn.close .btn-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Styling the position of the menu icon */
    
    /* Adding a transition delay to the
    4 items in the navigation menu */
    .nav-item:nth-child(1) {
    transition-delay: 0.1s;
    }
    
    .nav-item:nth-child(2) {
    transition-delay: 0.2s;
    }
    
    .nav-item:nth-child(3) {
    transition-delay: 0.3s;
    }
    
    .nav-item:nth-child(4) {
    transition-delay: 0.4s;
    }
/*media query*/
