﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/***** Start of primary nav ******/
#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:0px;
	display:inline-flex;
	justify-content:center;
	flex-wrap:wrap; 
	margin-top:53px;
	position:relative;
	}
	nav.primary ul {
		margin:0; 
		padding:0;
		display:flex;
		flex-direction:row;
		justify-content:center;
		}
		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:16px ;
				line-height:20px;
				text-decoration:none;
				display:block;
				margin:0px 2px;
				text-align:center;
				font-weight:500;
				border-bottom:3px solid #000;
				padding:13px 19px;
				font-family: 'Open Sans', sans-serif;
				}	
				nav.primary ul li a i{padding-left:5px;}
				nav.primary ul li a:hover{
				border-bottom:3px solid #1A48A2;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:13px;
				line-height:24px;
				padding:13px 22px;
				font-weight:400;
				border:None;
				color:#fff;
				background-color: rgba(0,0,0,0.8);
				text-align:left;
				transition:.4s ease;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				border:None;
				background:#444;
			}
/* 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: 180px;
    position: relative;
    margin:0;
	display: block;
}






/******** End of primary Nav ***************/

@media screen and (max-width: 1000px)  {

/*==============================
	Mobile Nav Styles			
================================*/	
nav.primary{display:none;}
#menu-button{ 
	width:60%;
	display: flex;
	flex-direction:row; justify-content:center;
	font-size: 24px;
	position: relative;
	line-height:50px; 
	z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	text-align: center;
	box-sizing:border-box;
	padding-top:50px;
	}
	#menu-button a{
		 color:#fff;
		 text-decoration: none;
		 padding:2px 0 0 0; 
		 font-weight:normal;
		line-height:50px;
		height: 100%;
    display: flex;
    justify-content: center;
    width: 100px;
    margin: 0 auto;
	  }
nav.mobile {
	display:none;
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%!important;
	height: auto;
	max-height: calc(100vh - 50px);
	background: rgba(0,0,0,0.78);
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
}


/* MENU HEADER STYLES */
nav.mobile .mobile_top {
	position: relative;
	display:block;
	padding: 0;
	margin:0;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
}

/* 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;
	color: #fff;
	text-decoration: none;
	right:13px;
}
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 {
	border-top: 1px solid rgba(255,255,255,0.18);
	border-bottom: 1px solid rgba(0,0,0,0.6);
	position:relative;
	background: rgba(0,0,0,0.78);
}

/* FIRST LEVEL */
nav.mobile ul li a {
	position: relative;
	display: block;
	font-size:15px;
	padding: 10px;
	color: #fff;
	text-decoration: none;
	text-align: left;
}
nav.mobile ul li a:hover {
	background:rgba(0,0,0,0.7); 
	color: #fff; 
 /* 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: rgba(0,0,0,0.72);
	position: relative;
	display: block;
	padding: 10px 10px 10px 15px;
	border-left:4px rgba(0,0,0,0.72) solid;
	color: #fff;
	text-decoration: none;
}
nav.mobile ul li li a:hover {background:rgba(0,0,0,0.88);}

/* THIRD LEVEL */
nav.mobile ul li li li:last-child {border:none;}
nav.mobile ul li li li a {
	background: rgba(0,0,0,0.65);
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #fff;
	text-decoration: none;
	border-left:4px rgba(0,0,0,0.65) solid;
}
nav.mobile ul li li li a:hover {background:rgba(0,0,0,0.82);}

nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
	position:relative;
	display:block;
	cursor:pointer;
	width:auto;
	height:auto;
	padding: 10px;
	color:#fff;
	}

}


