﻿
.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/lzj5ypl.css");
/***** Start of primary nav ******/
#menu-button{display: none;}
nav.mobile { display:none;}
.logo-mobile {display: none;}
.nav-background {background: #C32222;} 

nav.primary {
	display:flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	box-sizing: border-box;
	width:100%;
	}
	nav.primary ul {
		margin:0; 
		padding:0;
		float:right;
		justify-content: flex-end;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			width:auto;
			position: relative;
			}
			nav.primary ul li a {
				color:#fff;
				font-size:23px !important;
				line-height:20px;
				text-decoration:none;
				position:relative;
				display:block;
				margin:0px 2px;
				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;
				font-family: 'neulis-sans', sans-serif;
				cursor: pointer;
				}	
			nav.primary ul li a:hover {
				background: #fff;
				color:#2C2C2C;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:23px;
				line-height:24px;
				padding:20px;
				color:#fff;
				background-color: #2C2C2C;
				text-align:left;
				margin: 0!important;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				color: #fff;
				background-color:#C32222;
			}
/* 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: 250px;
    position: relative;
    margin:0;
	display: block;
}

/*header*/
.my-site-header {padding-top: 15px; padding-bottom: 15px; background: #EEEEEE;}
.my-site-header > .flex {justify-content: space-between; align-items: center;}
.my-site-header > .flex > .flex {justify-content: flex-end;}
.my-site-header > .flex > .flex li {margin: 5px;}
.my-site-header i {display: none;}
.devider-txt {
	border-left: #2C2C2C 2px solid;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    margin-left: 30px;
    margin-right: 30px;
    max-height: 20px;
}

.my-site-header a {font-family: 'neulis-sans', sans-serif; color: #2C2C2C; font-size: 20px; font-weight: 500;}
.my-site-header a:hover {text-decoration: underline;}

.logo-desktop img, .logo-mobile img{
	max-width: 350px;
    margin-bottom: -80px;
    background: #C32222;
    padding: 20px 10px;
}
.logo-desktop, .logo-mobile{
	padding: 15px 0;
}

@media screen and (max-width: 900px) {
	.my-site-header span {display: none;}
	.my-site-header i {display: inline-block;}
	.my-site-header i:hover {color: #C32222;}
}

/******** End of primary Nav ***************/

@media screen and (max-width: 1150px)  {
/*==============================
	Mobile Nav Styles			
================================*/	
nav.primary{display:none;}
.logo-mobile {display: block;}
	.mobile-menu {align-items: center;}
#menu-button{ 
	width: 100%;
	display: inline-block;
	font-size: 40px;
	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:normal;
		cursor: pointer;
	  }
nav.mobile {
	display:block;
	position: fixed;
	top: 0;
	left: -250px;
	width: 250px;
	height: 100%;
	background: #2C2C2C;
	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:30px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	top:30px;
	right:13px;
	cursor: pointer;
}
nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
	color: #C32222;
}

/* MENU LIST STYLE */
	.mobile-top {margin-top: 95px!important;}
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;
	transition: .4s ease-in;
	cursor:pointer;
}
nav.mobile ul li a:hover {
	background:#C32222; 
	color: #fff; 
}

/* SECOND LEVEL */
nav.mobile ul li li:last-child {border:none;}
nav.mobile ul li li a {
	background: #4B4B4B;
	position: relative;
	display: block;
	padding: 20px;
	color: #fff;
	text-decoration: none;
	cursor:pointer;
}
nav.mobile ul li li a:hover {background:#C32222;}

/* THIRD LEVEL */
nav.mobile ul li li li:last-child {border:none;}
nav.mobile ul li li li a {
	background: #666666;
	position: relative;
	display: block;
	padding: 20px;
	color: #fff;
	text-decoration: none;
}
nav.mobile ul li li li a:hover {background:#C32222;}
	
	nav.mobile ul li .fa-chevron-down{color:#fff!important; margin-left: 15px;}
}

@media screen and (max-width: 1020px)  {
	#menu-button{width:100%;}
}

@media screen and (max-width:500px){
	.logo-desktop img, .logo-mobile img {
		max-width: 250px;
		margin-bottom: -50px;
	}
}

@media screen and (max-width:450px){
	#menu-button{width:100%;}
}

@media screen and (max-width:380px){
	.logo-mobile img {width: 200px;}
}