.toggle, [id^=drop] {
  display: none;
}

nav {
  float: left;
  margin: 0;
  padding: 0;
  background-color: #265832;
  width: 100%;
}

/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */
nav:after {
  content: "";
  display: table;
  clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
  margin: 0px;
  display: inline-block;
  float: left;
  background-color: #265832;
}

/* Styling the links */
nav a {
  display: block;
  padding: 14px 20px;
  color: #b6c73a;
  font-size: 15px;
  text-decoration: none;
}

nav ul li ul li:hover {
  background: #000000;
}

/* Background color change on Hover */
nav a:hover {
  background-color: #b6c73a;
  color: #265832;
}

nav ul ul {
  display: none;
  position: absolute;
  /* has to be the same number as the "line-height" of "nav a" */
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
  display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
  width: 250px;
  float: none;
  display: list-item;
  position: relative;
  z-index: 1;
}

/* Second, Third and more Tiers
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
  position: relative;
  top: -60px;
  /* has to be the same number as the "width" of "nav ul ul li" */
  left: 250px;
}

/* Change ' +' in order to change the Dropdown symbol */
li>a:after {
  content: ' ▾';
}

li>a:only-child:after {
  content: '';
}

.selected {
  text-decoration: underline;
  text-decoration-color: #b6c73a;
  border-bottom: 10px;
}

@media screen and (min-width: 1224px) {
  .hamburger {
    display: none;
    color: red;
  }
}

@media screen and (max-width: 1223px) {
  #container {
    font-size: 125%;
  }

  nav#menu {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .fa {
    color: #b6c73a;
  }

  .fa:hover {
    color: #265832;
    background-color: #b6c73a;
    text-decoration: none;
  }

  #mmenu {
    float: left;
    height: auto;
    width: 100%;
    background-color: #265832;
  }

  nav ul li {
    width: 100%;
    height: auto;
  }

  nav:after, li>a:after {
    content: none;
  }

  li>a:only-child:after {
    content: none;
  }

  .mm-menu a {
    color: #b6c73a !important;
    background-color: #265832 !important;
    font-size: 150%;
  }

  .mm-menu a:hover {
    background-color: #b6c73a !important;
    color: #265832 !important;
    font-size: 150%;
  }
}

a {
  color: #265832;
  text-decoration: none;
}

a:hover {
  color: #b6c73a;
  text-decoration: none;
}