.clear {
	clear: both;
}
/***** Start of primary nav ******/
#menu-button {
	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;
}
nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
	transition: .2s ease-in;
}
nav.primary ul li a {
	font-family: "Outfit", sans-serif;
	color: #fff;
	text-transform: uppercase;
	font-size:clamp(12px, 1vw, 16px);
	text-decoration: none;
	padding:10px 15px;
	display: block;
	margin: 0;
	text-align: center;
	transition: .2s ease-in;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
}
nav.primary ul li a i {
	display: none;
}
nav.primary ul li a:hover {
	background-color:#dc3545;
}
nav.primary ul li:hover a {
	background-color:#dc3545;
}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	background-color:#dc3545;
	padding:15px;
	text-align: left;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background-color:#000;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
	z-index: 100;
}
nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
	flex-wrap: wrap;
	width: 450px;
	align-items: stretch;
}
nav.primary ul li:hover>ul {
	display: block!important;
}
nav.primary ul ul li:hover>ul {
	display: flex!important;
}
nav.primary ul ul li {
	float: none;
	width: auto;
	min-width:150px;
	position: relative;
	margin: 0;
	display: block;
}
nav.primary ul ul ul li {
	width: 50%;
}
nav.primary ul ul ul li a {
	background:#BF2D3B!important;
	white-space: normal;
	display: flex;
	align-items: center;
	height: 100%;
}
nav.primary ul ul ul li a:hover {
	background:#000!important;
}



/******** End of primary Nav ***************/

@media screen and (max-width: 1300px) {
	nav.primary ul li a {
		padding: 10px;
	}
}
@media screen and (max-width: 1079px) {
	/*==============================
		Mobile Nav Styles			
	================================*/
	nav.primary {
		display: none;
	}
	#menu-button {
		display: flex;
		justify-content: center;
		align-items: center;
		padding:20px;
		box-sizing: border-box;
		width: 50%;
	}
	#menu-button a {
		color:#fff;
		font-size: 30px;
		cursor: pointer;
	}

	nav.mobile {
		display: block;
		position: fixed;
		text-align: left;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background:#ededed;
		z-index: 1001;
		overflow: auto;
	}
	/* MENU HEADER SOCIAL MEDIA */
	
	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display: flex;
		justify-content: flex-end;
		width: 100%;
		padding:10px;
		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;
		color: #000;
		text-decoration: none;
	}
	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: "Outfit", sans-serif;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 16px;
		font-weight: 600;
		padding: 10px 10px 10px 15px;
		color:#0a2737;
		text-decoration: none;
		border-left: 4px #f0f0f0 solid;
		cursor: pointer;
	}
	nav.mobile ul li a i {
		font-size: 20px;
	}
	nav.mobile ul li a:hover {
		background: rgba(45, 45, 45, 0.5);
		color: #fff;
		border-left: 4px #dc3545 solid;
	}
	/* SECOND LEVEL */
	nav.mobile ul li li a {
		background:#DDDDDD;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left: 4px #DDDDDD solid;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {
		background: rgba(65, 65, 65, 0.5);
		color: #fff;
		border-left: 4px #dc3545 solid;
	}
	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {
		border: none;
	}
	nav.mobile ul li li li a {
		background:#D3D3D3;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		text-decoration: none;
		border-left: 4px #D3D3D3 solid;
	}
	nav.mobile ul li li li a:hover {
		background: rgba(85, 85, 85, 0.5);
		color: #fff;
		border-left: 4px #dc3545 solid;
	}
	/* 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);
		color: #fff;
		border-left: 4px #dc3545 solid;
	}
	.nav-footer {
		font-size: 10px;
		text-align: center;
		color:#000;
	}

}
