@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 885px;
    border: solid 2px #000;
    background: #fff;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 0.6rem;
}
h1 {
    margin: 0rem 0rem 1rem;
    font-size: 2.5em;
    line-height: 1.2;
    color: #B00D15;
}
h1 small {
    font-size: 0.6em;
    display: block;
    color: #000;
}
h2 {
    font-size: 1.250em;
    line-height: 1.2;
    margin: 0 0 0.4rem;
}
a {
    color: #000;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}
li {
    padding: 0 0 0.5rem 16px;
}
ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 2em;
    position: relative;
    float: left;
    top: -4px;
    margin-left: -16px;
    color: #B00D15;
}
/* Main */
/* Ende Main */
/* Header */
header {
    display: flex;
    justify-content: end;
}
/* Ende Header */
/* Article */
article {
    padding: 0rem 0rem 0rem;
}
.flexbox, footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flexbox section {
    width: 32%;
}
/* Ende Article */
/* Footer */
footer {
    padding: 0 0rem 0rem;
}
figure {
    margin: 0 0 0 -1rem;
}
footer h2 {
    font-size: 1.063em;
    color: #B00D15;
}
.left {
    border-top: 2px solid #B00D15;
    padding-top: 0.3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 64%;
}
section {
    padding-top: 1rem;
}
.right {
    border-top: 2px solid #B00D15;
    padding: 1rem 0 1rem 1rem;
}
/* Ende Footer */
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
/* Hebt Float left/right auf */
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}
/* Ende Standard */
/* Responsive */
@media only screen and (max-width:884px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    header {
        margin: 0 0 1rem;
        display: flex;
        justify-content: center;
    }
    .left, .right {
        width: 100%;
    }
}
@media only screen and (max-width:780px) {
    .flexbox section {
        width: 100%;
    }
    h1 {
        font-size: 1.6em;
    }
    h1 small {
        font-size: 0.7em;
    }
}
@media only screen and (max-width:360px) {
    h1 {
        font-size: 1.375em;
    }
}
/* Ende Responsive */