/* Hamburger Menu Icon */
.hamburgler {
  width: 30px;
  height: 15px;
  position: relative;
  cursor: pointer;
  margin: 1.5em auto;
  padding:0;
  transition: 0.3s ease all;
  z-index: 1;
}

@media screen and ( max-width: 767px) {
  .hamburgler {
    display: block;
  }
}

@media screen and ( min-width: 768px) {
  .hamburgler {
    display: none;
  }
}

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

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

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

.hamburgler.no-hamburgler {
transform: rotate(-45deg);
}

.bun, .meat {
  display: block;
  width: 100%;
  background: #696969;
  height: 17%;
  transition: 0.3s ease all;
  border-radius: 2px;
}

.no-hamburgler .top {
height: 38%;
width: 20%;
margin-left: 40%;
border-radius: 50px 50px 0 0;
}

.no-hamburgler .bottom {
height: 38%;
width: 20%;
margin-left: 40%;
border-radius: 0 0 50px 50px;
}

.meat {
  margin: 15% 0;
}

.no-hamburgler .meat {
margin: 2% 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:#696969;
}

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

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

.mobile-menu li {
  text-align: center;
  padding: 1em 0;
}

.mobile-menu ul a{
  color:#696969;
  font-weight: bold;
  text-transform: uppercase;
  font-size: large;
}