<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-700.woff') format('woff'),
        url('../fonts/roboto-v30-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

:is(a:link, a:visited, a:active) {
    color: #008789;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    color: #000;
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    background-color: #F2F2F2;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: none;
    padding: 0.5rem 0rem;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 0 1.437rem #A6A6A6;
}

p {
    margin: 0 0 14px;
}

span {
    display: inline-block;
}

h1 {
    text-align: center;
    font-size: 1.5em;
    line-height: 1em;
    color: #FFFFFF;
    margin: 0;
    background-color: #008789;
    width: 70%;
    padding: 1rem;
    position: absolute;
    z-index: 55;
    left: 0;
    top: 28.5%;
    font-weight: 700;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.25rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.25rem;
    font-size: 1.687rem;
    line-height: 0.8;
}

header {
    padding: 1rem 2.5rem 1.5rem;
}

article,
footer {
    padding: 0 2.5rem;
}

.slider {
    position: relative;
    margin: 0 0 1rem
}

.slider &gt; img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}

.slider &gt; img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider &gt; img:nth-of-type(2) {
    animation-delay: 6s;
}

.slider &gt; img:nth-of-type(3) {
    animation-delay: 12s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        width: 100%;
        position: static;
        margin: 0 0 1rem
    }

    header {
        padding: 0 0 1rem;
    }

    article,
    footer {
        padding: 0;
    }

    .slider {
        margin: 0
    }
}

@media only screen and (max-width: 31.25rem) {
    header img {
        margin: 1rem auto 0;
        display: block
    }
}

@media only screen and (max-width: 31.25rem) {

    h1,
    h2 {
        font-size: 1.125rem;
        line-height: 1.2;
    }
}</pre></body></html>