/* iPad [portrait + landscape] */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    #home-flash {
        display: none;
    }
    .home-mobile {
        display: block !important;
        height: 464px;
        width 1060px;
    }
}

/* iPhone [portrait + landscape] */
@media only screen and (max-device-width: 480px) {
    #home-flash {
        display: none;
    }
    .home-mobile {
        display: block !important;
        height: 464px;
        width 1060px;
    }
}