@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.clear {
	clear: both;
}
/***** Start of primary nav ******/
#menu-button {
	display: none;
}
nav.mobile {
	display: none;
}
nav.primary {
	padding: 0;
	display: flex;
	flex-direction:row;
	margin: 0;
	width: 100%;
	position: relative;
}
nav.primary ul {
	margin: 0;
	padding: 0;
	display:flex; 
	flex-direction:row;
	justify-content: flex-end;
	align-content:center; 
	flex-wrap:wrap;
}
nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
}
nav.primary ul li a {
	color: #111 !important;
	font-family: 'Barlow', sans-serif;
	text-transform: uppercase;
	line-height: 20px;
	letter-spacing:.35px;
	text-decoration: none;
	padding: 10px 12px;
	display: block;
	margin: 0;
	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;
}
nav.primary ul li a:hover {
	background-color:#E0E0E0;

}
.mobile-link{display:none!important;}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	font-size: 16px;
	line-height: 1.25;
	padding: 11px 14px;
	text-align: left;
	border-right: none;
	border-left: none;
	background: #fff;
	border-bottom: #e5e7eb solid 1px;
	color: #3e424b !important;
	font-family: 'Barlow', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: .45px;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background: #f7f7f7;
	color: #cc1520 !important;
}
/* 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 #cc1520;
	-moz-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.18);
	-webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.18);
	box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.18);
}
nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}
nav.primary ul li:hover>ul {
	display: block;
	line-height: 18px;
	z-index: 100;
}
nav.primary ul ul li {
	float: none;
	width: 310px;
	position: relative;
	margin: 0;
	display: block;
}
/******** Nav Resets ***************/
i.fas.fa-angle-down {
    padding-left: 3px;
    padding-top: 3px;
}


/******** End of primary Nav ***************/
@media screen and (max-width: 1480px) {
	nav.primary ul li a {
		font-size: 15px;
	}
	nav.primary ul ul li {
		width: 240px;
	}
	nav.primary ul li li a {
		font-size: 13px;
	}
}
@media screen and (max-width: 1200px) {
	nav.primary ul li a {
		padding: 10px 5px;
		font-size: 14px;
	}
}
@media screen and (max-width: 1000px) {
	/*==============================
		Mobile Nav Styles			
	================================*/
	.mobile-link{display:block!important;}
	nav.primary {
		display: none;
	}
	#menu-button {
		width: 100%;
		display: block;
		font-size: 24px;
		position: relative;
		line-height: 40px;
		z-index: 1000;
		/* needs to be lower than nav.mobile, adjust as needed */
		text-align: right;
		padding-top: 6px;
	}
	#menu-button a {
		display: inline-block;
		color: #fff;
		background: #cc1520;
		border: 1px solid #cc1520;
		text-decoration: none;
		text-align: center;
		font-weight: 600;
		font-family: 'Barlow Condensed', sans-serif;
		text-transform: uppercase;
		letter-spacing: .7px;
		line-height: 1;
		padding: 12px 16px;
		transition: background-color .2s ease, color .2s ease;
	}
	#menu-button a:hover {
		background: #fff;
		color: #cc1520;
	}
	.menu-toggle span {
		font-size: 20px;
	}
	nav.mobile {
		display: block;
		position: fixed;
		text-align: left;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: #fff;
		z-index: 1001;
		/* needs to be higher than #menu-button, adjust as needed */
		overflow: auto;
		box-shadow: 10px 0 28px rgba(0, 0, 0, 0.22);
	}
	/* MENU HEADER SOCIAL MEDIA */
	nav.mobile .social-media {
		position: relative;
		text-decoration: none;
		display: inline-block;
		font-size: 18px;
		word-spacing: 10px;
		padding: 0 0 0 18px;
		color: #fff !important;
	}
	nav.mobile .social-media a:link,
	nav.mobile .social-media a:visited {
		color: #fff;
		text-decoration: none;
		opacity: .92;
	}
	nav.mobile .social-media a:hover,
	nav.mobile .social-media a:active {
		color: #fff;
		opacity: 1;
		text-decoration: none;
	}
	.mobiletitle {
		padding-left: 18px;
		color: #fff;
		font-family: 'Barlow Condensed', sans-serif;
		font-size: 24px;
		font-weight: 700;
		letter-spacing: .8px;
		margin: 0;
	}
	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display: block;
		padding: 14px 0 10px;
		margin: 0;
		/*margin:40px 0 10px 0;*/
		color: #fff;
		background: #111;
		font-size: 18px;
		font-weight: 500;
	}
	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 1px 8px 3px;
		font-family: 'Barlow', sans-serif;
		font-size: 34px;
		font-weight: 500;
		line-height: 1;
		background: transparent;
		color: #fff;
		text-decoration: none;
		top: 3px;
		/*top:-35px;*/
		right: 10px;
	}
	nav.mobile .menu-toggle:hover {
		/* Menu close button on hoveer */
		color: #f4b3b8;
	}
	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 400;
		margin: 0;
		padding: 0;
	}
	nav.mobile ul li {
		border-top: 1px solid #e5e7eb;
		border-bottom: none;
		position: relative;
	}
	nav.mobile ul li:first-child {
		border-top: none;
	}
	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size: 18px;
		font-family: 'Barlow Condensed', sans-serif;
		font-weight: 700;
		letter-spacing: .6px;
		padding: 12px 12px 12px 18px;
		color: #111;
		text-decoration: none;
		text-transform: uppercase;
		border-left: 4px transparent solid;
		text-shadow: none;
		transition: background-color .2s ease, color .2s ease, border-color .2s ease;
	}
	nav.mobile ul li a:hover {
		background: #f7f7f7;
		color: #cc1520;
		border-left: 4px #cc1520 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: #fdfdfd;
		position: relative;
		display: block;
		padding: 10px 12px 10px 30px;
		border-left: 4px #d9dce3 solid;
		color: #3e424b;
		text-decoration: none;
		font-size: 16px;
		font-family: 'Barlow', sans-serif;
		font-weight: 600;
	}
	nav.mobile ul li li a:hover {
		background: #f3f4f6;
		color: #cc1520;
		border-left-color: #cc1520;
	}
	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {
		border: none;
	}
	nav.mobile ul li li li a {
		background: #fafafa;
		position: relative;
		display: block;
		padding: 10px 12px 10px 42px;
		color: #3e424b;
		text-decoration: none;
		border-left: 4px #d9dce3 solid;
		font-size: 15px;
	}
	nav.mobile ul li li li a:hover {
		background: #f3f4f6;
		color: #cc1520;
		border-left-color: #cc1520;
	}
	/* FOURTH LEVEL */
	nav.mobile ul li li li li:last-child {
		border: none;
	}
	nav.mobile ul li li li li a {
		background: #f7f7f7;
		position: relative;
		display: block;
		padding: 10px 12px 10px 52px;
		color: #3e424b;
		text-decoration: none;
		border-left: 4px #d9dce3 solid;
		font-size: 14px;
	}
	nav.mobile ul li li li li a:hover {
		background: #f3f4f6;
		color: #cc1520;
		border-left-color: #cc1520;
	}
	.nav-footer {
		color: #3e424b;
		position: relative;
		text-align: center;
		font-size: 14px;
		line-height: 16px;
		padding: 15px 0;
		border-top: 1px solid #e5e7eb;
	}
	/* FONT AWESOME ICONS */
	nav.mobile ul li a .fa {
		width: 25px;
		font-weight: 100;
		padding: 6px 3px;
		margin: 0 6px 0 0;
		text-align: center;
		background: #f1f1f1;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		text-shadow: none;
	}
	nav.mobile ul li .fa-chevron-down {
		color: #cc1520;
	}
	.more {
		position: absolute;
		right: 5%;
		color: #cc1520;
	}
	.mobilefooterlogo {
		text-align: center;
		margin: 0 auto;
		transform: scale(0.9);
	}
}
@media screen and (max-width: 500px) {
	#menu-button {
		text-align: center;
	}
}
/* Hide the desktop menu item icons */
.primary li > i {
	display: none;
}
/* Position the mobile menu item icons */
.mobile li i {
	position: absolute;
	top: 13px;
}