@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

.clear {
	clear: both;
}

/*---CSS custom properties ---*/
:root { --primary: #071A37; 
	--secondary: #F3B829; 
	--heading: 'Oswald', sans-serif; 
	--body: 'Arial', sans-serif; }
/***** 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;
	text-align: right;
}
nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
	position: relative;
}
nav.primary ul li a {
	color: #fff !important;
	font-family: var(--heading);
	text-transform: uppercase;
	font-size: 17px;
	letter-spacing: .5px;
	line-height: 20px;
	text-decoration: none;
	padding: 24px 26px 20px 26px;
	border-bottom: solid 4px transparent;
	display: block;
	margin: 0;
	text-align: center;
	transition: color .25s ease, border-color .25s ease, background-color .25s ease;
	font-weight: 400;
}
nav.primary ul li:hover > a,
nav.primary ul li:focus-within > a {
	border-bottom-color: var(--secondary);
	color: #fff !important;
	background: rgba(255, 255, 255, 0.06);
}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	font-size: 15px;
	line-height: 1.35;
	padding: 12px 18px;
	text-align: left;
	background: #fff;
	border-bottom: 1px solid #e6ebf1;
	color: var(--primary) !important;
	font-family: var(--body);
	text-transform: none;
	font-weight: 600;
	letter-spacing: .2px;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background: #f6f8fb;
	color: var(--primary) !important;
	padding-left: 22px;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
	background: #fff;
	border-top: 3px solid var(--secondary);
	min-width: 200px;
	box-shadow: 0 14px 34px rgba(7, 26, 55, 0.22);
	z-index: 100;
}
nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
	margin-left: 1px;
}
nav.primary ul li:hover>ul {
	display: block;
	line-height: 1.35;
}
nav.primary ul ul li {
	float: none;
	width: 200px;
	position: relative;
	margin: 0;
	display: block;
}
/******** Nav Resets ***************/
i.fas.fa-angle-down {
    padding-left: 3px;
    padding-top: 2px;
    font-size: 13px;
}


/******** End of primary Nav ***************/
@media screen and (max-width: 1480px) {
	nav.primary ul li a {
		font-size: 15px;
		padding: 22px 18px 18px 18px;
	}
	nav.primary ul ul li {
		width: 240px;
	}
	nav.primary ul li li a {
		font-size: 14px;
	}
}
@media screen and (max-width: 1150px) {
	nav.primary ul li a {
		padding: 18px 8px;
		font-size: 15px;
	}
}
@media screen and (max-width: 1000px) {
	/*==============================
		Mobile Nav Styles			
	================================*/
	nav.primary {
		display: none;
	}
	#menu-button {
		width: 100%;
		display: block;
		font-size: 20px;
		position: relative;
		line-height: 1;
		z-index: 1000;
		text-align: right;
		padding-top: 8px;
	}
	#menu-button a {
		color: var(--primary);
		text-decoration: none;
		font-weight: 600;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 10px 14px;
		border-radius: 4px;
		background: var(--secondary);
		text-transform: uppercase;
		font-family: var(--heading);
		letter-spacing: .5px;
		box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
	}
	#menu-button a:hover {
		background: #ffd770;
	}
	.menu-toggle span {
		font-size: 18px;
	}
	nav.mobile {
		display: block;
		position: fixed;
		text-align: left;
		top: 0;
		left: -100%;
		width: min(320px, 86vw);
		height: 100%;
		background: #fff;
		z-index: 1001;
		overflow: auto;
		border-right: 1px solid #dde3eb;
		box-shadow: 10px 0 32px rgba(7, 26, 55, 0.2);
	}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display: block;
		padding: 20px 16px 25px 14px;
		margin: 0;
		background: var(--primary);
		color: #fff;
		font-size: 17px;
		font-weight: 400;
		font-family: var(--heading);
		letter-spacing: .4px;
		text-transform: uppercase;
	}
	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 2px 10px 4px;
		font-size: 40px;
		font-weight: 300;
		line-height: 1;
		background: transparent;
		color: #fff;
		text-decoration: none;
		top: 0px;
		right: 10px;
	}
	nav.mobile .menu-toggle:hover {
		color: var(--secondary);
	}
	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 400;
		margin: 0;
		padding: 0;
	}
	nav.mobile ul li {
		border-bottom: 1px solid #e7edf4;
		position: relative;
	}
	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size: 16px;
		padding: 13px 18px;
		color: var(--primary);
		text-decoration: none;
		border-left: 3px solid transparent;
		font-family: var(--heading);
		letter-spacing: .4px;
		text-transform: uppercase;
		transition: background-color .2s ease, border-color .2s ease, color .2s ease;
	}
	nav.mobile ul li.current-menu-item > a,
	nav.mobile ul li.current-menu-ancestor > a {
		border-left-color: var(--secondary);
		background: #f8fafc;
	}
	nav.mobile ul li a:hover {
		background: #f1f5fa;
		color: var(--primary);
		border-left-color: var(--secondary);
	}
	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {
		border: none;
	}
	nav.mobile ul li li a {
		background: #fbfcfe;
		padding: 11px 18px 11px 26px;
		border-left: 3px solid transparent;
		font-family: var(--body);
		font-size: 15px;
		font-weight: 600;
		text-transform: none;
		letter-spacing: 0;
	}
	nav.mobile ul li li a:hover {
		background: #f2f6fb;
		border-left-color: var(--secondary);
	}
	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {
		border: none;
	}
	nav.mobile ul li li li a {
		background: #f6f9fd;
		padding: 10px 18px 10px 36px;
		color: var(--primary);
		border-left: 3px solid transparent;
		font-size: 14px;
	}
	nav.mobile ul li li li a:hover {
		background: #edf3f9;
		border-left-color: var(--secondary);
	}
	/* FOURTH LEVEL */
	nav.mobile ul li li li li:last-child {
		border: none;
	}
	nav.mobile ul li li li li a {
		background: #f3f7fc;
		padding: 10px 18px 10px 44px;
		color: var(--primary);
		border-left: 3px solid transparent;
		font-size: 14px;
	}
	nav.mobile ul li li li li a:hover {
		background: #eaf1f8;
		border-left-color: var(--secondary);
	}
	nav.mobile ul li .click {
		z-index: 2;
	}
	.nav-footer {
		color: #55708d;
		position: relative;
		text-align: center;
		font-size: 14px;
		line-height: 16px;
		padding: 18px 12px;
	}
	/* FONT AWESOME ICONS */
	nav.mobile ul li a .fa {
		width: 24px;
		font-weight: 400;
		padding: 4px 3px;
		margin: 0 8px 0 0;
		text-align: center;
		background: #eef2f7;
		border-radius: 18px;
		text-shadow: none;
	}
	nav.mobile ul li .fa-chevron-down {
		color: var(--primary);
	}
	.more {
		position: absolute;
		right: 14px;
		top: 12px;
	}
	.mobilefooterlogo {
		text-align: center;
		margin: 10px auto 0;
		transform: scale(0.9);
	}
}
@media screen and (max-width: 500px) {
	#menu-button {
		text-align: center;
	}
	#menu-button a {
		font-size: 16px;
		padding: 10px 12px;
	}
	nav.mobile {
		width: 100%;
	}
}
/* Hide the desktop menu item icons */
.primary li > i {
	display: none;
}
/* Position the mobile menu item icons */
.mobile li i {
	position: absolute;
	top: 10px;
	right: 12px;
	font-size: 16px;
	background: #eef2f7;
	color: var(--primary);
	padding: 4px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}