nav {
	background-color: black !important;
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
}
main-nav {
	border-bottom: 2px solid #8db863;
	background: #fff;
}

#main-menu > li > a {
	text-transform: uppercase;
}
.sm-mint > li > a{
	text-transform: capitalize;
}
.main-nav:after {
	clear: both;
	content: "\00a0";
	display: block;
	height: 0;
	font: 0px/0 serif;
	overflow: hidden;
}
.nav-brand {
	float: left;
	margin: 0;
}
.nav-brand a {
	display: block;
	padding: 11px 11px 11px 20px;
	color: #333;
	font-size: 22px;
	font-weight: normal;
	line-height: 17px;
	text-decoration: none;
}
#main-menu {
	clear: both;
	border-bottom: 0;
	margin-top: 1.8em !important;
}
@media(max-width: 767px){
	#main-menu li a{
	color: white !important;
}
}

@media (min-width: 768px) {
#main-menu {
	float: right;
	clear: none;
}
	


}
/* Mobile menu toggle button */

.main-menu-btn {
	float: right;
	padding: 45px 22px;
	position: relative;
	display: inline-block;
	width: 34px;
	height: 29px;
	text-indent: 29px;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* hamburger icon */

.main-menu-btn-icon, .main-menu-btn-icon:before, .main-menu-btn-icon:after {
	position: absolute;
	top: 50%;
	left: 0;
	height: 4px;
	width: 34px;
	background: #fff;
	-webkit-transition: all 0.25s;
	transition: all 0.25s;
	border-radius: 2px !important;
}
.main-menu-btn-icon:before {
	content: '';
	top: -9px;
	left: 0;
}
.main-menu-btn-icon:after {
	content: '';
	top: 9px;
	left: 0;
}
/* x icon */

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
	height: 0;
	background: transparent;
}
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
	top: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
	top: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* hide menu state checkbox (keep it visible to screen readers) */

#main-menu-state {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}
/* hide the menu in mobile view */

#main-menu-state:not(:checked) ~ #main-menu {
	display: none;
}
#main-menu-state:checked ~ #main-menu {
	display: block;
}

@media (min-width: 768px) {
/* hide the button in desktop view */
.main-menu-btn {
	position: absolute;
	top: -99999px;
}
/* always show the menu in desktop view */
#main-menu-state:not(:checked) ~ #main-menu {
	display: block;
}
}
