@import url(Normalize.css);

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	position: relative;
	background-color: #E8FFFB;
}

.encabezado{
	width: 100%;
	height: 65px;
	background: orange;
	display: flex;
	align-items: center;
	/*
	position: sticky;
	top: 0;*/
}

.encabezado .contenido{
	width: 100%;
	height: 65%;
	background-color: #fff;
	overflow: hidden;
	display: flex;
	justify-content: flex-end;
}
.logo{
	width: 185px;
	height: 152px;
	margin-left: 10px;
	margin-top: 10px;
	position: absolute;
	z-index: 100;
}

.logo img{
	width: 100%;
	height: 100%;
}
/*Menu*/
.menu{
	width: 45%;
	height: 100%;
	margin-right: 30px;

	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.menu ul{
	display: flex;
	height: 100%;
}
.menu ul li{
	height: 100%;
	list-style: none;
	padding: 0 7px;

	display: flex;
	align-items: center;

}
.menu ul li a{
	display: block;
	text-decoration: none;
	color: black;
	font-family: Arial, sans-serif;
	text-align: center;
	font-size: 20px;
}
.menu ul li a:hover{
	color: blue;
}
/* Redes  */
.menu .redes{
	width: 160px;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.menu .redes li{
	width: 35px;
	height: 35px;
	padding: 0;
}
.menu .redes li a img{
	display: block;
}
.menu .redes li a img{
	width: 100%;
	height: 100%;
}

/*  Cuerpo de la pagina   */

.cuerpo{
	width: 100%;
	height: calc(100vh - 65px);
	/*background-color: red;*/
	position: relative;
}
.cuerpo .carrusel{
	width: 100%;
	height: 100%;
	background-color: yellowgreen;
	position: absolute;
	z-index: 99;
}

.cuerpo .carrusel .indicadores{
	transform: translateY(-30px);
}
.cuerpo .carrusel .contenedor,
.cuerpo .carrusel .contenedor .elementos,
.cuerpo .carrusel .contenedor .elementos .elemento{
	position: relative;
	width: 100%;
	height: 100%;
}

.cuerpo .carrusel .contenedor .elementos .elemento img{
	width: 100%;
}
.cuerpo .carrusel .contenedor .elementos .elemento h3{
    color: white;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 550px;
    font-size: 50px;
    font-family: sans-serif, Arial;
    text-shadow: 0px 0px 10px black;
}
.cuerpo .carrusel .contenedor{
	position: reletive;
}
.cuerpo .carrusel .contenedor .flecha{
	width: 50px;
	height: 50px;
	cursor: pointer;
	position: absolute;
	z-index: 999;

	opacity: .5;
}
.cuerpo .carrusel .contenedor .flecha:hover{
	opacity: 1;
}
.cuerpo .carrusel .contenedor .atras{
	top: 50%;
	left: 10px;
}
.cuerpo .carrusel .contenedor .adelante{
	top: 50%;
	right: 10px;
}
.cuerpo .carrusel .contenedor .flecha img{
	width: 100%;
	height: 100%;
}

.cuerpo .info{
	width: 80%;
	height: 90%;
	z-index: 999;
	position: absolute;
	margin: 1% 10%;
	font-family: sans-serif, Arial;
}
.cuerpo .info .texto{
	width: 75%;
	height: 100px;
	color: white;
	margin: 0 auto;
}
.cuerpo .info .texto h2,
.cuerpo .info .texto p{
	text-align: center;
	text-shadow: 0px 0px 5px black;
}
.cuerpo .info .texto h2{
	height: 50px;
	line-height: 50px;
	font-size: 35px;
}
.cuerpo .info .texto p{
	height: 50px;
	margin-top: 10px;
}
.cuerpo .info .acerca{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
}
.cuerpo .info .acerca .item{
	width: 270px;
	height: 330px;
	background-color: #eee;
	cursor:pointer;
	transition: all 300ms;
}
.cuerpo .info .acerca .item:hover{
	box-shadow: 0px 0px 15px #222;
	transform: scale(1.05);
	transition: all 300ms;
}
.cuerpo .info .acerca .item img{
	width: 100%;
}
.cuerpo .info .acerca .item .titulo{
	padding: 7px 5px;
}
.cuerpo .info .acerca .item .descripcion{
	padding: 3px 5px;
	font-size: 15px;
}
.cuerpo .info .contacto-boton{
	display: block;
	width: 180px;
	height: 60px;
	background-color: orange;
	border-radius: 10px;
	text-decoration: none;
	text-align: center;
	font-size: 20px;
	line-height: 60px;
	color: black;
	margin: 30px auto;
}
.cuerpo .info .contacto-boton:hover{
	color: white;
}



/*NOSOTROS*/

.cuerpo .info .info-nosotros{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
}

.cuerpo .info .info-nosotros h2{
	text-align: center;
	height: 50px;
	line-height: 50px;
}

.cuerpo .info .info-nosotros #imagen-familia,
.cuerpo .info .info-nosotros #mision-vision img{
	width: 100%;
}
.cuerpo .info .info-nosotros #imagen-condominio{
	width: 45%;
}

/*MISION Y VISION*/
.cuerpo .info .info-nosotros #mision-vision{
	width: 45%;
}
.cuerpo .info .info-nosotros #mision-vision article{
	padding: 15px 0;
}
.cuerpo .info .info-nosotros #mision-vision article h3{
	height: 50px;
	line-height: 50px;
}

/*CERTIFICACION*/
.cuerpo .info .info-nosotros .datos-certificacion{
	width: 100%;
	margin-top: 30px;
}
.cuerpo .info .info-nosotros .datos-certificacion span{
	text-align: center;
	font-size: 30px;
}
.cuerpo .info .info-nosotros .datos-certificacion #foto-certificado{
	width: 100%;
}


/*SERVICIOS*/
.cuerpo .info .servicios{
	width: 100%;
	font-family: sans-serif, Arial;
}
.cuerpo .info .servicios h2{
	font-size: 35px;
	line-height: 50px;
	text-align: center;
}
.cuerpo .info .servicios .servicio{
	width: 100%;
	background-color: white;
	height: 400px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 10px 0;
	overflow: hidden;
	align-items: center;
	padding: 0 10px;
}
.cuerpo .info .servicios #mantenimiento{
	flex-direction: row-reverse;
}

.cuerpo .info .servicios .servicio img,
.cuerpo .info .servicios .servicio .info-servicio{
	width: 50%;
}

.cuerpo .info .servicios .servicio img{
	height: auto;
}
.cuerpo .info .servicios .servicio .info-servicio{
	padding: 20px;
	align-items: center;
	height: 200px;
}
.cuerpo .info .servicios .servicio .info-servicio h3{
	text-align: center;
	height: 50px;
	line-height: 50px;
}


/*SERVICIOS (VALORES Y MEJOR SERVICIO)*/
.cuerpo .info .mejor-sevicio,
.cuerpo .info .valores{
	width: 100%;
	padding: 10px 0;
	margin-bottom: 100px;
}

.cuerpo .info .mejor-sevicio h2,
.cuerpo .info .valores h2{
	font-size: 35px;
	line-height: 50px;
	text-align: center;
}

.cuerpo .info .mejor-sevicio section,
.cuerpo .info .valores section{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.cuerpo .info .mejor-sevicio section article,
.cuerpo .info .valores section article{
	width: 50%;
	height: 70px;
	margin-top: 20px;
}

.cuerpo .info .mejor-sevicio section article h3,
.cuerpo .info .valores section article h3{
	line-height: 40px;
}

.cuerpo .info .valores .valores-descripcion{
	text-align: center;
}