.gallery-desktop {
    display: block;
}

.gallery-mobile {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .gallery-desktop {
        display: none;
    }

    .gallery-mobile {
        display: block !important;
    }
}