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

body {
    color: #5e5f60;
    font: 0.875em/1.3em Arial, Helvetica, sans-serif;
}

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

header {
    display: flex;
    justify-content: center;
    padding: 2.1875rem 3.75rem;
}

article {
    padding: 0 3.75rem 1.5625em;
}

.slider {
    margin: 0 -3.75rem 1.875rem;
}

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

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

:is(.slider, .slider img:nth-of-type(1)) {
    position: relative;
}

.slider img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 20s linear 0s infinite normal forwards;
    vertical-align: bottom;
}

.slider img:nth-child(2) {
    animation-delay: 5s;
}

.slider img:nth-child(3) {
    animation-delay: 10s;
}

.slider img:nth-child(4) {
    animation-delay: 15s;
}

.siegel {
    position: absolute;
    bottom: 19%;
    right: 9%;
}

footer {
    background-color: #eff1f4;
    padding: 1.5625em 0 1.5625em 3.75rem;
}

footer p {
    color: #000;
    font-size: 0.9375rem;
    line-height: 1.25rem;
}

:is(footer strong, h1) {
    color: #004494;
}

p {
    text-align: justify;
    padding-bottom: 1rem;
    hyphens: auto;
}

h1 {
    margin: 2rem 0;
    font-size: 1.5625em;
    line-height: 1.4;
    text-align: center;
}

h1 span {
    font-size: 0.8em;
}

h2 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.375rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.552em;
    line-height: 1.1;
    font-weight: normal;
    margin: 0 0 0.9375rem -3.75rem;
    padding: 1.1rem 0.625rem 1.1rem 3.75rem;
    background-color: #004494;
    color: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #004494;
    text-decoration: underline;
    white-space: nowrap;
}

a[href^="tel:"] {
    color: #000 !important;
    text-decoration: none !important;
}

ul {
    padding: 0 0 1.5625em;
    list-style: none;
}

ul li {
    padding-left: 3.4375rem;
}

ul li:before {
    content: "\2022";
    font-size: 1.65em;
    float: left;
    text-indent: -1.85rem;
    color: #0C54A8;
}

span {
    white-space: nowrap;
}

img {
    max-width: 100%;
}

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

    :is(li, p) {
        text-align: left;
        hyphens: auto;
        text-wrap: pretty;
    }
}

@media screen and (max-width:767px) {
    :is(header, footer) {
        padding: 1rem;
    }

    article {
        padding: 0 1rem 1rem;
    }

    .slider {
        margin: 0 -1rem 1rem;
    }

    .siegel {
        right: 1rem;
    }

    h1 {
        margin: 0 0 1rem;
    }

    h3 {
        font-size: 1.292em;
        line-height: 1.4;
    }
}

@media screen and (max-width:600px) {
    .siegel {
        position: static;
        display: flex;
        justify-content: center;
    }

    footer p {
        text-align: center;
    }

    ul li {
        padding-left: 1rem;
    }

    ul li:before {
        text-indent: -1rem;
    }
}