﻿
.clear{clear:both;}
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/***** Start of primary nav ******/
#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:0px;
	display:flex;
	justify-content: center;
	margin: 0;
	position:relative;
	width:100%;
	background: #53b648;
	
	}
	nav.primary ul {
		margin:0; 
		padding:0;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			width:auto;
			}
			nav.primary ul li a {
				color:#fff;
				font-size:16px !important;
				line-height:20px;
				text-decoration:none;
				position:relative;
				display:block;
				margin:0px 2px;
				text-align:center;
				text-transform:uppercase;
				-webkit-transition:.4s ease-in;  
				-moz-transition:.2s ease-in;  
				-o-transition:.2s ease-in;  
				transition:.2s ease-in;	
				font-weight:700;
				padding:15px 5px;
				font-family: 'Open Sans', Arial, sans-serif;
				}	
			nav.primary ul li a:hover {
				background: #489C3E;
				color:#fff;
				}


/******** End of primary Nav ***************/

@media screen and (max-width: 1240px)  {

/*==============================
	Mobile Nav Styles			
================================*/	
nav.primary{display:none;}
#menu-button{ 
	width: 100%;
	display: flex;
	justify-content: center;
	font-size: 20px;
	position: relative;
	z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	background: #53b648;
	text-align: right;
	margin-top:-5px;
	cursor: pointer;
	}
	#menu-button a{
		 color:#fff;
		 text-decoration: none;
		padding: 5px;
		 font-weight:700;
		text-transform:uppercase;
	  }
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #53b648;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}

/* MENU CLOSE 'X' BUTTON */
nav.mobile .menu-toggle {
	position: absolute;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size:40px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	top: 5px;
	right:13px;
	cursor: pointer;
}

/* MENU LIST STYLE */
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
	margin-top: 55px;
}
nav.mobile ul li {
	border-bottom: .5px solid #fff;
	position:relative;
}
	
	nav.mobile ul .first-li {
		border-top: .5px solid #fff;
	}

/* FIRST LEVEL */
nav.mobile ul li a {
	position: relative;
	display: block;
	font-size:16px;
	font-weight: 700;
	padding: 10px 15px;
	color: #fff;
	text-decoration: none;
	text-align: left;
}
nav.mobile ul li a:hover {
	background:rgba(45,45,45,0.5); 
	color: #fff; 
}

@media screen and (max-width: 1020px)  {
	#menu-button{width:100%;}
}

@media screen and (max-width:450px){
	#menu-button{width:100%;}
}