@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-3-v15-latin-regular.eot');
    src: url('../fonts/source-sans-3-v15-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v15-latin-regular.woff2') format('woff2'), url('../fonts/source-sans-3-v15-latin-regular.woff') format('woff'), url('../fonts/source-sans-3-v15-latin-regular.ttf') format('truetype'), url('../fonts/source-sans-3-v15-latin-regular.svg#SourceSans3') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/source-sans-3-v15-latin-600.eot');
    src: url('../fonts/source-sans-3-v15-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v15-latin-600.woff2') format('woff2'), url('../fonts/source-sans-3-v15-latin-600.woff') format('woff'), url('../fonts/source-sans-3-v15-latin-600.ttf') format('truetype'), url('../fonts/source-sans-3-v15-latin-600.svg#SourceSans3') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/source-sans-3-v15-latin-700.eot');
    src: url('../fonts/source-sans-3-v15-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-3-v15-latin-700.woff2') format('woff2'), url('../fonts/source-sans-3-v15-latin-700.woff') format('woff'), url('../fonts/source-sans-3-v15-latin-700.ttf') format('truetype'), url('../fonts/source-sans-3-v15-latin-700.svg#SourceSans3') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: 400 16px/1.3em 'Source Sans 3', Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

header {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

header .logo {
    padding: 2rem 2rem 1rem;
}

header :is(h1, h3) {
    background: #fff;
    text-align: center;
    position: absolute;
    padding: .625rem 1.2rem .625rem 3.5rem;
    left: 0;
    font-weight: 600;
}

header h1 {
    font-size: 1.875rem;
    color: #085d92;
    top: 9.5rem;
}

header h3 {
    font-size: 1.875rem;
    color: #850047;
    top: 13rem;
}

header div {
    position: relative;
}

header h4 {
    background: #065E94;
    color: #fff;
    font-size: 22px;
    padding: .625rem 1.562rem .625rem 3.5rem;
    font-weight: 400;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    letter-spacing: -0.1px
}

:is(header, article) span {
    white-space: nowrap;
}

.nowrap {
    white-space: nowrap;
    color: inherit;
}

article {
    padding: 0 3.5rem 2rem;
}

article p {
    margin: 1rem 0;
    text-align: justify;
}

article h2 {
    font-size: 1.05rem;
    color: #05548b;
}

article .col-2 {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem 0;
}

article section {
    width: 50%;
}

article :is(p, ul) {
    hyphens: auto;
}

article ul {
    margin: 1rem 0 0 1rem;
    list-style: none;
}

article ul li:before {
    content: "\2022";
    color: #871e5f;
    float: left;
    font-size: 1.125rem;
    margin: -1px 0 0 -15px;
}

article .floating {
    display: flex;
}

article .floating img {
    float: right;
    height: 100%;
    width: 13.75rem;
    margin: 1.5rem 0 0 1.25rem;
    object-fit: contain;
    shape-outside: inset(calc(100% - 9.062rem) 0 0);
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #01558c;
    text-decoration: none;
}

footer {
    background-color: #f4f3f5;
    padding: 1.5rem 3.5rem 1rem;
    border-top: 0.5rem solid #871e60;
}

footer p {
    margin: 0 0 .5rem;
    text-align: justify;
    hyphens: auto;
}

footer p span {
    color: #01558c;
}

footer p span.kennziffer {
    color: #81004d;
    font-size: 1.187rem;
    font-weight: 700;
}

@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    :is(article, footer) p {
        text-align: left;
    }
}

@media only screen and (max-width: 850px) {
    header {
        flex-direction: column;
        padding: 0 0 2rem;
    }

    header .logo {
        padding: 2rem 2rem 1rem;
    }

    header :is(h1, h3, h4) {
        position: relative;
        top: 0;
        text-align: center;
        line-height: 120%;
    }

    header :is(h1, h3) {
        padding: 0 1rem .5rem;
    }

    header h4 {
        padding: 1rem;
    }

    header img {
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 768px) {
    article {
        padding: 0 2rem 1rem;
    }

    article .col-2 {
        flex-direction: column;
    }

    article section {
        width: 100%;
    }

    article .floating {
        display: block;
    }

    article .floating img {
        float: none;
        margin: 20px 0;
        padding: 0;
        position: static
    }

    footer {
        padding: 1.5rem 2rem 1rem;
    }
}

@media only screen and (max-width: 480px) {
    header {
        align-items: center;
    }

    article {
        padding: 0 1rem 1rem;
    }

    footer {
        padding: 1rem;
    }
}
