nav {
	font-family: "evelethclean_regular";
	font-size: 75%;
	float: right;
	height: 60px;
	padding: 55px 0;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a, nav ul li a:visited {
  display: block;
  padding: 0 20px;
  line-height: 40px;
  text-decoration: none;
  background: white;
  color: black;
}
nav ul li a:hover, nav ul li a:visited:hover {
  background: white;
  color: #F6B11D;
}
nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
nav ul li ul li {
  min-width: 190px;
  margin: 0;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}
.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  /*box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);*/
}
/* Mobile navigation */
.nav-mobile {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	background-color: white;
	color: black;
	height: auto;
}

/* @media only screen and (max-width: 1159px) { */
@media only screen and (max-width: 999px) {
/* @media only screen and (max-width: 899px) { */
  .nav-mobile {
    display: block;
  }
  nav {
    width: auto;
    padding: 140px 0 15px;
	font-size: 90%;
}
  nav ul {
    display: none;
  }
  nav ul li {
    margin: 0;
    float: none;
	text-align: right;
  }
nav ul li a, nav ul li a:visited {
	background-color: #F6B11D;
	color: white;
    padding: 20px 20px 20px 60px;
    line-height: 20px;
  }
nav ul li a:hover, nav ul li a:visited:hover {
  background: #C83493;
  color: white;
}
  nav ul li ul li a {
    padding-left: 30px;
  }
  .nav-dropdown {
    position: static;
  }
}
/* @media screen and (min-width: 1160px) { */
@media screen and (min-width: 1000px) {
/* @media screen and (min-width: 900px) { */
  .nav-list {
    display: block !important;
  }
}
#nav-toggle {
	position: absolute;
	right: 20px;
	top: 70px;
	cursor: pointer;
	padding: 10px 35px 16px 0px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  cursor: pointer;
  border-radius: 4px;
  height: 5px;
  width: 35px;
  background: black;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}