.clear {
	clear: both;
}
/***** Start of primary nav ******/
#menu-button {
	display: none;
}
nav.mobile {
	display: none;
}
.mobile-nav-cont-1 { display:none;}
nav.primary {
	padding: 0;
	display: block;
	margin: 0;
	width: 100%;
	position: relative;
}
nav.primary ul {
	margin: 0;
	padding: 0;
	text-align: right;
}
nav.primary ul li {
	display: inline-block;
	margin: 0;
	list-style-type: none;
}
nav.primary ul li a {
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700;
	font-family: "Oswald", sans-serif;
	padding: 15px 20px;
	text-decoration: none;
	display: block;
	margin: 0;
	text-align: center;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	cursor: pointer;
}
nav.primary ul li a i {
	display: none;
}
nav.primary ul li a:hover {
	color:#a5a5a5;
}
nav.primary ul li:hover a {
	color:#a5a5a5;
}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	text-align: left;
	color: #D6D6D6!important;
	font-size:16px;
	padding: 7px 10px;
	font-weight:400;
    text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background: #c4171d;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
	background-color: #282D31;
	padding:5px;
}
nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}
nav.primary ul li:hover>ul {
	display: block!important;
	line-height: 18px;
	z-index: 100;
}
nav.primary ul ul li {
	float: none;
	width: auto;
	min-width: 160px;
	position: relative;
	margin: 0;
	display: block;
}

/******** End of primary Nav ***************/
@media screen and (max-width: 1450px) {
	nav.primary ul li a {
		font-size: 15.5px;
	}
}
@media screen and (max-width: 1240px) {
	nav.primary ul li a {
		font-size: 1.1vw;
		padding: 15px 1.2vw;
	}
}
@media screen and (max-width: 991px) {
	nav.primary ul {
		text-align: center;
	}
	nav.primary ul li a {
		font-size: 15.5px;
		padding: 15px 10px;
	}
}
@media screen and (max-width: 686px) {
	/*==============================
		Mobile Nav Styles			
	================================*/
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;} /* New class to help control screen width visability */
    
	#menu-button { 
		display: flex;
		margin:0 auto;
		padding:10px;
		width: 100%;
		box-sizing: border-box;
		justify-content: flex-end;
		background:#C4171D;
	}
	
    .menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
		cursor: pointer;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 4px;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 4px;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 4px;
    }

    .clickopen .menu-hamburger-bar-2 {
        display: none;
    }
    .clickopen .menu-hamburger-bar-1 {
        position: absolute;
        top:10px;
        transform: rotate(45deg);
        width:25px;
    }
    .clickopen .menu-hamburger-bar-3 {
        position: absolute;
        top:10px;
        transform: rotate(-45deg);
        width:25px;
    }
    
	nav.mobile { /* this section is new updated position width and positioning*/
		display:none;
		position: absolute;
		left: 0px;
		top:100%;
		width: 100%;
		height: auto;
		background: #000;
		z-index: 500; 
		overflow:auto;
	}
	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {	
		position:relative;
	}
	nav.mobile ul li:first-of-type a {	
		border-top: 1px solid #000;
	}
	/* FIRST LEVEL */
	nav.mobile ul li a {
		border-bottom: 1px solid #000;
		position: relative;
		display: flex;
		justify-content: center;
		gap:0 10px;
		align-items: center;
		font-size:16px;
		font-weight: 700;
		padding:15px 20px;
		color: #fff;
		text-decoration: none;
		width: 100%;
		box-sizing: border-box;
		font-family: "Oswald", sans-serif;
		text-transform: uppercase;
		cursor: pointer;
	}
	nav.mobile ul li a:hover {
		color:#fff;
		background:#C4171D;
	}
	nav.mobile ul li a i {
		position: relative;
		z-index: 1;
	}

	/* SECOND LEVEL */
	
	nav.mobile ul li li a {
		font-weight: 700;
		background:#191919;
		color:#fff;
	}
	nav.mobile ul li li a:hover {
		color:#fff;
		background:#C4171D;
	}
	
	
}