<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*#region grid */

body, html {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

/*#endregion grid */

/*#region colors */

:root {
    --black: rgba(0,0,0,1);
    --white: rgba(255,255,255,1);
}

/*#endregion colors */

/*#region fonts*/


body, p, h1, h2, h3, h4, h5, h6, ul, li, a, span, table, tr, td {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 160%
}


h1 {
    font-size: 2.50em;
    font-weight: 600;
}

h2 {
    font-size: 2.00em;
    font-weight: 600;
}

h3 {
    font-size: 1.75em;
    font-weight: 600;
}

h4 {
    font-size: 1.50em;
    font-weight: 600;
}

h5 {
    font-size: 1.25em;
    font-weight: 600;
}

h6 {
    font-size: 1.10em;
    font-weight: 600;
}

p.small {
    margin-top: 20px;
    font-size: 0.85em;
}

a {
    text-decoration: none;
}

/*#endregion fonts*/

/*#region splash */

.splash {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 160px);
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0px;
    padding: 0px;
}

    .splash .content {
        padding: 20px;
    }

        .splash .content img {
            max-width: 200px;
            border: 14px solid #FFF;
            box-shadow: 0px 0px 10px rgba(0,0,0,0.15);
        }

        .splash .content p {
            max-width: 720px;
        }

/*#endregion */

/*#region Header */

.header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0px;
    padding: 0px;
    background: var(--beige);
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0px;
    padding: 0px;
    justify-content:center;
    align-items:center;
    width:20%;
    max-width:300px;
}

.header .mix {
    display:flex;
    flex-direction:column;
    width:100%;
    flex-shrink:1;
    background:var(--accent);
}

.header .mix .announcement {
    display:flex;
    flex-direction:column;
    width:100%;
    justify-content:center;
    align-items:center;
    padding:10px;
}

    .header .mix .announcement ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: center;
        align-items: center;
        list-style-type: none;
        overflow-x: hidden;
        scroll-snap-type: x proximity;
        cursor:grab;
    }

    .header .mix .announcement ul li {
        display: flex;
        flex-direction: column;
        flex: 0 0 calc(100%);
        justify-content: center;
        align-items: center;
        color:var(--white);
    }

    .header .mix .menu {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 14px 0px;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        background:var(--beige);
    }

    .header .mix .menu ul {
        display:flex;
        flex-direction:row;
        flex-wrap:nowrap;
        list-style-type:none;
        margin:0px;
        padding:0px;
        width:100%;
        justify-content:flex-start;
        align-items:center;
    }

    .header .mix .menu li {
        display: flex;
        flex-direction: row;
        list-style-type: none;
        margin: 0px;
        padding: 10px 30px;
        justify-content: flex-start;
        align-items: center;
        font-weight:500;
    }

        .header .mix .menu li:nth-of-type(1) {
            padding: 10px 30px 10px 0px;
        }

    .header .menu-toggle {
        display:none;
    }


/*#endregion*/

/*#region main */

.main {
    display:flex;
    flex-direction:column;
    min-height:800px;  
    justify-content:flex-start;
    align-items:center;
    margin:0px;
    padding:30px;
}

    .main .search-box {
        display:flex;
        flex-direction:row;
        width:100%;
        max-width:800px;
        justify-content:center;
        align-content:center;
        margin:30px 0px 60px 0px;
    }

        .main .search-box input[type='text'] {
            display:flex;
            flex-grow:1;
            padding:30px;
            border: 1px solid var(--accent);
            font-size:1.3em;
        }

        .main .search-box button {
            display:flex;
            width:140px;
            padding: 10px 20px;
            background: var(--accent);
            color: var(--white);
            justify-content:center;
            align-items:center;
            font-size:1.4em;
            text-transform:lowercase;
            font-weight:500;
        }

    .main ul.products {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        list-style-type: none;
        margin: 0px;
        padding: 0px;
        width: 100%;
    }

    .main ul.products li {
        display: flex;
        flex-direction: column;
        width: calc(20% - 20px)
    }

        .main ul.products li .product {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

            .main ul.products li .product p.title {
                display: flex;
                flex-direction: column;
                max-width: 100%;
                background: var(--beige);
                padding: 20px;
                margin: 0px;
                font-size: 1.1em;
                font-weight: 500;
                height: 60px;
                justify-content: center;
                align-items: flex-start;
            }

            .main ul.products li .product p.desc {
                display: flex;
                flex-direction: column;
                max-width: 100%;
                background: var(--white);
                padding: 0px 20px;
                margin: 10px 0px;
                font-size: 1em;
                font-weight: 400;
                height: 60px;
                justify-content: flex-start;
                align-items: flex-start;
            }

            .main ul.products li .product .image {
                display: flex;
                flex-direction: column;
                max-width: 100%;
                background: var(--white);
                padding: 10px;
                margin: 0px;
                height: 120px;
                justify-content: center;
                align-items: center;
                border:1px solid var(--beige);
            }



/*#endregion */

/*#region footer */

footer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 160px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px;
    margin: 0px;
}

    footer .footer-content {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

        footer .footer-content .footer-copy {
            background: var(--offdark);
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            padding: 40px;
            align-items: flex-start;
            text-align: left;
        }

        footer .footer-content .footer-copy ul {
            display:flex;
            flex-direction:row;
            flex-wrap:wrap;
            gap:10px;
            justify-content:center;
            align-items:flex-start;
            list-style-type:none;
            margin:0px;
            padding:0px;
        }

            footer .footer-content .footer-copy ul li {
                display:flex;
                flex-direction:column;
                font-weight:400;
                color:var(--white);

            }

        footer .footer-content .footer-logo {
            display: flex;
            min-width: 200px;
            max-width: 400px;
            background: #FFF;
            align-items: center;
            justify-content: center;
            background: var(--white);
        }

            footer .footer-content .footer-logo img {
                max-height: 140px;
            }

        footer .footer-content .footer-statement {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: var(--dark);
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        footer .footer-content .footer-copy p, footer .footer-content .footer-copy a, footer .footer-content .footer-copy a:hover {
            max-width: 480px;
            color: var(--white);
        }

        footer .footer-content .footer-statement p {
            color: var(--white);
            margin: 0px;
            padding: 0px;
            max-width: 100%;
        }

@media(max-width:990px) {

    footer .footer-content .footer-copy {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        padding: 40px;
        align-items: center;
        text-align: center;
    }

    footer .footer-content .footer-logo {
        display: none;
    }
}

/*#endregion */
</pre></body></html>