.nav-toggle {
	float: right;
	margin: 10px 0 10px;
	background-color: #ffffff;
	border: none;
	width: 48px;
	height: 45px;
	text-indent: -900em;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	outline: none;
	z-index: 5000;
}

.nav-toggle:after {
	content: '';
	position: absolute;
	width: 68%;
	height: 5px;
	background: #a1c41f;
	top: 10px;
	left: 16%;
	box-shadow: 
		0 10px 0 #a1c41f, 
		0 20px 0 #a1c41f;
}

.nav-main {
	display: none;
	float: left;
	width: 100%;
}

.nav-main a {
	text-align: center;
	width: 100%;
	display: block;
}

.nav-main a:hover {
	text-decoration: none;
}

.nav-mobile {
	display: none;
}

@media screen and (min-width: 768px) {

	.nav-toggle {
		float: none;
		display: none !important; /* .js slideToggle */
	}

	.nav-main {
		display: block !important; /* .js slideToggle */
		float: none;
		width: auto;
	}

	.nav-main li {
		float: left;
	}
	
}