<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#banner {
    margin-top: var(--header-height);
    z-index: 1;
    background-image: url('../assets/img/donut-banner.jpg');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    height: 800px;
    width: 100%;
    margin-bottom: 80px;
}

.banner__inner {
    width: 50%;
    margin-top: calc(var(--header-height) + 30px);

}

.banner__caption {
    font-size: 55px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
}


.banner__main-caption {
    color: var(--primary-color);
}

.banner__desc {
    font-size: 18px;
    margin-top: 30px;
    color: #333;
    letter-spacing: 0.8px;
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
}

.banner__outlet {
    padding-top: calc(var(--card-product-img-height) / 2);
    padding-bottom: 40px; 
}

/* Mobile -&gt; Tablet */
@media (max-width: 991px) {
    #banner {
        background-image: none;
        height: auto;
        margin-bottom: 50px;
    }
   

    .banner__inner {
        width: 100%;
    }

    .banner__desc {
        display: none;
    }

    .banner__caption {
        font-size: 55px;
    }
}



/* Mobile */
@media (max-width: 575px) {
    .banner__caption {
        font-size: 40px;
    }
}</pre></body></html>