* {
    box-sizing: border-box;
}

body {
    background-color: #f1f4f8;
    font-family: 'PT Sans', sans-serif;
    font-size: 70%;
    color: rgba(47,47,47,0.863);
}

@media screen and (min-width: 375px) {
    body { font-size: 80%; }
}

@media screen and (min-width: 550px) {
    body { font-size: 100%; }
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.hidden {
    position: absolute;
    top: -999em;
    left: -999em;
}

.clear { clear: both; }

.bold { font-weight: bold; }
.center { text-align: center; }
.italic { font-style: italic; }

.button {
    /*background: url(../img/button.png) no-repeat center;
    background-size: contain;*/
    background: #80987b;
    border: 2px solid rgba(0, 0, 0, 0.17);
    border-radius: .2em;
    color: white;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    font-size: 1.5em;
    letter-spacing: .03em;
    /*text-indent: -999em;
    width: 300px;
    height: 80px;
    max-width: 100%;*/
    transition: .2s;
    padding: 1em 4em;
}
.button:hover { opacity: .9; }

p {
    line-height: 1.5;
    margin: 0 0 1.5em 0;
}
p:last-child { margin-bottom: 0; }
p.stretch {
    line-height: 2;
}

ul {
    list-style: none;
    font-size: 1.250em;
    padding: 0;
    margin: 0 0 1.5em 0;
}
li { line-height: 1.5; }
li:not(:last-child) { margin-bottom: 1em; }

em {
    font-style: normal;
    font-weight: bold;
}

.uline { text-decoration: underline; }
.ucase { text-transform: uppercase; }

.row {
    padding: 1em;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
}

.red {
    color: rgb(228, 59, 44);
}
.green { color: #015d1b; }

/* Header */

.site-header {
    background-color: #fff;
    border: 3px solid rgba(0, 0, 0, 0.137);
    border-left: none;
    border-right: none;
    padding-top: 1.75em;
    padding-bottom: 1.75em;
}

.site-header .logo { 
    display: block; 
    max-width: 150px;
    margin: 0 auto; 
}

/* Content */

.hr {
    border-bottom: 1px solid black;
    padding-bottom: 2em;
    margin-bottom: 2em;
}

.shadow {
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

.red-banner { color: #e43b2c; }

.image { margin: 0; }

.image img {
    margin: 0 auto;
}
.image:not(.no-shadow) img {
    box-shadow: 0 2px 5px 2px rgba(0,0,0,.4);
}

.image figcaption {
    font-weight: bold;
    font-size: 1.7em;
    color: black;
    line-height: 1.3;
    margin-top: .75em;
}

.bg2 .image img {
    box-shadow: 0 2px 5px 2px rgba(0,0,0,.4);
}

.image + * { margin-top: 1.5em !important; }

.site-content {
    padding-bottom: 1.5em;
}

.site-content > .container {
    box-shadow: 0 2px 5px 2px rgba(0,0,0,.4);
}

.site-content header {
    background-color: #80987b; /*rgba(0, 0, 0, 0.17);*/
    border-bottom: 3px solid rgba(0, 0, 0, 0.17);
    font-size: 2.250em;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
    color: #2d2d2d;
    padding: 1em;
}

.site-content header h1 {
    font-size: inherit;
    font-weight: normal;
    line-height: 1.4;
    margin: 0;
}
.site-content header h1:not(.red) { color: ivory; }

.site-content header p { line-height: normal; }

.site-content header em { color: inherit; }

.site-content .bar {
    padding: 1em;
}
.site-content .bar:not(.opener) {
    color: white;
    text-align: center;
    font-size: 1.875em;
}
.site-content .bar p { line-height: 1.3; }

.site-content .opener { font-size: 2em; }

.site-content section {
    background-color: white;
    overflow: hidden;
    padding: 3em 3.5em;
}

.site-content section p {
    font-size: 1.250em;
}

.site-content section.bg2 p {
    font-size: 1.375em;
    font-weight: bold;
    color: black;
}
.site-content p.large { font-size: 1.875em; }
.site-content p.large1 { font-size: 1.5em; }
.site-content section.bg2 p.large { font-size: 1.750em; }
.site-content .p-image {
    line-height: 1.3;
    font-weight: bold;
}

.site-content h2 {
    font-size: 1.875em;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
    margin: 0 0 1.2em 0;
}
.site-content h2 span {
    display: block;
    font-weight: normal;
    font-size: .667em;
}

.site-content h3 {
    font-size: 1.563em;
    /*text-shadow: 1px 1px 1px rgba(0,0,0,.2);*/
    margin: 0 0 1em 0;
}

.check {
    font-size: 1.250em;
    margin-bottom: 1.5em;
}

.check li {
    position: relative;
    padding-left: 2em;
}
.check li:not(:last-child) { margin-bottom: 1em; }
.check li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
}

.check li > em {
    display: block;
    margin-bottom: .8em;
}

.check.red em { color: #db1a09; }

.site-content .check * { font-size: inherit; }

.site-content .headline-list {
    margin-top: 4em;
    margin-bottom: 4em;
}
.site-content .headline-list h3 em {
    display: block;
    text-align: left;
    margin: 1em 0 1.75em 0;
}

.site-content .headline-list > li:not(:last-child) {
    border-bottom: 1px dotted #333;
    padding-bottom: 3em;
    margin-bottom: 3em;
}


.site-content .headline-list ul em {
    font-size: 1.250em;
    color: black;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1em;
}

.site-content .enum-list {
    font-size: 1.250em;
    font-weight: bold;
    color: black;
    list-style: square;
    padding-left: 1.2em;
}

.site-content .enum-list li:not(:last-child) { margin-bottom: .3em; }

.site-content .banner-headline {
    border: 1px solid black;
    border-left: none;
    border-right: none;
    text-shadow: none;
    text-align: center;
    font-size: 1.750em;
    font-weight: bold;
    color: black;
    padding: 1.3em 0;
    margin: 0 0 1.2em 0;
}

.site-content .banner-headline > span {
    background: #f1f4f8;
    display: block;
    line-height: 1.3;
    padding: 1.5em;
}

.site-content .bg1 { background: #f1f4f8; }
.site-content .bg2 { background: #80987b; /*#015d1b;*/ /*#b1beb0;*/ }

.image.float img { border-radius: 5px; }

.site-content .banner-box {
    background: rgba(47, 47, 47, 0.12);
    font-size: 1.875em;
    color: darkorange;
    padding: 1em;
}

.verkauf { margin-top: 3.5em; }

.verkauf li:nth-child(2) img {
    box-shadow: 0 5px 30px rgba(0,0,0,.7);
}

@media screen and (min-width: 46.875em) {
    .verkauf {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .verkauf li {
        flex: 0 1 calc(33.333333% - 1.5em);
    }

    .verkauf li:nth-child(2) img {
        margin-top: -1em;
    }
}

/* Footer */

.site-footer {
    background-color: #fff;
    font-size: 1em;
    color: rgba(47, 47, 47, 0.541176);
    position: relative;
    padding: 3em 0;
    margin-top: 7.5rem;
}
.site-footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 7.5rem;
    top: -7.5rem;
    left: 0;
    background: #80987b url(../img/geobg.png) center;
}

.site-footer > .container {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.site-footer p {
    font-size: inherit;
    line-height: normal;
    margin: 0;
}

.site-footer p em {
    font-weight: bold;
}

.site-footer ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.site-footer li::before {
    content: '-';
    margin: 0 .3em;
}

.site-footer a:hover { text-decoration: underline; }

@media screen and (min-width: 64.375em) {
    .site-content section {
        padding-left: 7em;
        padding-right: 7em;
    }

    .site-content section:first-of-type:not(.def-padding) {
        padding-left: 7.5em;
        padding-right: 7.5em;
    }

    .image.float {
        float: left;
        margin: 0 3em 3em 0;
    }

    .image.float.right {
        float: right;
        margin: 0 0 3em 3em;
    }

    .image.float.left {
        float: left;
        margin: 0 3em 0 0;
    }

    .image.float img { max-width: 430px; margin: 0; }
    .image.float + * { margin-top: 0; }

    .image.float.right.offset { margin-right: 15%; }
    .image.float.right.product-three,
    .image.float.right.product-six { margin-right: 9.5%; }

    .site-content .p-image {
        margin-top: 3em !important;
    }
}

.image.siegel img {
    display: inline-block;
    box-shadow: none;
}


.site-content .counter { font-size: 1.9em !important; }

body:not(.no-counter) .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

body:not(.no-counter) .site-header > .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

body:not(.no-counter) .site-header .logo { margin: 0; }

.site-content .counter {
    margin: 1em 0;
}

@media screen and (min-width: 40em) {
    body:not(.no-counter) .site-header > .container {
        flex-direction: row;
        justify-content: space-between;
    }

    body:not(.no-counter) .site-header {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.no-counter .site-content > .container { box-shadow: none; }
.no-counter .site-content { padding: 0; }
body.no-counter { background-color: white; }








.no-counter .site-content {
    padding-bottom: 1.5em;
}
.no-counter .site-content > .container {
    box-shadow: 0 2px 5px 2px rgba(0,0,0,.4);
}
