/* Mobile */
@media screen and (max-width: 576px) {
    #image_mobile{
        display:block !important;
    }
    #image_desktop,
    #image_tablet{
        display: none;
    }
}
/* Tablet */
@media screen and (min-width: 577px) and (max-width: 768px) {
    #image_tablet{
        display: block !important;
    }
    #image_desktop,
    #image_mobile{
        display: none;
    }
}
/* No mobile image */
@media screen and (max-width: 768px){
    #image_tablet_slider{
        display: block !important;
    }
    #image_desktop_slider{
        display: none;
    }
}

/* No tablet image */
@media screen and (max-width: 576px){
    #image_mobile_slider2{
        display: block !important;
    }
    #image_desktop_slider2{
        display: none;
    }
}