﻿@charset "utf-8";
/* Standard */

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #847230;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.875em;
    line-height: 1.3em;
    background: url('../images/bg2.jpg') top left repeat-x;
    background-size: 100% 100%;
}

#wrapper {
    position: relative;
    max-width: 43.75rem;
    margin: 1rem auto;
    border: solid .125rem #dab756;
    background-color: #f1eed9;
    overflow: hidden;
}

p {
    text-align: left;
}

p span {
    font-weight: 900;
    color: #5d0000;
    display: block;
    margin-left: 2rem;

}

h2 + p,
h2 + ul {
    margin-top: 0.308rem;
}

h1 {
    text-align: center;
    font-size: 1.692em;
    line-height: 1.1em;
}

h1 span {
    font-size: 0.7em;
    display: block;
}

h2 {
    font-size: 1.231em;
    line-height: 1.231em;
    margin-bottom: 0;
}

a:link,
a:active,
a:visited {
    color: #847230;
    text-decoration: none;
}

a:hover {
    color: #847230;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding-left: 1rem;
}

li {
    padding-bottom: 0.2rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

/* Ende Standard */


/* Header */

header {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
}



header a {
    position: absolute;
    display: block;
    width: 20%;
    height: 99%;
    left: 3%;
    top: 2%;
    z-index: 1;
}


/* Ende Header */


/* Article */

article {
    padding: 0.2rem 3rem 0;
}

article h1 {
    color: #5d0000;
    font-size: 2rem;
}

/* Ende Article */


/* Footer */

footer {
    padding: 0.625rem 3rem;
    margin-bottom: 0;
    background: url('../images/produkt.png') bottom right no-repeat;
    background-size: 100%;
    height: 12.5rem;
}

iframe {
    width: 100%;
}




.slider {
    position: relative;
}

.slider > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 36s 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;
}

.slider > img:nth-of-type(5) {
    animation-delay: 24s;
}

.slider > img:nth-of-type(6) {
    animation-delay: 30s;
}


@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    17% {
        opacity: 1;
    }

    22% {
        opacity: 0;
    }
}


/* Responsive */
@media only screen and (max-width:43.75rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article {
        padding: 0.2rem 1rem 0;
    }

    article br {
        display: none;
    }

    footer {
        padding: 0.625rem 1rem;
    }

article h1 {
    color: #5d0000;
    font-size: 1.2rem;
}
}

/* Ende Responsive */
