@media screen and (orientation: portrait) {
    #BannerTabletLandscape {
        display: none;
    }

    #BannerTabletPotrait {
        display: inline-block;
    }
}

@media screen and (orientation: landscape) {
    #BannerTabletLandscape {
        display: inline-block;
    }

    #BannerTabletPotrait {
        display: none;
    }
}

.banner-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4; 
}

.card {
    position: relative;
    z-index: 10;
    background-color: white;
}

.container.py-5 {
    position: relative;
    z-index: 10;
}
