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

.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: 20px;
    z-index: 9999;
    color: #fff;
    border-radius: 1em;
}

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

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

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