<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Beau+Rivage&amp;family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap');

* {
    font-family: "DM Sans", sans-serif;
}

.font-beau-rivage {
    font-family: "Beau Rivage", cursive;
}

.navigation {
    height: 5em;
}

.header-main-section-h {
    min-height: calc(100vh - 5em);
}

button {
    cursor: pointer;
}


/* Category Offers Section */
.category-offers-section .categories {
    animation: animate-the-category-section infinite 20s linear;
}

.category-offers-section .categories .category-marquee {
    display: inline-flex;
    min-width: fit-content;
}

@keyframes animate-the-category-section {
    0% {
        transform: translate(100%, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}


@media (max-width: 800px) {
    .category-offers-section .categories {
        animation: animate-the-category-section infinite 5s linear;
    }
}


.home-blogs-sections{
    background-image: url(../images/ooorganize.svg);
}</pre></body></html>