﻿@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.963em;
    line-height: 1.431em;
    /*
      font-family: 'Open Sans', sans-serif;
    font-family: 'Roboto', sans-serif;
	font-family: 'Roboto Condensed', sans-serif;
	font-family: 'Archivo Narrow', sans-serif;
    font-family: 'Roboto Slab', serif;
    font-family: 'Raleway', sans-serif;
	font-family: 'Hind', sans-serif;
	font-family: 'Fira Sans', sans-serif;
	font-family: 'Montserrat', sans-serif;
	*/
}

#wrapper1 {
    position: relative;
    max-width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: #fff;
    background-color: #0079be;
    font-size: 1.112em;
    line-height: 1.431em;
}

footer {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: none;
    padding: 0.5rem 0rem;
    /* für Hintergund
	background:url() top left no-repeat;
	background-size:100%;
	*/
    background-color: #fff;
    overflow: hidden;
    /*
	-moz-box-shadow: 0px 0px 23px #000;
	-webkit-box-shadow: 0px 0px 23px #000;
	box-shadow: 0px 0px 23px #000;
	
	-moz-box-shadow: 3px 3px 4px #A6A6A6;
	-webkit-box-shadow: 3px 3px 4px #A6A6A6;
	box-shadow: 3px 3px 4px #A6A6A6;
	*/
}

header,
article,
footer {
    padding: 0rem 1.188rem;
}

p {
    text-align: left;
}

h2 + p,
h2 + ul {
    margin-top: 0.308rem;
}

h1 {
    font-size: 2.892em;
    line-height: 1.1em;
    font-weight: normal;
    color: #0079be;
}

h1 span {
    font-weight: normal;
}

h2 {
    font-size: 1.531em;
    line-height: 1.231em;
    margin-bottom: 0;
    font-weight: normal;
}

h3 {
    font-size: 1.792em;
    line-height: 1.1em;
    color: #0079be;
    margin-bottom: 0;
}

a:link,
a:active,
a:visited {
    color: #0079be;
    text-decoration: none;
}

a:hover {
    color: #0079be;
    text-decoration: underline;
}

a.link:link {
    text-decoration: underline;
    color: #000;
}

a.link:visited {
    text-decoration: underline;
    color: #000;
}

a.link:hover {
    text-decoration: none;
    color: #000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

hr {
    border-top: 1px solid #52ba5a;
}

/*hr {
	color: #FFFFFF;
	background-color: #FFFFFF;
	height: 1px;
	border-top-width: 2px;
	border-top-style: dotted;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #E00060;
}*/

ul {
    padding-left: 1rem;
}

li {
    padding-bottom: 0.2rem;
    /* Für List GFX
	list-style-type:none;
	list-style-image:url();
	*/
}

ol {
    padding-left: 2rem;
}

ol li {
    padding-bottom: 0.2rem;
    list-style-type: none;
    list-style-image: url();
}

ol li:before {
    content: "\25A0";
    color: #0079be;
    float: left;
    margin-left: -20px;
    margin-top: -0.1rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header section {
    position: absolute;
    z-index: 555;
    left: 0%;
    top: 0%;
    padding-top: 4remn;
    padding-bottom: 2rem;
    width: 100%;
    background-image: url(../images/bg.png);
}

article section {
    display: inline-block;
    width: 49.5%;
    vertical-align: top;
}

footer img {
    max-width: 100%;
    height: auto;
    display: block;
    float: left;
    padding-bottom: 3rem;
    padding-right: 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;
    margin-bottom: 40px;
}

.slider figure {
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 24s slidy infinite;
}

figure > * {
    width: 20%;
    float: left;
}

figure > div {
    position: relative;
}

figure > div span {
    position: absolute;
    bottom: 0;
    z-index: 15;
    color: #fff;
    font-size: 25px;
    right: 0;
    padding: 20px;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Responsive */
@media only screen and (max-width: 640px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    header,
    article,
    footer {
        padding: 0rem 0.5rem;
    }

    h1 {
        font-size: 2.092em;
        line-height: 1.1em;
        font-weight: bold;
    }

    article section {
        width: 100%;
    }

    figure > div span {
        font-size: 19px;
    }
}

/* Ende Responsive */
