.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: #0c468a;
	font-size: 15px;
	letter-spacing: 0.5px;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	border-left: 1px solid rgb(255, 255, 255);
	padding: 15px 20px;
	-webkit-transition: .4s ease-in;
	-moz-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
	display: flex;
	align-items: center;
}
nav.primary ul li a i {
	font-size: 8px;
	margin-left: 3px;
	
}
nav.primary ul li a:hover {
	color:#fff;
	background: #da1c2e;	
	box-shadow: none!important; 

}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	    color: #000;
	font-size:13.5px;
	font-family: 'Open Sans', sans-serif;
	font-weight:600;
	border-bottom: 1px solid #ebebeb;
	border-top: 1px solid #ebebeb;
	padding: 7px 17px;
	white-space: nowrap;
	background: #fff;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	    background-color: #f1f1f1;
    transition: linear 0.2s;
	color: #da1c2e;
}
/* 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!important;
	line-height: 18px;
	z-index: 100;
}
nav.primary ul ul li {
	float: none;
	width: auto;
	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: 1500px) {
	nav.primary ul li a {
		padding: 15px 15px;
		font-size: 14px;
	}
}
@media screen and (max-width: 1300px) {
	nav.primary ul li a {
		padding: 15px 10px;
    	font-size: 13px;
	}
}
@media screen and (max-width: 1024px) {
	nav.primary ul {
		text-align: center;
	}
}

@media screen and (max-width: 800px) {
	/*==============================
		Mobile Nav Styles			
	================================*/
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;} /* New class to help control screen width visability */
    
	#menu-button{ 
		width: 100%;
		display: block;
		padding:15px 10px;
		box-sizing: border-box;
		position: relative;
	}
	
    .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:#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 {
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
		height: auto;
		background: #fff;
		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 {
		border-bottom: 1px solid #000;
		position:relative;
	}
    nav.mobile ul li:first-child {
		border-top: 1px solid #000;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		color: #0c468a;
		text-align: center;
		font-weight: 600;
		font-size:15px;
		letter-spacing: .5px;
		font-family: 'Oswald', sans-serif;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		padding:10px 15px;
		text-decoration: none;
		border-bottom: solid 1px #e7e7e7;
	}
	nav.mobile ul li a i {
		font-size: 10px;
		margin-left:3px;
	}
	nav.mobile ul li a:hover {
		color:#fff;
		background: #da1c2e;
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		color: #000;
		font-size:13.5px;
		font-family: 'Open Sans', sans-serif;
		font-weight:600;
		border-bottom: 1px solid #ebebeb;
		border-top: 1px solid #ebebeb;
		padding: 7px 17px;
		background: #f7f7f7;
		text-align: center;
	}
	nav.mobile ul li li a:hover {
		 background-color: #f1f1f1;
		transition: linear 0.2s;
		color: #da1c2e;
	}
	
	nav.mobile ul li li li a {
		background: #fff;
		text-align: center;
	}
	
}