@charset "UTF-8";
/* CSS Document */

#menu-mobile{
	width:100%;
	height:50px;
	position:fixed;
	top:0px;
	left:0px;
	background-color:#09C;
	margin:0px;
	padding:0px;
	list-style:none;
	line-height:50px;
}

#menu-mobile li{
	width:100%;
	height:100%;
	padding-left:30px;
	color:#FFF;
	background-color:#09C;
	margin:0px;
	padding:0px;
	list-style:none;
	display:none;
	z-index:1000;
	overflow:hidden;
}

#menu-mobile.active{
	overflow:visible;
}

#menu-mobile li{
	width:100%;
	height:100%;
	padding-left:30px;
	color:#FFF;
	background-color:#09C
}

#header-mobile{
	width:100%;
	height:100%;
}

#logo-mobile{
	float:left;
	height:100%;
}

#botonmenu-mobile{
	float:right;
	margin-top:10px;
	margin-right:15px;	
}



/* tablets (portrait and lascape) ---------- */
@media only screen and (min-width: 1025px) and (max-width: 1300px) {

	#home{
		text-alin:center;
	}
	
	#logo{ display:none; }
	
	#botonmenu{ display:none; }

	#down-arrow{
		display:none;
	}
	
	#menu{
		display:none;
	}
	
	#menu-mobile{
		display:block;
	}
	
}

/* celulares ---------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) {


}