﻿@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Mulish:wght@300;400;500;600;700;800;900;1000&display=swap');

/***** Start of primary nav ******/
#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
	padding:0px;
	display:inline-block;
	margin: 0;
	position:relative;
	width:100%;
	}
	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:18px !important;
				text-decoration:none;
				display:block;
				line-height:20px;
				margin:0px 2px;
				text-align:center;
				font-weight:400;
				word-spacing:0px;
				padding:13px 9px;
				font-family: 'Mulish', sans-serif;
				}	
nav.primary ul li a i{padding-left:10px; font-size:16px;}
				
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:13px!important;
				line-height:20px;
				padding:13px 20px;
				color:#fff;
				background-color:#872117;
				text-align:center;
				transition:.4s ease;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
				color:#fff;
				background-color:#333;
			}
/* 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: auto;
    margin:0;
	display: block;
}


/** drop down btns**/
.drop-down a:hover{
	color:#fff!important;
	background-color:#D36D08!important;
}




/******** End of primary Nav ***************/
@media screen and (max-width: 1100px)  {
	nav.primary ul li a{font-size:16px!important; padding:13px 7px;}
}
@media screen and (max-width: 840px)  {

/*==============================
	Mobile Nav Styles			
================================*/	
nav.primary{display:none;}
#menu-button{ 
	display: inline-block;
	font-size: 20px;
	margin-top:40px; 
	margin-right:50px;
	position: relative; 
	z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
	text-align: center;
	box-sizing:border-box;
	}
	#menu-button a{
		 color:#fff;
		 text-decoration: none;
		 padding:6px 8px;
		border-radius:5px;
		line-height:30px;
    display: flex;
		background:#b50c09;
    justify-content: center;
    margin: 0 auto;
		
	  }
nav.mobile {
	position: absolute;
	top: 100px;
	left:0;
	width: 100%;
	background: #872117;
	z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
	overflow:auto;
	margin:0 auto;
	display:none;
}
	.activeheader nav.mobile{top:130px;}

/* 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:18px;
	padding: 10px 20px;
	box-sizing:border-box;
	color: #fff;
	font-weight:400;
	text-decoration: none;
	text-align: left;
}
nav.mobile ul li a:hover {
	background:#333; 
}

/* SECOND LEVEL */
nav.mobile ul li li:last-child {border:none;}
nav.mobile ul li li a {
	background: #771C13;
	position: relative;
	display: block;
	font-size:14px;
	padding: 10px 10px 10px 25px;
	color: #fff;
	text-decoration: none;
}
nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

/* THIRD LEVEL */
nav.mobile ul li li li:last-child {border:none;}
nav.mobile ul li li li a {
	background: #555;
	position: relative;
	display: block;
	padding: 10px 10px 10px 25px;
	color: #ccc;
	text-decoration: none;
	border-left:4px #555 solid;
}
nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}

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;
	width:auto;
	height:auto;
	box-sizing:border-box;
	color:#fff;
	left:125px;
	top:-10px;
	}
	nav.mobile ul li a.click:hover{background:transparent!important; border-left:none!important;}
	.second{left:110px!important;}

/* FONT AWESOME ICONS */
nav.mobile ul li a .fa{
	padding:8px 3px;
	margin:0 6px 0 0;
	text-align:center;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

}

