﻿@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

a:hover,
a:active,
a:visited {
    text-decoration: underline;
}

u {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    color: rgb(109, 102, 99);
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    background: rgb(223, 223, 223);
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    padding: 10px 40px 30px;
    /* für Hintergund background:url() top left no-repeat; background-size:100%; */
    background-color: #fff;
    overflow: hidden;
}

p {
    text-align: left;
    margin: 0 0 0.625rem;
}

h1 {
    text-align: center;
    font-size: 38px;
    line-height: 1.3;
    margin: 1.25rem 0;
    font-weight: 400;
    text-transform: uppercase;
}

h1 span {
    font-size: 22px;
    display: block;
}

h2 {
    background-color: rgb(125, 126, 118);
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    margin: 1.875rem -40px .937rem;
    padding: 10px 40px;
    font-weight: 600;
}

h3 {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 0.625rem;
    font-weight: 500;
}

hr {
    border-top: 1px solid #52BA5A;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2022"
        /* ❖ * ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header a {
    margin: 0;
    display: block;
    max-width: 190px;
}

footer {
    border-top: 1px solid rgb(239, 234, 234);
}

footer p {
    font-size: 13px;
}

footer a,
p span {
    color: #0068b4;
}

iframe {
    width: 100%;
    height: 450px;
    margin: .625rem 0 20px;
}



footer p:nth-of-type(2) a {
    display: block;
    font-weight: bold;
    padding: .625rem .75rem;
    background: #0068B4;
    color: #fff;
    width: 15.625rem;
    text-align: center;
    margin: 1.875rem auto;
    border-radius: 10px
}

.slider {
    position: relative;
    margin: 0 0 .625rem;
}

.slider > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 24s linear infinite 0s;
}

.slider > img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider > img:nth-of-type(2) {
    animation-delay: 6s;
}

.slider > img:nth-of-type(3) {
    animation-delay: 12s;
}

.slider > img:nth-of-type(4) {
    animation-delay: 18s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }
}

@media only screen and (max-width:899px) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 0.625rem;
        -ms-hyphens: auto;
        -webkit-hyphens: auto;
        hyphens: auto;
    }

    p a {
        white-space: pre-wrap;
    }

    body {
        font-size: .875rem;
        background: none;
    }

    p,
    ul {
        text-align: left;
        margin: 0 0 .625rem;
    }

    h1 {
        font-size: 22px;
    }

    h1 span {
        font-size: 16px;
    }

    h2 {
        font-size: 14px;
        margin: 10px -10px;
        padding: 10px;
    }

    h3 {
        font-size: 14px;
    }

    header a {
        max-width: 170px;
    }

    iframe {
        height: 300px;
        margin: .625rem 0;
    }

    footer p:nth-of-type(2) a {
        display: block;
    }
}
