.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;
	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;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	padding:10px;
	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;
}
nav.primary ul li a:hover {
	background-color:#fff;
	color:#000;
}
nav.primary ul li:hover a {
	background-color:#474747;
	color:#fff;
}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	background-color:#000;
	color:#fff;
	text-align: left;
	white-space:nowrap;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background-color: #474747!important;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
	display: none;
	position: absolute;
	z-index: 1;
}
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: 150px;
	position: relative;
	margin: 0;
	display: block;
}
/******** Nav Resets ***************/
i.fas.fa-angle-down {
    padding-left: 3px;
    padding-top: 3px;
}


/******** End of primary Nav ***************/

@media screen and (max-width:1630px)  {
	nav.primary ul li a {
		font-size: 14px;
	}
}@media screen and (max-width:1350px)  {
	nav.primary ul li a {
		font-size: 1.1vw;
	}
}

@media screen and (max-width: 1000px)  {

    
	/*==============================
		Mobile Nav Styles			
	================================*/	
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;} /* New class to help control screen width visability */
    
	#menu-button{ 
		display: block;
        box-sizing: border-box;
		z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
        text-align: center;
	}
	
    .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;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#fff;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 2px;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#fff;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 2px;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#fff;
        height: 5px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 2px;
    }

    .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;
		width: 98%;
		height: auto;
		background: #fff;
		z-index: -1;
		overflow: auto;
		padding:30px 0;
		top: 100%;
		right: 0;
		margin: 0 auto;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
		box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 5px;
		max-height: 84vh;
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}



	
	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		position:relative;
	}
	/* FIRST LEVEL */
	nav.mobile ul li a {
		font-family: 'Roboto', sans-serif;
		text-align: center;
		position: relative;
		display: block;
		font-size:18px;
		padding: 10px;
		color: #000;
		text-decoration: none;
		text-transform: uppercase;
	}
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #ccc;
		position: relative;
		display: block;
		padding:10px;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

}
