.top-banner {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #000;
    padding: 4px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-banner .top-banner-gif {
    display: block;
    width: 100%;
    max-width: 1100px;
    height: auto;
    object-fit: contain;
}

.image-banner {
    width: 100%;
    margin: 62px auto 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.image-banner .top-banner-gif {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.banner-mobile {
    display: none !important;
}

.banner-desktop {
    display: block !important;
}

@media (max-width: 768px) {

    .banner-desktop {
        display: none !important;
    }

    .banner-mobile {
        display: block !important;
        width: 100%;
        height: auto;
    }
}
