﻿/***** Start of primary nav ******/
#menu-button{display: none;}
nav.mobile { display:none;}

nav.primary {
    width: 100%;
	align-self: center;
	}
	/* nav.primary ul {} */
		nav.primary ul li {
			background-color: unset;
			transition: background-color 0.5s ease;
			color: #000000;
			font-family: 'Big Shoulders Stencil Text', cursive!important;
			font-weight: 800;
			font-size: 26px;
			margin: 5px 45px 5px 0;
			}
			nav.primary ul li:hover {
				text-decoration: underline;
				}
		
/* 		
			nav.primary ul li a {
				color:#000;
				font-size:14px;
				line-height:30px;
				text-decoration:none;
				display:block;
				margin:0;
				text-align:center;
				text-transform:uppercase;
				-webkit-transition:.4s ease-in;  
				-moz-transition:.2s ease-in;  
				-o-transition:.2s ease-in;  
				transition:.2s ease-in;	
				font-weight:900;
				padding: 5px 15px;
				}	
			nav.primary ul li a:hover {
				background-color: #ffffff;
				color: #000000;
				padding: 5px 15px;
				} */
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				line-height: 28px;
			}
			/* Appearance of the sub-level links on hover */
			/* nav.primary ul li li a:hover {} */
/* This controls the Primary nav dropdowns for sub-links. Should not have to edit this too much */
nav.primary ul ul {
    display: none;
    position: absolute;
	left: -1px;
	top: 27px;
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
	display: block;
    line-height: 18px;
    z-index: 100;
    width: max-content;
    padding-top: 10px;
    background-color: #3c3f43;
    margin-top: 8px;
}
nav.primary ul ul li {
    float: none; 
    position: relative;
    margin:10px;
	display: block;
	background-color: #3c3f43;
	color: #ffffff;
}
nav.primary ul ul li {
    margin:10px;
}

@media screen and (max-width: 1075px)  {	
	nav.primary ul li {
		margin-left: 3px;
	}
}

@media screen and (max-width: 475px)  {	
	nav.primary ul li {
		font-size: 20px;
		margin: 5px 20px 5px 0;
	}
}

/******** End of primary Nav ***************/
