﻿@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: Helvetica, Arial, sans-serif;*/
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

#wrapper {
    position: relative;
    max-width: 1000px;
    margin: 1rem auto;
    border: solid thin #000;
    padding: 0 100px 10px;
    /* für Hintergund
	background:url() top left no-repeat;
	background-size:100%;
	*/
    background-color: #fff;
    overflow: hidden;
}

p {
    text-align: left;
    margin: 0 0 22px;
}

h1 {
    font-family: 'Lato', sans-serif;
    text-align: left;
    font-size: 36px;
    line-height: 1.1;
    margin: 20px 0 30px;
    padding: 20px 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-left: 2px solid #af242b;
}

h1 span {
    font-weight: 900;
}

h2,
p span, h4 {
    font-family: 'Lato', sans-serif;
    color: #af242b;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.4;
    margin: 20px 0 10px;
}

h4{
    font-weight: 700;
}

h3 {
    font-family: 'Lato', sans-serif;
    color: #af242b;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 0.625rem;
    font-weight: 900;
}

hr {
    border-top: 1px solid #52BA5A;
}

ul {
    list-style: none;
    margin: 4px 0 14px;
    padding: 0;
}

ul li {
    padding-left: 22px;
    margin-bottom: 4px;
}

ul li:before {
    content: "\■"
        /* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -22px;
    font-size: 17px;
    line-height: 1;
    color: #af242b;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    margin: 0 -100px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.93);
    border-bottom: 1px solid rgba(104, 105, 105, 0.4);
}

header a {
    margin: 0;
    display: block;
    max-width: 13.437rem
}

footer {
    position: relative;
    margin: 30px 0;
    line-height: 1.7;
}

footer > img {
    display: block;
    max-width: 200px;
    margin: 0 0 100px;
}

aside {
    position: absolute;
    left: 33%;
    top: 0;
}

aside p a {
    padding: 5px 18px 5px 15px;
    font-weight: 700;
    color: #fff;
    background-color: #af242b;
    border: solid 1px #af242b;
    font-size: 18px;
    text-transform: uppercase;
}

aside p a:hover {
    transition: all 0.2s ease 0s;
    color: #af242b;
    background-color: #fff;
    text-decoration: none;
}

iframe {
    width: 100%;
    max-width: 800px;
    height: 350px;
}



.slider {
    overflow: hidden;
    margin: 0 -100px 30px;
}


  .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:999px) {
    #wrapper {

        margin: 0 auto;
        border: 0;
        padding: 0 0.625rem .625rem;
    }

    a {
        font-weight: bold;
    }

    p a {
        white-space: pre-wrap;
    }

    body {
        font-size: .875rem;
    }

    article br {
        display: none;
    }

    p,
    ul {
        text-align: left;
        margin: 0 0 .625rem;
    }

    h1 {
        font-size: 24px;
        line-height: 1.1;
        margin: 15px 0;
        padding: 5px;
    }

    h2,
    p span, h4 {
        font-size: 18px;
        margin: 10px 0 5px;
    }

    h3 {
        text-align: center;
    }

    header {
        margin: 0 -10px;
        padding: 10px;
    }

    header a {
        max-width: 200px
    }

    footer {
        margin: 10px 0;
        line-height: 1.5;
    }

    footer > img {
        max-width: 150px;
        margin: 10px auto;
    }

    aside {
        position: static;
    }

    aside p {
        text-align: center;
    }

    aside p a {
        padding: 5px 10px;
        font-size: 16px;
    }

    iframe {
        width: 100%;
        height: 15.625rem;
    }

    .slider {
        overflow: hidden;
        margin: 0 -10px 10px;
    }
}

@media only screen and (max-width:479px) {}
