/* Hamburger Menu Icon */
.hamburgler {
  width: 30px;
  height: 15px;
  position: relative;
  cursor: pointer;
  margin:1em 0;
  padding:0;
  transition: 0.3s ease all;
  z-index: 3;
  left:50%;
  transform:translateX(-50%);
}

.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-color: var(--primary-colour);
    height: 15%;
    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);
}

.toggle-nav {
      display: none !important;
}
  
@media screen and ( max-width: 767px) {

  .toggle-nav {
    top: 5px;
    display: inline-block !important;
    color: var(--primary-colour);
    transition: color linear 0.15s;
    z-index: 3;
    text-align: center;
    font-size: 2em;
    font-weight: 400;
  }

  .toggle-nav:hover, .toggle-nav.active {
      text-decoration: none;
      color: var(--secondary-colour);
  } 

}
  
.main-nav {
      top: 70px;
      left: 0;
      width: 100%;
      z-index: 2;
}
  
.main-nav ul {
  display: none;
  text-align: center;
  padding-left: 0;
}
  
.main-nav li {
  display: block;
  float: none;
  padding: 1em 0em;
}
  
.main-nav li:first-child {
  margin-top: 2em;
}

/* 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;
  padding-left: 0;
}

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