@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v44-latin-regular.eot');
    src: url('../fonts/open-sans-v44-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-regular.woff') format('woff'), url('../fonts/open-sans-v44-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v44-latin-700.eot');
    src: url('../fonts/open-sans-v44-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v44-latin-700.woff') format('woff'), url('../fonts/open-sans-v44-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v44-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: .812rem;
    line-height: 1.4;
    font-weight: 400
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.0625rem #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 1.5rem;
}

span {
    color: #2C427B;
}

h1 {
    font-size: 2.25rem;
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
    font-weight: normal;
}

h3 {
    color: #00578F;
    margin: 0 0 1.25rem;
    font-size: .875rem;
}

ul {
    list-style: none;
    margin: 0 0 1.5rem;
}

ul li {
    padding-left: 1.5rem;
}

ul li:before {
    content: url("../images/pfeil.png");
    float: left;
    margin-left: -1.5rem;
}

header {
    color: #fff;
    background: #244789;
    padding: 2rem 3.125rem;
    position: relative;
}

.position {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
}

article {
    padding: 2rem 3.125rem 0;
    display: flex;
    justify-content: space-between;
    column-gap: 1.25rem;
}

article section:nth-of-type(1) {
    width: 70%;
}

article section:nth-of-type(2) {
    width: 30%;
    margin: 2.5rem 0 0;
}

aside p {
    margin: 0 0 1.25rem;
}

a.link {
    color: #244789;
    font-size: 1.062rem;
}

footer {
    margin: -2.5rem 0 0;
    padding: 0 3.125rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-end;
}

@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
    }

    h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        text-align: center
    }

    h2 {
        font-size: 1.5rem;
        text-align: center
    }

    h1 br,
    h2 br {
        display: none
    }

    h3 {
        margin: 1rem 0 .625rem;
    }

    header {
        padding: 1rem .625rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    article {
        display: block;
        padding: 0;
    }

    article section:nth-of-type(1),
    article section:nth-of-type(2) {
        width: 100%;
        margin: 0;
    }

    footer {
        padding: 0;
    }

    .position {
        position: static;
    }
}

@media only screen and (max-width: 26.25rem) {
    h1 {
        font-size: 1.562rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    article aside p {
        text-align: center
    }

    footer {
        margin: 0;
        flex-direction: column;
        align-items: center;
    }
}