@import url("https://fonts.verwaltungsportal.de/import/?family=Edu+NSW+ACT+Cursive:400");
@import url("https://fonts.verwaltungsportal.de/import/?family=Chelsea+Market:400");
@import url("https://fonts.verwaltungsportal.de/import/?family=Inter:300,300i,400,400i,500,500i,600,600i,700,700i");
@import url("https://fonts.verwaltungsportal.de/import/?family=Open+Sans:400,400i,700,700i");

html {
    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
    background: #f1f1f1;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-color: #8a0000 #ffffff;
    scrollbar-width: thin;
}

body {
    font-family: "Inter", sans-serif;
    color: #282828;
    font-weight: 400;
    background: #ffffff;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.5;
}

a {
    color: #8a0000;
}

#content a,
a:is(:hover, :focus) {
    color: #8a0000;
    text-decoration: underline;
}

b,
strong {
    font-weight: 700;
}

#over {
    overflow: clip;
    position: relative;
}

/* ------------------------------------------- topbar --------------------------------------------- */

#topbar {
    padding-top: 20px;
    padding-bottom: 10px;
    background: #8a0000;
}

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

/* ------------------------------------------- contactBox --------------------------------------------- */

.contactBox {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: end;
    text-align: right;
    gap: 15px;
    color: #ffffff;
}

.contactBox a {
    color: #ffffff;
}

.contactBox a:not(.has-image) {
    text-decoration: underline;
}

.contactBox .tab1,
.contactBox .tab2 {
    position: relative;
    padding-left: 30px;
}

.contactBox .tab1::before,
.contactBox .tab2::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 17px;
    height: 17px;
    background: url('../img/icon-telefon.png') center no-repeat;
}

.contactBox .tab2::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 17px;
    height: 17px;
    background: url('../img/icon-mail.png') center no-repeat;
}

@media (max-width: 991px) {
    .contactBox {
        padding: 15px;
        align-items: start;
        align-content: start;
        justify-content: start;
        text-align: left;
        flex-wrap: wrap;
    }
}

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

#logo {
    display: flex;
    align-items: center;
    align-content: center;
    gap: clamp(15px, 3vw, 30px);
    text-decoration: none;
}

#logo .logoImg img {
    display: block;
}

@media (max-width: 767px) {
    #logo {
        flex-wrap: wrap;
        align-items: start;
        align-content: start;
    }
}

@media (max-width: 991px) {
    #logo .logoImg img {
        max-width: 210px;
        width: 100%;
    }
}

#logo .logoTxt {
    color: #ffffff;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Edu NSW ACT Cursive", sans-serif;
    font-size: clamp(1.375rem, 3vw, 2.75rem);
}

/* #region ---------------------------------- navigation ---------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
    nav.horizontally {
        position: static !important;
    }

    #burgerButton {
        font-size: 0;
        border: none !important;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        cursor: pointer;
        background-color: #ffffff;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    #burgerButton::before,
    #burgerButton::after,
    #burgerButtonInner {
        background-color: #8a0000;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        transition: transform 200ms linear, opacity 200ms linear;
    }

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

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

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

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButton:before {
        top: 24px;
        content: "";
    }

    #burgerButton:after {
        top: 32px;
        content: "";
    }

    .navbar-nav {
        margin: 20px 0;
    }

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: #8a0000;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        overflow-y: auto;
        transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
        box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
    }

    .navbar-collapse:is([aria-expanded="true"], .in) {
        left: 0;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
    }

    .navbar-header {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
    }

    .dropdown-toggle-button-wrapper {
        top: 7px;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 4px;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        padding: 8px 0;
        background: #8a0000;
    }

    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    nav.horizontally .navbar-nav>li {
        flex-grow: 1;
    }

    nav.horizontally .navbar-nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: block !important;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms linear;
    }

    nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
        left: 100%;
        top: 0;
    }

    nav.horizontally .navbar-nav li {
        position: relative;
    }

    nav.horizontally .navbar-nav li:is(.open, :hover)>ul,
    nav.horizontally .navbar-nav li.open:focus-within>ul,
    nav.horizontally .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible;
    }

    nav.horizontally .navbar-nav li.open>ul {
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden;
    }

    nav.horizontally .navbar-nav li:is(:hover, :focus)>ul {
        z-index: 1003;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #ffffff;
    font-weight: 500;
    text-align: left;
    padding: 10px 35px 15px 35px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

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

@media (min-width: 992px) {
    nav.horizontally li[class*="toplevel"]+li {
        margin-left: 5px;
    }

    nav.horizontally a[class*="toplevel"] {
        padding: 10px 6px 9px 6px;
        text-align: center;
    }

    nav.horizontally a[class*="toplevel"]::before {
        content: "";
        position: absolute;
        display: block;
        left: 0;
        right: 0;
        bottom: -8px;
        margin: auto;
        width: 18px;
        height: 8px;
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        background: #282828;
        opacity: 0;
        transition: opacity 300ms linear;
    }

    nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::before,
    nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::before,
    nav.horizontally li[class*="toplevel"].open>a::before,
    nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::before,
    nav.horizontally li[class*="toplevel"][class*="_over"]>a::before,
    nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::before {
        opacity: 1;
    }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
    color: #ffffff;
    background-color: #282828;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background-color: #8a0000;
    box-shadow: 0px 10px 10px 0px rgba(40, 40, 40, 0.1);
}

@media (max-width: 991px) {
    nav.horizontally [class*="toplevel"]>ul {
        padding: 15px;
    }
}

@media (min-width: 992px) {
    nav.horizontally [class*="toplevel"] ul {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    nav.horizontally [class*="toplevel"]>ul {
        margin-top: 20px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    nav.horizontally [class*="secondlevel"]>ul {
        margin-top: -15px;
        margin-left: 10px;
    }

    nav.horizontally :is([class*="toplevel"], [class*="secondlevel"])>ul::before {
        content: "";
        position: absolute;
        display: block;
    }

    nav.horizontally [class*="toplevel"]>ul::before {
        height: 20px;
        left: 0;
        right: 0;
        top: -20px;
    }

    nav.horizontally [class*="secondlevel"]>ul::before {
        width: 10px;
        top: 0;
        bottom: 0;
        left: -10px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #ffffff;
    font-weight: 500;
    text-align: left;
    padding: 11px 25px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::after {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 100%;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
    background: #8a0000;
    transition: opacity 300ms linear;
    opacity: 0;
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus) {
    background: #282828;
    color: #ffffff;
}

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus)::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus)::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus)::after {
    opacity: 1;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

/* -------------------------------------------- banner ------------------------------------------ */

#slider {
    max-height: clamp(300px, 42vw, 450px);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    #headerpic a.nivo-prevNav {
        left: 65px;
    }

    #headerpic a.nivo-nextNav {
        right: 65px;
    }
}

#headerpic {
    padding: 0;
    position: relative;
}

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

.slider-mask {
    display: none;
}

/* ------------------------------------------- bannerOverlay ------------------------------------------ */

@media (max-width: 991px) {
    #bannerOverlay {
        padding: 30px 0;
        border-bottom: 2px solid #939393;
    }
}

@media (min-width: 992px) {
    #bannerOverlay {
        position: absolute;
        pointer-events: none;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 12;
        display: flex !important;
        align-items: center;
        align-content: center;
    }
}

#bannerOverlay>.row {
    row-gap: 30px;
}

#bannerOverlay .tab {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
    padding: 15px 35px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: none !important;
    position: relative;
    display: flex !important;
    flex-direction: column;
    color: #444444;
    font-size: 1rem;
    height: 100%;
    pointer-events: all;
}

#bannerOverlay .tab a:not(.has-image):not([rel]),
.ev17 .specialHeadline a:not(.has-image):not([rel]),
.ev17 .tab_link_mehr a {
    text-decoration: none;
    display: inline-block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 26px;
    margin-top: 15px;
    background-color: #8a0000;
    transition: background 300ms linear;
}

#bannerOverlay .tab a:not(.has-image):not([rel]):is(:hover, :focus),
.ev17 .specialHeadline a:not(.has-image):not([rel]):is(:hover, :focus),
.ev17 .tab_link_mehr a:is(:hover, :focus) {
    background: #282828;
}

#bannerOverlay {
    -webkit-animation: sloganSwipe 0.5s;
    animation: sloganSwipe 0.5s;
}

@media (min-width: 992px) {
    @keyframes sloganSwipe {
        0% {
            opacity: 0;
            left: -50%;
        }

        50% {
            opacity: 0;
            left: -20%;
        }

        100% {
            opacity: 1;
            left: 0%;
        }
    }
}

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

#tab26zwei {
    margin: auto;
    width: 100%;
    max-width: 1200px;
    pointer-events: all;
}

#tab26zwei .tab {
    font-size: 1rem;
    padding: 20px;
}

#tab26zwei .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0;
}

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

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

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

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

#tab26zwei .slick-prev {
    margin-left: 14px;
}

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

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

#tab26zwei .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;
}

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

@media (max-width: 767px) {

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

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

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

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

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

#tab26zwei .slick-dots>li.slick-active {
    background: #ffffff;
    transition: background 200ms linear;
}

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

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

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

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

#tab26zwei .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");
}

#tab26zwei .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");
}

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

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

/* ----------------------------------------------- @17ev events -------------------------------------------- */

.ev17 {
    padding: 30px 0 50px 0;
}

.ev17>.row {
    row-gap: clamp(30px, 3vw, 40px);
}

.ev17 .specialHeadline {
    width: calc(100% - 30px);
    max-width: 1170px;
    margin: 0 auto;
}

.ev17 .tab_link_mehr a {
    margin-top: 20px;
    width: auto;
    max-width: unset;
}

.ev17 .tab_link_mehr {
    font-size: 0px;
    text-align: left !important;
}

@media (max-width: 768px) {
    .ev17 .specialHeadline {
        padding: 0px;
    }

    .ev17 .specialHeadline .tabHeadline {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .ev17 .specialHeadline a:not(.has-image):not([rel]) {
        max-width: unset;
    }
}

.ev17 .specialHeadline .tabHeadline {
    font-size: clamp(1.75rem, 2vw, 2.25rem);
}

.ev17 .tab_link_entries {
    display: grid;
    gap: 30px;
}

@media (min-width: 576px) {
    .ev17 .tab_link_entries {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .ev17 .tab_link_entries {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ev17 .tab_link_entry {
    width: 100%;
    font-size: 1rem;
    color: #444444;
    padding: 260px 30px 30px 30px;
    background: #ffffff;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.ev17 .tab_link_title {
    margin-bottom: 15px;
}

.ev17 .tab_link_title a {
    font-size: clamp(1.5rem, 2vw, 1.625rem);
    font-weight: 400;
    color: #8a0000;
    display: inline-block;
    font-family: "Chelsea Market", sans-serif;
}

.ev17 .tab_link_mandat a {
    color: #444444;
}

.ev17 .tab_spacer,
.ev17 .vorschau {
    display: none;
}

.ev17 .tab_preview_picture {
    background: #ffffff;
}

.ev17 .tab_link_entry::before,
.ev17 .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 245px;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}

.ev17 .tab_link_entry::before {
    content: "";
    background: center / cover no-repeat, #666666;
}

.ev17 .tab_preview_picture img {
    position: absolute;
    margin: 0 !important;
    left: 50%;
    top: 50%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    max-width: 370px;
    width: auto;
    height: auto;
    -ms-interpolation-mode: bicubic;
    transform: translateX(-50%) translateY(-50%);
}

/* ------------------------------------------- about --------------------------------------------- */

#about {
    position: relative;
    padding-bottom: clamp(30px, 4vw, 60px);
}

.ev17::before,
#about::before {
    content: "";
    display: block;
    margin: 0 auto 30px auto;
    max-width: 1170px;
    width: 100%;
    height: 2px;
    opacity: 1;
    background: #939393;
}

#about .tabHeadline {
    font-size: clamp(1.75rem, 2vw, 2.25rem);
}

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

#tab26 {
    margin: auto;
    width: 100%;
    max-width: 1200px;
}

#tab26 .tab {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 10px 10px 0px rgba(40, 40, 40, 0.1);
}

#tab26 .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8a0000;
    margin: 0;
    margin-bottom: clamp(15px, 3vw, 20px);
    font-family: 'Open Sans', sans-serif;
}

/* ----------------------- @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: 14px;
}

@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: #8a0000;
    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");
}

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

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

h1,
.h1,
.legacy_h1 {
    font-size: clamp(2rem, 3vw, 3rem);
}

h2,
.h2,
.legacy_h2 {
    font-size: clamp(1.875rem, 3vw, 2.75rem);
}

h3,
.h3,
.legacy_h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited),
.legacy_h4 {
    font-size: clamp(1.625rem, 2vw, 2.1875rem);
}

h5,
.h5,
.legacy_h5 {
    font-size: clamp(1.5rem, 2vw, 1.875rem);
}

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

/* ----------------------------------------------- @11f footer ----------------------------------------------- */

/* --------------------------------------------- newsletterTab -------------------------------------------- */

.newsletterTab {
    padding: 20px;
    margin-bottom: 40px;
    background: #282828;
}

@media (min-width: 992px) {
    .newsletterTab {
        padding: 25px 40px 15px 40px;
        margin-top: -190px;
        margin-bottom: 0px;
    }
}

.newsletterTab .tabHeadline {
    color: #ffffff;
    font-size: 1.625rem !important;
    font-weight: 400;
    margin-bottom: 5px !important;
}

#newsletter label {
    font-size: 1rem;
    display: block;
    font-weight: 400;
    margin-bottom: 8px;
}

#newsletterInputs {
    height: 36px;
    display: flex;
    position: relative;
    border-radius: 2px;
    margin-left: auto;
    max-width: 340px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

#newsletter_input {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    font-style: normal !important;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 36px;
    padding-left: 15px;
    padding-right: 43px;
    height: 32px;
    width: 100%;
}

#newsletter_submit {
    width: 36px;
    background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="22px" viewBox="0 -960 960 960" width="22px" fill="%23ffffff"><path d="M145.09-145.87q-32.51 0-55.87-23.35-23.35-23.36-23.35-55.87v-509.82q0-32.74 23.35-56.26 23.36-23.53 55.87-23.53h669.82q32.74 0 56.26 23.53 23.53 23.52 23.53 56.26v509.82q0 32.51-23.53 55.87-23.52 23.35-56.26 23.35H145.09ZM480-443.91l-334.91-223v441.82h669.82v-441.82L480-443.91Zm0-73 330.91-218H150.09l329.91 218Zm-334.91-150v-68 509.82-441.82Z"/></svg>') center no-repeat, transparent;
    padding: 0;
    cursor: pointer;
    line-height: 36px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    transition: background-color 300ms linear;
}

#newsletter_submit:hover,
#newsletter_submit:focus {
    background-color: #8a0000;
}

#newsletter_input::-ms-input-placeholder {
    color: #ffffff !important;
}

#newsletter_input::-webkit-input-placeholder {
    color: #ffffff !important;
}

#newsletter_input::-moz-placeholder {
    color: #ffffff !important;
    opacity: 1;
}

#newsletter_input:-moz-placeholder {
    color: #ffffff !important;
    opacity: 1;
}

/* --------------------------------------------- #footer -------------------------------------------- */

#footer {
    color: #ffffff;
    font-size: 1rem;
    margin-top: 90px;
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: #8a0000;
    position: relative;
    hyphens: auto;
}

@media (min-width: 1200px) {
    #footer>.row:nth-child(2)::before {
        content: '';
        position: absolute;
        pointer-events: none;
        top: -210px;
        left: -290px;
        width: 160px;
        height: 110px;
        background: url('../img/icon-bus-s.png') center no-repeat;
    }
}

@media (max-width: 991px) {
    #footer {
        margin-top: 0px;
        padding-top: 50px;
    }
}

#footer :is(h1, h2, h3, h4, h5, h6, .footerHeadline) {
    color: #ffffff;
    font-size: 1.5625rem;
    margin-bottom: 15px;
}

#footer .footerTab1 .footerHeadline {
    color: #ffffff;
    font-size: 1.5625rem;
    font-weight: 400;
}

#footer a {
    color: #ffffff;
}

#footer .footerTab a {
    color: #ffffff;
    text-decoration: none;
}

#footer .footerTab a:hover,
#footer .footerTab a:focus {
    text-decoration: underline;
}

#footer .footerTab a[href^="mailto:"] {
    text-decoration: underline;
}

#footer .footerTab ul {
    padding: 0 !important;
}

#footer .footerTab ul li {
    list-style-type: none !important;
}

#footer .footerTab ul li {
    padding-left: 12px;
    position: relative;
    color: #ffffff;
    transition: color 300ms linear;
}

#footer .footerTab ul li::before {
    content: '\2010';
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: color 300ms linear;
}

#footer .footerTab ul li:hover,
#footer .footerTab ul li:focus {
    text-decoration: underline;
}

@media (max-width: 575px) {
    #footer>.row:nth-child(2)>*+* {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }
}

@media (min-width: 576px) {
    #footer>.row:nth-child(2)>*+* {
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }
}

@media (min-width: 992px) {
    #footer>.row:nth-child(2)>*+* {
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    #footer .footerTab {
        padding-top: 10px;
    }

    #footer .footerTab2 {
        padding-left: 20px;
    }
}

/* --------------------------------------------- iframeMapsTab -------------------------------------------- */

#footer iframe,
#footer .iframe-wrapper-manual-enabling {
    min-width: 100% !important;
    width: 100% !important;
    display: block;
}

#footer .iframeMapsTab {
    max-height: 246px;
    overflow: hidden;
}

/* --------------------------------------------- footer2 -------------------------------------------- */

#footer2 {
    padding: 16px 0;
    color: #ffffff;
    background: #282828;
}

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

#innerfooter {
    font-size: 1rem;
}

@media (max-width: 991px) {
    #innerfooter {
        margin-bottom: 15px;
    }
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a {
    color: #ffffff;
    padding: 24px 0px;
    text-decoration: none;
    display: inline-block;
}

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

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

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

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

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

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

#vernetzt {
    gap: 16px;
    text-align: right;
    font-size: 0.8125rem;
    color: #ffffff;
    line-height: 1.3;
    text-decoration: none;
}

#vernetzt span span {
    display: block;
}