@import url("https://fonts.verwaltungsportal.de/import/?family=Fira+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: #c00000 #ffffff;
    scrollbar-width: thin;
}

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

a {
    color: #c00000;
}

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

b,
strong {
    font-weight: 700;
}

a:focus-visible,
button:focus-visible,
form:focus-visible,
input:focus-visible {
    outline: 3px solid #0066ff !important;
}

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

/* ----------------------------------------------- @3tp topbar ----------------------------------------------- */

#tp3 {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    gap: 25px;
    display: block;
    border-bottom: 1px solid #c5e1c7;
}

@media (max-width: 991px) {
    #tp3 {
        padding: 10px;
    }
}

#tp3 .styleBox {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

#tp3 .styleBox span {
    color: #191919;
    font-size: 1rem;
}

/* ------------------------------------------------ contrast_style ---------------------------------------------- */

#contrast_style button {
    color: #191919;
    padding: 0;
    font-size: 0;
    border: unset !important;
    display: inline-block;
    text-align: center;
    width: 29px;
    height: 29px;
    font-weight: 400;
    border-radius: 5px;
    background: #ffd68f;
    transition: background 300ms linear;
    position: relative;
    z-index: 1;
}

#contrast_style button:hover,
#contrast_style button:focus {
    background: #ffd900;
}

#contrast_style button+button {
    margin-left: 7px;
}

/* ------------------------------------------------ styler ---------------------------------------------- */

#style button {
    padding: 0;
    border: none;
    color: #191919;
    display: inline-block;
    min-width: 29px;
    min-height: 29px;
    font-weight: 400;
    font-size: 1.125rem;
    text-align: center;
    border-radius: 5px;
    background: #ffd68f;
    position: relative;
    line-height: 1;
    transition: color 300ms linear, background 300ms linear;
}

#style button+button {
    margin-left: 7px;
}

#style button:hover,
#style button:focus {
    color: #191919;
    background: #ffd900;
}

/* -------------------------------------------- @nav1 Navigation ------------------------------------------- */

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

@media (max-width: 767px) {
    #logo img {
        max-width: 120px;
    }
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    #menu {
        padding: 10px 0;
        position: static !important;
        background-color: #ffffff;
        box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    }

    #burgerButton {
        font-size: 0;
        border: none !important;
        position: relative;
        z-index: 1002;
        display: block;
        width: 46px;
        height: 40px;
        border-radius: 2px;
        cursor: pointer;
        background-color: #ffffff;
        padding: 3px;
    }

    #burgerButton:before, #burgerButton:after, #burgerButtonInner {
        background-color: #191919;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 2px;
        -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;
    }

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

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

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

    #burgerButtonInner {
        top: 10px;
    }

    #burgerButton:before {
        top: 18px;
    }

    #burgerButton:after {
        top: 26px;
    }

    #burgerButton:before, #burgerButton:after {
        content: "";
        display: block;
    }

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

    .navbar-collapse {
        top: 0;
        background: #ffffff;
        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.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-collapse.in:after {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        display: block;
        width: 90px;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

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

    .navbar-collapse.collapse.in:after {
        width: 40%;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    #menu {
        background-color: #ffffff;
        box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    }

    .is-sticky #menu {
        left: unset !important;
    }

    #menu>.row {
        width: 100%;
        max-width: 1600px;
    }

    nav.horizontally .navbar-nav {
        padding: 12px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        flex-wrap: wrap;
        width: 100%;
    }

    .menuBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        width: 100%;
    }

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

    nav.horizontally .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }

    nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    nav.horizontally .navbar-nav>li, nav.horizontally .navbar-nav>li>.dropdown-menu>li {
        position: relative;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: opacity 300ms linear;
        -moz-transition: opacity 300ms linear;
        -ms-transition: opacity 300ms linear;
        -o-transition: opacity 300ms linear;
        transition: opacity 300ms linear;
    }

    .navbar-default .open>.dropdown-menu,
    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:focus-within>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:focus-within>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar-default .nav .open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover>u {
        z-index: 1003;
    }
}

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

.navbar-default .navbar-nav>li>a {
    color: #191919;
    font-weight: 700;
    text-align: left;
    padding: 15px 35px 15px 15px;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
    background: #ffd68f;
}

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

    .navbar-default .navbar-nav>li {
        border-bottom: 1px solid rgba(68, 68, 68, 0.2);
    }

    .navbar-default .navbar-nav>li>a {
        overflow-wrap: break-word;
        word-wrap: break-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
    }
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li+li {
        margin-left: 15px;
    }

    .navbar-default .navbar-nav>li>a {
        padding: 21px 8px 21px 8px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }

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

    nav.horizontally a[class*="toplevel"].dropdown-toggle::after {
        content: "";
        position: absolute;
        display: block;
        right: 15px;
        top: 50%;
        margin-top: -5px;
        width: 5px;
        height: 5px;
        border-left: 1px solid #191919;
        border-bottom: 1px solid #191919;
        transform: rotate(-45deg);
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        display: block;
    }
}

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

.navbar-nav>li:hover>a,
.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus,
.navbar-nav>li.open>a,
.navbar-nav>li.open>a:hover,
.navbar-nav>li.open>a:focus,
.navbar-nav>li[class$="_over"]>a,
.navbar-nav>li[class$="_over"]>a:hover,
.navbar-nav>li[class$="_over"]>a:focus {
    color: #191919;
    background: #ffd900 !important;
}

.navbar-nav>li:focus-within>a {
    color: #191919;
    background: #ffd900 !important;
}

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

.navbar-default .navbar-nav>li>.dropdown-menu,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background: #ffffff;
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        padding: 10px;
    }
}

@media(min-width:992px) {

    .navbar-default .navbar-nav>li>.dropdown-menu,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: 8px;
        left: 50%;
        -moz-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .navbar-default .navbar-nav>li>.dropdown-menu::after {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        top: -20px;
        margin-left: -20px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 20px 0 20px;
        border-color: #ffd900 transparent transparent transparent;
        -webkit-transition: top 150ms linear;
        -moz-transition: top 150ms linear;
        -ms-transition: top 150ms linear;
        -o-transition: top 150ms linear;
        transition: top 150ms linear;
    }

    .navbar-default .navbar-nav>li:hover>.dropdown-menu::after {
        top: 0;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu::before {
        content: '';
        position: absolute;
        display: block;
        height: 8px;
        top: -8px;
        left: 0;
        right: 0;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-top: -30px;
        margin-left: 10px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu::before {
        content: "";
        position: absolute;
        display: block;
        width: 10px;
        top: 0;
        bottom: 0;
        left: -10px;
    }
}

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

.navbar-default .navbar-nav>li>.dropdown-menu>li>a,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #191919;
    font-weight: 400;
    text-align: left;
    padding: 8px 25px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {

    .navbar-default .navbar-nav>li>.dropdown-menu>li>a,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        overflow-wrap: break-word;
        word-wrap: break-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
    }
}

@media(min-width:992px) {

    .navbar-default .navbar-nav>li>.dropdown-menu>li>a,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        text-align: center;
        padding: 13px 25px;
    }
}

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

.navbar-nav>li>.dropdown-menu>li:hover>a,
.navbar-nav>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus {
    color: #191919;
    background: #ffd900
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a {
    color: #191919;
    background: #ffd900
}

.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus {
    color: #191919;
    background: #ffd900
}

.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
    color: #191919;
    background: #ffd900
}

/* ---------------------------------------------- search ------------------------------------------------ */

#search {
    display: block;
    padding-top: 16px;
    text-align: center;
    font-size: 0;
}

@media (min-width: 992px) {
    #search {
        margin-left: 15px;
        padding: 0;
    }

    #myNavbar.navbar-collapse.collapse {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        flex-wrap: wrap;
    }
}

@media (min-width: 1200px) {
    #search {
        margin-left: 25px;
    }
}

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

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

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

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

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

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

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

.slider-mask {
    display: none;
}

/* ------------------------------------------- quickBox ------------------------------------------ */

@media (max-width: 1199px) {
    #quickBox {
        padding-top: 20px;
    }
}

@media (min-width: 1200px) {
    .index .theme-nivo .nivo-controlNav {
        bottom: 65px;
    }

    #quickBox>.row {
        margin-top: -65px;
        position: relative;
        z-index: 12;
    }
}

#quickBox .quickTab {
    gap: 30px;
    z-index: 1;
    font-size: clamp(1rem, 1vw, 1.125rem);
    padding: 20px clamp(15px, 3vw, 45px);
    background: #ffffff;
    position: relative;
}

#quickBox .quickTab::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: -9px;
    left: -9px;
    right: -9px;
    bottom: -9px;
    z-index: 1;
    border-radius: 5px;
    border: 9px solid rgba(255, 255, 255, 0.6);
}

#quickBox .quickTab::after {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 5px;
    box-shadow: 0 20px 40px 0px rgba(16, 16, 16, 0.3);
}

#quickBox .quickTab .tabHeadline {
    font-style: italic;
    font-size: 1.375rem;
    margin: 0;
    width: auto;
}

#quickBox .quickTab p {
    display: inline-block;
}

#quickBox .quickTab a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    color: #191919;
    padding: 9px 20px;
    border-radius: 8px;
    background: #ffd68f;
    margin: 10px 15px;
    transition: background 300ms linear, box-shadow 300ms linear,
}

#quickBox .quickTab a:hover,
#quickBox .quickTab a:focus {
    background: #ffd900;
    box-shadow: 0px 4px 6px 0px rgba(16, 16, 16, 0.15);
}

#quickBox .quickTab img {
    display: block;
    margin: 0 auto 5px auto;
}

@media (max-width: 767px) {
    #quickBox .quickTab a {
        display: block;
        text-align: center;
        margin: 10px 0;
    }

    #quickBox .quickTab p {
        display: block;
    }
}

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

#content {
    text-align: left;
    padding-top: clamp(30px, 3vw, 40px);
    padding-bottom: clamp(30px, 5vw, 80px);
}

/* ------------------------------------------- tabsBigBox ------------------------------------------ */

#tabsBigBox {
    padding: 20px 0;
    background: #ffd68f;
}

#tabsBigBox .tabHeadline {
    margin: 0;
    font-style: italic;
    font-size: clamp(1.875rem, 3vw, 2.8125rem);
}

#tabsBigBox a {
    color: #191919;
    text-decoration: underline;
}

/* ------------------------------------------- tabsBox ------------------------------------------ */

#tabsBox {
    padding-top: 30px;
    padding-bottom: clamp(30px, 2vw, 35px);
}

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

/* ----------------------------------------------- @3nw news -------------------------------------------- */

#nw3 {
    font-size: 1rem;
    display: grid;
    row-gap: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}

#nw3 .tabHeadline {
    color: #191919;
    font-size: 1.625rem;
    font-style: italic;
    margin-bottom: 0;
}

#nw3 .tab {
    font-size: 1rem;
    margin-bottom: 15px;
}

#nw3 .tab_link_entry {
    position: relative;
    margin-left: 185px;
    min-height: 105px;
    padding: 20px;
    display: grid;
    background: #ffffff;
    border-bottom: none !important;
}

#nw3 .tab_link_entries {
    display: grid;
    gap: 15px;
}

@media (min-width: 992px) {
    #nw3 .tab_link_entry {
        padding: 25px;
    }

    #nw3 .tab_link_entries {
        gap: 25px;
    }
}

#nw3 .tab_link_title {
    order: 1;
}

#nw3 .vorschau {
    order: 2;
    opacity: 1;
}

#nw3 .tab_date {
    order: 3;
}

#nw3 .tab_link_mandat a {
    color: #191919;
}

#nw3 .tab_link_title a {
    display: block;
    color: #191919;
    font-weight: 700;
    margin-bottom: 2px;
}

#nw3 .tab_link_entry::after {
    content: "";
    background: center / cover no-repeat, #ffd900;
}

#nw3 .tab_preview_picture {
    background: #ffffff;
}

#nw3 .tab_link_entry::after,
#nw3 .tab_preview_picture {
    display: block;
    width: 170px;
    height: 100%;
    position: absolute;
    left: -185px;
    top: 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    #nw3 .tab_link_entry {
        margin-left: 0px;
        padding-top: 185px !important;
    }

    #nw3 .tab_link_entry::after,
    #nw3 .tab_preview_picture {
        display: block;
        width: 100%;
        height: 170px;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0px;
        right: 0px;
        overflow: hidden;
    }
}

#nw3 .tab_preview_picture img {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

#nw3 .tab_spacer,
#nw3 .tab_link_entry>div:nth-last-child(2) {
    display: none;
}

/* ----------------------------------------- @3nw tab_link_mehr ---------------------------------------- */

#nw3 .tab_link_mehr {
    text-align: right;
    color: transparent;
    font-size: 0;
}

#nw3 .tab_link_mehr a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    font-weight: 700;
    font-style: italic;
    color: #191919;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 5px;
    background: #ffd900;
    transition: background 300ms linear;
}

#nw3 .tab_link_mehr a:hover,
#nw3 .tab_link_mehr a:focus {
    background: #ffd68f;
}

/* ----------------------------------------------- @12ev events -------------------------------------------- */

#ev12 {
    color: #191919;
    font-size: 1rem;
    position: relative;
    background: #ffffff;
    border: 1px solid #d9d9d9;
}

#ev12 .tabHeadline {
    margin-bottom: 0;
    text-align: center;
    color: #191919;
    font-size: 1.625rem;
    font-weight: 700;
    font-style: italic;
    hyphens: auto;
    padding: 19px 25px;
}

#ev12 #clr-events-hide {
    padding: 20px;
}

#ev12 #clr-events-hide>P:first-of-type {
    display: none;
}

#ev12 .tab_link_title a {
    font-weight: 700;
    color: #191919;
}

#ev12 .tab_link_mandat a {
    color: #191919;
}

#ev12 .tab_link_mehr {
    font-size: 0;
    text-align: right !important;
    padding: 0 20px 15px 20px;
}

#ev12 .tab_link_mehr a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    font-weight: 700;
    font-style: italic;
    color: #191919;
    font-size: 1rem;
    padding: 3px 18px;
    border-radius: 5px;
    background: #ffd900;
    transition: background 300ms linear;
}

#ev12 .tab_link_mehr a:hover,
#ev12 .tab_link_mehr a:focus {
    background: #ffd68f;
}

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

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

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

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

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

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

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

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

/* ----------------------------------------------- @1f footer ----------------------------------------------- */

#f1 {
    color: #191919;
    font-size: 1rem;
    padding-top: 35px;
    padding-bottom: 30px;
    background-color: #ffd68f;
    position: relative;
}

@media (min-width: 1200px) {
    #f1>.row::after {
        content: '';
        position: absolute;
        pointer-events: none;
        bottom: -30px;
        right: -365px;
        width: 353px;
        height: 126px;
        background: url('../img/stadt-silouhette-footer.png') center no-repeat;
    }
}

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

#f1 a,
#f1 a:hover,
#f1 a:focus {
    color: #191919;
}

#f1 .footerTab {
    font-size: 1rem;
}

#f1 .footerTab a {
    text-decoration: underline;
}

#f1 .tabHeadline {
    font-size: 1.375rem;
    font-style: italic;
    color: #191919;
    border-bottom: 2px solid rgba(25, 25, 25, 0.3);
}

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

#innerfooter ul {
    border-bottom: 2px solid rgba(25, 25, 25, 0.3);
    padding: 0;
}

#innerfooter li {
    border-top: 2px solid rgba(25, 25, 25, 0.3);
}

#innerfooter a {
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    padding: 6px 10px 6px 25px;
}

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

#innerfooter a::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 13px;
    width: 8px;
    height: 10px;
    background: #191919;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

/* --------------------------------------------- footerLast -------------------------------------------- */

#footerLast {
    font-size: 1rem;
    padding: 8px 0;
}

#footerLast>.row {
    row-gap: 8px;
}

@media (max-width: 767px) {
    #footerLast {
        padding: 25px 0;
    }

    #footerLast>.row {
        row-gap: 25px;
    }
}

#footerLast .tab {
    gap: 30px;
}

#footerLast .tab .tabHeadline {
    font-style: italic;
    font-size: 1.375rem;
}

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

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

#vernetzt b {
    color: #191919;
}

#vernetzt span span {
    display: block;
}

/* --------------------------------------------- kontraste -------------------------------------------- */

.contrast_light_font #style button,
.contrast_light_font #contrast_style button {
    border: 1px solid #ffffff !important;
}

.contrast_dark_font #style button,
.contrast_dark_font #contrast_style button {
    border: 1px solid #000 !important;
}

.contrast_light_font #search img {
    background-color: #ffffff !important;
}

.contrast_light_font #quickBox .quickTab a {
    color: #000 !important;
}