@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #4C565C;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.75em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0rem;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0.25rem -1.2rem;
    font-size: 1.25em;
    line-height: 1.1em;
}

h1 span {
    font-weight: normal;
}

h2 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 0;
}

a {
    color: #4C565C;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0rem 0rem 0.2rem 0rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 1.3rem;
}

li span {
    display: inline-block;
    position: relative;
}

li span::before {
    position: absolute;
    content: "";
    background: #E30613;
    width: 5px;
    height: 5px;
    top: 4px;
    left: -11px;
}

/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* Ende Standard */
/* Header */
header {
    padding: 0rem 0rem 0rem;
    position: relative;
}

header a {
    position: absolute;
    top: 5%;
    right: 3%;
    width: 32%;
    height: 21%;
}

/* Ende Header */
/* Article */
article {
    padding: 0.35rem 0rem 0.2rem;
    margin-left: 188px;
}

article section {
    background: url('bg.png') top left no-repeat;
    width: 236px;
    height: 355px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 6.7rem 0 0 0.5rem;
    color: #fff;
    letter-spacing: -0.2px;
    z-index: 2;
}

article section img {
    margin-bottom: 0.3rem;
}

article section ul li {
    padding-left: 10px;
}

article>h2:first-of-type {
    padding-left: 0rem;
}

article>ul:first-of-type li:nth-of-type(1) {
    padding-left: 1.6rem;
}

article>ul:first-of-type li:nth-of-type(2) {
    padding-left: 2.4rem;
}

article>ul:first-of-type li:nth-of-type(3) {
    padding-left: 3.2rem;
}

article>ul:first-of-type li:nth-of-type(4) {
    padding-left: 4rem;
}

article>h2:last-of-type {
    padding-left: 3.7rem;
}

article>ul:last-of-type li:nth-of-type(1) {
    padding-left: 4.5rem;
}

article>ul:last-of-type li:nth-of-type(2) {
    padding-left: 3.4rem;
}

article>ul:last-of-type li:nth-of-type(3) {
    padding-left: 2.3rem;
}

article>ul:last-of-type li:nth-of-type(4) {
    padding-left: 0rem;
}

article section>a:last-of-type {
    display: none;
}

/* Ende Article */
/* Footer */
footer {
    padding: 0.2rem 1rem;
    background: #E30613;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 1.15em;
    line-height: 1.3;
}

footer img {
    vertical-align: -3px;
}

footer p {
    padding-bottom: 0;
}

footer p:first-of-type {
    padding-right: 3rem;
}

footer a {
    color: #fff;
}

/* Ende Footer */
/* Responsive */
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 0rem;
    }
    article>h2 {
        padding-left: 0 !important;
    }

    article, h1 {
        margin-left: 0;
    }

    article {
        padding:0.5rem 1rem;
    }

    ul {
        padding-bottom: 0.6rem !important;
    }

    article section>a:first-of-type {
        display: none;
    }

    article section>a:last-of-type {
        display: inline-block;
    }

    article ul li {
        padding-left: 10px !important;
    }

    p {
        text-align: left;
    }

    article section img {
        border: 3px solid #4B565C;
    }

    article section {
        background: #fff;
        width: auto;
        height: auto;
        position: static;
        padding: 0;
        color: #4C565C;
        letter-spacing: 0;
    }

    li br, i br {
        display: none;
    }

    footer {
        justify-content: space-between;
        padding: 0.35rem 1rem;
    }

    footer p:first-of-type {
        padding-right: 0.5rem;
    }
}

@media only screen and (max-width:533px) {
    footer {
        display: block;
    }

    footer p:first-of-type {
        padding: 0 0 0.5rem;
    }
}

/* Ende Responsive */