﻿@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em;
    line-height: 1.431em;
}

#wrapper1 {
    position: relative;
    max-width: 100%;
    padding-bottom: 1rem;
    padding-top: 1rem;
    background-color: #E9E9E9;
}

footer {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: none;
    padding: 0.5rem 0rem;
    background-color: #fff;
    overflow: hidden;
}

header,
article,
footer {
    padding: 0rem 1.188rem;
}

p {
    text-align: left;
}

h2 + p,
h2 + ul {
    margin-top: 0.308rem;
}

h1 {
    font-size: 3.692em;
    line-height: 1.1em;
    font-weight: 900;
    text-transform: uppercase;
}

h1 span {
    font-weight: normal;
    font-size: 0.631em;
}

h2 {
    font-size: 1.631em;
    line-height: 1.231em;
    margin-bottom: 0;
    color: #ACC90F;
    font-weight: 900;
}

h3 {
    font-size: 1.692em;
    line-height: 1em;
    font-weight: 900;
}

h4 {
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: 500;
}

a:link,
a:active,
a:visited {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: underline;
}

h4 a:link {
    text-decoration: none;
    color: #FFF;
    font-weight: normal;
    background-color: #ACC90F;
    padding-top: 0.7rem;
    padding-right: 1.5rem;
    padding-bottom: 0.7rem;
    padding-left: 1.5rem;
}

h4 a:visited {
    text-decoration: none;
    color: #FFF;
    font-weight: normal;
    background-color: #ACC90F;
    padding-top: 0.7rem;
    padding-right: 1.5rem;
    padding-bottom: 0.7rem;
    padding-left: 1.5rem;
}

h4 a:hover {
    text-decoration: none;
    color: #FFF;
    font-weight: normal;
    background-color: #1D1D1B;
    padding-top: 0.7rem;
    padding-right: 1.5rem;
    padding-bottom: 0.7rem;
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

hr {
    border-top: thin solid #52BA5A;
}

ul {
    padding-left: 1rem;
}

li {
    padding-bottom: 0.2rem;
}

ol {
    padding-left: 2rem;
}

ol li {
    padding-bottom: 0.2rem;
    list-style-type: none;
}

ol li:before {
    content: "\25A0";
    color: #666666;
    float: left;
    margin-left: -1.25rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

header img {
    position: absolute;
    z-index: 555;
    left: 2%;
    top: 5%;
}

nav {
    width: 100%;
    overflow: hidden;
    margin-top: -1rem;
}

@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;
  }


/* Responsive */
@media only screen and (max-width:49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    header,
    article,
    footer {
        padding: 0rem 0.5rem;
    }

    header img {
        position: absolute;
        z-index: 555;
        left: 2%;
        top: 0%;
        width: 20%;
    }

    h1 {
        font-size: 1.9em;
    }
}

/* Ende Responsive */
