@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 0.813em Arial, sans-serif;
    line-height: 1.3;
}

#wrapper {
    position: relative;
    max-width: 740px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #116B53;
    overflow: hidden;
    padding: 0rem;
    text-align: left;
}

a {
    color: #000;
    text-decoration: none;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem;
    font-size: 1.7em;
    line-height: 1em;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1.25em;
    line-height: 1.2em;
    margin-bottom: 0.9rem;
}

h2 span {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: #116B53;
    color: #fff;
    padding-left: 2rem;
    box-shadow: 3px 3px 11px 2px #838A8A;
}

h2 span:before {
    content: "\2022";
    display: block;
    font-size: 1em;
    line-height: 1;
    position: relative;
    float: left;
    top: 1px;
    margin-left: -1.35rem;
}

h3 {
    font-size: 1.3em;
    line-height: 1.2em;
    margin: 2.5rem 0;
    font-weight: normal;
}

h4 {
    font-size: 1.275em;
    line-height: 1.2em;
    margin: 7rem 2rem 0;
    font-weight: normal;
    text-align: right;
}

i {
    font-style: normal;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* Header */
header {
    padding: 0.8rem 1rem;
    color: #fff;
}

header aside {
    position: absolute;
    right: 1rem;
    top: 6rem;
    width: 206px;
}

/* Ende Header */
/* Article */
article {
    padding: 2.5rem 1rem 0.5rem;
    background: #E8F0ED url('bg.jpg') no-repeat;
    background-size: cover;
    border-top: 6px solid #EDB927;
    border-bottom: 6px solid #EDB927;
}

article>aside {
    width: 474px;
    text-align: justify;
}

article section {
    position: relative;
    margin-bottom: 4rem;
}

article section img {
    position: absolute;
    right: -1rem;
    top: 0;
    width: 335px;
}
article>p:last-of-type{
    margin-top: 0.5rem;
}
/* Ende Article */
/* Footer */
footer {
    padding: 0.5rem 1rem 0rem;
    color: #fff;
    position: relative;
}

footer>img {
    position: absolute;
    left: 1rem;
    top: -62px;
}

footer a {
    color: #fff;
}

footer p {
    float: right;
    margin-right: 1rem;
}

footer p strong {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
}

footer>a img {
    position: absolute;
    right: 1rem;
    bottom: 1.25rem;
}

hr {
    border: none;
    background: #EDB927;
    height: 4px;
    max-width: 344px;
    margin: 1.25rem 0rem;
    text-align: left;
}

/* Ende Footer */
/* Responsive */
@media only screen and (max-width: 739px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        text-align: left;
    }

    i br, footer>img, article section img {
        display: none;
    }

    h3 {
        margin: 1rem 0 2rem;
    }

    h4 {
        margin: 1rem 0 0;
    }

    header aside {
        position: static;
        background: #fff;
        padding: 1rem 1rem 0.8rem;
        margin-bottom: 1rem;
    }

    article {
        padding-top: 1rem;
    }

    article section {
        margin-bottom: 1rem;
    }

    article>aside {
        width: 100%;
        text-align: left;
    }

    footer p strong {
        position: static;
    }
}

/* Ende Responsive */
/* THANG DEVELOPER */