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

html {
    min-height: 100%;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

body {
    color: #000;
    font-size: 14px;
    line-height: 19px;
    font-family: Arial, sans-serif;
}

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

@-webkit-keyframes slidy {
    0% {
        left: 0%;
    }

    8.33% {
        left: 0%;
    }

    16.66% {
        left: -100%;
    }

    24.99% {
        left: -100%;
    }

    33.32% {
        left: -200%;
    }

    41.65% {
        left: -200%;
    }

    49.98% {
        left: -300%;
    }

    58.31% {
        left: -300%;
    }

    66.64% {
        left: -400%;
    }

    74.97% {
        left: -400%;
    }

    83.3% {
        left: -500%;
    }

    91.63% {
        left: -500%;
    }

    100% {
        left: -600%;
    }
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    8.33% {
        left: 0%;
    }

    16.66% {
        left: -100%;
    }

    24.99% {
        left: -100%;
    }

    33.32% {
        left: -200%;
    }

    41.65% {
        left: -200%;
    }

    49.98% {
        left: -300%;
    }

    58.31% {
        left: -300%;
    }

    66.64% {
        left: -400%;
    }

    74.97% {
        left: -400%;
    }

    83.3% {
        left: -500%;
    }

    91.63% {
        left: -500%;
    }

    100% {
        left: -600%;
    }
}

.slide {
    overflow: hidden;
}

.slide figure img {
    width: 14.2857%;
    float: left;
}

.slide figure {
    position: relative;
    width: 700%;
    -webkit-animation-name: slidy;
    -webkit-animation-duration: 30s;
    -webkit-animation-delay: 3s;
    -webkit-animation-iteration-count: infinite;
    animation: 30s slidy infinite;
}

.flexbox {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

:is(.flexbox ul, .width) {
    flex: 1 1 0;
}

.logo {
    display: flex;
    justify-content: center;
    padding: 26px 16px;
}

.center {
    color: #ae2432;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
}

h1 {
    margin: 20px 0 4px;
    font-size: 26px;
    line-height: 31px;
    text-align: center;
    color: #ae2432;
}

h2 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 6px;
    color: #004780;
}

p {
    margin: 0 0 1rem;
    text-align: justify;
    hyphens: auto;
}

article {
    padding: 40px 61px 0;
}

footer {
    padding: 0 60px 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    flex-wrap: wrap;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

ul {
    margin: 0 0 20px 19px;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: url('../images/iconlist.jpg');
    float: left;
    text-indent: -1.25rem;
}

.color {
    color: #004780;
}

p span {
    white-space: nowrap;
}

@media (max-width: 798px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(p, ul) {
        text-wrap: pretty;
        hyphens: auto;
    }

    article {
        padding: 16px 16px 0;
    }

    footer {
        padding: 0 16px 16px;
    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }

    footer br {
        display: inline;
    }
}

@media all and (max-width: 539px) {
    :is(.flexbox ul, .width) {
        flex: 1 1 auto;
    }

    footer p {
        text-align: center;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    .zertifikat {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    ul {
        margin-left: 0
    }
}