/* Overlay style */

#trigger-overlay {
	width:45px;
	height:45px;
	left:30px;
	top:30px;
	text-decoration:none;
	border:none;
	position:absolute;
	background:url(../gfx/menu-btn.png) no-repeat;
	background-size:contain;
	z-index:998;
}

.overlay {
	position: fixed;
	z-index:9999;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(183,46,82,0.98);
	overflow:hidden;
}

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

/* Menu style */
.overlay #mobile-nav {
	text-align: center;
	position: relative;
	top: 110px;
	height: auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.overlay ul {
	padding:0;
	list-style: none;
	position: relative;
	width:80%;
	margin-left:10%;
}

#logo-text {
	width:312px;
	height:78px;
	padding:0;
	margin:0 auto;
	background:url(../gfx/logo-text.png) no-repeat;
	background-size:contain;
	margin-bottom:30px;
}

.overlay ul li {
	margin-bottom:35px;
}

.overlay ul li #icon-contain {
	width:100px;
	height:40px;
	margin:0 auto;
}

.overlay ul li #icon-contain .social-icon {
	margin-left:5px;
	margin-right:5px;
	width:40px;
	height:40px;  
	float:left;
}

.overlay ul li a {
	font-size: 2.5em;
	font-family: 'Source Sans Pro';
	text-transform:uppercase;
	display: block;
	color: #fff;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

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

/* Effects */
.overlay-slidedown {
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
	transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
}

.overlay-slidedown.open {
	visibility: visible;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
	overflow:hidden;
}

@media screen and (max-width: 768px) {
	.overlay ul {
		font-size: 3.5vw;
	}
}