/* GALERIA RESPONSIVA */ 

/* Por defecto se muestra */
.gallery-desktop-only {
  display: block;
}

/* Ocultar en tablet y móvil */
@media (max-width: 1024px) {
  .gallery-desktop-only {
    display: none;
  }
}


.custom-mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .custom-mobile-only {
    display: block;
  }
}



