/*
	Theme Name: TheEvent
	Theme URL: https://bootstrapmade.com/theevent-conference-event-bootstrap-template/
	Author: BootstrapMade.com
	License: https://bootstrapmade.com/license/
*/


/* Hamburger Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}


.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 18px;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #0b0f1a;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 40px;
    transition: 0.4s;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}