@import url("https://fonts.verwaltungsportal.de/import/?family=Jost:300,400,500,600,300i,400i,500i,600i");

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

body {
    font-family: "Jost", sans-serif;
    color: #222222;
    background: #ffffff;
    font-size: clamp(1rem, 2vw, 1.125rem);
    /* 1rem = 16px */
    line-height: 1.5;
}

a {
    color: #267c9e;
}

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

b,
strong {
    font-weight: 600;
}

:focus-visible {
    outline: 3px solid #267c9e !important;
}

/* #region ---------------------------- topbar + contrast + styler ------------------------------ */

#topbar {
    font-size: 0.875rem;
    background: #f6d009;
    overflow: hidden;
}

#topbar h2 {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    margin: 0 15px 0 0;
    width: unset;
}

#topbar>.row>div>*:not(h2, address, :last-child) {
    margin-right: clamp(15px, 2vw, 30px);
}

#contrast_style,
#style {
    background-color: rgba(255, 255, 255, 0.2);
}

:is(#contrast_style, #style) button {
    border: none;
    display: inline-block;
    background: transparent;
    min-height: 24px;
}

:is(#contrast_style, #style) button:is(:hover, :focus) {
    background: rgba(255, 255, 255, 0.8);
}

/* contrast */

#contrast_style {
    line-height: 0;
    padding: 5px 15px;
}

#contrast_style button {
    min-width: 24px;
    position: relative;
    padding: 5px;
}

#contrast_style button:nth-child(2) {
    transform: scale(-1);
}

#contrast_style button::after {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #222222;
    display: block;
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 8px);
}

#contrast_style button:after {
    background: linear-gradient(45deg, #222222, #222222 50%, transparent 50%);
}

#contrast_style button:nth-child(3):after {
    background: #222222;
}

/* style */

@media (min-width: 992px) {
    #style {
        padding: 5px 10px;
    }

    #style button {
        min-width: 30px;
        padding: 4px;
        color: inherit;
        text-align: center;
        line-height: 1;
    }
}

/* #endregion ------------------------- topbar + contrast + styler ------------------------------ */

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

#logo {
    display: flex;
    align-items: start;
    align-content: start;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
}

@media (min-width: 992px) {
    #logo {
        margin-top: -50px;
        transition: margin 300ms linear;
    }

    .is-sticky #logo {
        margin-top: 0;
    }
}

#logo .logoImg img {
    display: block;
}

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

#logo .logoTxt {
    color: #222222;
    line-height: 1.2;
    font-size: 0.875rem;
}

#logo .logoTxt :is(b, strong) {
    color: #222222;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    font-size: clamp(1.25rem, 3vw, 1.625rem);
}

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

/* burgermenu for tablet */

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

    nav.horizontally {
        position: static !important;
        padding: 15px 0;
    }

    #burgerButton {
        font-size: 0;
        border: none !important;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        cursor: pointer;
        background-color: #267c9e;
    }

    #burgerButton::before,
    #burgerButton::after,
    #burgerButtonInner {
        background-color: #fff;
        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;
        background-color: #ffffff;
    }

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: #fff;
        padding-bottom: 140px;
        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 {
        background-color: #222222;
    }

    .dropdown-toggle-button::before,
    .dropdown-toggle-button::after {
        background-color: #f6d009;
    }

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

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

/* menu desktop */

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

    .is-sticky .horizontally {
        padding-top: 15px;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    }

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

    nav.horizontally .navbar-nav li[class*="toplevel"]>ul {
        display: flex !important;
        flex-wrap: wrap;
        column-gap: 35px;
        pointer-events: none;
        position: absolute;
        opacity: 0;
        top: 100%;
        left: -34.4%;
        right: 0;
        z-index: 1000;
        padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 47px);
        margin-top: 30px;
        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;
        top: 100%;
    }

    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;
    }

    nav.horizontally li[class*="secondlevel"] {
        margin-bottom: 20px;
        width: 31%;
        border-bottom: 2px solid rgba(41, 35, 0, 0.2);
    }

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

/* toplevel */

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

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

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

@media (min-width: 992px) {
    nav.horizontally a[class*="toplevel"] {
        padding: 20px 0 10px 0;
        text-align: center;
    }

    nav.horizontally li[class*="toplevel"]+li {
        margin-left: 10px;
    }

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

    nav.horizontally a:is([class*="toplevel"], [class*="secondlevel"])[data-toggle="dropdown"]::after {
        content: "";
        position: absolute;
        display: block;
        right: 2px;
        top: 50%;
        margin-top: -2px;
        width: 6px;
        height: 6px;
        border-radius: 1px;
        opacity: 0.3;
        display: inline-block;
        border-left: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: rotate(-45deg);
        transition: border 300ms linear;
    }
}

/* 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: #267c9e;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"]>ul {
    background-color: rgba(255, 255, 255, 0.93);
}

@media (max-width: 991px) {
    nav.horizontally [class*="toplevel"]>ul {
        padding: 10px 0;
        box-shadow: inset -1px 0px 5px 0 rgba(0, 0, 0, 0.2);
    }
}

@media (min-width: 992px) {
    nav.horizontally [class*="toplevel"]>ul {
        box-shadow: 0 15px 50px 0 rgba(66, 58, 1, 0.2);
    }

    nav.horizontally [class*="toplevel"]>ul::before {
        content: "";
        position: absolute;
        display: block;
        height: 60px;
        left: 0;
        right: 0;
        top: -50px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #222222;
    text-align: left;
    position: relative;
    width: 100%;
    line-height: 1.2;
    text-decoration: none;
}

nav.horizontally a[class*="secondlevel"] {
    font-weight: 500;
    padding: 0 20px 0 0;
    margin-bottom: 10px;
    font-size: 1.125rem;
}

nav.horizontally a[class*="thirdlevel"] {
    font-weight: 400;
    padding: 5px 0;
    font-size: 1rem;
}

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

    nav.horizontally a[class*="thirdlevel"] {
        padding: 8px 30px;
    }
}

/* 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: transparent;
    color: #267c9e;
}

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

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

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

@media (min-width: 992px) {
    body.index #slider {
        max-height: clamp(400px, 72vw, 700px);
    }

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

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

    body.index #headerpic .nivo-controlNav {
        bottom: 100px !important;
    }
}

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

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

.slider-mask {
    display: none;
}

/* -------------------------------------------- welcome ----------------------------------------- */

#welcome {
    background: #f6d009;
    padding: 30px 0;
}

@media (min-width: 992px) {
    body.index #welcome {
        padding-top: 0;
    }
}

#welcome:has(#tabsBox) {
    background: #f6d009 linear-gradient(to top, #ffffff 90px, rgba(255, 255, 255, 0) 90px);
    padding-bottom: 0;
}

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

#buttons {
    position: fixed;
    z-index: 1010;
    bottom: 0;
    left: 0;
}

@media (max-width: 991px) {
    #buttons {
        display: flex;
        right: 0;
    }
}

@media (min-width: 992px) {
    #buttons {
        bottom: 50%;
        transform: translateY(50%);
    }
}

#buttons details {
    position: relative;
}

#buttons summary {
    background: #267c9e center no-repeat;
    color: #fff;
    border-right: 4px solid #fff;
    width: 50px;
    height: 50px;
    display: block;
    cursor: pointer;
    transition: background-color 300ms linear;
}

#buttons summary:is(:hover, :focus) {
    background-color: #206885;
}

#buttons .search summary {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23fff'%3E%3Cpath d='M784-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l252 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z'/%3E%3C/svg%3E");
}

#buttons .contact summary {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23fff'%3E%3Cpath d='M760-480q0-117-81.5-198.5T480-760v-80q75 0 140.5 28.5t114 77q48.5 48.5 77 114T840-480h-80Zm-160 0q0-50-35-85t-85-35v-80q83 0 141.5 58.5T680-480h-80Zm198 360q-125 0-247-54.5T329-329Q229-429 174.5-551T120-798q0-18 12-30t30-12h162q14 0 25 9.5t13 22.5l26 140q2 16-1 27t-11 19l-97 98q20 37 47.5 71.5T387-386q31 31 65 57.5t72 48.5l94-94q9-9 23.5-13.5T670-390l138 28q14 4 23 14.5t9 23.5v162q0 18-12 30t-30 12ZM241-600l66-66-17-94h-89q5 41 14 81t26 79Zm358 358q39 17 79.5 27t81.5 13v-88l-94-19-67 67ZM241-600Zm358 358Z'/%3E%3C/svg%3E");
}

#buttons summary+* {
    position: absolute;
    left: 0;
    bottom: 100%;
}

@media (min-width: 992px) {
    #buttons summary+* {
        left: 100%;
        top: 0;
        bottom: unset;
    }
}

/* search */

#search {
    background: #206885;
    display: inline-flex;
    width: 265px;
}

#search_input {
    color: #fff;
    font-size: inherit;
    font-style: normal;
    background: transparent;
    padding: 13px clamp(15px, 2vw, 22px);
    border: 0;
    width: 100%;
}

#search_submit {
    width: 50px;
    flex-shrink: 0;
    background: #f6d009 url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23222'%3E%3Cpath d='M647-440H160v-80h487L423-744l57-56 320 320-320 320-57-56 224-224Z'/%3E%3C/svg%3E") center no-repeat;
    padding: 0;
    cursor: pointer;
    border: none;
    font-size: 0;
    transition: all 300ms linear;
}

#search_submit:is(:hover, :focus) {
    background-color: #c2a308;
}

#search_input::placeholder {
    color: #fff !important;
    opacity: 0.8 !important;
    font-style: italic !important;
}

/* contact */

#buttons .contact summary+* {
    background: #fff;
    padding: 30px;
    width: 80vw;
    max-width: 510px;
    font-size: 1rem;
    box-shadow: 0 0 10px 0 rgba(66, 58, 1, 0.2);
}

@media (min-width: 992px) {
    #buttons .contact summary+* {
        left: calc(100% - 4px);
    }

    #buttons .contact {
        margin-top: 10px;
    }
}

#buttons .contact summary+* a {
    color: inherit;
    text-decoration: underline;
}

#buttons .contact summary+* :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.125rem;
}

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

/* ---------------------------------------------- tabs ------------------------------------------ */

#tabsBox {
    background: #ffffff;
    border-bottom: 8px solid #222222;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15), 0 -120px 50px -100px rgba(66, 58, 1, 0.2);
    padding: 30px;
    margin-top: clamp(30px, 5vw, 50px);
}

#tabsBox .template-page .row {
    align-items: center;
    align-content: center;
    row-gap: 30px;
}

#tabsBox img {
    display: block;
    transition: all 200ms linear;
}

#tabsBox img:is(:hover, :focus),
#tabsBox a:is(:hover, :focus) img {
    transform: scale(1.1);
}

#tabsBox :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.375rem, 2vw, 2.1875rem);
    margin: 0;
}

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

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

/* #region ----------------------------- tabSpecialHeadline ------------------------------------- */

.tabSpecialHeadline {
    font-size: 1rem;
}

.tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6) {
    text-transform: none;
    font-weight: 600;
    position: relative;
    margin: 0;
}

.tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6)::after {
    content: "";
    display: block;
    width: 100px;
    height: 8px;
    background: #f6d009;
}

.tabSpecialHeadline :is(i, em) {
    text-transform: uppercase;
    font-style: normal;
}

.tabSpecialButton a {
    background: #267c9e;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 70px 16px 20px;
    display: inline-block;
    width: 100%;
    position: relative;
    margin-top: 10px;
    line-height: 1.2;
    text-align: center;
}

@media (min-width: 768px) {
    .tabSpecialButton a {
        max-width: 270px;
    }
}

.tabSpecialButton a::before {
    content: '\00BB';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    line-height: 45px;
    font-size: 30px;
    display: block;
    background-color: #206885;
    transition: background-color 300ms linear;
}

.tabSpecialButton a:is(:hover, :focus) {
    background: #206885;
}

.tabSpecialButton a:is(:hover, :focus)::before {
    background: #267c9e;
}

.tabSpecialButton .btgrid>.row {
    align-items: center;
}

/* #endregion -------------------------- tabSpecialHeadline ------------------------------------- */

/* #region ------------------------------------ news -------------------------------------------- */

#news {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: clamp(40px, 6vw, 70px) 0;
}

#news .tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6)::after {
    content: "";
    display: none;
}

#news .tab_link_entries {
    display: grid;
    gap: 30px;
    margin-top: clamp(30px, 4vw, 60px);
}

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

@media (min-width: 992px) {
    #news .tab_link_entries {
        grid-template-columns: repeat(4, 1fr);
    }
}

#news .tab_link_entry {
    font-size: 1rem;
    position: relative;
    box-shadow: 0 60px 30px -30px rgba(66, 58, 1, 0.2);
    background: #ffffff;
    padding: 230px 20px 70px 20px;
    border: none !important;
}

#news .tab_link_entry::after {
    content: "";
    position: absolute;
    display: block;
    top: 180px;
    left: 0;
    right: 0;
    width: 50px;
    height: 50px;
    margin: auto;
    background: #ffffff url('../img/icon-aktuelles.png') center no-repeat;
    border-radius: 50%;
    z-index: 2;
}

#news .tab_link_entry .tab_link_title a::before,
#news .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
}

#news .tab_link_entry .tab_link_title a::before {
    content: "";
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#news .tab_preview_picture img {
    margin: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#news .tab_link_title a {
    font-weight: 500;
    font-size: 1.25rem;
    display: block;
    color: #267c9e;
    margin-bottom: 20px;
    line-height: 1.2
}

#news .tab_date {
    font-size: 0.875rem;
    font-style: italic;
}

#news .tab_link_entry .tab_link_mehr {
    font-size: 0;
}

#news .tab_link_entry .tab_link_mehr a {
    display: inline-block;
    position: absolute;
    text-decoration: none;
    bottom: 20px;
    left: 20px;
    font-size: 0.875rem;
    color: inherit;
    padding: 7px 26px;
    background-color: #ffffff;
    border: 2px solid #267c9e;
    margin-top: 25px;
    transition: all 200ms linear;
}

#news .tab_link_entry .tab_link_mehr :is(a:hover, :focus) {
    background-color: #267c9e;
    color: #ffffff;
}

#news .tab_spacer {
    height: 5px;
}

/* #endregion --------------------------------- news -------------------------------------------- */

/* #region ----------------------------------- events ------------------------------------------- */

#events {
    padding: clamp(40px, 4vw, 60px) 0 clamp(40px, 4vw, 65px) 0;
}

/* #endregion -------------------------------- events ------------------------------------------- */

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

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

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

h2,
.h2,
.legacy_h2,
.tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

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

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
    font-size: 1.5625rem;
}

h5,
.h5,
.legacy_h5 {
    font-size: 1.4375rem;
}

h6,
.h6,
.legacy_h6 {
    font-size: 1.3125rem;
}

/* #region -------------------------------- footerwrapper --------------------------------------- */

.footerwrapper {
    background: #f6d009;
    font-size: 1rem;
    position: relative;
}

.footerwrapper>.row {
    row-gap: 30px;
}

.footerwrapper>.row:first-child {
    padding: 40px 0 5px 0;
}

@media (min-width: 992px) {
    .footerwrapper>.row:first-child>* {
        padding-top: clamp(30px, 5vw, 50px);
        padding-bottom: clamp(30px, 5vw, 50px);
    }

    .footerwrapper>.row:first-child>*:nth-child(2)::before {
        content: "";
        position: absolute;
        left: -50px;
        top: 0;
        bottom: 0;
        width: 2px;
        margin: auto;
        background-color: rgba(0, 0, 0, 0.2);
    }

    #app-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 99;
    }
}

.footerwrapper>.row:last-child {
    padding: 35px 0;
}

.footerwrapper a {
    color: inherit;
}

.footerwrapper .tabHeadline {
    margin-bottom: 10px;
    font-size: 1.125rem;
    color: inherit;
}

.tabSocial .tabHeadline {
    margin: 0;
    width: auto;
}

.footerwrapper .tab2 {
    line-height: 1.8;
}

.footerwrapper .tab2 a {
    text-decoration: underline;
}

.footerwrapper .theme {
    line-height: 2.4;
}

.tabButtons :is(p+p, a+a) {
    margin-top: 20px;
}

.tabButtons a {
    font-size: 1.125rem;
    font-weight: 500;
    border: 2px solid rgba(0, 0, 0, 0.2);
    text-decoration: none;
    padding: 12px 55px 12px 20px;
    display: block;
    position: relative;
    line-height: 1.2;
}

.tabButtons a:is(:hover, :focus) {
    background-color: rgba(0, 0, 0, 0.1);
}

.tabButtons a::after {
    content: "\00BB";
    position: absolute;
    width: 50px;
    text-align: center;
    right: 0;
    top: 8px;
    bottom: 8px;
    font-size: 30px;
    line-height: 25px;
    border-left: 2px solid rgba(0, 0, 0, 0.2);
}

.tabSocial {
    gap: 10px 30px;
}

.tabSocial .template-page {
    width: auto;
}

.tabSocial :is(p+p, a+a) {
    margin-left: 20px;
}

/* #endregion ----------------------------- footerwrapper --------------------------------------- */

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

#vernetzt {
    gap: 18px;
    text-align: right;
    font-size: 0.8125rem;
    color: inherit;
    line-height: 1.3;
    font-weight: 400;
    text-decoration: none;
}

#vernetzt span span {
    display: block;
}

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

#innerfooter {
    background: #222222;
    padding: 22px 0;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 5px;
    display: inline-block;
}

#innerfooter a:is(:hover, :focus) {
    color: #f6d009;
}

@media (min-width: 576px) {
    #innerfooter li {
        display: inline-block;
    }

    #innerfooter li+li {
        margin-left: clamp(15px, 5vw, 50px);
    }
}

/* --------------------------------------------- contrast --------------------------------------- */

.contrast_dark #logo {
    background-color: #ffffff !important;
}

.contrast_dark #bannerOverlay {
    margin-top: 0;
}

.contrast_dark #contrast_style button::after {
    filter: brightness(10);
}

.contrast_light_font #search_input {
    color: #000000 !important;
}

:is(.contrast_light_font, .contrast_dark_font) #news .tab_link_title a::before,
:is(.contrast_light_font, .contrast_dark_font) .tab_link_title a::after {
    display: none !important;
}

.contrast_dark_font #vernetzt img {
    background-color: #000000;
}

.contrast_light_font .tabSocial img,
.contrast_dark_font #bannerOverlay {
    background-color: #ffffff;
}

#logo .contrast_dark img {
    background: #fff;
}

.navbar-default .navbar-nav>li:is(.contrast_light_font, .contrast_dark_font) .dropdown-menu>li:first-child,
.navbar-default .navbar-nav>li:is(.contrast_light_font, .contrast_dark_font) .dropdown-menu>li:last-child {
    display: none !important;
}