.basic_nav nav > ul > li {
	position: relative;
	list-style: none;
}
.basic_nav nav ul{
	list-style: none;
}
.basic_nav nav > ul li a {
	transition: 0.2s;
	display: block;
	font-size: 18px;
	padding: 10px;
}

.basic_nav nav > ul > li.menu-item-has-children > a:after {
	position: relative;
	content: '3';
	font-family: 'ETModules';
	margin-left: 3px;
	line-height: 1;
}

.basic_nav nav > ul > li ul.sub-menu {
	position: absolute;
	width: 250px;
	left: 0;
	text-align: left;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	flex-direction: column;
}

.basic_nav nav > ul li.large_flyout > ul.sub-menu {
	width: 500px;
}

.basic_nav nav > ul > li > ul li {
	display: block;
	position: relative;
}

.basic_nav nav ul li:hover > ul.sub-menu {
	opacity: 1;
	visibility: visible;
	flex-direction: column;
}
.basic_nav nav ul ul ul {
	margin-left: 100%;
	top: 0;
}



.basic_nav nav ul ul li.left_flyout > ul {
	margin-left: -100%;
	top: 0;
}

.basic_nav nav ul ul li.left_flyout.large_flyout > ul {
	margin-left: -200%;
	top: 0;
}

.basic_nav {
	font-size: 16px;
	align-content: center;
	flex: 2;
}

.basic_nav .header-wrapper .site-branding .site-logo img {
	height: 40px;
	display: block;
}

.basic_nav .header-wrapper nav ul {
	padding: 0;
	display: flex;
}

.basic_nav .header-wrapper {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.basic_nav .header-wrapper .site-branding {
	display: flex;
	align-items: center;
	height: 100%;
	transition: all 0.3s ease;
}

.basic_nav .header-wrapper .site-branding .site-logo img {
	transition: all 0.3s ease;
	max-width: inherit;
	margin: 0 20px 0 40px;
}

.header-sticky-scroll .basic_nav .header-wrapper .site-branding .site-logo a {
	display: none;
}

.basic_nav .header-wrapper .site-branding .site-logo .sticky-header-logo {
	display: none;
}

.header-sticky-scroll .basic_nav .header-wrapper .site-branding .site-logo .sticky-header-logo {
	display: block;
}

.basic_nav .header-wrapper .site-branding .site-title {
	white-space: nowrap;
	font-weight: bold;
	text-transform: uppercase;
	padding: 1em 0;
	line-height: 1em;
	transition: all 0.3s ease;
}

.basic_nav .header-wrapper .site-branding .site-title:hover {
	opacity: 0.5;
}

.basic_nav .header-wrapper .site-branding .site-title a {
	font-size: 28px;
	text-transform: lowercase;
	font-weight: bold;
	line-height: 28px;
	margin: 0 20px 0 40px;
}

.basic_nav .header-wrapper .nav {
	opacity: 0;
	animation: global_fadein 1.5s forwards;
	animation-delay: .5s;
}

.ie9 .basic_nav .header-wrapper .nav {
	opacity: 1;
}

.basic_nav nav{
	flex: 2;
}

.basic_nav .header-wrapper nav.flex_center ul {
	justify-content: center;
}
.basic_nav .header-wrapper nav.flex_left ul {
	justify-content: flex-start;
}
.basic_nav .header-wrapper nav.flex_right ul {
	justify-content: flex-end;
}

.basic_nav .header-wrapper nav.flex_dir_vertical ul {
	flex-direction: column;
}