/* Hamburger Menu Icon */
.hamburgler {
  display: block;
  width: 30px;
  height: 15px;
  position: relative;
  cursor: pointer;
  margin: 1em auto 1.5em auto;
  padding:0;
}

.hamburgler .bun {
  background-color: #fff;
  display: block;
  height: 3px;
  position: absolute;
  width: 100%;
  transition: transform 0.3s ease;
}

.hamburgler .bun.top {
  top: 0;
}

.hamburgler .bun.bottom {
  bottom: 0;
}

.toggle-nav .bun.top {
  transform: translateY(17px) rotate(45deg);
}

.toggle-nav .bun.bottom {
  transform: translateY(5px) rotate(-45deg);
}

/* Menu Toggle Animation */


/* Mobile Menu */
.mobile-menu {
  display: none;
  position: relative;
  left: 0;
  width: 100%;
  padding: 0 20px;
  z-index: 9999;
  color:#fff;
}

.toggle-nav .mobile-menu {
  display: block;
}

.mobile-menu ul{
  margin-bottom: 0;
  list-style:none;
}

.mobile-menu ul a{
  color:#fff;
}