.navbar {
	margin: 0 auto;
	padding: 0;
	width: 80%;
	max-width: 1200px;
}
.toggle, [id^=drop] {
	display: none;
}
.navbar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: stretch;
	justify-content: space-evenly;
}
.navbar ul li {
	padding: 0;
	font-size: 17px;
	line-height: 54px;
	text-transform: uppercase;
	display: block;
	flex: 0 1 auto;
}
.navbar a {
	padding-left: 20px;
	padding-right: 20px;
	color: white;
	text-decoration: none;
	display: block;
}
.navbar a:hover {
	color: #996f00;
	text-decoration: none;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.navbar a:active {
	color: #ffe399;
	text-decoration: none;
}


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

.navbar {
	margin: 0;
	padding: 0;
	width: 100%;
}
.toggle + a, .menu {
	display: none;
}
.toggle {
	height: 60px;
	text-align: center;
	display: block;
}
.toggle:hover {
	background-color: #eeaa00;
}
.toggle:active {
	background-color: #ffcc33;
}
.menuicon {
	padding: 16px;
	width: 60px;
	height: 60px;
	display: block;
}
[id^=drop]:checked + ul {
	display: block;
}
.navbar ul {
	display: none;
}
.navbar ul li {
	background-color: none;
	border-top: .5px solid white;
	margin: 0;
	padding: 0;
	width: 100%;
	font-size: 15px;
	line-height: 60px;
	text-align: center;
	display: block;
}
.navbar ul li:last-of-type {
	border-bottom: .5px solid white;
}
.navbar li a {
	display: block;
}
.navbar a:hover {
	background-color: #ffcc33;
	color: white;
}
.navbar a:active {
	background-color: #eeaa00;
	color: white;
}
}