/* Para escritorio*/

@media only screen
and (min-width : 1024px){
	.movil{
		display: none;
	}
	.descarga{
		display: none;
	}
	.escritorio{
		margin-top: 15px;
		margin-bottom: 15px;
	}
}
/* Para movil */

@media only screen 
and (max-width : 1024px){
	.escritorio{
		display: none;
	}
	.descarga{
		position: absolute;
		z-index: 5;
		right:-10px;
		bottom: 5px;
	}
	.descarga-img{
		border-radius: 50%;
		width:60px;
		height: 60px;
		box-shadow: 0px 2px 20px  rgba(0, 0, 0, 0.6);
	}
}

