nav {
	margin: 0 auto;
	padding: 0;
	width: 90%;
	max-width: 1200px;
	position: relative;
}
.toggle, [id^=drop] {
	display: none;
}
nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
  justify-content: space-between;
  list-style-type: none;
}
nav ul li {
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: normal;
	letter-spacing: 1px;
	line-height: 60px;
	text-transform: uppercase;
	float: left;
	overflow: hidden;
	white-space: nowrap;
}
nav a {
	color: white;
	text-decoration: none;
	display: block;
}
nav a:visited {
	color: white;
	text-decoration: none;
}
nav a:hover {
	color: #99B4E5;
	text-decoration: none;
}
nav a:active {
	color: #E5EEFF;
	text-decoration: none;
}

@media all and (max-width: 769px) {

nav {
	width: 100%;
}
.toggle + a, .menu {
	display: none;
}
.toggle {
	color: white;
	text-align: center;
	display: block;
}
.toggle:hover {
	background-color: none;
}
.menuicon {
	padding: 18px;
	height: 60px;
	width: 60px;
}
[id^=drop]:checked + ul {
	display: block;
}
nav ul {
	float: none;
}
nav ul li {
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: none;
	font-size: 15px;
	line-height: 48px;
	text-align: center !important;
	letter-spacing: 2px;
	display: block;
}
nav a:visited {
	color: white;
	background-color: none;
}
nav a:hover {
	color: #99B4E5;
	background-color: none;
}
nav a:active {
	color: #E5EEFF;
	background-color: none;
}
}