.top-nav #logo.mof-adjust{
	padding: 0;
	text-align: center;
	height: 56px;
	width: 100%;
}
.top-nav #logo.mof-adjust a{
	display: inline-block;
}
.mof-adjust.nav-btn{
	position: absolute;
	left: 0;
}
.mof-adjust.nav-btn .tw-menu-icon{
	height: 56px;
}

.overlay-menu-wrap {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -5;
	width: 100%;
	height: 100%;    
	overflow: auto;
	
	color: #fff;
	background-color: black; background-color: rgba(0,0,0,0.7);
	opacity: 0;
	-moz-transition: all 0.7s ease-out;-webkit-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
}
.overlay-menu-wrap.active {
	z-index: 500;
	opacity: 1;
}
.overlay-menu-wrap .overlay-menu {
	display: table;
	height: 100%;
	/*width: 100%;
	max-width: 940px;*/
	margin: 0 auto;
	position: relative;
	
	transform: translateX(-20px);
	transition: all 0.3s;
	opacity: 0;
}
.overlay-menu-wrap.active .overlay-menu {
	transition: all 0.7s ease-out 0.5s;
	transform: translateX(0);
	opacity: 1;
}
.overlay-menu nav {
	display: table-cell;
	height: 100%;
    width: 100%;
    text-align: center;
    vertical-align: middle;
}
.overlay-menu .close {
	display: block;
	position: absolute;
	top: 10px;
	left: 15px;
	width: 40px;
	height: 40px;
	border: 0;
	background: url('../images/cross.png') no-repeat 50% 50%;
	overflow: hidden;
	text-indent: -999px;
	transition: all 0.3s;
	transform: rotateZ(0deg);
}
.overlay-menu-wrap.active .close {
	transition: all 0.7s ease-out 0.5s;
	transform: rotateZ(90deg);
}

.overlay-menu .nb-menu-items-container {
	width: 100%;
	max-width: 920px;
	max-height: 920px;
	padding: 40px;
	margin: 0 auto;
	text-align: left;
	overflow: auto;
}

.overlay-menu .menu-item a {
	text-transform: uppercase;
	display: inline-block;
}
.overlay-menu .sub-menu a {
	text-transform: capitalize;
	padding: 4px 0;
}