.banner-wrapper {
    display: flex;
    width: 100%;
    height: auto;
}

.banner-wrapper img {
    width: 100%;
    height: auto;
}

.banner-wrapper.mobile-banner {
    display: none;
}

@media (max-width: 768px) {
    .banner-wrapper {
        display: none;
    }

    .banner-wrapper.mobile-banner {
        display: flex;
    }
}