@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: #26415C;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 0.813em;
    line-height: 1.3em;
}

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

a {
    color: #26415C;
    text-decoration: none;
}

p {
    padding-bottom: 0.8rem;
}

p span {
    color: #3379B7;
}

h1 {
    margin: 0.5rem 0rem 0.75rem;
    font-size: 1.75em;
    line-height: 1.1em;
    color: #C82226;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.2em;
    margin-bottom: 0.75rem;
    color: #C82226;
}

h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}

ul {
    padding: 0px 0px 16px 0px;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 12px;
    padding-bottom: 2px;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.3500em;
    position: relative;
    font-family: Helvetica, Arial, sans-serif;
    float: left;
    top: 0px;
    margin-left: -12px;
}

/* Hebt Float left/right auf */
/* Ende Standard */
/* Header */
header {
    padding: 0rem;
    position: relative;
}

header>a:nth-of-type(1) {
    position: absolute;
    top: 8%;
    left: 4%;
    width: 11%;
    height: 13%;
}

header>a:nth-of-type(2) {
    position: absolute;
    top: 8%;
    right: 4%;
    width: 16%;
    height: 13%;
}

/* Ende Header */
main {
    display: block;
    padding: 2rem 1.5rem;
}

/* Article */
article {
    padding: 0rem;
}

article section {
    text-align: center;
    padding: 1rem 0 2.5rem;
}

article aside {
    float: left;
    width: 48.5%;
    padding-bottom: 1.5rem;
}

article aside:last-of-type {
    float: right;
}

/* Ende Article */
/* Footer */
footer {
    padding: 0rem;
}

footer>aside {
    float: right;
    width: 339px;
    height: 337px;
    background: url('bg.jpg') no-repeat top left;
    color: #FFF;
    padding: 2rem 0 0 1rem;
    margin-right: -1.5rem;
}

footer>aside p {
    width: 234px;
    padding-bottom: 1rem;
}

footer section {
    margin-top: 3rem;
    float: left;
    width: 300px;
    text-align: center;
}

footer section img {
    margin-bottom: 6.5rem;
}

footer section p {
    padding-bottom: 0.5rem;
}

footer section p:nth-of-type(2) {
    padding-bottom: 3rem;
}

footer section aside a {
    margin-top: 0.75rem;
    display: inline-block;
    padding: 7px 7px;
    background: #26415C;
    color: #FFF;
}

footer section aside a:hover {
    text-decoration: none;
}

/* Ende Footer */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

a:hover {
    text-decoration: underline;
}

i {
    font-style: normal;
}

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

/* Responsive */
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
    }

    main {
        padding: 1rem;
    }

    h2 {
        text-align: left;
    }

    i br {
        display: none;
    }

    article aside {
        float: none;
        width: 100%;
        padding-bottom: 0;
    }

    article aside:last-of-type {
        float: none;
    }

    footer section p:nth-of-type(2) {
        padding-bottom: 1rem;
    }
}

@media only screen and (max-width:650px) {
    article section {
        padding: 0;
    }

    h1 {
        font-size: 1.5em;
    }

    footer>aside {
        float: none;
        height: auto;
        margin-right: 0;
        width: 100%;
        background: #053F5D;
        padding: 1rem;
    }

    footer>aside p {
        width: 100%;
    }

    footer section {
        float: none;
        margin-top: 1rem;
        width: 100%;
    }

    footer section img {
        margin-bottom: 1rem;
    }
}

/* Ende Responsive */