.clear {
	clear: both;
}
/***** Start of primary nav ******/
#menu-button, #menu-button .head-search {
	display: none;
}
nav.mobile {
	display: none;
}
nav.primary {
	padding: 0;
	display: block;
	margin: 0;
	width: 100%;
	position: relative;
}
nav.primary ul {
	margin: 0;
	padding: 0;
}
nav.primary > ul {
	display:flex;
	justify-content: center;
	gap:0 .5vw;
}
nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
}
nav.primary ul li a {
	font-size:clamp(14px, 1.1vw, 18px);
	color: #fff;
	font-family: "Mona Sans", sans-serif;
	text-decoration: none;
	padding:10px 15px;
	display: block;
	margin: 0;
	text-align: center;
	transition: .2s ease-in;
	font-weight:500;
	border-radius: 50px;
	text-shadow: 0 0 5px rgba(0,0,0,0.7);
	white-space: nowrap;
}
nav.primary ul li a i {
	display: none;
}
nav.primary ul li a:hover {
	background-color:#000;
}
nav.primary ul li:hover a {
	background-color:#000;
}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	padding:15px;
	text-align: left;
	border-radius:0px;
	background-color:rgba(0,0,0,0); 
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	opacity: 0.6;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
	border-radius:10px;
	background:#000;
}
nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}
nav.primary ul li:hover>ul {
	display: block!important;
	z-index: 100;
}
nav.primary ul ul li {
	float: none;
	width: auto;
	min-width: 200px;
	position: relative;
	margin: 0;
	display: block;
}



@media screen and (max-width: 1000px) {
	
	
	
	/*==============================
		Mobile Nav Styles			
	================================*/
	nav.primary {
		display: none;
	}
	#menu-button {
		display:flex;
		gap:0 10px;
		align-items: center;
		position: relative;
	}
	#menu-button a {
		font-size: 24px;
		color: #fff;
		cursor: pointer;
	}
	#menu-button a:hover {
		opacity: 0.7;
	}
	nav.mobile {
		display: block;
		position: fixed;
		text-align: left;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #000;
		z-index: 1001;
		/* needs to be higher than #menu-button, adjust as needed */
		overflow: auto;
	}
	/* MENU HEADER SOCIAL MEDIA */
	nav.mobile .social-media {
		position: relative;
		text-decoration: none;
		display: inline-block;
		font-size: 16px;
		word-spacing: 13px;
		padding: 0 0 0 15px;
		
	}
	nav.mobile .social-media a:link,
	nav.mobile .social-media a:visited {
		text-decoration: none;
		color: #fff !important;
	}
	nav.mobile .social-media a:hover,
	nav.mobile .social-media a:active {
		opacity: 0.7;
		text-decoration: underline;
	}
	.mobiletitle {
		padding-left: 20px;
		color: #0a2737;
	}
	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display: block;
		padding: 0;
		margin: 15px 0 10px 0;
		/*margin:40px 0 10px 0;*/
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}
	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		top: -4px;
		/*top:-35px;*/
		right: 13px;
	}
	nav.mobile .menu-toggle:hover {
		/* Menu close button on hoveer */
		color: #fff;
	}
	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin: 0;
		padding: 0;
	}
	nav.mobile ul li {
		position: relative;
	}
	/* FIRST LEVEL */
	nav.mobile ul li a {
		font-family: "Mona Sans", sans-serif;
		position: relative;
		font-size: 14px;
		padding: 10px 10px 10px 15px;
		color: #fff;
		text-decoration: none;
		border-left: 4px #000 solid;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	nav.mobile ul li a:hover {
		background: rgba(45, 45, 45, 0.5);
		color: #fff;
		border-left: 4px #fff solid;
		/* border highlight - Change to fit match site colors */
	}
	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {
		border: none;
	}
	nav.mobile ul li li a {
		background: #333;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left: 4px #333 solid;
		color:#fff;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {
		background: rgba(65, 65, 65, 0.5);
	}
	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {
		border: none;
	}
	nav.mobile ul li li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #fff;
		text-decoration: none;
		border-left: 4px #444 solid;
	}
	nav.mobile ul li li li a:hover {
		background: rgba(85, 85, 85, 0.5);
	}
	/* FOURTH LEVEL */
	
}

@media only screen and (max-width : 768px) {
	#menu-button .head-search {
		display: flex;
	}
}
