/*   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!   SIDEBAR CSS !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  */
/* Hamburger Menu */
.hamburger {
  position: absolute;
  left: 5px;
  top: 3px;
  cursor: pointer;
  font-size: 20px;
  display: none;
  background-color: black;
  color: white;
  padding: 1px 6px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 9999;
}

.hamburger:hover {
  background-color: #333;
  transform: scale(1.1);
}

.hamburger:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}
.hamburger {
  border: 2px solid white;
}


/* Sidebar for Mobile */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;

  left: -100px;
  width: 100px;

  height: 100%;
  background: #222;
  color: white;
  padding-top: 60px;
  transition: 0.3s ease-in-out;
  z-index: 8000;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  
  padding: 8px; 

  text-align: center;
  position: relative;
  transition: background-color 0.3s ease;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  display: block;
}

.sidebar ul li:hover {
  background: #444;
}

/* Sidebar Dropdown */

.sidebar ul li ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 200px;
  background: #333;
  text-align: left;
}

.sidebar ul li:hover>ul {
  display: block;
}

.sidebar.open {
  left: 0;
}


/* Responsive Design  
@media (max-width: 768px) {
*/


@media (max-width: 1024px) {

  .topnav {
    opacity: 0;
   
  }
  header {
     background-color: white;
     opacity: 0;
  }

  footer {
    display: none;
  }

  .menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .sidebar {
    display: block;
  }

  
  .sidebar.open {
    left: 0;
  }
  


}