@import url("reset.css");

/* open-sans-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v43-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/open-sans-v43-latin-regular.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* open-sans-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/open-sans-v43-latin-500.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/open-sans-v43-latin-500.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* open-sans-500italic - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/open-sans-v43-latin-500italic.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/open-sans-v43-latin-500italic.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}


* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.clear {
    clear: both;
}

body {
    font: 400 15px/24px 'Open Sans';
    color: #6d7881;
}

/*
.inner {
    width: 1280px;
    margin: auto;
}

*/
.color {
    color: #e00217
}

.image {
    width: 30%;
    margin-left: 6%;
    margin-bottom: 200px;
}

.image img {
    width: 100%;
}

.inner {
    width: 100%;
    padding: 0 8%;
}

.toggle {
    position: fixed;
    right: 30px;
    top: 45%;
    z-index: 99;
}

.toggle img {
    transition: .6s ease;
    -webkit-transition: .6s ease;
    -moz-transition: .6s ease
}

.toggle img:hover {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transition: .6s ease;
    -webkit-transition: .6s ease;
    -moz-transition: .6s ease
}

header {
    background: linear-gradient(45deg, rgba(32, 106, 46, 0.8) 40%, rgba(224, 2, 23, 0.8) 100%), url(../images/apotheke.jpg) no-repeat center / cover;
    height: 100vh;
    position: relative;
}

.links {
    margin: 10px 0 0 0;
    position: fixed;
    z-index: 99999;
    right: 10%;
    bottom: 0;
    background: #206a2e;
    padding: 5px 10px;
    border-radius: 5px 5px 0 0;
}

.links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
}

.links a:hover {
    color: #206a2e;
    transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
}

.logo {
    display: inline-block;
    float: left;
}

.butler {
    position: absolute;
    bottom: 0;
    left: 2%;
    height: 100vh;
    animation-name: butler;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes butler {
    from {
        transform: translate(-100%, 0);
        -webkit-transform: translate(-100%, 0);
    }

    to {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }
}

.claim {
    position: relative;
    top: 30vh;
    z-index: 20;
    text-align: right;
    animation-name: claim;
    animation-duration: 2.5s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    transform: translate(-100%, 0);
    -webkit-transform: translate(-100%, 0);
}

@keyframes claim {
    from {
        transform: translate(-100%, 0);
        -webkit-transform: translate(-100%, 0);
    }

    to {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }
}

.claim .headline {
    font: 500 40px/54px 'Open Sans';
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 1px 1px 2px #626262;
}

.claim .subline {
    font: 600 75px/74px 'Open Sans';
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 1px 1px 2px #626262;
}

.pfeil {
    display: block;
    margin: auto;
    width: 38px;
    position: relative;
    top: 40vh;
    opacity: 0;
    -webkit-animation: pfeil 1s linear infinite;
    -moz-animation: pfeil 1s linear infinite;
    -ms-animation: pfeil 1s linear infinite;
    animation: pfeil 1s linear infinite;
    animation-iteration-count: 3;
    animation-delay: 4.5s;
}

@keyframes pfeil {
    0% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.nav-container {
    float: right;
    padding: 20px 0 0 0;
}

nav #nav_button {
    display: none;
}

nav {
    float: left;
    display: flex;
    justify-content: center;
    margin: 50px 0 25px 0;
    height: 40px;
}

nav ul li {
    display: inline-block;
    margin: 0 15px 0 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

nav ul li:last-child {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: 0.6s ease;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
}

nav ul li:hover a {
    color: #206a2e;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

nav ul li:hover a:before {
    opacity: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

nav ul li a:before {
    content: '[ ';
    opacity: 0;
}

nav ul li a:after {
    content: ' ]';
    opacity: 0;
}

nav ul li:hover a:after {
    opacity: 1;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
}

nav.menu-fixed * {
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

nav.menu-fixed {
    position: fixed;
    right: 30px;
    width: 310px;
    top: 70px;
    z-index: 99999;
    background: none;
    box-shadow: none;
    display: inherit;
    justify-content: inherit;
    margin: 0;
    height: 40px;
    transition: all 1s ease;
    -webkiit-transition: all 1s ease;
}

nav.menu-fixed ul li {
    display: block;
    padding: 0;
}

nav.menu-fixed ul li a {
    color: #fff;
    display: block;
}

nav.menu-fixed label {
    display: block;
    width: 100%;
    text-align: right;
    padding: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

nav.menu-fixed #button {
    position: fixed;
    right: 30px;
    top: 30px;
}

nav.menu-fixed #nav_button ~ ul,
nav.menu-fixed #nav_button ~ ul li {
    max-height: 0;
    overflow: hidden;
    list-style-type: none;
    width: 100%;
    text-align: left;
    list-style-image: none;
    background-image: none;
}

nav.menu-fixed #nav_button ~ ul li {
    background: #206a2e;
    padding: 0 0 0 15px;
}

nav.menu-fixed #nav_button ~ ul li:first-child {
    border-radius: 5px 5px 0 0;
}

nav.menu-fixed #nav_button ~ ul li:last-child {
    border-radius: 0 0 5px 5px;
}

nav.menu-fixed #nav_button ~ ul li:hover {
    background: #206a2e;
}

nav.menu-fixed #nav_button:checked ~ ul {
    max-height: 500px;
    overflow: hidden;
}

nav.menu-fixed #nav_button:checked ~ ul li {
    max-height: 60px;
    overflow: hidden;
    line-height: 40px;
}

nav.menu-fixed .burger-menu {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

nav.menu-fixed .burger {
    position: absolute;
    background: #fff;
    width: 100%;
    height: 4px;
    top: 50%;
    right: 0px;
    margin-top: -5px;
    opacity: 1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

nav.menu-fixed .burger::before {
    position: absolute;
    background: #fff;
    width: 30px;
    height: 4px;
    top: 10px;
    content: "";
    display: block;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

nav.menu-fixed .burger::after {
    position: absolute;
    background: #fff;
    width: 30px;
    height: 4px;
    bottom: 10px;
    content: "";
    display: block;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

nav.menu-fixed .burger::after,
nav.menu-fixed .burger::before,
nav.menu-fixed .burger {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

nav.menu-fixed .burger-menu.menu-on .burger::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    bottom: 0px;
}

nav.menu-fixed .burger-menu.menu-on .burger::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 0px;
}

nav.menu-fixed .burger-menu.menu-on .burger {
    background: rgba(111, 111, 111, .0);
}

nav.menu-fixed + .abstand {
    height: 115px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

#section-1 {
    padding: 80px 0 100px 0;
}

.landingpage #section-1 {
    padding: 100px 0;
}

#section-1 .column-1 img {
    width: 100%;
    max-width: 500px;
    height: 450px;
    object-fit: cover;
}

#section-1 .content,
#section-2 .content {
    display: flex;
    justify-content: space-between;
}

#section-1 .content a {
    color: #206a2e;
    text-decoration: none;
}

#section-1 h2 {
    font: 700 20px/24px 'Open Sans';
    text-align: left;
    color: #206a2e;
    margin: 0 0 12px 0;
    ;
}

.content ul li:before,
#section-3 li:before {
    content: url(../images/checked.png);
    margin: 0 6px 0 0;
}

#section-3 h3 {
    font-size: 20px;
    color: #e00217;
    text-transform: uppercase;
    font-weight: 500;
}


.content ul li,
#section-3 li {
    line-height: 28px;
}

.column-1 {
    width: 48%;
}

h1 {
    font: 700 40px/48px 'Open Sans';
    text-transform: uppercase;
    color: #e00217;
    width: 100%;
    margin: 0 0 30px 0;
}

strong {
    font-weight: 700;
}

section p,
section ul {
    margin: 0 0 16px 0;
}

figure img {
    position: relative;
    z-index: 10;
    border-radius: 5px;
}

figcaption {
    background: #206a2e;
    padding: 150px 35px 20px 35px;
    width: 70%;
    position: relative;
    top: -145px;
    left: 10%;
    border-radius: 5px;
    color: #206a2e;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
}

figcaption span {
    font-weight: 400;
}

#section-2 {
    background: #e9e9eb;
    position: relative;
    padding: 50px 0;
    color: #6d7881
}

#section-2::before {
    content: '';
    background: url(../images/welle-bg.svg) no-repeat top /cover;
    top: -58px;
    width: 100%;
    position: absolute;
    height: 58px;
}

#section-2::after {
    content: '';
    background: url(../images/welle-bg-unten.svg) no-repeat bottom /cover;
    position: absolute;
    bottom: -58px;
    width: 100%;
    height: 58px;
    z-index: 1
}

h2 {
    font: 700 40px/48px 'Open Sans';
    text-transform: uppercase;
    text-align: center;
    color: #e00217;
    width: 100%;
    margin: 0 0 30px 0;
}

#section-2 .content {
    color: #fff;
}

#section-2 .content .column-1 img {
    width: 100%;
}

.circle {
    width: 90px;
    height: 90px;
    margin: 0 20px 30px 0;
    display: inline-block;
    vertical-align: top;
}

.txt {
    display: inline-block;
    width: 75%;
    vertical-align: top;
    margin: 15px 0 0 0;
    color: #6d7881
}

.txt h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    color: #206a2e;
    margin: 0 0 8px 0;
}

.txt-box {
    background: #206a2e;
    padding: 20px;
    border-radius: 5px;
    display: inline-block;
}

.txt-box h3 {
    font-weight: 700;
    font-size: 18px;
}

#section-3 {
    background: url(../images/bg-pharmazie.png) no-repeat left -100px bottom / cover;
    background-attachment: fixed;
}

#section-3 .inner {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 8%;
}

#section-3 .column-2 {
    width: 40%;
    padding: 150px 0;
}

#section-3 .column-2:last-child {
    width: 50%;
    background: url(../images/team-apotheke.jpg) no-repeat bottom center / cover;
    position: relative;
    z-index: 0;
}

#section-3 .anzeige {
    position: absolute;
    width: 50%;
    text-align: center;
    background: #e00217;
    color: #fff;
    padding: 25px 15px;
    border-radius: 15px;
    left: calc(50% - 25%);
    bottom: 100px;
    text-transform: uppercase;
    text-decoration: none;
    transition: ease .8s;
    -o-transition: ease .8s;
    -webkit-transition: ease .8s;
    -moz-transition: ease .8s;
    -ms-transition: ease .8s;
}

#section-3 .anzeige:hover {
    background: #206a2e
}

.anzeige img {
    width: 50px;
    height: auto
}

#section-3 h2 {
    color: #e00217;
    text-align: left;
}

#section-3 p {
    text-align: left;
}

#section-3 #accordion h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: #206a2e url(../images/pfeil-unten.png) no-repeat 95% center;
    padding: 15px 15px 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 0 10px 0;
    outline: none;
}

#section-3 #accordion h3.ui-state-active {
    background: #206a2e url(../images/pfeil-rechts.png) no-repeat 95% center;
}

#accordion img {
    width: 100%;
    max-width: 520px;
    margin: 0 0 12px 0;
}

#section-4 {
    background: #206a2e;
    position: relative;
    padding: 50px 0;
    z-index: 9;
    color: #fff;
}

#section-4::before {
    content: '';
    background: url(../images/welle-gruen.svg) no-repeat top /cover;
    position: absolute;
    top: -58px;
    width: 100%;
    height: 58px;
}

#section-4::after {
    content: '';
    background: url(../images/welle-gruen-unten.svg) no-repeat bottom /cover;
    position: absolute;
    width: 100%;
    height: 58px;
    bottom: -58px;
}

#section-4 .content {
    display: flex;
    color: #fff;
    justify-content: space-between;
}

#section-4 .column-3 {
    width: 27%;
}

#section-4 .column-3:last-child {
    width: 46%;
}

#section-4 .column-3 a {
    text-decoration: underline;
    color: #fff;
}

#section-4 h2 {
    color: #fff;
    text-align: left
}

#section-6 {
    background: url(../images/familie-in-apotheke.jpg) no-repeat center / cover;
    height: 850px;
    position: relative;
    overflow: hidden;
}

#section-6 iframe {
    background: #206a2e;
    width: 40%;
    height: 850px;
}

#section-7::before {
    content: '';
    background: url(../images/welle-bg-white-oben.svg) no-repeat top / cover;
    position: absolute;
    height: 58px;
    width: 100%;
    top: -58px;
}

#section-7 {
    padding: 0 0 85px 0;
    position: relative;
}

#section-7 h2 {
    color: #206a2e;
    font: 700 26px/30px 'Open Sans';
}

footer {
    background: #206a2e;
    position: relative;
    text-align: center;
    padding: 0 0 30px 0;
    display: none;
}

footer:before {
    content: '';
    background: url(../images/welle-bg.svg) no-repeat top / cover;
    position: absolute;
    height: 58px;
    width: 100%;
    top: -58px;
    left: 0;
}

footer a {
    text-decoration: none;
    color: #fff;
    padding: 0 8px 0 0;
}

footer a:after {
    content: '•';
    padding: 0 0 0 8px;
}

footer a:last-child:after {
    content: '';
}

/*SECURE MAPS*/
.dsa-secure-plugin {
    border-radius: 5px;
    position: relative
}

.dsa-secure-plugin .dsa-secure-image {
    width: 100%;
    height: 100%
}

.dsa-secure-plugin {
    font-size: 12px;
    line-height: 16px
}

.dsa-secure-plugin .dsa-buttons {
    width: 90%;
    margin: auto;
    text-align: center
}

.dsa-secure-plugin .dsa-buttons a:nth-of-type(2n) {
    margin-top: 10px
}

.dsa-secure-plugin .undercheck {
    background-color: #fff;
    color: #222 !important;
    border-radius: 5px;
    padding: 4px;
    margin: 8px 50% 16px;
    width: 202px;
    transform: translateX(-50%)
}

.dsa-secure-plugin .check-slide-content {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    margin: auto;
    -webkit-transform: translateY(100%);
    transform: translateY(-50%)
}

.dsa-secure-plugin .dsa-switch {
    position: relative;
    width: 60px;
    height: 34px;
    display: block
}

.dsa-secure-plugin .check-slide {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity .5s linear
}

.dsa-secure-plugin .dsa-secure-plugin input {
    display: none
}

.dsa-secure-plugin iframe {
    width: 100%
}

.dsa-secure-plugin .dsa-switch {
    margin-left: calc(50% - 30px)
}

.dsa-secure-plugin p,
.dsa-secure-plugin p {
    text-align: center;
    font-family: arial;
    padding: 10px 0;
    display: block;
    margin: auto;
    font-weight: 700
}

.dsa-secure-plugin .check-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #000
}

.dsa-secure-plugin .check-slide.hide {
    display: none
}

.dsa-secure-plugin a {
    font-size: 12px;
    text-align: center;
    font-family: arial;
    display: block;
    margin: auto;
    width: calc(100% - 20px);
    max-width: 300px;
    background-color: #206a2e;
    border-radius: 5px;
    padding: 5px 10px;
    text-decoration: none;
    color: #fff
}

.dsa-secure-plugin a:hover {
    background-color: #206a2e
}

.dsa-secure-plugin:hover .check-slide,
.dsa-secure-plugin .check-slide:hover {
    visibility: visible;
    opacity: 1;
    visibility: visible;
    opacity: 1
}

.dsa-secure-plugin .dsa-tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted #000
}

.dsa-secure-plugin .dsa-buttons a:hover {
    color: #fff !important
}

.dsa-secure-plugin .dsa-tooltip .tooltiptext {
    font-size: 12px;
    visibility: hidden;
    width: 100%;
    max-width: 300px;
    background-color: #206a2e;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 0;
    margin-left: 0;
    opacity: 0;
    transition: opacity .3s
}

.dsa-secure-plugin .dsa-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent
}

.dsa-secure-plugin .dsa-tooltip:hover .tooltiptext,
.dsa-tooltip.active .tooltiptext {
    visibility: visible;
    opacity: 1
}

.dsa-secure-plugin .dsa-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    -webkit-transition: .4s;
    transition: .4s
}

.dsa-secure-plugin .dsa-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s
}

.dsa-secure-plugin input:checked + .dsa-slider {
    background-color: #206a2e
}

.dsa-secure-plugin input:focus + .dsa-slider {
    box-shadow: 0 0 1px #206a2e
}

.dsa-secure-plugin input:checked + .dsa-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px)
}

.dsa-secure-plugin .dsa-slider.round {
    border-radius: 34px
}

.dsa-secure-plugin .dsa-slider.round:before {
    border-radius: 50%
}

.dsa-cookie-notice-close:hover {
    background-color: #000
}

.dsa-cookie-notice-close {
    position: absolute;
    display: block;
    height: 20px;
    bottom: 20px;
    width: 20px;
    line-height: 20px;
    right: 5px;
    top: 5px;
    text-decoration: none;
    color: #fff !important;
    background-color: #515151
}

.dsa-cookie-notice {
    font-family: arial;
    font-size: 12px;
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 99999 !important;
    background-color: #6d6d6d;
    margin: auto;
    width: 100%;
    text-align: center
}

.dsa-cookie-notice a {
    color: #000
}

.dsa-cookie-notice.hide {
    display: none
}

.cookie-inner {
    padding: 25px
}

@media (max-width:900px) {

    .dsa-secure-plugin .check-slide,
    .dsa-secure-plugin .check-slide {
        visibility: visible;
        opacity: 1;
        visibility: visible;
        opacity: 1
    }
}

/*SECURE MAPS*/
/*COOKIE*/
.cookie-page1,
.cookie-page2,
.cookie-page2.show-page {
    transition: visibility, opacity .5s linear
}

.cookie-page2 a,
.cookie-page2 a.back-to-cookie {
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: 10px 16px;
    background-color: #f8f8f8
}

.cookie-overlay-headline,
.dsa-cookie-notice-form fieldset p {
    margin-bottom: 15px;
    text-align: center
}

.clear {
    clear: both
}

.cookie-page2 {
    visibility: hidden;
    float: none;
    width: 100%;
    opacity: 0
}

.cookie-page2.show-page {
    visibility: visible;
    opacity: 1
}

.cookie-page2 strong {
    font-size: 18px;
    margin-bottom: 10px
}

.cookie-page2 a {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    text-decoration: none;
    padding: 10px 10px 10px 30px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAAmUlEQVRIie2VQQ6DIBQFJ72DpEfS3sQe1y66V+5RN5CaqJ8nUDd2EsKG9wYNAfhzkAfggY8xIsqaFVMiWCxILtigAYZfCRzwCpk4VxMsd/4G7jUFW+VSXhHslVcRWOUSlqC43BKo5Vm/6MjOswRPvufcWeFcAUAvlBcJVFb5W0GZxOkCH+bUlW1d06Ml7NDehL0xAm3Gh16ZGZhnhhStKN5+AAAAAElFTkSuQmCC')
}

.cookie-page2 a.back-to-cookie {
    display: block;
    width: 80%;
    max-width: 100px;
    margin: 30px 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAAY0lEQVRIie2UMQqAMBAEJ2Lhs3yR+hTt/I4f89JEBBHiQa4QdiCkCMzkigSEeCGVFSbfgD0icskNOIExUj5J3kzeVc7tEWxOAlbuKWZFahH3Q+sdAQOWsg/A4bvfd0I/O/FDMq2DH/bYYYYxAAAAAElFTkSuQmCC')
}

.cookie-overlay-dsa.show-cookie {
    display: block
}

.cookie-overlay-dsa {
    display: none;
    background-color: rgba(0, 0, 0, .6);
    position: fixed;
    z-index: 99999999;
    top: 0;
    height: 100vh;
    width: 100vw;
    line-height: 20px
}

.dsa-cookie-notice-form {
    min-height: 300px;
    width: 500px;
    z-index: 9999999999;
    position: absolute;
    top: 40%;
    left: calc(50% - 250px);
    background:  #206a2e;
    padding: 2%;
    color: #fff
}

.dsa-cookie-notice-form .cookie-item {
    width: 33.33%;
    float: left;
    text-align: center
}

.cookie-overlay-headline {
    display: block;
    font-size: 16px;
    font-weight: 700
}

.dsa-cookie-notice-form fieldset label {
    cursor: pointer;
    text-align: center;
    color: #fff
}

#dsa-check-all.dsa-cookie-button {
    background-color: #fff;
    margin-top: 15px;
    color: #000
}

.dsa-cookie-button {
    display: block;
    margin: 0 50px 5px;
    background-color: #f8f8f8;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    color: #000
}

.dsa-cookie-notice-form input[type=checkbox] {
    display: none
}

.dsa-cookie-notice-form input[type=checkbox] + label::before {
    width: 15px;
    height: 15px;
    border: 2px solid #f8f8f8;
    background-color: #fff;
    display: block;
    content: "";
    margin: 10px auto
}

.dsa-cookie-notice-form input[type=checkbox]:checked + label::before,
.dsa-cookie-notice-form input[type=checkbox]:disabled + label::before {
    box-shadow: inset 0 0 0 3px #fff;
    background-color: #206a2e
}

.cookie-notice-link,
.cookie-notice-verwendung {
    display: inline-block;
    text-align: center;
    margin: 10px auto 0;
    text-decoration: none;
    color: #fff
}

.cookie-end-links {
    width: 80%;
    margin: auto;
    text-align: center
}

@media screen and (max-width:550px) {
    .dsa-cookie-notice-form {
        width: 85%;
        left: calc(50% - 42.5%);
        padding: 5%
    }

    .cookie-notice-link {
        margin-top: 25px
    }
}

@media screen and (max-height:570px) {
    .dsa-cookie-notice-form {
        top: 20%
    }
}

/*COOKIE ENDE*/

/*---------------------------------------
MEDIA Queries | Tablet | Phone
---------------------------------------*/

@media screen and (max-width: 1280px) {
    .txt {
        width: 70%;
    }

    nav * {
        -webkit-transition: all .4s ease-out;
        -moz-transition: all .4s ease-out;
        -ms-transition: all .4s ease-out;
        -o-transition: all .4s ease-out;
        transition: all .4s ease-out;
    }

    nav {
        position: fixed;
        right: 30px;
        width: 310px;
        top: 70px;
        z-index: 99999;
        background: none;
        box-shadow: none;
        display: inherit;
        justify-content: inherit;
        margin: 0;
        height: 40px;
        transition: all 1s ease;
        -webkit-transition: all 1s ease;
    }

    nav ul li {
        display: block;
        padding: 0;
    }

    nav ul li a {
        color: #fff;
        display: block;
    }

    nav label {
        display: block;
        width: 100%;
        text-align: right;
        padding: 0;
        -webkit-transition: all .2s ease-out;
        -moz-transition: all .2s ease-out;
        -ms-transition: all .2s ease-out;
        -o-transition: all .2s ease-out;
        transition: all .2s ease-out;
    }

    nav #button {
        position: fixed;
        right: 30px;
        top: 30px;
    }

    nav #nav_button ~ ul,
    nav #nav_button ~ ul li {
        max-height: 0;
        overflow: hidden;
        list-style-type: none;
        width: 100%;
        text-align: left;
        list-style-image: none;
        background-image: none;
    }

    nav #nav_button ~ ul li {
        background: #206a2e;
        padding: 0 0 0 15px;
    }

    nav #nav_button ~ ul li:first-child {
        border-radius: 5px 5px 0 0;
    }

    nav #nav_button ~ ul li:last-child {
        border-radius: 0 0 5px 5px;
    }

    nav #nav_button ~ ul li:hover {
        background: #206a2e;
    }

    nav #nav_button ~ ul li:hover a {
        color: #fff;
    }

    nav #nav_button:checked ~ ul {
        max-height: 500px;
        overflow: hidden;
    }

    nav #nav_button:checked ~ ul li {
        max-height: 60px;
        overflow: hidden;
        line-height: 40px;
    }

    nav .burger-menu {
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    nav .burger {
        position: absolute;
        background: #fff;
        width: 100%;
        height: 4px;
        top: 50%;
        right: 0px;
        margin-top: -5px;
        opacity: 1;
    }

    nav .burger::before {
        position: absolute;
        background: #fff;
        width: 30px;
        height: 4px;
        top: 10px;
        content: "";
        display: block;
    }

    nav .burger::after {
        position: absolute;
        background: #fff;
        width: 30px;
        height: 4px;
        bottom: 10px;
        content: "";
        display: block;
    }

    nav .burger::after,
    nav .burger::before,
    nav .burger {
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
    }

    nav .burger-menu.menu-on .burger::after {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        bottom: 0px;
    }

    nav .burger-menu.menu-on .burger::before {
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        top: 0px;
    }

    nav .burger-menu.menu-on .burger {
        background: rgba(111, 111, 111, .0);
    }

    nav + .abstand {
        height: 40px !important;
        transition: all 0.5s ease;
    }
}

@media screen and (max-width: 1280px) {
    .nav-container {
        padding: 0;
    }

}

@media screen and (max-width: 1230px) {
    #header .inner {
        padding: 0 10%
    }

    .inner {
        width: 100%;
        padding: 0 5%;
    }

    #section-2 .txt {
        width: 65%;
    }

    #section-2 .txt-box {
        text-align: center;
        width: 100%;
        display: block;
    }

    #section-6 iframe {
        width: 50%;
    }
}

@media screen and (max-width: 1024px) {
    h1 {
        text-align: center;
    }

    h1,
    h2 {
        font: 700 36px/40px 'Open Sans';
    }

    figcaption {
        width: 75%;
    }

    #section-2 .txt h3 {
        font-size: 22px;
    }

    #section-6 iframe {
        width: 50%;
    }

    #section-3 {
        background-attachment: inherit;
    }
}

@media screen and (max-width: 960px) {
    #section-2 .content {
        display: block;
    }

    #section-2 .column-1 {
        width: 100%;
    }

    #section-2 .column-1:last-child {
        margin: 50px 0 0 0;
    }

    #section-2 .txt {
        width: 80%;
    }

    #section-3 .inner {
        display: block;
        justify-content: inherit;
        padding: 0;
    }

    #section-3 .column-2 {
        width: 100%;
        padding: 100px 5% 0 5%;
    }

    #section-3 .column-2:last-child {
        width: 100%;
        padding: 0 !important;
        height: 500px;
        margin: 50px 0 0 0;
    }

    #section-4 .content {
        flex-flow: row wrap;
    }

    #section-4 .column-3 {
        width: 50%;
    }

    #section-4 .column-3:last-child {
        width: 100%;
    }

    #section-6 {
        height: 850px;
    }

    #section-6 .inner {
        padding: 0;
    }

    .image {
        width: 50%;
        margin-left: 6%;
        margin-bottom: 200px;
    }
}

@media screen and (max-width: 820px) {

    #section-1 .content {
        display: block;
    }

    #section-1 .column-1 {
        width: 100%;
    }

    h1 {
        text-align: left;
    }

    #section-1 .column-1:last-child {
        margin: 30px 0 0 0;
    }

    /*
    #section-2 .txt {
        width: 20%;
    }
*/
    figcaption {
        width: 40%;
    }

    #section-1 .column-1 img {
        width: 65%;
    }

    #section-4 h2 {
        text-align: left;
    }

    #section-6 iframe {
        width: 58%;
    }

    .butler {
        height: 90vh;
        left: -3%
    }
}

@media screen and (max-width: 730px) {
    .butler {
        height: 80vh;
        left: -3%
    }

    header {
        height: 80vh
    }

    .claim .headline {
        font-size: 30px;
        line-height: 35px
    }

    .claim .subline {
        font-size: 50px;
        line-height: 60px
    }

    figcaption {
        width: 85%
    }

    #section-1 .column-1 img {
        width: 85%;
        max-width: 100%
    }

    #section-2 .txt h3 {
        font-size: 18px;
    }

    #section-2 .circle {
        width: 50px;
        height: 50px;
        margin: 0 15px 30px 0;
    }

    #section-2 .txt {
        margin: 10px 0 0 0;
    }

    .circle span {
        font-size: 22px;
        height: 40px;
        width: 40px;
    }

    #section-6 {
        height: 800px;
        padding: 30px 0 0 0;
    }

    #section-6 iframe {
        width: 100%;
        height: 800px
    }

    #section-3 .anzeige {
        opacity: .8;
        width: 80%;
        left: calc(50% - 40%);
        top: 15px;
        bottom: auto
    }

    .logo {
        margin-right: 15px
    }

    .logo img {
        width: 150px
    }
}

@media screen and (max-width: 630px) {

    header,
    .butler {
        height: 600px;
    }

    .claim {
        top: 140px;
    }

}

@media screen and (max-width: 580px) {

    h1,
    h2 {
        font: 700 30px/34px 'Open Sans';
    }


    #section-4 h2 {
        text-align: center;
    }

    #section-4 .column-3 {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 520px) {
    .claim .headline {
        font: 700 18px/25px 'Open Sans';
    }

    .claim .subline {
        font: 700 30px/40px 'Open Sans';
    }

    #section-2 .txt {
        width: 80%;
    }

    .logo {
        margin: 0 25px 0 0;
    }

    #section-1 {
        padding: 50px 0 60px 0;
    }

    h1 {
        margin: 0 0 12px 0;
    }

    #section-2 .circle {
        margin: 0 15px 20px 0;
    }

    #section-3 .column-2 {
        padding: 0 5%;
    }

    #section-3 {
        padding: 110px 0 50px 0;
    }

    #section-4 {
        padding: 20px 0;
    }

    .pfeil {
        display: none
    }

    #section-3 .column-2:last-child {
        position: relative;
        bottom: -10px;
    }

    header,
    .butler {
        height: 500px;
    }

    .butler {
        left: -20%;
    }
}

@media screen and (max-width: 420px) {

    .dsa-secure-plugin {
        height: 280px !important;
    }

    #section-2 .column-1:last-child {
        margin: 20px 0 0 0;
    }

    body {
        font: 400 13px/20px 'Open Sans';
    }

    figcaption {
        font-size: 14px;
        line-height: 22px;
    }

    #section-2 .txt {
        width: 75%;
    }

    #section-3 #accordion h3 {
        background: #206a2e url(../images/pfeil-unten.png) no-repeat 95% center / 15px
    }

    #section-3 #accordion h3.ui-state-active {
        background: #206a2e url(../images/pfeil-rechts.png) no-repeat 95% center / 10px
    }
}

@media screen and (max-width: 380px) {

    nav {
        right: 0;
        width: 320px;
    }

    h1,
    h2 {
        font: 700 26px/30px 'Open Sans';
        margin: 0 0 12px 0;
    }

    nav #button,
    nav.menu-fixed #button {
        right: 15px;
    }

    #section-2 {
        padding: 0;
    }

    #section-3 .column-2:last-child {
        height: 300px;
    }

    figure img {
        width: 100%;
    }

    header,
    .butler {
        height: 400px;
    }
}

@media screen and (max-width: 320px) {
    .claim .headline {
        font: 700 18px/26px 'Open Sans';
    }

    h1,
    h2 {
        font: 700 22px/28px 'Open Sans';
    }

    #section-3 #accordion h3 {
        font-size: 16px;
        line-height: 24px;
        padding: 10px 10px 10px 20px;
    }
}
