#menu_mobile{
    display: none;
}

/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff;
	font-family: 'GothamHTF-Medium';
	font-weight: normal;
	font-style: normal;
	z-index: 100;
}

/* Overlay closing cross */
.overlay .overlay-close {
	position: absolute;
	color: #ee7267;
	border: none;
	background: transparent;
	width: 50px;
	height: 50px;
	font-size: 26px;
    top: 14px;
    left: 18px;
	outline: none;
	z-index: 100;
}

/* Menu style */
.overlay nav {
	position: relative;
    top: calc(50% - 240px);
    float: left;
    width: 100%;
    padding: 0;
    text-align: center;
}

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

.overlay ul li {
	display: block;
	padding-bottom: 26px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.overlay ul li a {
	font-size: 24px;
	text-decoration: none !important;
	font-weight: 300;
	display: block;
	color: #ee7267;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

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

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

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

@media screen and (max-width: 992px){
    /************** MENU ******************/
	#menu{
		display: none;
	}
	
	/************** MENU - MOBILE ******************/
	.logo_mobile{
		position: absolute;
		width: 40px;
		top: calc(50% - 20px);
		left: calc(50% - 20px);
	}

	#menu_mobile{
        display: block;
        padding: 0 24px;
        position: fixed;
        top: 0;
        height: 50px;
        width: 100%;
		z-index: 100;
		background: #fff;
		border-bottom: 1px solid #ccc;
	}
	
	.botao_abrir{
		border: none;
		background: none;
		color: #ee7267;
		font-size: 24px;
		margin-top: 7px;
	}

	.menu_mobile2{
		background: #fff !important;
		border-bottom: 1px solid #868686 !important;
		transition: 0.3s;
	}

	.menu_mobile3{
		background: transparent;
		border-bottom: 1px solid transparent;
		transition: 0.3s;
	}
    
}