/* MENU STYLING */
.navMenu {
  position: absolute;
  top: -10px;
  width: 100%;
  max-width: 900px;
  min-width: 360px;
  height: 40px;
  background-color: black;
}

/* NAV MENU LEVEL 1 (TOP)*/
nav ul {
  position: absolute;
  top: 0px;
  right: 30px;
  font-size: 14px;
}
nav ul li {
  position: relative;
  list-style: none;
  float: left;
}
nav ul li a {
  color: lightgrey;
  background-color: black;
  font-size: 1.1em;
  padding: 4px 12px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}
nav ul li a:hover {
  color: lightsteelblue;
}
nav ul li a.active {
  color: beige;
}
/* NAV MENU LEVEL 2 */
nav ul li ul {
  position: absolute;
  top: 26px;
  left: 0px;
  width: 80px;
  background-color: black;
  display: none;
}
nav ul li:hover > ul {
  display: block;
  z-index: 999;
}
nav ul li ul li {
  position: relative;
  left: -40px;
  width: 180px;
  border: 1px solid #666;
  font-size: 0.8em;
}
/* NAV MENU LEVEL 3 */
nav ul li ul li ul {
  position: absolute;
  top: 0px;
  left: 180px;
}
.menuToggleLinks {
  position: relative;
  float: left;
  top: 4px;
}

@media screen and (max-width: 500px) {
  header {
    padding: 0px;
  }
  nav ul {
    padding-left: 0px;
    left: 0;
  }
  .navMenu {
    height: 30px;
  }
  nav {
    position: absolute;
    width: 100%;
    top: 37px;
    left: 0px;
    background-color: black;
    display: none;
  }
  header div.active nav {
    display: initial;
    top: 24px;
    z-index: 999;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li ul {
    position: relative;
    top: 0px;
    left: 40px;
    width: 100%;
  }
  nav ul li ul li {
    width: 100%;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }
  nav ul li ul li ul {
    position: relative;
    top: 0px;
    left: 40px;
    width: 100%;
  }
  nav ul li ul li ul li {
    width: 100%;
  }
  nav ul li ul li ul li a {
    padding-left: 60px;
  }
  .menuToggle {
    position: relative;
    width: 20px;
    height: 20px;
    top: 12px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
    margin-right: 10px;
  }
  .menuToggle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px #fff;
  }
  .menuToggle::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: translateY(5px);
    box-shadow: 0 5px #fff;
  }
  .menuToggleLinks {
    position: relative;
    float: left;
    top: 4px;
  }
  .navMenu.active .menuToggle::before {
    transform: rotate(45deg);
    box-shadow: 0 0 #fff;
  }
  .navMenu.active .menuToggle::after {
    transform: rotate(315deg);
    box-shadow: 0 0 #fff;
  }
  .special-footer {
    height: 20px;
    line-height: 20px;
    word-wrap: normal;
  }
}

/* END RESPONSIVE MENU STYLING */
