body {
	margin: 0;
	font-size: 1em;
	font-family: sans-serif;
	cursor: default;
	background: black;
	color: white;
}
img {
	display: block;
	max-width: 100%;
}
h1 {
	padding: 15px 0 0 15px;
	margin: 10px 0 0;
}
/*--------------------estilos del header--------------------*/
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	height: 60px;
	padding: 10px 0;
	background: black;
	z-index: 9999;
}
.header .contenedor  {
	display: flex;
	justify-content: space-between;
}
.logotipo, .icon-menu {
	height: 50px;
	margin: 5px;
}
.logotipo img {
	display: block;
	height: 100vh;
}
.icon-menu {
	display: block;
	width: 45px;
	height: 45px;
	font-size: 35px;
	background: #fe0000;
	color: white;
	text-align: center;
	line-height: 45px;
	border-radius: 5px;
	margin-left: auto;
	cursor: pointer;
}
/*--------------------estilos del menu--------------------*/
.nav {
	position: absolute;
	top: 80px;
	left: -100%;
	width: 100%;
	transition: .4s;
}
.menu {
	list-style: none;
	padding: 0;
	margin: 0;
}
.submenu {
	display: none;
}
.menu_link {
	display: block;
	padding: 1em;
	text-decoration: none;
	color: white;
	background: #2d3276;
	transition:.4s;
}
.menu_link:hover {
	background: #fe0000;
}
.mostrar {
	left: 0;
}
/*--------------------estilos formulario--------------------*/
label {
	display: block;
	color: white;
	padding: 5px 15px;
	text-align: center;
}
label:first-child {
	margin-top: 20px;
}
form h3 {
	text-align: center;
}
input, textarea, button {
	display: block;
	width: 90%;
	box-sizing: border-box;
	margin: 5px auto;
	padding: 5px;
	font-size: .8em;
	font-family: sans-serif;	
}
textarea {
	resize: none;
	font-family: sans-serif;
	font-size: .8em;
	height: 100px;
}
button {
	width: 90%;	
	margin: 5px auto;
	appearance: none;
	-webkit-appearance: none;
	background: red;
	color: white;
	padding: 15px;
	font-size: 1.2em;
	border: 0;
	outline: none;
	cursor: pointer;
	margin-bottom: 2em;
}
/*------------------- estilos footer -------------------*/
.footer {
	background: #fe0000;
	color: white;
	padding: 10px;
	text-align: center;
}
.footer [class^='fa'] {
	display: inline-block;
	color: #2d3276;
	text-decoration: none;
	font-size: 1.5em;
	padding: .5em;
	background: white;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	margin: .2em;
}
/*------------------- estilos responsive -------------------*/
@media(min-width: 600px){		
	.header {		
		height: 75px;
	}
	.header .contenedor  {
		align-items: center;
	}
	.logotipo {
		height: 60px;
		margin: 5px;
	}
	.nav {		
		top: 80px;
	}	
	input, textarea, button {		
		margin: 15px auto;
		padding: 15px;
		font-size: 1em;		
	}
	textarea {		
		font-size: 1em;		
	}
	button {
		font-size: 1.5em;
	}
}
@media(min-width: 990px){
	.header .contenedor  {
		width: 90%;
		margin: auto;		
	}
	.nav {		
		position: static;
		display: flex;
		width: 100%;
	}	
	.icon-menu {
		display: none;
	}
	.menu {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
	}	
	.menu_link {
		background: none;
		color: white;
		transition: .2s;
		padding: .5em;
	}
	.menu_link:hover {
		color: white;
	}
	.submenu {
		position: absolute;
		display: none;
		width: auto;
		background: #2d3276;
		color: white;		
	}
	.submenu .menu_link {
		color: white;
	}
}
@media(min-width: 1200px){
	input, textarea, button {		
		width: 50%;		
	}	
	button {
		width: 50%;
		margin-bottom: 2em;
	}	
}