.clear {
	clear: both;
}
/***** Start of primary nav ******/
#menu-button {
	display: none;
}
nav.mobile {
	display: none;
}
nav.primary {
	padding: 0;
	display: block;
	margin: 0;
	width: 100%;
	position: relative;
	background:#02306c;
}
nav.primary .container-1 {
	display: flex;
	gap:30px;
	justify-content: center;
	align-items: center;
	padding:0 20px;
}
nav.primary .search-toggle {
	color:#fff;
	font-size:18px;
	padding: 5px 10px;
	font-family: "Poppins", sans-serif;
	cursor: pointer;
}
nav.primary  {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
nav.primary .menu-primary {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
nav.primary ul {
	margin: 0;
	padding: 0;
}
nav.primary ul li {
	display: inline-block;
	margin: 0;
	padding:0;
	list-style-type: none;
}
nav.primary ul li a {
	color: #fff !important;
	font-family: "Poppins", sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 18px;
	padding: 10px;
	font-weight: 600;
	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 {
	background-color:#a41228;
}
nav.primary ul li:hover a {
	background-color:#a41228;
}
nav.primary ul li a i {
	margin-left:5px;
}
/* Appearance of the sub-level links */
nav.primary ul li li a {
	padding:15px;
	text-align: left;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
	background-color: #000;
	color: #fff !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;
}
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: 150px;
	position: relative;
	margin: 0;
	display: block;
}


/******** End of primary Nav ***************/

@media screen and (max-width: 1350px) {
	nav.primary ul li a {
		font-size: 1.2vw;
		padding: 10px 1vw;
	}
}
@media screen and (max-width: 950px) {
	/*==============================
		Mobile Nav Styles			
	================================*/
	nav.primary {
		display: none;
	}
	#menu-button {
		display: block;
		padding-right: 20px;
		box-sizing: border-box;
	}
	#menu-button .search-toggle {
		display: flex;
		justify-content: center;
		align-items: center;
		background: #a41228;
		color:#fff;
		font-size: 20px;
		transition: 0.2s ease-in;
		cursor: pointer;
		padding:10px;
		border-radius: 5px;
		font-family: "Poppins", sans-serif;
	}
	.menu-toggle {
        display: flex;
        gap:13px;
        align-items: center;
		background: #a41228;
		cursor: pointer;
		padding:10px;
		border-radius: 5px;
    }
     .menu-hamburger {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width:30px;
        height: 23px;
        position: relative;
    }
    .menu-hamburger-bar-1 {
       display: block;
       background:#fff;
        height: 3px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 3px;
    }
    .menu-hamburger-bar-2 {
       display: block;
       background:#fff;
        height: 3px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 3px;
    }
    .menu-hamburger-bar-3 {
       display: block;
       background:#fff;
        height: 3px;
        width:100%;
        transition: .2s ease-in;
		border-radius: 3px;
    }

    .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: block;
		position: fixed;
		text-align: left;
		top: 0;
		left: -250px;
		width: 250px;
		height: 100%;
		background: white;
		z-index: 1001;
		overflow: auto;
		box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 5px;
	}
	/* MENU HEADER SOCIAL MEDIA */
	
	
	
	
	.mobiletitle {
		padding-left: 20px;
		color: #0a2737;
	}
	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		padding: 10px;
		width: 100%;
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size: 24px;
		font-weight: bold;
		line-height: 1;
		color: #a41228;
		text-decoration: none;
		background:#fff;
	}
	nav.mobile .menu-toggle:hover {
		/* Menu close button on hoveer */
		opacity: 0.7;
	}
	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		font-weight: 300;
		margin: 0;
		padding: 0;
	}
	nav.mobile ul li {
		border-top: 1px solid #f2f2f2;
		border-bottom: 1px solid #f2f2f2;
		position: relative;
	}
	/* FIRST LEVEL */
	nav.mobile ul li a {
		font-family: "Poppins", sans-serif;
		position: relative;
		width: 100%;
		box-sizing: border-box;
		font-size: 14px;
		padding: 10px 10px 10px 15px;
		color: #000;
		text-decoration: none;
		display: flex;
		justify-content: space-between;
		align-items: center;
		cursor: pointer;
	}
	nav.mobile ul li a:hover {
		background:#a41228;
		color: #fff;
	}
	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {
		border: none;
	}
	nav.mobile ul li li a {
		background: #f2f2f2;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
	}
	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {
		border: none;
	}
	nav.mobile ul li li li a {
		padding: 10px 10px 10px 25px;
	}

}
