/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #e8e5dc;
	z-index: 999999;
}

/* Overlay closing cross */
.overlay-menu {
	width: 32px;
	height: 32px;
	position: fixed;
	right: 64px;
	top: 32px;
	overflow: hidden;
	border: none;
	background: url(../media/menu.svg) no-repeat center center;
	text-indent: 200%;
	outline: none;
	z-index: 0;
	cursor: pointer;
}

.overlay .overlay-close {
	width: 32px;
	height: 32px;
	position: absolute;
	right: 64px;
	top: 32px;
	overflow: hidden;
	border: none;
	background: url(../media/cross.svg) no-repeat center center;
	text-indent: 200%;
	outline: none;
	z-index: 100;
	cursor: pointer;
}

/* Menu style */
.overlay nav {
	text-align: center;
	position: relative;
	top: 40%;
	height: 40%;
	font-size: 37px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	height: 100%;
	position: relative;
}

.overlay ul li {
	display: block;
	margin-bottom: 32px;
}

.overlay ul li a {
	font-weight: 600;
	display: block;
	color: #767776;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
	color: #fca02f;
}

.overlay .show-sub-menu .item-menu-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #767776;
}

.overlay .show-sub-menu .sub-menu {
	font-size: 20px;
}

.overlay .show-sub-menu .sub-menu a {
	margin-top: 12px;
}

.arrow {
	cursor: pointer;
	font-size: 18px;
}

/* Effects */
.overlay-hugeinc {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay-hugeinc nav {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.overlay-hugeinc nav ul {
	opacity: 0.4;
	-webkit-transform: translateY(-25%) rotateX(35deg);
	transform: translateY(-25%) rotateX(35deg);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
	opacity: 1;
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
	-webkit-transform: translateY(25%) rotateX(-35deg);
	transform: translateY(25%) rotateX(-35deg);
}

.single-column {
	font-weight: 500;
}

.left-column {
	display: inline-block;
	width: 50%;
	text-align: justify;
	padding-right: 15px;
	float: left;
	font-weight: 400;
}

.right-column {
	display: inline-block;
	width: 50%;
	text-align: justify;
	padding-left: 15px;
	float: left;
	font-weight: 400;
}

.left-column h3,
.right-column h3 {
	font-weight: 500;
}

.modal h2 {
	font-size: 16px;
	margin-bottom: 10px;
}

.modal .responsive {
	width: 100%;
	height: auto;
	margin-bottom: 8px;
}

.modal a {
	color: #fca02f;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.modal a:hover,
.modal a:focus {
	color: #000000;
}

.modal h3 {
	color: #000000;
	font-size: 16px;
	margin-bottom: 12px;
}

.modal h2 {
	color: #000000;
	font-size: 22px;
	margin-bottom: 12px;
}

.video-holder {
	position: relative;
	width: 100%;
	height: 100%;
	margin-bottom: 4px;
}

.video-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #ffffff;
}

.video-icon .fa-3x {
	left: -22px;
	top: -22px;
	position: relative;
}

.video-icon .fa-3x:hover {
	opacity: 0.7;
}

.fa-external-link-alt {
	font-size: 9px;
	position: relative;
	top: -2px;
}

.video-text {
	min-height: 60px;
}

@media screen and (max-width: 900px) {
	.overlay nav {
		height: 50%;
		font-size: 32px;
	}

	.overlay ul li {
		min-height: 34px;
	}

	.overlay-menu {
		right: 32px;
	}

	.left-column,
	.right-column {
		display: block;
		width: 100%;
		text-align: left;
		padding: 0;
		float: none;
	}

	.overlay .overlay-close {
		right: 32px;
	}
}