@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #59595B;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #555;
    background: url('bg.jpg') no-repeat top left, #D5DAE6;
    overflow: hidden;
    padding: 0rem;
}

a {
    color: #59595B;
    text-decoration: none;
}

p {
    padding-bottom: 0.7rem;
}

h1 {
    margin: 0.35rem 0rem 0.35rem;
    font-size: 2.3em;
    color: #135697;
    line-height: 1.1em;
    font-weight: 900;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 0;
}

h3 {
    font-size: 1.125em;
    line-height: 1.3;
    font-weight: normal;
    margin-bottom: 0;
}

ul {
    padding: 0px 0px 1.2rem 25px;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 12px;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    font-family: Helvetica, Arial, sans-serif;
    float: left;
    top: 0px;
    margin-left: -12px;
}

ul:last-of-type {
    padding-bottom: 0.85rem;
}

/* Hebt Float left/right auf */
/* Ende Standard */
/* Header */
header {
    padding: 0rem;
}

header section {
    position: relative;
}

header section a {
    position: absolute;
    top: 15%;
    left: 3%;
    width: 30%;
    height: 65%;
}

header aside {
    padding: 0rem 1.7rem 0.5rem;
}

/* Ende Header */
/* Article */
article {
    padding: 1rem 1.7rem 0;
}

article section {
    position: absolute;
    top: 25px;
    right: 30px;
    padding: 0.5rem 0.75rem;
    background: #AED53A;
    width: 206px;
}

article section h2 {
    font-weight: 500;
    margin-bottom: 1rem;
}

article section p {
    padding-bottom: 0.5rem;
}

article section p img {
    float: left;
}

article section p span {
    float: right;
    color: #242021;
    width: 112px;
    font-size: 0.813em;
}

article section p:nth-of-type(1) span,
article section p:nth-of-type(6) span {
    padding-top: 10px;
}

article section p:nth-of-type(2) span,
article section p:nth-of-type(3) span,
article section p:nth-of-type(4) span {
    padding-top: 21px;
}

article section p:nth-of-type(5) span {
    margin-top: 0.75rem;
}

/* Ende Article */
/* Footer */
footer {
    padding: 0rem 1.7rem 0.75rem;
    font-size: 0.725em;
    line-height: 1.3;
}

footer img {
    position: absolute;
    bottom: 12px;
    right: 29px;
}

/* Ende Footer */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Responsive */
@media only screen and (max-width:750px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #D6DAE6;
    }

    h1 {
        font-size: 1.8em;
    }

    ul {
        padding-left: 0;
        padding-bottom: 1rem;
    }

    ul:last-of-type {
        padding-bottom: 1rem;
    }

    header aside {
        padding: 0.25rem 1rem 0.8rem;
        background: #EBEDF3;
        margin-right: 5.8%;
    }

    article {
        padding: 0.75rem 1rem;
    }

    article section {
        position: static;
        width: 100%;
    }

    article section p {
        width: 180px;
        min-height: 64px;
        margin: 0 0.5rem 0.5rem 0;
    }

    article section h2 {
        width: 100%;
    }

    .flex {
        display: flex;
        display: -ms-flexbox;
        display: -webkit-flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        flex-flow: row wrap;
    }

    p {
        text-align: left;
    }

    .hide_m, ul br {
        display: none;
    }

    footer {
        padding: 0 1rem 1rem;
        font-size: 0.8em;
    }

    footer img {
        position: static;
        margin-top: 0.75rem;
    }
}

/* Ende Responsive */