@import url('https://fonts.verwaltungsportal.de/import/?family=Lato:300,400,700,300i,400i,700i');
@import url("https://fonts.verwaltungsportal.de/import/?family=Bodoni+Moda:400");

html {
    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
    background: #f6dfe0;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-color: #6d5e31 #ffffff;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    color: #1d1d1b;
    background: #f9f8f5;
    font-size: clamp(1rem, 2vw, 1.25rem);
    /* 1rem = 16px */
    line-height: 1.5;
}

a {
    color: #6d5e31;
}

a:is(:hover, :focus) {
    color: #6d5e31;
    text-decoration: underline;
}

#content a {
    text-decoration: underline;
}

b,
strong {
    font-weight: 700;
}

@media (min-width: 1200px) {

    .row,
    .compact,
    ._op-container .container {
        max-width: 100%;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body:not(.index) #content>.row {
        max-width: 1200px;
        width: 100%;
    }
}

#overflow {
    overflow: hidden;
}

/* -------------------------------------------- logo -------------------------------------------- */

#logo a {
    display: inline-block;
    margin: 25px auto 5px auto;
}

#logo img {
    display: block;
}

@media (max-width: 991px) {
    #logo a {
        margin: 20px auto;
    }

    #logo img {
        max-width: calc(100vw - 120px);
        width: 100%;
    }
}

/* ----------------------------------------- language ------------------------------------------- */

@media (max-width: 991px) {
    .language {
        border-bottom: 2px solid #6d5e31;
        margin: 10px 0 30px 0;
        padding-bottom: 10px;
    }
}

.language a {
    color: #6d5e31;
    padding: 4px;
    font-size: 1.125rem;
    font-weight: 300;
}

.language a:is(:hover, :focus) {
    color: #6d5e31;
    text-decoration: underline;
}

.language a+a::before {
    content: "|";
    margin: 0 8px 0 0px;
    color: #6d5e31;
}

@media (min-width: 992px) {
    #myNavbar {
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
    }

    .language {
        margin-left: 60px;
    }
}

/* ------------------------------------------- navigation ------------------------------------------- */

nav#menu {
    background: #f9f8f5;
    padding-top: 18px;
    padding-bottom: 18px;
    position: relative;
}

/* burgerbutton */

nav#menu .navbar>#burgerButton {
    font-size: 13px;
    color: #6d5e31;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    z-index: 1002;
    display: inline-block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    padding: 8px 0 0 0;
    border-radius: 4px;
    float: none;
    border: none !important;
    background: #f9f8f5;
}

@media (max-width: 991px) {
    nav#menu .navbar>#burgerButton {
        position: fixed;
        top: 22px;
        right: 15px;
        margin-top: 0;
        border-radius: 10px;
    }
}

#burgerButtonInner {
    margin-bottom: 26px;
    display: inline-block;
}

#burgerButton[aria-expanded="true"] #burgerButtonInner {
    opacity: 0;
}

.navbar:focus-within #burgerButtonInner {
    opacity: 0;
}

#burgerButton[aria-expanded="true"] #burgerButtonInner2 {
    -webkit-transform: rotate(-45deg) translate(2px, -4px);
    transform: rotate(-45deg) translate(2px, -4px);
}

.navbar:focus-within #burgerButtonInner2 {
    -webkit-transform: rotate(-45deg) translate(2px, -4px);
    transform: rotate(-45deg) translate(2px, -4px);
}

#burgerButton[aria-expanded="true"]:after {
    -webkit-transform: rotate(45deg) translate(-10px, -10px);
    transform: rotate(45deg) translate(-10px, -10px);
}

.navbar:focus-within #burgerButton:after {
    -webkit-transform: rotate(45deg) translate(-10px, -10px);
    transform: rotate(45deg) translate(-10px, -10px);
}

#burgerButtonInner2,
#burgerButton:after {
    -webkit-transition: transform 200ms linear, opacity 200ms linear;
    -moz-transition: transform 200ms linear, opacity 200ms linear;
    -ms-transition: transform 200ms linear, opacity 200ms linear;
    -o-transition: transform 200ms linear, opacity 200ms linear;
    transition: transform 200ms linear, opacity 200ms linear;
}

.navbar:focus-within #burgerButtonInner2,
.navbar:focus-within #burgerButton:after {
    -webkit-transition: transform 200ms linear, opacity 200ms linear;
    -moz-transition: transform 200ms linear, opacity 200ms linear;
    -ms-transition: transform 200ms linear, opacity 200ms linear;
    -o-transition: transform 200ms linear, opacity 200ms linear;
    transition: transform 200ms linear, opacity 200ms linear;
}

#burgerButtonInner2 {
    top: 26px;
}

#burgerButton:after {
    top: 36px;
}

#burgerButtonInner2,
#burgerButton:after {
    content: "";
    display: block;
    position: absolute;
    background: #6d5e31;
    border-radius: 2px;
    width: 38px;
    height: 3px;
    left: 5px;
    font-size: 0;
}

/* burgermenu for tablet */

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 30px 0;
        top: 0;
        background: #f9f8f5;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-transition: left 300ms linear, opacity 300ms linear;
        -moz-transition: left 300ms linear, opacity 300ms linear;
        -ms-transition: left 300ms linear, opacity 300ms linear;
        -o-transition: left 300ms linear, opacity 300ms linear;
        transition: left 300ms linear, opacity 300ms linear;
    }

    .navbar-collapse[aria-expanded="true"],
    .navbar-collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-header {
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        background-color: #ffffff;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
        -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    .navbar-toggle::before {
        content: "";
        opacity: 0;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 0;
        z-index: -1;
        display: block;
        background-color: rgba(0, 0, 0, 0.5);
        transition: width 300ms linear, opacity 300ms linear;
    }

    .navbar-toggle[aria-expanded="true"]::before {
        opacity: 1;
        width: 90px;
    }

    #burgerButton[aria-expanded="true"] #burgerButtonInner2,
    #burgerButton[aria-expanded="true"]:after {
        background: #ffffff;
    }
}

@media (min-width: 575px) and (max-width: 991px) {
    .navbar-collapse {
        width: 60%;
    }

    .navbar-collapse.collapse.in:after,
    .navbar-toggle[aria-expanded="true"]::before {
        width: 40%;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    nav>.row {
        padding-top: 0px;
        padding-bottom: 0px;
        background: url('../img/nav-zierlement.jpg') top -40px left 255px no-repeat;
    }

    nav>.row,
    nav>.row>div {
        position: static;
    }

    .navbar-default {
        width: auto;
    }

    .navbar-default .navbar-nav {
        width: 100%;
        margin: 0;
        display: block;
        padding: 10px 25px;
        overflow-y: auto;
        position: relative;
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 110px;
        max-width: 992px;
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-default li[class*="toplevel"] {
        float: none;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
        display: table !important;
    }

    .navbar-nav::after,
    .navbar-nav::before {
        display: none;
    }

    #myNavbar {
        max-height: 70vh;
        overflow: hidden;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #myNavbar.navbar-collapse {
        pointer-events: none;
        position: absolute;
        z-index: 1002;
        right: 0;
        top: 100%;
        opacity: 0;
        width: 100vw;
        background: rgba(255, 255, 255, 0.96);
        height: auto !important;
        overflow-y: auto !important;
        box-shadow: 0 8px 8px 0 rgba(84, 73, 73, 0.1);
        transition: opacity 300ms linear, top 300ms linear;
    }

    #burgerButton[aria-expanded="true"]+#myNavbar {
        pointer-events: auto;
        opacity: 1;
    }

    #myNavbar:focus-within {
        pointer-events: auto;
        opacity: 1;
    }

    #mCSB_1_scrollbar_vertical {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 1200px) {

    .navbar-default .navbar-nav {
        max-width: 1200px;
        padding-top: 25px;
        padding-bottom: 45px;
    }
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default li[class*="toplevel"]>a {
    color: #665a5a;
    font-weight: 300;
    text-align: left;
    padding: 10px 15px 15px 15px;
    position: relative;
    font-size: 1.125rem;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    .navbar-default li[class*="toplevel"] {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav.horizontally li[class*="toplevel"]>a.dropdown-toggle {
        padding-right: 35px;
    }
}

@media (min-width: 992px) {
    .navbar-default li[class*="toplevel"]>a {
        padding: 20px 0 2px;
    }
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-default li[class*="toplevel"]:hover>a:after,
.navbar-default li[class*="toplevel"]>a:hover,
.navbar-default li[class*="toplevel"]>a:focus,
.navbar-default li[class*="toplevel"].open>a,
.navbar-default li[class*="toplevel"].open>a:hover,
.navbar-default li[class*="toplevel"].open>a:focus,
.navbar-default li[class*="toplevel"][class$="_over"]>a,
.navbar-default li[class*="toplevel"][class$="_over"]>a:hover,
.navbar-default li[class*="toplevel"][class$="_over"]>a:focus {
    color: #957dad;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

@media (max-width: 991px) {

    .navbar-default li[class*="toplevel"]>.dropdown-menu,
    .navbar-default li[class*="toplevel"]>.dropdown-menu>li>.dropdown-menu {
        padding: 10px;
        background: rgba(248, 229, 229, 0.5);
    }
}

@media (min-width: 992px) {

    .navbar-default li[class*="toplevel"]>.dropdown-menu,
    .navbar-default li[class*="toplevel"]>.dropdown-menu>li>.dropdown-menu {
        display: block;
    }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default li[class*="secondlevel"]>a,
.navbar-default li[class*="thirdlevel"]>a {
    color: #807070;
    font-weight: 300;
    text-align: left;
    padding: 8px 35px 8px 15px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (min-width: 992px) {
    .navbar-default li[class*="secondlevel"]>a {
        padding: 5px 0;
    }

    .navbar-default li[class*="thirdlevel"]>a {
        padding: 5px 0 5px 10px;
    }
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav li[class*="secondlevel"]:hover>a,
.navbar-nav li[class*="secondlevel"]>a:hover,
.navbar-nav li[class*="secondlevel"]>a:focus,
.navbar-nav li[class*="secondlevel"].open>a,
.navbar-nav li[class*="secondlevel"].open>a:hover,
.navbar-nav li[class*="secondlevel"].open>a:focus,
.navbar-nav li[class*="secondlevel"][class$="_over"]>a,
.navbar-nav li[class*="secondlevel"][class$="_over"]>a:hover,
.navbar-nav li[class*="secondlevel"][class$="_over"]>a:focus,
.navbar-nav li[class*="thirdlevel"]>a:hover,
.navbar-nav li[class*="thirdlevel"]>a:focus,
.navbar-nav li[class*="thirdlevel"].open>a,
.navbar-nav li[class*="thirdlevel"].open>a:hover,
.navbar-nav li[class*="thirdlevel"].open>a:focus,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:hover,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:focus {
    color: #6d5e31;
}

/* #region ------------------------------------ banner ------------------------------------------ */

#headerpic {
    margin: 0;
    position: relative;
    overflow: hidden;
}

#slider {
    max-height: clamp(300px, 46vw, 500px);
    position: relative;
}

@media (min-width: 768px) {
    #headerpic .nivo-directionNav a {
        top: auto;
        bottom: 12px;
    }

    #headerpic .nivo-controlNav {
        width: calc(100% - 100px);
        left: 50px;
    }
}

@media (min-width: 992px) {
    #headerpic .nivo-directionNav a {
        bottom: 20px;
    }

    #headerpic .nivo-controlNav {
        bottom: 10px;
    }

    body.index #slider {
        max-height: clamp(300px, 62vw, 700px);
    }
}

.slider-wrapper,
#slider {
    height: 100%;
}

.slider-mask {
    display: none;
}

@media (min-width: 768px) {
    #bannerOverlay {
        position: absolute;
        right: 0;
        bottom: 40px;
        left: 0;
        z-index: 53;
        pointer-events: none;
    }
}

/* #endregion --------------------------------- banner ------------------------------------------ */

/* #region --------------------------------- scroll bottom -------------------------------------- */

#scrollBottom a {
    position: relative;
    font-size: 0;
    display: block;
    width: 40px;
    height: 40px;
    margin: clamp(50px, 7vw, 70px) auto 10px auto;
    text-align: center;
    background-color: #f1eadb;
    border: 2px solid #f1eadb;
    border-radius: 50%;
    pointer-events: auto;
    animation: bounceAni 2s infinite 2s;
    transition: all .2s ease-in;
}

#scrollBottom a:is(:hover, :focus) {
    background-color: #6d5e31;
    animation-play-state: paused;
}

#scrollBottom a:is(:hover, :focus)::after {
    border-color: #f1eadb;
}

#scrollBottom a::after {
    position: absolute;
    content: "";
    left: calc(50% - 6px);
    top: 11px;
    width: 10px;
    height: 10px;
    display: inline-block;
    border-left: 2px solid #6d5e31;
    border-bottom: 2px solid #6d5e31;
    transform: rotate(-45deg);
    transition: border 300ms linear;
}

@keyframes bounceAni {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* #endregion ------------------------------ scroll bottom -------------------------------------- */

/* ------------------------------------------- content ------------------------------------------ */

#content {
    text-align: left;
    padding-bottom: clamp(30px, 6vw, 80px);
    padding-top: clamp(30px, 4vw, 60px);
}

/* -------------------------------------- h1 - h6, newslink ------------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
    color: #1d1d1b;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Bodoni Moda", sans-serif;
}

#tab99 .tab :is(h1, h2, h3, h4, h5, h6),
.tabHeadline {
    font-weight: 300;
    font-family: "Lato", sans-serif;
}

h1,
.h1,
.legacy_h1 {
    text-align: center;
    font-size: clamp(1.875rem, 4vw, 2.8125rem);
}

.index #content h1 {
    font-size: clamp(1.875rem, 4vw, 2.8125rem);
    text-transform: uppercase;
}

h2,
.h2,
.legacy_h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3,
.h3,
.legacy_h3 {
    font-size: clamp(1.65rem, 4vw, 2rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
}

h5,
.h5,
.legacy_h5 {
    font-size: clamp(1.4rem, 4vw, 1.65rem);
}

h6,
.h6,
.legacy_h6 {
    font-size: clamp(1.375rem, 4vw, 1.5rem);
}

.specialHeadline {
    margin-bottom: 35px;
    position: relative;
}

#tab1 .specialHeadline,
#tab3 .specialHeadline,
.specialHeadline :is(h1, h2, h3, h4, h5, h6) {
    text-transform: uppercase;
    font-size: 2.8125rem;
    margin: 0;
    letter-spacing: 4px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#tab1 .specialHeadline {
    margin-bottom: clamp(35px, 5vw, 90px);
}

#tab3 .specialHeadline {
    margin-bottom: 46px;
}


.specialHeadline::before,
.specialHeadline::after {
    content: '';
    border-top: 1px solid;
    margin: 0 20px 0 -15px;
    flex: 1 0 20px;
    color: #1d1d1b;
}

.specialHeadline::after {
    margin: 0 -15px 0 20px;
}

@media (max-width: 1199px) {
    .specialHeadline {
        overflow: hidden;
    }
}

/* ------------------------------------------------ @1tab ----------------------------------------------- */

#tab99 {
    padding: 50px 0 60px 0;
}

@media (max-width: 991px) {
    #tab99 {
        padding: 30px 0;
    }

    #tab99>.row>*:not(:first-child)+* {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    #tab99>.row>*+* {
        margin-top: 30px;
    }
}

#tab99 .tabContent {
    font-size: 1rem;
    min-height: 100%;
    background-color: #f1eadb;
}

@media (max-width: 1199px) {
    #tab99 .tabContent {
        overflow: hidden;
    }
}

#tab99 .tab :is(h1, h2, h3, h4, h5, h6) {
    text-transform: uppercase;
    font-size: clamp(1.875rem, 4vw, 2.8125rem);
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 4px;
}

#tab99 .tab.tab2 :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.75rem, 3vw, 2.1875rem);
}

#tab99 .tab1 :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: clamp(25px, 3vw, 35px);
}

#tab3 {
    padding: 40px 0;
}

@media (min-width: 992px) {
    #tab3 {
        padding: 70px 0;
    }
}

#tab3 .tab {
    font-size: 1rem;
}

#tab3 .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.25rem;
}

#tab99 .tab a:not(.has-image):not([rel]):not(.has-image),
#tab1 .tab a:not(.has-image):not([rel]):not(.has-image),
#tabBig .tab a:not(.has-image):not([rel]):not(.has-image),
#tabs23 a,
#tab3 a,
#teaser a {
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    color: #6d5e31;
    font-size: 1.25rem;
    padding: 6px 16px;
    margin-top: 15px;
    background-color: #ffffff;
    border: 1px solid #6d5e31;
    transition: background 300ms linear;
}

#tab99 .tab a:not(.has-image):not([rel]):not(.has-image):hover,
#tab99 .tab a:not(.has-image):not([rel]):not(.has-image):focus,
#tab1 .tab a:not(.has-image):not([rel]):not(.has-image):hover,
#tab1 .tab a:not(.has-image):not([rel]):not(.has-image):focus,
#tabBig .tab a:not(.has-image):not([rel]):not(.has-image):hover,
#tabBig .tab a:not(.has-image):not([rel]):not(.has-image):focus,
#tabs23 a:hover,
#tabs23 a:focus,
#teaser a:is(:hover, :focus),
#tab3 a:is(:hover, :focus) {
    color: #ffffff;
    background: #6d5e31;
}

#tab99 .tab .tp-image-wrapper {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
}

#tab99 .tab2 .tp-image-wrapper {
    margin-bottom: 25px;
}

#tab99 .tab img {
    margin: 0 auto;
    display: block;
    max-height: 600px;
    width: 100%;
    object-fit: cover;
}

#tab99 .tab2 {
    padding-top: 84px;
    height: 100%;
    min-height: 100%;
}

#tab99 .tab2 .tabContent {
    background-image: url('../img/wasserzeichen-logo.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #f9f8f5;
    padding: 43px 0 20px 0;
    font-size: clamp(1rem, 1vw, 1.125rem) !important;
    display: block;
    align-items: center;
    align-content: center;
}

#tab99 .tab2 a[href^="mailto:"] {
    text-decoration: underline !important;
    display: inline-block !important;
    text-transform: unset !important;
    color: #6d5e31 !important;
    font-size: clamp(1rem, 1vw, 1.125rem) !important;
    padding: 0 !important;
    margin-top: 0 !important;
    background-color: transparent !important;
    border: unset !important;
}

#tab99 .tab2 a[href^="mailto:"]:is(:hover, :focus) {
    background: transparent !important;
    color: #6d5e31 !important;
}

/* ------------------------------------------------ @1tab ----------------------------------------------- */

#tab1 {
    padding: 60px 0;
}

@media (max-width: 991px) {
    #tab1 {
        padding: 30px 0;
    }

    #tab1>.row {
        align-items: end;
        align-content: end;
    }

    #tab1>.row>*:not(:first-child)+* {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    #tab1>.row>*+* {
        margin-top: 30px;
    }
}

#tab1 .tab {
    padding: 20px 40px;
    font-size: 1rem;
    background-color: #f1eadb;
}

#tab1 .tabBox {
    height: 100%;
}

#tab1 .tabHeadline {
    text-align: center;
    text-transform: uppercase;
    font-size: 2.1875rem;
    margin-bottom: clamp(25px, 3vw, 35px);
}

#tab1 .tab img {
    margin: -20px -40px 10px -40px;
    display: block;
    width: calc(100% + 80px) !important;
    min-width: calc(100% + 80px) !important;
}

@media (min-width: 1200px) {
    #tab1 .tab img {
        margin: -20px -40px 10px -55px;
        width: calc(100% + 110px) !important;
        min-width: calc(100% + 110px) !important;
    }
}

/* ------------------------------------------------ tabBig ----------------------------------------------- */

#tabBig {
    padding: 25px 0 35px 0px;
}

#tabBig .tab {
    padding: 20px 40px;
    font-size: 1rem;
    background-color: #f1eadb;
}

#tabBig .tabBox {
    height: 100%;
}

#tabBig .tabHeadline {
    text-align: center;
    text-transform: uppercase;
    font-size: 2.1875rem;
    margin-bottom: clamp(25px, 3vw, 35px);
}

#tabBig .tab img {
    margin: -20px -40px 10px -40px;
    display: block;
    width: calc(100% + 80px) !important;
    min-width: calc(100% + 80px) !important;
}

@media (min-width: 1200px) {
    #tabBig .tab img {
        margin: -20px -40px 10px -55px;
        width: calc(100% + 110px) !important;
        min-width: calc(100% + 110px) !important;
    }
}

/* ------------------------------------------------ @26tab ----------------------------------------------- */

#tab3 .scdncol {
    padding-left: 0;
    padding-right: 0;
}

#tab26 {
    margin: auto;
    width: 100%;
    max-width: 100%;
    padding-top: 40px;
}

#tab26 .tab {
    font-size: 1rem;
    padding: 0px;
    max-width: 611px;
    margin: 0 auto;
    text-align: center;
    display: block !important;
    max-height: 600px;
    overflow: hidden;
}

#tab26 .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.25rem;
    font-weight: 700;
    color: #444444;
}

#tab26 img {
    left: -15px;
    top: 0px;
    display: block;
    position: relative;
    width: calc(100% + 30px);
    right: -15px;
    max-width: unset;
}

/* ----------------------- @26tab slider arrows + dots ------- DO NOT DELETE ----------------------- */

#tab26 .slick-slide {
    padding: 15px;
}

#tab26 .slick-dots button,
#tab26 .slick-button {
    background: transparent;
    border: none;
    padding: 5px;
}

#tab26 .slick-button {
    font-size: 0px;
    position: relative;
    top: 4px;
}

#tab26 .slick-prev {
    margin-left: 64px;
}

@media (min-width: 1200px) {
    #tab26 .slick-prev {
        margin-left: 45%;
    }
}

@media (max-width: 767px) {
    #tab26 .slick-next {
        margin-left: 14px;
    }
}

#tab26 .slick-button::before {
    display: block;
    line-height: 9px;
    height: 20px;
    font-size: 40px;
    color: #000000;
}

#tab26 .slick-button::after {
    content: "";
    position: absolute;
    pointer-events: none;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.05);
    transition: width 200ms linear, height 200ms linear;
    z-index: -1;
}

#tab26 .slick-button:focus::after,
#tab26 .slick-button:hover::after {
    width: 28px;
    height: 28px;
}

@media (max-width: 767px) {

    #tab26 .slick-button::after,
    #tab26 .slick-button::after {
        width: 28px;
        height: 28px;
    }
}

#tab26 .slick-dots {
    padding: 0 15px;
    list-style: none;
}

#tab26 .slick-dots>li {
    display: inline-block;
    position: relative;
    top: 50%;
    font-size: 0px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #aaaaaa;
    transform: translateY(-50%);
}

#tab26 .slick-dots,
#tab26 .slick-button {
    display: inline-block !important;
}

@media (max-width: 767px) {
    #tab26 .slick-dots {
        display: none !important;
    }
}

#tab26 .slick-dots>li.slick-active {
    background: #6d5e31;
    transition: background 200ms linear;
}

#tab26 .slick-dots>li+li {
    margin-left: 10px;
}

#tab26 .slick-prev::before {
    content: "\2039";
}

#tab26 .slick-next::before {
    content: "\203A";
}

/* ------------ @26tab slider 1 stop/play button for accessibility ------- DO NOT DELETE ------------ */

#tab26 .slick-animate-control {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: -5px;
    left: 10px;
    border: 1px solid #ffffff;
    background-color: #000;
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M12 36V12h24v24Z' fill='%23fff'/%3E%3C/svg%3E");
}

#tab26 .slick-animate-control.slick-pause {
    background-size: 20px 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M16 37.85v-28l22 14Z' fill='%23fff'/%3E%3C/svg%3E");
}


/* ------------------------------------------------ @23tab ----------------------------------------------- */

#tabs23 {
    padding: 40px 0;
}

#tabs23 .tab {
    position: relative;
}

#tabs23 .tab::before {
    position: absolute;
    display: block;
    content: '';
    height: 1px;
    top: 20px;
    width: 100%;
    max-width: clamp(140px, 40vw, 800px);
    background-color: #f1eadb;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0 auto;
    left: 640px;
}

#tabs23 :is(h1, h2, h3, h4, h5, h6) {
    text-transform: uppercase;
    font-size: 2.1875rem;
}

/* --------------------------------------------- teaser ----------------------------------------- */

#breaker {
    min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 55px 0;
}

.zitat {
    background-color: rgba(218, 228, 229, 0.8);
    padding: 50px;
    color: #1d1d1b;
    font-size: clamp(1.375rem, 3vw, 2.1875rem);
    font-weight: 300;
}



#teaser {
    margin: 5px 0;
    margin-bottom: 210px;
    padding: 200px 0 0 0;
    min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body:not(.index) #teaser {
    padding: 0 0 110px 0;
    margin-top: 90px;
    margin-bottom: 0;
}

#teaser .tab {
    margin-top: 0;
    margin-bottom: -60px;
    padding: 40px;
    background-color: #f9f8f5;
}

@media (min-width: 992px) {
    #teaser {
        background-attachment: fixed;
    }

    #teaser>.row>div {
        padding-left: clamp(20px, 3vw, 38px);
    }

    #teaser .tab {
        padding: 60px;
        margin-top: 60px;
        margin-bottom: -170px;
    }

    body:not(.index) #teaser .tab {
        margin-top: -90px;
        margin-bottom: 0;
    }
}

#teaser a {
    margin-top: 30px;
}

#teaser .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.75rem, 3vw, 1.875rem);
    color: #1d1d1b;
    text-transform: uppercase;
}

/* --------------------------------------------- vernetzt -------------------------------------------- */

#vernetzt {
    color: #1d1d1b;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.3;
    margin: 30px auto 0 auto;
    text-align: right;
    text-decoration: none !important;
}

#vernetzt b {
    color: #6d5e31;
    font-weight: 700;
}

#vernetzt span {
    color: #1d1d1b;
}

#vernetzt span span {
    display: block;
}

#vernetzt img {
    margin-left: 15px;
}

/* ---------------------------------------------- innerfooter ---------------------------------------------- */

#innerfooter {
    font-size: 1rem;
    color: #1d1d1b;
    padding-top: 22px;
    padding-bottom: 22px;
    background-color: #f1eadb;
}

#innerfooter ul {
    padding: 0 !important;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a {
    color: #1d1d1b;
    text-decoration: none;
    display: inline-block;
}

#innerfooter a:hover,
#innerfooter a:focus {
    color: #6d5e31;
    text-decoration: underline;
}

#innerfooter li+li::before {
    content: "•";
    margin: 0 10px;
}

@media (min-width: 992px) {
    #innerfooter li+li::before {
        margin: 0 15px;
    }
}

@media (max-width: 767px) {
    #innerfooter li {
        display: block;
        text-align: center;
        padding: 5px;
        margin: 0;
    }

    #innerfooter li+li::before {
        display: none;
    }
}