.custom-banner {
    text-align: center;
    width: 100%;
}

.custom-banner img {
    max-width: 100%;
    width: 100%;
    height: 400px;
    display: block;
    margin: 0;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.custom-banner a:hover img {
    transform: scale(1.02);
}

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

@media (min-width: 768px) and (max-width: 991px) {
   .custom-banner img {
        width: unset;
        margin: 0 auto;
    }
}


@media screen and (max-width: 768px) {
    .custom-banner.desktop {
        display: none;
    }

    .custom-banner.mobile {
        display: block;
        padding: 10px;
    }
    .custom-banner img {
        height: 250px;
    }
}
