/*
|--------------------------------------------------------------------------
| Navigation v2
|--------------------------------------------------------------------------
*/
.nav-container.nav-container-v2 {
	background: #FFF;
	min-height: 111px;
}


.nav-container.nav-container-v2.scrolled:hover {
	background: #FFF;
}

.nav-container.nav-container-v2 .nav-secondary .nav-item a:hover, .nav-container.nav-container-v2.nav-secondary .nav-item:hover {
	background: none;
	border-bottom: 2px solid #181c20;
}

.nav-container.nav-container-v2 .nav-secondary .nav-item a:hover, .nav-container.nav-container-v2 .nav-secondary .nav-item:hover {
	background: none;
}

.nav-container.nav-container-v2 .nav-main .nav-button-container {
	position: relative;
	float: left;
	margin-left: 10px;
	overflow: visible;
}

.nav-container.nav-container-v2 .nav-main .nav-button-container .nav-button-hover {
	position: absolute;
	top: 20px;
	left: 0;
	width: 140px;
	height: 30px;
	font-weight: 700;
	background: #ebecea;
	border-radius: 5px 5px 0 0;
	transform: translateX(-100%);
	transition: 0.3s;
	z-index: -1;
}

.nav-container.nav-container-v2 .nav-main .nav-button {
	float: left;
	position: relative;
	font-size: 14px;
	min-width: 140px;
	padding: 2px 30px;
	margin-top: 20px;
	z-index: 1;
	overflow: visible;
}

.nav-container.nav-container-v2 .nav-main .nav-button-container .nav-button.default-active {
	font-weight: bold;
}

.nav-container.nav-container-v2 .nav-main .nav-button-container .nav-button a {
	text-decoration: none;
}

/** Submenu **/
.nav-container.nav-container-v2 .nav-main .nav-button-content {
	position: fixed;
	top: 50px;
	left: 175px;
	min-height: 60px;
	font-size: 17px;
	display: none;
	color: #3b3b3b;
	line-height: 1.2em;
	font-weight: 400;
}

.nav-container.nav-container-v2 .nav-main .nav-button-content.active {
	display: inline-flex;
}

/** Submenu **/
.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-button-container {
	position: relative;
	float: left;
	overflow: visible;
	width: 800px;
}

.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-button {
	float: left;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	color: #3b3b3b;
	line-height: 1.2em;
	padding: 2px 50px 2px 20px;
	min-height: 60px;
}

@media only screen and (min-width: 1300px) {
	.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-button::before {
		right: 20px;
		bottom: 6px;
		width: 9px;
		height: 9px;
	}
}

@media only screen and (min-width: 990px) {
	.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-button::before {
		content: "";
		position: absolute;
		top: 0;
		right: 5px;
		bottom: 4px;
		width: 6px;
		height: 6px;
		margin: auto;
		border: solid;
		border-width: 0 1px 1px 0;
		transform: rotate(45deg);
		transition: top .1s ease-in-out, bottom .1s ease-in-out;
		transition-delay: 0s;
	}
}

.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-button-content {
	position: fixed;
	top: 110px;
	left: 0;
	width: 100%;
	height: 300px;
	background: white;
	display: none;
}

.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-button-content.active {
	display: inline-flex;
}

/** Submenu Level 1 **/
.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-level-1-button-container {
	position: relative;
	float: left;
	overflow: visible;
	width: 300px;
	border-right: 1px solid #ebecea;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-level-1-button {
	color: #3b3b3b;
	line-height: 1.2em;
	padding: 5px;
}

.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-level-1-button.active {
	background: #ebecea;
}

.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-level-1-button-content {
	position: fixed;
	top: 110px;
	left: 300px;
	width: 100%;
	height: 300px;
	background: white;
	display: none;
}

.nav-container.nav-container-v2 .nav-main .nav-button-content .subnav-level-1-button-content.active {
	display: inline-flex;
}