.for-mobile {
    display: none;
    /* Hide on larger screens by default */
}

@media (max-width: 767px) {
    /* Layout */

    .for-desktop {
        display: none;
        /* Hide on smaller screens */
    }

    .for-mobile {
        display: block;
        /* Show on smaller screens */
    }
}