/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #101010;
}

/* Overlay closing cross */
.overlay .overlay-close {
	width: 43px;
	height: 43px;
	position: absolute;
	
	top: 30px;
	overflow: hidden;
	border: none;
	background: url(../images/cross.png) no-repeat center center;
	text-indent: 200%;
	color: transparent;
	outline: none;
	z-index: 100;
	padding:0;
	right:50px;
}

/* Menu style */
.overlay nav {
	
	position: relative;
	    top: 54%;
    height: 75%;
	font-size: 54px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	padding:35px 30px;
}
@media(min-width:1600px)
{
.overlay nav {
 top: 55%;
 height: 75%;
}
}

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

.overlay ul li {
	display: block;
	height: 20%;
	height: calc(100% / 6);
	min-height: 40px;
}

.overlay ul li a {
	font-weight: 400;
	display: block;
	color: #e7e7e7;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.overlay ul li a strong
{
font-weight:900;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
    color: #0000ff;
    font-weight: 700;
    text-decoration: none;
}

/* 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);
}

@media screen and (max-height: 30.5em) {
	.overlay nav {
		height: 70%;
		font-size: 34px;
	}
	.overlay ul li {
		min-height: 34px;
	}
}