@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #212529;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 0.938em;
    line-height: 1.4em;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 850px;
    border: solid 1px #000;
    background: #fff;
    padding: 2rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0rem 0rem 1.5rem;
    font-size: 2.692em;
    line-height: 1.1em;
    color: #004994;
    font-weight: 400;
}
h2 {
    color: #6c757d;
    font-size: 1.625em;
    line-height: 1.3;
    padding-bottom: 1rem;
}
a {
    color: #004994;
    text-decoration: underline;
    position: relative;
    white-space: nowrap;
}
a:hover {
    text-decoration: none;
    color: #212529;
}
a[href^="tel:"] {
    color: #212529;
    white-space: nowrap;
    text-decoration: none;
}
p i {
    font-style: normal;
    font-size: 1.125em;
    color: #004994;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}
li {
    padding: 0 0 0 16px;
    position: relative;
}
ul li:before {
    content: "\▸";
    font-size: 1.2em;
    margin: 0 0 0 -16px;
    float: left;
}
/* Main */
/* Ende Main */
/* Ende Header */
/* Article */
article {
    padding: 4rem 0rem;
}
/* Ende Article */
/* Footer */
footer a {
    background-color: #004994;
    font-size: 1.250em;
    line-height: 1.3;
    padding: 1.5rem;
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    border: 1px solid #004994;
    background: #fff;
    color: #000;
    text-decoration: none;
}
/* Ende Footer */

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:849px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem 1rem 2rem;
    }
    br {
        display: none;
    }
    h1 {
        font-size: 2em;
    }
    span{
        display: inline-block;
    }
}
@media only screen and (max-width:480px) {
    h2{
        font-size: 1.313em;
    }
    article{
        padding: 2rem 0;
    }
}
/* Ende Responsive */