.clear {
	clear: both;
}
/***** Start of primary nav ******/
#menu-button {display: none;}
nav.mobile {display: none;}
nav.primary {
	display: flex;
	justify-content: center;
	width: auto;
	position: relative;
	font-family: 'Barlow', sans-serif;
	text-transform: uppercase;
	font-weight: 700;
}
nav.primary ul {
	margin: 0;
	padding: 0;
	position: relative;
}
nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
}
nav.primary ul li a {
	color: #fff;
	letter-spacing: 1px;
	padding: 15px .75vw;
	display: block;
	margin: 0;
	text-align: center;
	transition: .2s ease;
	font-weight: 500;
	font-size: 16px;
}
nav.primary ul li a:hover {
	color: #ebebeb;
}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	font-size: 15px;
	padding: 8px 20px;
	text-align: left;
	border-right: none;
	border-left: none;
	background:#fff;
	color: #393939;
	text-transform: uppercase;
	font-weight: 700;
	border-bottom: 1px solid #000;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background: #444;
	color: #fff;
}
nav.primary ul li li li a {background: #ebebeb;}
nav.primary ul li li li a:hover {background: #ffbe00; color: #000!important;}

nav.primary ul li li li li a {background: #fff;}
nav.primary ul li li li a:hover {background: #ffbe00 !important; color: #000!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;
	-moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}
nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}
nav.primary ul li:hover>ul {
	display: block;
	z-index: 100;
}
nav.primary ul ul li {
	float: none;
	width: 333px;
	position: relative;
	margin: 0;
	display: block;
}
/******** Nav Resets ***************/
i.fas.fa-angle-down {padding-left: 3px;}

nav.primary ul li li a i.fas.fa-angle-down {
    padding-top: 10px;
	position: absolute;
	right: 20px;
	transform: rotate(270deg);
}


/******** End of primary Nav ***************/
@media screen and (max-width: 1700px) {
	nav.primary ul li a {font-size: 14.5px;}
}

@media screen and (max-width: 1300px) {
	i.fas.fa-angle-down {padding-left: 0;}
	
	/*==============================
		Mobile Nav Styles			
	================================*/
	nav.primary {
		display: none;
	}
	#menu-button {
		display: block;
		font-size: 36px;
		position: relative;
		line-height: 40px;
		/*z-index: 1000;*/
		text-align: center;		
		font-family: 'Barlow', sans-serif;
		text-transform: uppercase;
		font-weight: 900;
		color: #d0d0d0;
	}
	#menu-button:hover {color: #fff;}
	.menu-toggle span {
		font-size: 14px;
		top: -3px;
		position: relative;
	}
	nav.mobile {
		display: block;
		position: fixed;
		text-align: left;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		z-index: 1002;
		/* needs to be higher than #menu-button, adjust as needed */
		overflow: auto;
		font-family: 'Barlow', sans-serif;
		text-transform: uppercase;
		background: #262626;
	}
	/* 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;
		color: #fff !important;
	}
	nav.mobile .social-media a:link,
	nav.mobile .social-media a:visited {
		color: #fff;
		text-decoration: none;
	}
	nav.mobile .social-media a:hover,
	nav.mobile .social-media a:active {
		color: #fff;;
		text-decoration: underline;
	}
	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display: block;
		padding: 0;
		margin:70px 0 0 0;
	}
	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: 'Roboto', sans-serif;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		background: #000;
		color: #d0d0d0;
		text-decoration: none;
		top:-40px;
		right: 12px;
	}
	nav.mobile .menu-toggle:hover {
		background: none;
		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 {
		position: relative;
		display: block;
		font-size: 16px;
		padding: 15px 20px;
		font-weight: 500;
		letter-spacing: 1px;
		color: #ebebeb;
		-moz-transition: ease all 0.2s;
		-o-transition: ease all 0.2s;
		-webkit-transition: ease all 0.2s;
		transition: ease all 0.2s;
		border-bottom: 1px solid #333;
	}
	nav.mobile ul li a:hover {
		color: #fff;
		background: #393939;
	}
	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {
		border: none;
	}
	nav.mobile ul li li a {
		background: #fff;
		position: relative;
		font-size: 14px;
		display: block;
		line-height: 1.2;
		padding: 15px 20px;
		color:#393939;
		font-weight: 700;
	}
	nav.mobile ul li li a:hover {
		background: #444;
		color: #fff;
	}
	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {
		border: none;
	}
	nav.mobile ul li li li a {
		position: relative;
		display: block;
		line-height: 1.2;
		padding: 15px 20px;
		background: #ebebeb;
	}
	nav.mobile ul li li li a:hover {
		background: #ffbe00;
		color: #000;
	}
	/* FOURTH LEVEL */
	nav.mobile ul li li li li:last-child {
		border: none;
	}
	nav.mobile ul li li li li a {
		position: relative;
		display: block;
		padding: 10px 10px 10px 30px;
		background: #fff;
	}
	nav.mobile ul li li li li a:hover {
		background: #ffbe00;
		color: #000;
	}
	nav.mobile ul li .click {
		/* dropdown menu idicator arrow be sure to include this image with your image files */
		/*position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 17px 20px;
		color:#fff;*/
	}
	.nav-footer {
		color: #999;
		text-transform: none;
		position: relative;
		text-align: center;
		font-size: 14px;
		line-height: 16px;
		padding: 15px 0;
	}
	/* FONT AWESOME ICONS */
	nav.mobile ul li a .fa {
		width: 25px;
		font-weight: 100;
		padding: 8px 3px;
		margin: 0 6px 0 0;
		text-align: center;
		background: #919191;
		border-radius: 30px;
		text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	}
	nav.mobile ul li .fa-chevron-down {
		color: #919191;
	}
}

/* Hide the desktop menu item icons */
.primary li > i {display: none;}

/* Position the mobile menu item icons */
.mobile li i {
	position: absolute;
    top: 15px;
    right: 18px;
    width: 60px;
    height: 30px;
    color: #aaa;
    padding: 3px;
    text-align: right;
}
.mobile li li i {
	position: absolute;
    top: 15px;
    right: 18px;
    width: 60px;
    height: 30px;
    color: #aaa;
    padding: 3px;
    text-align: right;
}

@media screen and (max-width: 1080px) {
}
@media screen and (max-width: 800px) {
}
@media screen and (max-width: 500px) {
	#menu-button {font-size: 40px;}
}
@media screen and (max-width: 450px) {
	#menu-button {font-size: 36px;}
}