/* Home Page Standard work process */

/*1.  visible on desktop */

/* Hide on mobile */
@media (max-width: 768px) { /* Adjust the breakpoint as needed */
    #webtrade-work-process-id-desktop {
        display: none; /* Hidden on small screens */
    }
}

/* Show on desktop */
@media (min-width: 769px) {
    #webtrade-work-process-id-desktop {
        display: block; /* Visible on larger screens */
    }
}

/*2.  visible on Mobile */

/* Hide on Desktop*/
@media (max-width: 768px) { /* Adjust the breakpoint as needed */
    #webtrade-work-process-id-mobile {
        display: block; /* Hidden on small screens */
    }
}

/* Show on Mobile */
@media (min-width: 769px) {
    #webtrade-work-process-id-mobile {
        display: none; /* Visible on larger screens */
    }
}