<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: 300;
    src: url('../fonts/roboto-v30-latin-300.eot');
    src: url('../fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-300.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-300.woff') format('woff'),
        url('../fonts/roboto-v30-latin-300.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-300.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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font: 0.9375rem 'Roboto', sans-serif;
    line-height: 1.3;
    background: #fff url(../images/hintergrund.jpg) no-repeat fixed;
    color: #003e72;
}

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

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

h1 {
    font-size: 2em;
    line-height: 1.1;
    margin: 1.875rem 0;
}

h2 {
    font-size: 1rem;
    color: #0069B4;
    padding: 0 0.625rem .312rem 1.25rem;
    margin: 0 0 .937rem;
    border-bottom: solid 0.125rem #0069B4;
}

h3 {
    margin: 0 0 0.625rem;
    font-size: 1rem;
}


header {
    padding: .937rem 1.562rem;
}

.right h2 {
    padding: 0 0 0.625rem;
}

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

a:hover {
    text-decoration: underline;
}

article {
    padding: 1.25rem;
}

.left {
    display: flex;
    padding-right: 1.25rem;
}

.left p {
    padding: 0 1.25rem;
}

.right {
    padding-left: 1.25rem;
    margin-bottom: 1.562rem;
}

.left section {
    width: 50%;
}

p {
    margin: 0 0 0.625rem;
}

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

.right ul {
    margin: 0 0 0.625rem;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

footer {
    color: #fff;
    display: flex;
    background: #0069B4;
    padding: 1.25rem;
}

.column {
    width: 49%;
    margin-right: 1.25rem;
}

.slider {
    position: relative;
}

.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;
    }
}

.with-video .video-wrapper {
    position: absolute;
    width: 100%;
    height: 20%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 0;
}

video {
    width: 100%;
    display: block;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    ul {
        margin: 0 0 0.625rem;
    }
}

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

    .left,
    .right {
        padding: 0;
    }

    h2 {
        padding: 0 0.625rem 0.625rem;
    }

    article {
        padding: 0.625rem 0;
    }
}

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

    .left,
    footer {
        display: block;
    }

    .column,
    .left section {
        width: 100%;
    }
}

@media only screen and (max-width: 40rem) {
    h1 {
        margin: 0.625rem 0;
    }
}
</pre></body></html>