@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #0069B6;
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 1000px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid .062rem #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p:has(+ h1) {
    text-align: center;
}

p span {
    white-space: nowrap;
}

.margin {
    margin: .937rem 0;
}

.kleine_margin {
    margin: 0 0 20px;
}

h1 {
    text-align: center;
    font-size: 38px;
    line-height: 1.1;
    margin: 20px 0 50px;
}

h2,
h3,
h4 {
    color: #fff;
    line-height: 1.2;
}

h2 {
    font-size: 54px;
}

h3 {
    font-size: 38px;
}

h4 {
    background: #EC6608;
    display: block;
    width: fit-content;
    padding: 3px;
    font-size: 17px;
}

h5 {
    font-size: 1rem;
    margin: 0 0 1rem;
    font-weight: normal
}

:is(h2, h3) span {
    background: #005CA9;
    padding: .187rem;
}

header {
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
    background: #003063;
    padding: 3rem 4rem 12rem;
    display: flex;
    position: relative;
    justify-content: right;
}

a.color {
    color: #fff;
}

.title {
    transform: rotate(-6deg);
    position: absolute;
    z-index: 1;
    top: -9rem;
    left: 5%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.padding {
    padding: 170px 2rem 1rem 5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.absolute {
    position: absolute;
    width: 45%;
    right: 1rem;
    top: 0%;
}

article {
    padding: 0 60px 20px 10px;
}

ul {
    list-style: none;
    margin: 0 0 50px 25px;
    padding: 0;
}

li {
    padding-left: 35px
}

li:before {
    content: "\2022";
    float: left;
    margin-left: -35px;
    font-size: 1.437rem;
    line-height: 1.1;
}

footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.flex {
    display: flex;
    gap: 32px;
}

.flex>p:first-of-type {
    flex: 0 0 15rem;
}

.logos {
    margin: 1.875rem 1.25rem 0 0;
    justify-content: space-between
}

.center {
    text-align: center
}

@media only screen and (max-width: 999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    header,
    .padding {
        padding: 1rem;
    }

    header {
        clip-path: none;
    }

    article {
        padding: 0;
    }

    .absolute,
    .title {
        position: static;
    }

    .padding {
        row-gap: 0;
    }

    .title {
        transform: rotate(0);
        margin: 0 0 1rem;
    }

    .absolute {
        width: 100%;
        margin: 0 0 50px;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    ul {
        margin: 0 0 50px;
    }

    br {
        display: none;
    }

    footer br,
    h2 br {
        display: block;
    }
}

@media only screen and (max-width: 899px) {
    .flex {
        flex-direction: column;
        gap: 0
    }

    .flex p {
        text-align: center;

    }

    .flex>p:first-of-type {
        flex: auto;
    }

    .logos {
        align-items: center;
        gap: 1.875rem;
        margin: 1rem 0 0
    }
}

@media only screen and (max-width: 799px) {
    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 1.875rem;
    }
}

@media only screen and (max-width: 599px) {
    header {
        display: flex;
        justify-content: center;
    }

    .absolute,
    ul {
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 27px;
        margin: 1rem 0 1.5rem;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 21px;
    }

    h2,
    h3 {
        text-align: center;
    }

    h4 {
        display: inline-block;
        margin: 0 auto
    }

    ul li {
        padding-left: 1.562rem
    }

    ul li:before {
        margin-left: -1.25rem
    }
}