﻿@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: 'Roboto', sans-serif;
    font-size: .75rem;
    line-height: 1.4;
}

#wrapper {
    position: relative;
    max-width: 56.25rem;
    margin: .625rem auto;
    border: solid thin #000;
    padding: 0 5rem;
    /* für Hintergund
	background:url() top left no-repeat;
	background-size:100%;
	*/
    background-color: #fff;
    overflow: hidden;
}

p {
    text-align: left;
    margin: 0 0 0.625rem;
}

h1 {
    display: block;
    color: #ABABAB;
    text-align: center;
    padding: 1.25rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.562rem;
    margin-top: 1.5em;
    margin-bottom: 0;
/*    border: 1px solid #ABABAB*/
    box-shadow: 0px 0px 8px #999;
    line-height: 1.2
}

h2 {
    display: block;
    margin: 16px 0;
    font-size: .812rem;
    font-weight: bold;
}

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: 1rem 0 .937rem 0;
    padding: 0;
}

ul li {
    padding-left: 1.25rem;
    margin-bottom: 0;

}

ul li:before {
    content: "\2022"
        /* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -.937rem;
    font-size: 1.375em;
    line-height: 1;

}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    margin: 3rem auto .937rem;
    position: relative;
}

header a {
    position: absolute;
    width: 23%;
    height: 24%;
    top: 0;
    left: 0;
}

article {
    margin: 0 auto 0.8rem;
    line-height: 1.2rem;
    padding: 4px;
}

article p {
    margin: 0 auto 0.8rem;
    line-height: 1.2rem;
    padding: 4px;
}

aside p {
    margin: 0;
    padding: 0;
}

article > p:nth-of-type(2) {
    margin-bottom: .75rem;
}

article > a {
    display: block;
    padding: 20px 6px;
    text-align: center;
    color: #fff;
    background: #053c5f;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.2rem;
    -webkit-transition: all 80ms ease-in-out;
    -moz-transition: all 80ms ease-in-out;
    -ms-transition: all 80ms ease-in-out;
    -o-transition: all 80ms ease-in-out;
    transition: all 80ms ease-in-out;
    font-weight: bold;
    margin-bottom: 1.25rem;
}

article > a:hover {
    text-decoration: underline;
    background: #075486;
}

#wrapper > article > p:nth-child(10) {
    padding-top: 0;
}

article img:first-of-type {
    width: 6.25rem
}



@media only screen and (max-width:899px) {
    #wrapper {

        margin: 0 auto;
        border: 0;
        padding: 0.625rem;
    }

    a {
        font-weight: bold;
    }

    footer {
        margin: 0 -0.625rem -0.625rem;
        padding: 0.625rem;
    }

    header {
        margin: -0.625rem -0.625rem 0.625rem;
        padding: 0.625rem;
    }

    h1 {
        font-size: 1.563em;
        margin: .625rem 0;
        line-height: 1.2
    }

    h2,
    h3 {
        font-size: 1em;
        margin: 0 0 .625rem;
    }

    p,
    ul {
        margin: 0 0 .625rem;
    }

    aside p {
        margin: 0 0 .625rem;
    }

    aside p br {
        display: none;
    }

    article section:first-of-type {
        float: none;
        width: 100%;
    }

    article section:nth-of-type(2) {
        float: none;
        width: 6.25rem;
    }

    @media only screen and (max-width:479px) {
        h1 {
            font-size: 1.5em;
        }
    }
