﻿@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: #000;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 300;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 2.5rem auto;
    text-shadow: none;
    box-shadow: 0 0 12px 3px #cacaca;
    /* für Hintergund
	background:url() top left no-repeat;
	background-size:100%;
	*/
    background-color: #fff;
    overflow: hidden;
}
p {
    text-align: justify;
    margin: 0 0 0.625rem;
}
h1 {
    text-align: left;
    font-size: 2.625rem;
    line-height: 1.1;
    margin: 1.25rem 0;
    color: #369CFF;
    font-weight: 700;
}
h2 {
    font-size: 1.562rem;
    line-height: 1.4;
    margin: 0 0 15px 1.062rem;
    font-weight: 300
}
h3{
   font-size: 1.231em;
    line-height: 1.4;
    margin: 0 0 0.625rem; 
}
hr {
    border-top: 1px solid #52BA5A;
}
ul {
   list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}
ul li {
    padding-left: .937rem
}
ul li:before {
    content: "\2022"/* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -.875rem;
    font-size: 1rem;
    line-height:1.4;
}
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}
header{
    margin: -1.188rem -1.188rem 0;
    padding: 2.5rem 4.062rem .937rem;
}
header a{
    width: 100%;
    max-width: 13.437rem;
}
header p {
    text-align: center;
    font-size: 1.063em;
    font-weight: bold;
    color: #fff;
}
footer {
    background: #369CFF;
    color: #fff;
    margin: 0 -1.188rem -1.188rem;
    padding: 2.187rem 4.062rem 2.812rem;
}
footer p:last-of-type{
    font-weight: 700;
    padding-top: 1.875rem;
    line-height: 1;
    font-size: .812rem
}

article{
    padding: 2.5rem 3.125rem 2.812rem
}
article aside{
    display: flex;
    padding-bottom: .937rem
}
article aside section:first-of-type{
    width: 50%;
    margin-right: 1.875rem;
}
article aside section:last-of-type{
    width: 50%;
}

  .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:899px) {
    #wrapper {
        margin: 0 auto;
        border: 0;
    }
    a {
        font-weight: bold;
    }
    p{
        text-align: left;
    }
    article{
        padding: .937rem .625rem .625rem
    }
    article aside{
        display: block;
        padding-bottom: 0;
    }
    article aside section:first-of-type{
        width: 100%;
        margin-right: 0;
    }
    article aside section:last-of-type{
        width: 100%;
    }
    footer {
        margin: 0 -0.625rem -0.625rem;
        padding: .625rem 1.25rem .625rem;
    }
    header {
        margin: -0.625rem -0.625rem 0;
        padding: .625rem 1.25rem 0;
    }
    h1 {
        font-size: 1.562rem;
    }
    h2, h3 {
        font-size: 1.125rem;
    }
}
@media only screen and (max-width:479px) {
    h1 {
        font-size: 1.5em;
    }
}
