﻿@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 {
    font-size: .875rem;
    font-weight: 400;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    line-height: 1.88889;
    color: #888;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    /* für Hintergund
	background:url() top left no-repeat;
	background-size:100%;
	*/
    background-color: #fff;
    overflow: hidden;
}

p {
    text-align: left;
    margin: 0 0 16px;
}

h1 {
    text-align: center;
    font-size: 1.75rem;
    line-height: 1.1;
    margin: 0.625rem 0;
    font-weight: 400
}

h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: inherit;
    font-weight: 600;
    color: #151515;
}

h3 {
    font-size: 1.231em;
    line-height: 1.4;
    margin: 0 0 0.625rem;
    text-align: center;
}

h4 {
    text-align: center
}

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: "\+"
        /* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1.2;
    color: #000
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    margin: 1.188rem 1.188rem 0;
    padding: 1.188rem 0 0;
}

header a {
    max-width: 100%;
    width: 15.625rem
}

article {
    padding: 0 1.562rem 0
}

article nav {
    background: #293F80;
    margin: 1.875rem -1.562rem 1.875rem;
    padding: .625rem 1.562rem .625rem;
    color: #fff
}

nav p:nth-of-type(2) {
    text-align: center
}

article section {
    padding: 5px;
    margin-bottom: 1.875rem
}

article section:first-of-type {
    width: 49%;
    float: left
}

article section:nth-of-type(2) {
    width: 49%;
    float: right
}

footer {
    background-color: #293F80;
    color: #fff;
    margin: 1.875rem 0 -1.188rem;
    padding: 1.875rem 1.187rem 1.875rem;
}

footer p {
    text-align: center
}

footer p a {
    color: #fff;
    text-decoration: none;
    font-weight: 600
}

footer p a:hover {
    text-decoration: none
}





.slider {
    position: relative;
}

.slider > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s 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;
}


@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
}



@media only screen and (max-width:639px) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 0.625rem;
    }

    article section:first-of-type {
        width: 100%;
        float: none
    }

    article section:nth-of-type(2) {
        width: 100%;
        float: none
    }


    a {
        font-weight: bold;
    }

    footer {
        margin: 0 -.625rem -0.625rem;
        padding: 1.875rem .625rem .625rem;
    }

    header {
        margin: -0.625rem -0.625rem 0.625rem;
        padding: 0.625rem;
    }

    h1 {
        font-size: 1.563em;
    }

    h2,
    h3 {
        font-size: 1em;
    }
}

@media only screen and (max-width:479px) {
    h1 {
        font-size: 1.5em;
    }
}
