.navbar {
	width: 94%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	clear: both;
}
.toggle, [id^=drop] {
	display: none;
}
.navbar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.navbar ul li {
	padding: 0 12px;
	font-size: 16px;
	font-weight: bold;
  text-transform: uppercase;
  line-height: 60px;
	flex: 0 1 auto;
	display: block;
}
.navbar li a {
	display: block;
}
.navbar a {
	color: white;
	text-decoration: none;
}
.navbar a:visited {
	color: white;
	text-decoration: none;
}
.navbar a:hover {
  color: #33bbdd;
	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: #33bbdd;
	text-decoration: none;
}


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

.navbar {
	width: 100%;
	margin: 0;
	padding: 0;
}
.toggle + a, .menu {
	display: none;
}
.toggle {
	height: 54px;
	text-align: center;
	display: block;
}
.toggle:hover {
	background-color: inherit;
}
.menuicon {
  padding: 10px;
	width: 54px;
	height: 54px;
	display: block;
}
[id^=drop]:checked + ul {
	display: block;
}
	
	
	
	
	
	
	
	
	
	
	
.navbar ul {
	display: none;
}
.navbar ul li {
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: none;
	font-size: 16px;
	line-height: 48px;
	text-align: center !important;
	display: block;
}
.navbar li a {
	display: block;
}
.navbar a:hover {
	color: white;
	background-color: #4c86d5;
}
.navbar a:active {
	color: inherit;
	background-color: none;
}
}