.clear {
	clear: both;
}
/***** Start of primary nav ******/
#menu-button {
	display: none;
}
nav.mobile {
	display: none;
}
nav.primary {
	padding:10 10px;
	display: block;
	margin: 0;
	width: 100%;
	position: relative;
	background: #000;
	border-bottom:10px solid #EB1414; 
	box-sizing: border-box;
	border-radius:10px;
}
nav.primary ul {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-around;
	
}
nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
}
nav.primary ul li a {
	color: #fff;
	font-size: clamp(13px, 1vw, 17px);
	font-family: "Inter", sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	padding:15px 10px 10px 10px;
	display: block;
	margin: 0;
	text-align: center;
	transition: .2s ease-in;
	font-weight: 700;
	cursor: pointer;
}
nav.primary ul li a i {
	display: none;
}
nav.primary ul li a:hover {
	background-color:#EB1414;
}
nav.primary ul li:hover a {
	background-color:#EB1414;
}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	background-color:#EB1414;
	color:#fff;
	text-align: left;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background-color:#3e3e3e;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
}
nav.primary ul li:last-of-type ul {
	right:0;
}
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;
}

/******** End of primary Nav ***************/

@media screen and (max-width: 1000px) {
	/*==============================
		Mobile Nav Styles			
	================================*/
	nav.primary {
		display: none;
	}
	#menu-button {
		display: block;
	}
	#menu-button a {
		color:#EB1414;
		font-size:24px;
		cursor: pointer;
	}
	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;
	}
	.highlightSidebars nav.mobile {
		padding-top: 150px;
		box-sizing: border-box;
	}
	/* MENU HEADER SOCIAL MEDIA */


	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display: flex;
		padding:10px;
		width: 100%;
		justify-content: space-between;
		align-items: center;
		gap:5px;
		box-sizing: border-box;
	}
	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		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;
		cursor: pointer;
	}
	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 {
		border-top: 1px solid #454545;
		border-bottom: 1px solid #151515;
		position: relative;
	}
	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 14px;
		padding: 10px 10px 10px 15px;
		color: #fff;
		text-decoration: none;
		border-left: 4px #333 solid;
		cursor: pointer;
	}
	nav.mobile ul li a:hover {
		background: rgba(45, 45, 45, 0.5);
		color: #fff;
		border-left: 4px #EB1414 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:#3e3e3e;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left: 4px #444 solid;
		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: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		text-decoration: none;
		border-left: 4px #555 solid;
	}
	nav.mobile ul li li li a:hover {
		background: rgba(85, 85, 85, 0.5);
	}
	/* FOURTH LEVEL */
	nav.mobile ul li li li li:last-child {
		border: none;
	}
	nav.mobile ul li li li li a {
		background: #777;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		text-decoration: none;
		border-left: 4px #555 solid;
	}
	nav.mobile ul li li li li a:hover {
		background: rgba(85, 85, 85, 0.5);
	}
}
