/*Reseteo del documento*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* TODA LA CONFIGURACION DEL HEADER */

/*palabra nosotros*/
h1{
	color: #ffffff;
	font-size: 30px;
	font-family: Lato Black;
	padding: 10px;
}

/*slogan 1 nosotros*/
h2{
	color: #ffffff;
	font-size: 22px;
	padding: 5px;
}
/*slogan 2 nosotros*/
h3{
	color: #ffffff;
	font-size: 18px;
	padding: 10px;
}

/*CONFIGURACIÓN DEL HEADER, IMAGEN DE FONDO POSICION ETC.*/
.cinco{
	background-image: url(imagenes/jpg/2banner5.jpg); /*Imagen de fondo del header*/
	background-size: cover; /*aplicar la imagen competa en el encabezado*/
	min-height: 600px; /*minimo de altura del header*/
	background-position: center center; /*posisiona la imagen de fondo al centro de manera horizontal y vertical*/
	text-align: center;
	display: block;
}

/* CONIGURACION DEL LOGOTIPO EN EL HEADER */
.logo{
	width: 200px; /*Reducir tamaño de la imagen del logotipo del header*/
	margin: 30px;
	flex-direction: column;
	}
/* CONFIGURACION DEL DIV DE LOS SLOGAN H1, H2 Y H3 */
.slogans{
	min-height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/*barra de navegacion*/

nav {
	background-color: #000000;
	font-size: 25px;
}
nav ul li{
	display: inline-block;
	padding: 15px;
	transition: .8s;
}

ul li a{
	color: white;
	text-decoration: none;
}
nav ul li:hover{
	background: #b1b1b1;
}

.img-circulo{
	width: 250px;
}


.contenedor1{
	background-color: #D0F8F8;
	display: flex;
	text-align: center;
	padding: 20px;
}

.active{
	color: orange;
}

.h5-gris{
		background-color: #ECF1F1;
		color: #1B1B1B;
		padding: 20px;
		font-family: Lato Black;
		font-size: 20px;
		margin: 0;
		margin-bottom: 0;
	}

.hide{
	color: white;
	font-size: 20px;
	padding: 12px;
	background-color: #000000;
	cursor: pointer;
	display: none;
}


.section2{
		background-color: #ECF1F1;
		margin-bottom: 0;
	}

/* TERMINA EL HEADER */






/* INICIA EL MAIN */


main{
	background-image: url(imagenes/png/contactanos.png);
	height: 500px;
	background-size: cover;
	background-position: center right;
}

form{
	width: 450px;
	margin: auto;
	background: rgba(0, 0, 0, 0.5);
	padding: 10px 20px;
	box-sizing: border-box;
	border-radius: 15px;

}

#boton{
	background-color: #f0f0f0;
	border-radius: 7px;
	border-style:none ;
}

#boton:hover{
	cursor: pointer;
}

h4{
	color: #fff;
	text-align: center;
	font-size: 28px;
	margin-bottom: 20px;
}

input, textarea{
width: 100%;
margin-bottom: 20px;
padding: 7px;
box-sizing: border-box;
font-size: 18px;
}

textarea{
	max-height: 130px;
	min-height: 130px;
	max-width: 100%;
	min-width: 100%;
}
/* TERMINA EL MAIN */


li{
	padding: 10px;

}

.p-h3{
	font-size: 20px;
}

ul li{
	font-size: 20px;
	padding-left: 40px;
	
}
/*inicia footer*/
footer{
	background-color: #1B1B1B;
	color: #ffffff;
	margin: 0;
}

.mapa-sitio a{
	color: #ffffff;
	text-decoration: none;
}

.pie{
	display: flex;
	justify-content: space-between;
	padding-left: 40px;
	padding-right: 40px;
	text-align: center;
	align-items: center;
}


@media (max-width: 1080px){
	.img-circulo{
width: 200px;
}
.contenedor1{
		display: block;
	}
	.a1{
	justify-content: center;
}
.img-pie{
	width: 300px;
}

}




@media (max-width: 650px){
	ul li{
		width: 100%;
		padding: 12px;
	}

	nav ul{
		display: none;
	}

	.hide {
		display: block;
	}
	.contenedor1{
		display: block;
	}
		.img-circulo{
width: 250px;
}
.pie{
	display: block;
}

form{
	width: 280px;
}
.img-pie{
	width: 300px;
}
}