﻿
.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/pwd6mjl.css");
/***** Start of primary nav ******/
#menu-button{display: none;}
.mobile-menu {display: none;}
nav.mobile { display:none;}
.nav-background {padding: 0!important;}

nav.primary .icons {display: flex; gap: 20px;}

nav.primary .icons a, .mobile-menu .icons a {padding: 10px 11px; color: var(--red); background-color: #fff; border-radius: 50px; font-size: 20px;transition:.4s ease-in;}
nav.primary .icons a:first-child, .mobile-menu .icons a:first-child {padding: 10px 15px;}
nav.primary .icons a:last-child, .mobile-menu .icons a:last-child {padding: 10px 14px;}

nav.primary .icons a:hover, .mobile-menu .icons a:hover {background-color: var(--red)!important; color: #fff!important;}

nav.primary {
	padding:0px;
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	width:100%;
	}

nav.primary .main-ul {
		padding:10px 35px!important;
		background: rgba(57,58,60,0.9)!important;
		border-radius: 20px!important;
}

nav.primary .flex {align-items: center; gap: 60px;}

	nav.primary ul {
		margin:0; 
		padding: 0;
		float:right;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			width:auto;
			}
			nav.primary ul li a {
				color:#fff;
				font-size:20px !important;
				line-height:20px;
				text-decoration:none;
				position:relative;
				display:block;
				margin:0px 5px;
				text-align:center;
				-webkit-transition:.4s ease-in;  
				-moz-transition:.4s ease-in;  
				-o-transition:.4s ease-in;  
				transition:.4s ease-in;	
				font-weight:700;
				padding:20px!important;
				font-family: 'neulis-sans', sans-serif;
				border-radius: 5px;
				cursor: pointer;
				}	
			nav.primary ul li a:hover {
				background: #fff;
				color: var(--dark-grey)
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:20px;
				line-height:24px;
				padding:20px;
				color:#fff;
				background-color: var(--dark-grey);
				text-align:left;
				border-radius: 0!important;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				background-color: var(--red);
				color: #fff!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; 
}
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*/

.nav-wrapper {position: absolute; top: 50px; left: 0; right: 0; margin: 0 15px; z-index: 200;}

.logo-mobile, .logo-desktop {margin-right: 20px;}
.logo-mobile img, .logo-desktop img {
	max-width: 400px; width: 100%;
}

/******** End of primary Nav ***************/

@media screen and (max-width: 1312px)  {
/*==============================
	Mobile Nav Styles			
================================*/	
nav.primary{display:none;}
	.mobile-menu {display: inline-block;width: 100%;}
	.mobile-menu .icons {margin-top: 10px; display: flex; justify-content: flex-end; gap: 20px;}
	.mobile-menu .flex {justify-content: space-between;align-items: center;}
#menu-button{ 
	display: inline-block;
	font-size: 40px;
	position: relative;
	line-height:60px; 
	padding: 10px 15px;
	border-radius: 10px;
	z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	background: rgba(57,58,60,0.9)!important;
	}
	#menu-button a{
		 color:#fff;
		 text-decoration: none;
		 font-weight:normal;
		cursor: pointer;
	  }
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: var(--dark-grey);
	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: var(--dark-grey);
	color: #fff;
	text-decoration: none;
	top:38px;
	right:13px;
	cursor: pointer;
}
nav.mobile .top-ul {margin-top: 100px;}
	
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 {
	position: relative;
	display: block;
	font-size:20px;
	padding: 20px;
	color: #fff;
	text-decoration: none;
	text-align: left;
	font-family: 'neulis-sans', sans-serif;
}
nav.mobile ul li a:hover {
	background: var(--red); 
	color: #fff; 
	cursor: pointer;
}

/* SECOND LEVEL */
nav.mobile ul li li:last-child {border:none;}
nav.mobile ul li li a {
	background: #48494B;
	position: relative;
	display: block;
	padding: 20px;
	color: #fff;
	text-decoration: none;
	font-family: 'neulis-sans', sans-serif;
}
nav.mobile ul li li a:hover {background: var(--red)}

nav.mobile ul li .fa-chevron-down {color:#fff; margin-left: 20px;}
}

@media screen and (max-width:550px){
	.mobile-menu .icons {margin-top: 20px;}
}