﻿
.clear{clear:both;}
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800&display=swap');
@import url("https://use.typekit.net/xlf4yui.css");
/***** Start of primary nav ******/
#menu-button{display: none;}
nav.mobile, .mobile-menu { display:none;}
.nav-background {position: absolute; top: 25px; left: 0; right: 0;z-index: 2;}

nav.primary {
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	gap: 16px;
	}
	nav.primary ul {
		margin:0; 
		padding:0;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			width:auto;
			}
			nav.primary ul li a {
				color:#fff;
				font-size:17px !important;
				line-height:20px;
				text-decoration:none;
				position:relative;
				display:block;
				margin:0px 1px;
				text-align:center;
				text-transform:uppercase;
				-webkit-transition:.4s ease-in;  
				-moz-transition:.4s ease-in;  
				-o-transition:.4s ease-in;  
				transition:.4s ease-in;	
				font-weight:400;
				padding:15px;
				font-family: 'roboto', sans-serif;
				cursor: pointer;
				}	
			nav.primary ul li a:hover {
				background: var(--red);
				border-radius: 30px;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:20px;
				letter-spacing: .2px;
				line-height:24px;
				padding:15px;
				color: var(--dark-grey);
				background-color: #fff;
				text-align:left;
				margin: 0;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				background-color:var(--red);
				border-radius: 0px;
				color: #fff;
			}
/* 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 ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 1000;
}
nav.primary ul ul li {
    float: none; 
	width: 220px;
    position: relative;
    margin:0;
	display: block;
}

/** header styles **/
.location-header {display: flex; justify-content: center; margin-bottom: 20px;}
.location-header a {font-family: 'roboto', sans-serif; color: #fff; font-size: 16px;}
.location-header i {margin-right: 20px;padding: 12px 14px; background: rgba(255, 255, 255, 0.30); border-radius: 30px;}

nav.primary i.fa-angle-down{color:#E76806;}

nav.primary ul li:hover i.fa-angle-down{color:#fff;}

.logo-desktop img, .logo-mobile img{max-width: 240px; width: 100%;}
.logo-mobile{
margin-right: 30px;
}

@media screen and (max-width: 1660px){
	.logo-desktop{max-width: 180px;}
}

@media screen and (max-width: 1540px)  {
	nav.primary ul li a {margin: 0; padding: 6px; font-size: 15px !important;}
	nav.primary ul li li a {padding: 6px; font-size: 14px;}
	
}

/******** End of primary Nav ***************/

@media screen and (max-width: 1300px)  {
	.mobile-menu {display: flex; justify-content: space-between; align-items: center;}
/*==============================
	Mobile Nav Styles			
================================*/	
nav.primary{display:none;}
#menu-button{ 
	display: inline-block;
	font-size: 24px;
	position: relative;
	line-height:60px; 
	z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	text-align: right;
	}
	#menu-button a{
		 color:#fff;
		 text-decoration: none;
		 font-weight:700;
		 font-size: 40px;
		cursor: pointer;
	  }
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #fff;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}

/* MENU CLOSE 'X' BUTTON */
nav.mobile .menu-toggle {
	position: absolute;
	padding: 3px 8px 3px;
	font-family: Arial, sans-serif;
	font-size:24px;
	font-weight: bold;
	line-height: 1;
	background: transparent;
	color: var(--dark-grey);
	text-decoration: none;
	top: 10px;
	right:13px;
	cursor: pointer;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	color: #fff;
	border-radius: 30px;
	background: var(--red);
}

/* MENU LIST STYLE */
nav.mobile ul {
	list-style: none;
	font-weight: 300;
	margin:0;
	padding:0;
}
nav.mobile ul li {
	position:relative;
}
	
	.top-ul {margin-top: 50px!important;}

/* FIRST LEVEL */
nav.mobile ul li a {
	position: relative;
	display: block;
	font-size:17px;
	padding: 15px;
	color: var(--dark-grey);
	text-decoration: none;
	cursor: pointer;
	text-align: left;
	font-family: 'roboto', sans-serif;
	font-weight: 500;
}
nav.mobile ul li a:hover {
	background:var(--red); 
	color: #fff; 
}

/* SECOND LEVEL */
nav.mobile ul li li:last-child {border:none;}
nav.mobile ul li li a {
	background: var(--grey);
	position: relative;
	display: block;
	padding: 15px;
	color: var(--dark-grey);
	text-decoration: none;
}
nav.mobile ul li li a:hover {background:var(--red);}

/* THIRD LEVEL */
nav.mobile ul li li li:last-child {border:none;}
nav.mobile ul li li li a {
	background: var(--light-grey);
	position: relative;
	display: block;
	padding: 15px;
	color:  var(--dark-grey);
	text-decoration: none;
}
nav.mobile ul li li li a:hover {background:var(--blue);}


/* FONT AWESOME ICONS */
	nav.mobile ul li .fa-chevron-down{color:var(--dark-grey)!important; margin-left: 10px;}
	nav.mobile ul li a:hover .fa-chevron-down {color: #fff!important;}
}