@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: "Verdana", "Geneva", sans-serif;
    font-size: 0.875em;
    line-height: 1.431em;
    margin: 0;
}

#wrapper {
    position: relative;
    max-width: 840px;
    margin: 1rem auto;
    border: none;
    background-color: #fff;
    overflow: hidden;
    -moz-box-shadow: 0px 0px 23px #A6A6A6;
    -webkit-box-shadow: 0px 0px 23px #A6A6A6;
    box-shadow: 0px 0px 23px #A6A6A6;
    hyphens: auto;
}

header {
    padding: 1rem 2rem 20px;
    display: flex;
}

article {
    padding: 20px 32px 0;
}

footer {
    padding: 0rem 2rem 1rem;
}

p {
    text-align: left;
}

p span {
    font-size: 1.231em;
    color: #163C6E;
    font-weight: 600;
}

h2+p,
h2+ul {
    margin-top: 0.308rem;
}

h1 {
    font-size: 1.992em;
    line-height: 1.1em;
    color: #163C6E;
}

h1 span {
    font-size: 0.632em;
}

h2 {
    font-size: 1.531em;
    line-height: 1.231em;
    font-weight: 400;
    color: #163C6E;
}

a:link,
a:active,
a:visited {
    color: #163C6E;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #D52427;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding-left: 32px;
}

ul li {
    padding-bottom: .187rem;
    list-style-type: none;
}

ul li:before {
    content: "\25A0";
    color: #D52427;
    float: left;
    margin-left: -19px;
}

.kreis li:before {
    content: "";
    background-color: #fff;
    width: 0.1875rem;
    height: 0.1875rem;
    border: 0.0625rem solid #163C6E;
    border-radius: 50%;
    position: relative;
    display: block;
    float: left;
    top: 8px;
    margin: 0 0 0 -15px;
}

section {
    display: inline-block;
    width: 100%;
    padding: 8px 24px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    color: #163C6E;
    box-shadow: 3px 3px 4px #A6A6A6;
    border: 1px solid #163C6E;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    22% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    47% {
        left: -100%;
    }

    50% {
        left: -200%;
    }

    72% {
        left: -200%;
    }

    75% {
        left: -300%;
    }

    97% {
        left: -300%;
    }

    100% {
        left: -400%;
    }
}

.slider {
    overflow: hidden;
}

.slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 24s slidy infinite;
}

figure img {
    width: 20%;
    float: left;
}

@media only screen and (max-width: 839px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    body {
        padding: 8px;
    }

    header,
    section {
        padding: 1rem;
    }

    article {
        padding: 16px 16px 0;
    }

    footer {
        padding: 0 16px;
    }
}

@media only screen and (max-width: 480px) {
    header {
        justify-content: center;
    }

    h1 {
        text-align: center;
    }

    ul {
        padding-left: 22px;
    }
}