.bottom-sticky-banners{
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.bottom-sticky-banners img{
    max-width: 100%;
    width: auto;
    height: auto;
}
.banner-desktop{
    display: inline-flex;
}
.banner-mobile{
    display: none;
}

@media(max-width: 480px){
    .banner-desktop{
        display: none;
    }
    .banner-mobile{
        display: inline-flex;
    }
}