@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Times, "Times New Roman", serif;
    font-size: 1em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 855px;
    border: solid 1px #000;
    background: #fff;
}
.font, h2, .circle {
    font-family: Arial, sans-serif;
}
.logo {
    padding-bottom: 1.5rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
    margin: 0;
    font-size: 2.1em;
    line-height: 1.3;
}
h2 {
    font-size: 1.188em;
    line-height: 1.2;
    margin: 0 0 0.7rem;
    color: #B28748;
}
a {
    color: #000;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}
li {
    padding: 0 0 0 25px;
}
ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.2em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -25px;
}
/* Main */
/* Ende Main */
/* Header */
header {
    padding: 1.5rem 1.5rem 2.5rem;
    position: relative;
    background: #BACCAD;
    border-bottom: 1px solid #000;
}
figure {
    position: absolute;
    right: 0;
    top: 0;
    border-left: 1px solid #000;
    max-width: 431px;
}
figure img {
    display: block;
}
.circle {
    background: #3B5B9B;
    padding: 2rem 1rem;
    color: #fff;
    font-size: 1.375em;
    text-align: center;
    height: 145px;
    width: 145px;
    border-radius: 50%;
    position: absolute;
    right: 33px;
    bottom: -35px;
    line-height: 1.3;
}
/* Ende Header */
/* Article */
article {
    padding: 1rem 1.5rem 0rem;
}
.font {
    font-size: 1.188em;
    line-height: 1.3;
}
article>ul {
    width: 95%;
}
hr {
    margin: 0 -1.5rem 1.5rem;
    border: none;
    border-bottom: 1px solid #000;
}
.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.flexbox:before {
    content: "";
    background: #000;
    right: 51%;
    top: -23px;
    width: 1px;
    height: 106.5%;
    position: absolute;
}
section {
    width: 47%;
}
section:first-of-type {
    width: 45%;
}
footer {
    padding: 0.7rem 2.5rem 0rem;
    background: #BACCAD;
    border-top: 1px solid #000;
}
footer p:last-of-type {
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    right: -3rem;
    bottom: 45px;
    font-family: Arial, sans-serif;
    font-size: 0.875em;
}
/* Ende Footer */
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
@media only screen and (max-width:854px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    figure {
        position: static;
        margin: 0 0 1rem;
        max-width: 100%;
        border: none;
    }
    .circle {
        position: static;
        margin-bottom: 1rem;
    }
    article br, .flexbox:before, header br {
        display: none;
    }
    section:first-of-type, section {
        width: 100%;
    }
    section {
        width: 100%;
    }
    p :is(span, a) {
        display: inline-block;
    }
    footer p:last-of-type {
        position: static;
        transform: none;
    }
    article>ul {
        width: 100%;
    }
    h1 {
        font-size: 1.7em;
    }
}
/* Ende Responsive */