@import url('https://fonts.verwaltungsportal.de/import/?family=Chau+Philomene+One');

html {
    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
    background: #00579e;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-color: #1a1a1a #ffffff;
    scrollbar-width: thin;
}

body {
    font-family: "Calibri", sans-serif;
    font-weight: 400;
    color: #333333;
    background: #ffffff;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    /* 1rem = 16px */
    line-height: 1.5;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.1);
}

a {
    color: #00579e;
}

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

:is(main, #header-text) a,
b,
strong {
    font-weight: 700;
}

:is(main, #header-text, #footer, #logos-tab) a {
    text-decoration: underline;
}

#overflow {
    overflow: hidden;
}

/* #region --------------------------------------- logo ----------------------------------------- */

#logo {
    display: inline-block;
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

#logo img {
    display: block;
}

@media (max-width: 575px) {
    #logo {
        margin-top: 15px;
    }

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

    #logo .row {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (min-width: 576px) {
    #logo {
        position: absolute;
        left: 15px;
        top: -80px;
        max-width: 170px;
        display: flex;
        align-content: end;
        align-items: end;
        justify-content: center;
        transition: bottom 200ms linear;
    }

    #logo img {
        max-height: 163px;
    }
}

@media (min-width: 992px) {
    #logo {
        top: -90px;
        bottom: 0;
    }

    .is-sticky #logo {
        bottom: -17px;
        top: unset;
        padding: 7px;
    }

    #logo img {
        bottom: 0;
        transition: max-height 200ms linear;
    }

    .is-sticky #logo img {
        max-height: 100px;
    }

    #logo-col {
        position: static;
    }
}

/* #endregion ----------------------------------- logo ------------------------------------------ */

/* #region -------------------------------------- topbar ---------------------------------------- */

#topbar {
    padding: 24px 0;
    font-size: 1rem;
    line-height: 1;
}

/* slogan */

#slogan {
    font-size: 1.25rem;
}

/* #endregion ----------------------------------- topbar ---------------------------------------- */

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    .sticky-wrapper {
        height: auto !important;
    }

    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: #00579e;
        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 {
        padding: 20px 10px;
    }

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: #00579e;
        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: 11px;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 1px;
        right: -10px
    }
}

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        position: relative;
        z-index: 10;
        transition: background 300ms linear, padding 300ms linear;
    }

    .is-sticky nav.horizontally {
        background: #00579e;
        border-bottom: 1px solid #ffffff;
    }

    nav.horizontally .navbar-nav {
        position: relative;
        padding-top: 38px;
        display: flex;
        justify-content: space-between;
    }

    .is-sticky .navbar-nav {
        margin-bottom: -1px;
    }

    nav.horizontally .navbar-nav::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        right: clamp(-275px, -15vw, -15px);
        height: 1px;
        background: #ffffff;
    }

    nav.horizontally :is([class*="toplevel"], [class*="secondlevel"])>ul {
        display: block !important;
    }

    nav.horizontally .navbar-nav li[class*="toplevel"]>ul {
        position: absolute;
        top: calc(100% + 20px);
        left: 0;
        z-index: 1000;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms linear;
    }

    nav.horizontally .navbar-nav>li:is(.open, :hover)>ul,
    nav.horizontally .navbar-nav>li.open:focus-within>ul {
        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;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    nav.horizontally .navbar-nav {
        padding-left: 30px;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    font-family: "Chau Philomene One", sans-serif;
    color: #ffffff;
    font-weight: 400;
    text-align: left;
    padding: 14px 15px;
    position: relative;
    font-size: 1.25rem;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
    transition: border 300ms linear;
}

@media (max-width: 991px) {
    nav.horizontally li[class*="toplevel"]+li {
        margin-top: 1px;
    }

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

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

    nav.horizontally a[class*="toplevel"] {
        padding: 18px 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }

    nav.horizontally a[class*="toplevel"].dropdown-toggle::before {
        content: "";
        display: block;
        position: absolute;
        left: calc(50% - 13px);
        bottom: -20px;
        width: 26px;
        height: 10px;
        clip-path: polygon(50% 0, 0 100%, 100% 100%);
        background: #fff;
        pointer-events: none;
        opacity: 0;
        transition: opacity 300ms linear;
    }
}

nav.horizontally a[class*="toplevel"]::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    height: 4px;
    width: 0;
    background: #1a1a1a;
    transform: translateX(-50%);
    transition: width 300ms linear;
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::after,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::after,
nav.horizontally li[class*="toplevel"].open>a::after,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::after,
nav.horizontally li[class*="toplevel"][class*="_over"]>a::after,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::after {
    width: 100%;
}

@media (min-width: 992px) {

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"]>ul {
    background-color: #ffffff;
    padding: 15px;
}

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

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

    nav.horizontally [class*="toplevel"]>ul {
        min-height: 118px;
        background: #fff;
        column-count: 3;
        column-gap: 0;
        padding: 40px 10px;
        left: 0;
        right: 0;
        box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.15);
    }

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

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

    nav.horizontally li[class*="secondlevel"] {
        padding-left: 30px;
        padding-right: 30px;
        display: table;
        width: 100%;
        margin-bottom: 6px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a[class*="secondlevel"] {
    font-weight: 700;
    padding: 8px 0;
}

nav.horizontally a[class*="thirdlevel"] {
    font-weight: 400;
    padding: 6px 0 6px 12px;
}

nav.horizontally a[class*="thirdlevel"]::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 6px;
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #333333;
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
}

@media (max-width: 991px) {
    nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
        padding-right: 25px;
    }
}

/* 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) {
    color: #00579e;
}

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

/* #region ------------------------------- max-width + resp-gaps -------------------------------- */

#headerpic,
#tabs,
footer {
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
}

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

/* #endregion ---------------------------- max-width + resp-gaps -------------------------------- */

/* #region -------------------------------------- header ---------------------------------------- */

#headerpic {
    background: #00579e;
    position: relative;
}

#headerpic .slick-dots button {
    color: #ffffff !important;
}

/* header text */

#header-text {
    line-height: 1.4;
    position: relative;
    z-index: 10;
    padding: 60px 0 clamp(60px, 8vw, 112px) 0;
    font-size: clamp(1.75rem, 4vw, 2.375rem);
}

@media (min-width: 576px) {
    #header-text {
        padding-top: 80px;
        margin-top: auto;
    }
}

#header-text,
#header-text :is(h1, h2, h3, h4, h5, h6, a) {
    color: #ffffff;
}

#header-text :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(2.25rem, 7vw, 5rem);
    text-shadow: 15px 15px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
    #header-text>article {
        opacity: 0;
        transform: translate(-100px, -100px);
        animation: showHeaderText 500ms linear 300ms 1 normal forwards;
    }
}

@keyframes showHeaderText {
    0% {
        opacity: 0;
        transform: translate(-100px, -100px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

#below-headerpic {
    margin-top: clamp(40px, 6vw, 60px);
    row-gap: 30px;
}

/* info tab */

#info-tab {
    position: relative;
    z-index: 1;
    padding: 12px 0 0 clamp(15px, 4vw, 30px);
    border-left: 4px solid #cf3a29;
    box-shadow: -25px 25px 25px 0 rgba(0, 0, 0, 0.08);
}

#info-tab :is(h1, h2, #info-headline) {
    color: #cf3a29;
    font-size: clamp(1.5625rem, 7vw, 1.875rem);
    margin-bottom: 6px;
}

#info-tab :is(h3, h4, h5, h6) {
    color: #1a1a1a;
    font-size: clamp(2.25rem, 7vw, 3.125rem);
    margin-bottom: clamp(28px, 4vw, 35px);
    text-transform: uppercase;
}

#info-tab a:not(.has-image) {
    margin-bottom: -1px;
}

/* logos tab */

#logos-tab :is(h1, h2, h3, h4, h5, h6) {
    color: #1a1a1a;
    font-size: 1.875rem;
}

#tab26 {
    margin-top: 20px;
}

#tab26 .template-page {
    margin-bottom: 20px;
}

#tab26 .tabWrapper .slick-slider .slick-slide {
    margin: 0 !important;
    min-width: unset !important;
}

#tab26 .tabWrapper .slick-slider .slick-slide .row {
    width: auto !important;
}

#tab26 .tabWrapper .slick-track {
    display: flex;
}

#tab26 .tabWrapper .slick-track>* {
    height: auto;
}

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

#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-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: #00579e;
    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");
}

/* #endregion ----------------------------------- header ---------------------------------------- */

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

#slider {
    height: 100%;
    overflow: hidden;
}

#headerpic {
    min-height: 400px;
}

@media (max-width: 1199px) {
    #headerpic :is(a.nivo-prevNav, a.nivo-nextNav) {
        display: none;
    }
}

@media (min-width: 992px) {
    #headerpic {
        height: 400px;
    }

    body.index #headerpic {
        height: clamp(500px, 72vw, 700px);
    }

    #headerpic a.nivo-prevNav {
        left: 30px;
    }

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

#headerpic .nivo-main-image {
    min-height: 100% !important;
}

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

#headerpic .slider-mask {
    display: block;
    background: linear-gradient(to bottom, #00579e, rgba(255, 255, 255, 0));
}

.index #headerpic .slider-mask {
    background: linear-gradient(to bottom, #00579e, rgba(0, 87, 158, 0.7));
}

.slider-wrapper {
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

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

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

#content-area {
    position: relative;
    text-align: left;
    padding: clamp(40px, 6vw, 70px) 0 clamp(40px, 10vw, 120px) 0;
}

#content-area::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: -350px;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0) 50px), url('../img/tennisplatz.webp') center bottom / 100% auto no-repeat;
}

#content-area>* {
    position: relative;
    z-index: 10;
}

/* #region --------------------------------------- text ----------------------------------------- */

#text-bg {
    position: relative;
}

#text-bg::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
    top: -100px;
    bottom: -150px;
    background: url('../img/volleyball.webp') left center / auto 100% no-repeat;
}

#text {
    position: relative;
    z-index: 9;
    min-height: 220px;
    padding: clamp(40px, 10vw, 110px) 0;
}

#text p+ :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 0;
}

/* #endregion ------------------------------------ text ----------------------------------------- */

/* #region --------------------------------------- tabs ----------------------------------------- */

#tabs {
    z-index: 1;
    position: relative;
    background: #004985;
}

#tabs .tab {
    min-height: 150px;
    padding: clamp(30px, 4vw, 50px) clamp(15px, 3vw, 40px);
    position: relative;
}

#tabs .tab,
#tabs .tab * {
    color: #fff;
}

#tabs .tab-1 {
    background: #1a1a1a;
}

#tabs .tab-1 a {
    margin: 0 10px;
    font-size: clamp(1.125rem, 3vw, 1.625rem);
    display: inline-block;
}

#tabs .tab-1 a::after {
    content: "";
    display: inline-block;
    position: relative;
    bottom: 2px;
    margin-left: 8px;
    width: 11px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11px' height='12px'%3E%3Cpath d='M0.942,11.636 L5.320,6.488 L5.320,5.256 L0.942,0.108 L0.942,3.540 L3.230,5.850 L0.942,8.204 L0.942,11.636 ZM5.694,11.636 L10.072,6.488 L10.072,5.256 L5.694,0.108 L5.694,3.540 L7.982,5.850 L5.694,8.204 L5.694,11.636 Z' fill='%23ffffff'/%3E%3C/svg%3E") center / 12px auto no-repeat;
}

#tabs .tab-1 :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: clamp(20px, 4vw, 25px);
}

#tabs :is(.tab-2, .tab-3, .tab-4) {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#tabs .tab-4 {
    background-color: #00579e;
    padding-right: clamp(60px, 10vw, 180px);
    padding-bottom: clamp(60px, 7vw, 120px);
}

#tabs .tab-image {
    padding: 0;
}

#tabs .tab-image::before {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #00579e;
    opacity: 0.6;
    z-index: 1;
}

#tabs .tab-image .banner {
    height: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

#tabs .tab-image img {
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
    min-height: 100%;
}

/* #endregion ------------------------------------ tabs ----------------------------------------- */

/* #region --------------------------------------- buttons -------------------------------------- */

.button-design a:not(.has-image),
#tabs .button-design a.has-image {
    display: inline-block;
    line-height: 1.2;
    color: #333333 !important;
    font-weight: 700;
    background: #ffffff;
    padding: 14px 60px 14px 20px;
    position: relative;
    text-decoration: none !important;
    transition: transform 200ms linear, filter 200ms linear;
    margin-right: 10px;
    border: 1px solid #333333;
}

@media (min-width: 992px) {

    .button-design a:not(.has-image),
    #tabs .button-design a.has-image {
        font-size: 1.125rem;
    }
}

#tabs .button-design a.has-image {
    margin-top: clamp(5px, 1vw, 20px);
    padding: 0 0 0 20px;
    color: #333333 !important;
    min-height: 45px;
    background: #ffffff;
}

#tabs .button-design a.has-image img {
    object-fit: scale-down;
    object-position: center;
    width: 45px;
    height: 100%;
    margin-left: 20px;
    min-height: 45px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.2);
    vertical-align: middle;
    border-left: 1px solid rgba(51, 51, 51, 0.5);
}

.button-design a:not(.has-image):is(:hover, :focus),
#tabs .button-design a.has-image:is(:hover, :focus) {
    z-index: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 15px 10px rgba(0, 0, 0, 0.15));
}

.button-design.button-design-2 a:not(.has-image) {
    color: #333333 !important;
    background: #ffffff;
}

#below-headerpic .button-design a:not(.has-image)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: #cccccc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11px' height='12px'%3E%3Cpath d='M0.942,11.636 L5.320,6.488 L5.320,5.256 L0.942,0.108 L0.942,3.540 L3.230,5.850 L0.942,8.204 L0.942,11.636 ZM5.694,11.636 L10.072,6.488 L10.072,5.256 L5.694,0.108 L5.694,3.540 L7.982,5.850 L5.694,8.204 L5.694,11.636 Z' fill='%231a1a1a'/%3E%3C/svg%3E") center / 12px auto no-repeat;
    border-left: 1px solid rgba(51, 51, 51, 0.5);
}

#below-headerpic .button-design.button-design-2 a:not(.has-image)::after {
    background: rgba(0, 0, 0, 0.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11px' height='12px'%3E%3Cpath d='M0.942,11.636 L5.320,6.488 L5.320,5.256 L0.942,0.108 L0.942,3.540 L3.230,5.850 L0.942,8.204 L0.942,11.636 ZM5.694,11.636 L10.072,6.488 L10.072,5.256 L5.694,0.108 L5.694,3.540 L7.982,5.850 L5.694,8.204 L5.694,11.636 Z' fill='%23333333'/%3E%3C/svg%3E") center / 12px auto no-repeat;
}

/* #endregion ------------------------------------ buttons -------------------------------------- */

/* #region ---------------------------------- h1 - h6, newslink --------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
    color: #00579e;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Chau Philomene One", sans-serif;
    margin-bottom: 15px;
}

h1,
.h1,
.legacy_h1,
#text :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(2.25rem, 6vw, 3.125rem);
    margin-bottom: clamp(15px, 4vw, 40px);
}

h2,
.h2,
.legacy_h2 {
    font-size: clamp(2.0625rem, 5.5vw, 2.8125rem);
}

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

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

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

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

/* #endregion ---------------------------------- h1 - h6, newslink ------------------------------ */

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

footer {
    font-size: 1.125rem;
}

#footer {
    padding: clamp(40px, 8vw, 80px) 0 clamp(40px, 8vw, 70px) 0;
    background: #00579e;
    position: relative;
    z-index: 9;
}

@media (min-width: 576px) {
    #footer {
        background: #00579e url("../img/logo-hintergrund.webp") bottom right -250px no-repeat;
    }
}

@media (min-width: 1200px) {
    #footer {
        background-position: bottom right;
    }
}

#footer,
#footer :is(h1, h2, h3, h4, h5, h6, a) {
    color: #ffffff;
}

#footer :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.625rem;
    margin-bottom: 2px;
}

#innerfooter {
    padding: 24px 0;
}

#innerfooter ul {
    padding: 0;
}

@media (min-width: 576px) {
    #innerfooter li+li {
        margin-left: 30px;
    }

    #innerfooter li {
        display: inline-block;
    }
}

#innerfooter li a {
    color: inherit;
}

@media (max-width: 575px) {
    #innerfooter li a {
        padding: 4px;
        display: inline-block;
    }
}

#footer #social-media img+img,
#footer a.has-image+a.has-image {
    margin-left: 10px;
}

#footer #social-media+#vernetzt {
    margin-top: 20px;
}

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

/* #region -------------------------------------- vernetzt -------------------------------------- */

#footer #vernetzt {
    gap: 10px;
    text-align: right;
    font-size: 0.9375rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
    text-decoration: none;
}

#footer #vernetzt span {
    display: block;
}

/* #endregion -------------------------------- vernetzt ----------------------------------------- */