/*sector 2*/

.sec2 {
	margin:20px auto;
	width:100%;
	padding:15px 0px;
	display:flex;
	justify-content:space-between;
}

.sec2 .ventajas{
	width:45%;
}

.sec2 .Generalidades{
	width:45%;
}



/*sector 4*/
.sec4 {
	margin:20px auto;
	width:100%;
	padding:15px 0px;
	display:flex;
	justify-content:space-between;
}


.sec4 .emp {
	width:45%;
}

.sec4 .emp ul{
	padding:0px 13px;
}

.sec4 .dia {
	width:45%;
}
.sec4 .dia img {
    margin:10px auto;
}

/*--------------------------------------------------------*/
/*estilos adaptables a dispositivos moviles*/
/*flex-direction:column;*/

@media screen and (max-width:800px){

/*sector 2*/

.sec2 {
    flex-direction:column;
}

.sec2 .ventajas{
	width:100%;
}

.sec2 .Generalidades{
	width:100%;
	padding-top:30px;
}

/*sector 4*/
.sec4 {
	flex-direction:column;
}

.sec4 .emp {
	width:100%;
}

.sec4 .dia {
	padding-top:30px;
	width:100%;
}
.sec4 .dia img {
    width:100%
}

}