/** Shopify CDN: Minification failed

Line 76:0 Unexpected "<"
Line 83:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.slider-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.slide {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.slide.active {
    opacity: 1;
    z-index: 1;
    transition: opacity 2s;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain !important; 
}
.slide-text {
    position: absolute;
    bottom: 50%;
    left: 5%;
    color: white;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
}
.dots-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #bbb;
    margin: 0 2px;
    cursor: pointer;
}
.dot.active {
    background-color: #717171;
}

@media screen and (min-width: 700px) {

    .slider-container {
        aspect-ratio: 349 / 130;
        height: auto;
    }
   
}

 @media screen and (max-width: 700px) {
        .slider-container {
            height: 80vh !important;
        }
    }
<style>
    td > img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
    }
</style>