@media screen and (max-device-width: 768px) {
	//MOVIL o TABLET 
	.movil {
		display:block; 
	}
	.web {
		display:none;	
	}
}


@media screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
	// TABLET VERTICAL
	.movil {
		display:block; 
	}
	.web {
		display:none;	
	}
}

@media screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
	// TABLET HORIZONTAL
	.web {
		display:block; 
	}
	.movil {
		display:none;	
	}
	
}

@media screen and (min-device-width:1025px) {
	// ESCRITORIO
	.web {
		display:block; 
	}
	.movil {
		display:none;	
	}
}
