/*Imagen de inicio*/
.imginicio{
	width:100%;
}

.imginicio img{
	display:block;
	margin:20px auto;
	width:70%;
	
}

/*sector 1*/

.sec1 {
	margin:20px auto;
	width:100%;
	padding:15px 0px;
	display:flex;
	justify-content:space-between;
}


.sec1 .ser{
	width:45%;
}	
	
	
.sec1 .serimg{
    width:45%;
}

.sec1 .serimg img{
	width:70%;
	margin:20px auto;
	display:block;
}

.sec2 {
	margin:20px auto;
	width:100%;
	padding:15px 0px;
	display:flex;
	justify-content:space-between;
}


.sec2 .humimg{
	width:45%;
}	
	
.sec2 .humimg img {	
    width:70%;
	display:block;
	margin:20px auto;
}
	
.sec2 .hum{
	width:45%;
}

.sec2 .hum ul{
	padding:0px 13px;
}

/*--------------------------------------------------*/
/*estilos adaptables a dispositivos moviles*/

/*flex-direction:column;*/

@media screen and (max-width:800px){
	
.imginicio img{
	width:100%;
}

/*sector 1*/

.sec1 {
    flex-direction:column;
}


.sec1 .ser{
	width:100%;
}	
	
	
.sec1 .serimg{
    width:100%;
}

.sec1 .serimg img{
	width:70%;
}

.sec2 {
    flex-direction:column-reverse;
}


.sec2 .humimg{
	width:100%;
}
	
.sec2 .hum{
	width:100%;
}

}