.clear {
	clear: both;
}
/***** Start of primary nav ******/
#menu-button {
	display: none;
}

nav.mobile, .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;
}
nav.primary > ul {
	display: flex;
	justify-content: center;
}
nav.primary ul li {
	margin: 0;
	list-style-type: none;
	transition: .2s ease-in;
}
nav.primary ul li a {
	font-size: 18px;
	color: #000 !important;
	font-family: "Outfit", sans-serif;
	text-decoration: none;
	padding: 10px 12px;
	display: block;
	margin: 0;
	text-align: center;
	transition: .2s ease-in;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(255,255,255,0.7);
	white-space: nowrap;
	line-height: normal;
	text-transform: uppercase;
}
nav.primary ul li a > i {
	margin-left:3px;
}
nav.primary ul li a:hover {
	color:#f26522!important;

}
nav.primary ul li:hover a {
	color:#f26522!important;

}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	padding: 10px 15px;
	text-align: left;
	color: #000 !important;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	color:#fff !important;
	background:#f26522;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
	background:#fff;
}
nav.primary ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}
nav.primary ul li:hover>ul {
	display: block!important;
	z-index: 100;
}
nav.primary ul ul li {
	float: none;
	width:auto;
	min-width: 200px;
	position: relative;
	margin: 0;
	display: block;
}

@media screen and (max-width: 1050px) {
	nav.primary ul li a {
		font-size: 15px;
	}
}

/******** End of primary Nav ***************/

@media screen and (max-width: 900px) {
	

	
	/*==============================
		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:5px 0;
		justify-content: flex-end;
	}
	
    .menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:35px;
        height: 27px;
        position: relative;
		 cursor: pointer;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#000;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
    }

    .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: #fff;
		z-index: 500; 
		overflow:auto;
		max-height: 90vh;
	}
	/* 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 {
		font-family: "Outfit", sans-serif;
		border-bottom: 1px solid #000;
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size:18px;
		text-transform: uppercase;
		font-weight: 500;
		padding:15px 20px;
		color: #000;
		text-decoration: none;
		width: 100%;
		box-sizing: border-box;
	}
	nav.mobile ul li a:hover {
		color:#fff;
		background:#f26522;
	}

	/* SECOND LEVEL */
	
	nav.mobile ul li li a {
		padding:15px 40px;
		background:#fbf7f7;
	}
	nav.mobile ul li li a:hover {
		color:#fff;
		background:#dadbdc;
	}
	
}