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

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

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

a {
    color: #d30c13;
}

#content a,
a:hover,
a:focus {
    color: #d30c13;
    text-decoration: underline;
}

b, strong {
    font-weight: 600;
}

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

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

#tp3 {
    color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #d30c13;
}

@media (max-width: 991px) {
    #tp3>.row>*+* {
        margin-top: 10px;
    }
}

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

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

#tp3 span {
    color: #ffffff;
    font-size: 0.875rem;
    padding-right: 10px;
}

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

#contrast_style button {
    color: #000000;
    padding: 0;
    font-size: 0;
    border: unset !important;
    display: inline-block;
    text-align: center;
    width: 29px;
    height: 29px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.9);
    transition: background 300ms linear;
    position: relative;
    z-index: 1;
}

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

#contrast_style *+* {
    margin-left: 3px;
}

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

@media (min-width: 992px) {
    #style {
        margin-left: 30px;
    }
}

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

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

#style button:hover,
#style button:focus {
    color: #555555;
    text-decoration: underline;
    background: #ffffff;
}

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

form[id^="search"] {
    min-height: 35px;
    display: block;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 575px) {
    form[id^="search"] {
        display: inline-block;
    }
}

@media (min-width: 576px) {
    form[id^="search"] {
        margin-left: 30px;
    }
}

form [id^="search_input"] {
    font-size: 1rem;
    color: #555555;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    padding-left: 14px;
    padding-right: 54px;
    min-height: 35px;
    width: 100%;
    display: block;
}

form [id^="search_submit"] {
    width: 40px;
    background: url('../img/lupe-icon.png') center no-repeat;
    padding: 0;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 6px;
    bottom: 6px;
    right: 0;
    font-size: 0;
    border-left: 1px solid #d30c13;
    transition: background 200ms linear, top 200ms linear, bottom 200ms linear;
}

form [id^="search_submit"]:hover,
form [id^="search_submit"]:focus {
    top: 0;
    bottom: 0;
    background-color: #ffffff;
}

[id^="search_input"]::-ms-input-placeholder {
    color: #555555 !important;
}

[id^="search_input"]::-webkit-input-placeholder {
    color: #555555 !important;
}

[id^="search_input"]::-moz-placeholder {
    opacity: 1;
}

[id^="search_input"]:-moz-placeholder {
    opacity: 1;
}


/* für :focus-visible -> setzt die Umrandung -3px weiter hinein */
form[id^="search"],
form [id^="search_input"],
form [id^="search_submit"] {
    outline-offset: -3px;
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    .horizontally {
        padding: 10px 0;
        background: #ffffff;
        position: relative !important;
    }

    #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: #d30c13;
        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) {
    .horizontally {
        padding: 25px 0;
        background: #ffffff;
        transition: padding 300ms linear, box-shadow 300ms linear;
    }

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

    nav.horizontally .navbar-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        flex-wrap: wrap;
    }

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

    /* Fade in Hover Start */
    .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;
    }

    /* Pseudo */

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

    /* 3rd */

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

    /* Fade in Hover End */
}

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

.navbar-default .navbar-nav>li>a {
    color: #555555;
    font-weight: 400;
    text-align: left;
    padding: 10px 35px 15px 20px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li {
        border-bottom: 1px solid rgba(85, 85, 85, 0.2);
    }
}

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

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

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

.navbar-default .navbar-nav>li>a::before {
    content: "";
    width: 0;
    height: 4px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #d30c13;
    transition: width 300ms linear;
}

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

.navbar-nav>li:hover>a::before,
.navbar-nav>li>a:hover::before,
.navbar-nav>li>a:focus::before,
.navbar-nav>li.open>a::before,
.navbar-nav>li.open>a:hover::before,
.navbar-nav>li.open>a:focus::before,
.navbar-nav>li[class$="_over"]>a::before,
.navbar-nav>li[class$="_over"]>a:hover::before,
.navbar-nav>li[class$="_over"]>a:focus::before {
    width: 100%;
}

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

.navbar-default .navbar-nav>li>.dropdown-menu,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background-color: #ffffff;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
}

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

@media(min-width:992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: 10px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        padding-top: 10px;
        padding-bottom: 10px;
        border-radius: 3px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-top: -10px;
        margin-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: #555555;
    font-weight: 400;
    text-align: left;
    padding: 9px 25px 9px 35px;
    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: 35px;
    }
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #555555;
    transition: background 300ms linear;
}

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):not(:nth-child(2)) {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

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

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

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

#bannerBox {
    padding-bottom: 35px;
    position: relative;
}

#bannerBox>.row {
    row-gap: 35px;
}

@media (min-width: 1200px) {
    #bannerBox>.row::before {
        content: '';
        position: absolute;
        pointer-events: none;
        bottom: -35px;
        left: -365px;
        width: 225px;
        height: 239px;
        background: url('../img/pferd-grau.png') center no-repeat;
    }
}

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

.slider-wrapper,
.nivo-main-image,
#slider>a>div {
    height: 100% !important;
}

@media (min-width: 768px) {

    #slider,
    #headerpic {
        height: 100% !important;
        max-height: 650px;
    }
}

@media (min-width: 992px) {
    #slider {
        min-height: clamp(300px, 42vw, 400px);
    }

    body.index #slider {
        min-height: 520px;
    }
}

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

.slider-mask {
    display: none;
}

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

#ev12 {
    height: 100%;
    hyphens: auto;
    color: #555555;
    position: relative;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(43, 43, 43, 0.15);
}

#ev12 .tabHeadline {
    margin-bottom: 0;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px 25px;
    background: #d30c13;
}

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

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

#ev12 .tab_link_title a {
    font-weight: 600;
    color: #d30c13;
}

#ev12 .tab_link_mandat a {
    color: #555555;
    font-style: italic;
}

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

#ev12 .tab_link_mehr a {
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    padding: 2px 15px;
    border: 2px solid #d30c13;
    background: #d30c13;
}

#ev12 .tab_link_mehr a:hover,
#ev12 .tab_link_mehr a:focus {
    color: #d30c13;
    background: #ffffff;
}

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

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

/* ------------------------------------------------ @9tab ----------------------------------------------- */

#tab9 {
    padding-top: clamp(30px, 4vw, 65px);
    padding-bottom: clamp(30px, 4vw, 60px);
    line-height: 1.4;
}

#tab9 .tabBox {
    padding: 30px;
    border-radius: 3px;
    background: #ffffff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
    #tab9 .tabBox {
        padding: 20px;
    }
}

#tab9 .tabHeadline {
    color: #d30c13;
    text-transform: uppercase;
    font-size: clamp(1.75rem, 2vw, 2rem);
    margin-bottom: clamp(15px, 2vw, 20px);
}

#tab9 .tabBox a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    padding: 3px 12px;
    margin-top: 15px;
    color: #ffffff;
    background-color: #d30c13;
    border: 2px solid #d30c13;
    transition: background 300ms linear, color 300ms linear;
}

#tab9 .tabBox a:hover,
#tab9 .tabBox a:focus {
    color: #d30c13;
    background-color: #ffffff;
}

@media (min-width: 576px) {
    #tab9 .tabBox a+a {
        margin-left: 10px;
    }
}

@media (min-width: 992px) {
    #tab9 .tabBox a+a {
        margin-left: 25px;
    }

    #tab9 .tabBox {
        padding: 35px 40px 40px 40px;
        position: relative;
        z-index: 12;
    }
}

@media (min-width: 768px) {
    #tab9 .tabBox {
        margin-top: 80px;
    }
}

@media (min-width: 992px) {
    #tab9 .tabBox {
        margin-top: 100px;
    }
}

#tab9 .tabImg {
    border-radius: 3px;
    background-color: #444444;
}

@media (max-width: 767px) {

    #tab9 .tabImg,
    #tab9 .tabImg>div {
        max-height: 250px;
    }

    #tab9 .tabImg {
        -webkit-box-shadow: 0 15px 0 15px #e5e5e5;
        box-shadow: 0 15px 0 15px #e5e5e5;
    }
}

@media (min-width: 768px) {
    #tab9 .tabImg>div {
        height: 100%;
    }

    #tab9 .tabImg {
        -webkit-box-shadow: 20px 20px 0 0 #e5e5e5;
        box-shadow: 20px 20px 0 0 #e5e5e5;
    }
}

#tab9 .tabImg>div {
    overflow: hidden;
    border-radius: 3px;
}

@media (min-width: 768px) {
    #tab9 .tabImg {
        margin-right: -50px;
    }
}

@media (min-width: 992px) {
    #tab9 .tabImg {
        margin-right: -100px;
        max-height: 450px;
    }
}

#tab9 .tabImg img {
    display: block;
    border-radius: 3px;
}

@media (min-width: 768px) {
    #tab9 .tabImg img {
        min-width: 100%;
        min-height: 100%;
        width: auto !important;
    }
}

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

.h4link a:link, .h4link a:hover, .h4link a:focus, .h4link a:visited, H6, H5, H4, H3, H2, H1 {
    color: #d30c13;
    font-weight: 600;
    line-height: 1.2;
    font-family: "Asap", 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:link, .h4link a:hover, .h4link a:focus, .h4link a:visited, .legacy_h4 {
    font-size: 1.5rem;
}

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

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

#newslinks, #newsmandate {
    border: 1px solid #d30c13;
}

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

footer {
    padding: 30px 0;
    color: #ffffff;
    background: #d30c13;
    position: relative;
}

@media (min-width: 1200px) {
    footer>.row::before {
        content: '';
        position: absolute;
        pointer-events: none;
        top: -268px;
        right: -365px;
        width: 223px;
        height: 239px;
        background: url('../img/pferd-rot.png') center no-repeat;
    }
}

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

@media (min-width: 1199px) {
    footer>.row>div:nth-child(2) {
        padding: 0 30px;
    }
}

footer a,
footer a:is(:hover, :focus) {
    color: #ffffff;
}

footer :is(iframe, .iframe-wrapper-manual-enabling) {
    width: 100% !important;
    min-width: 100% !important;
}

.footerTab {
    hyphens: auto;
}

.footerTab a {
    text-decoration: underline;
    border-radius: 3px;
    padding: 2px;
}

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

.footerTab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.375rem;
    text-transform: uppercase;
    margin: 0;
    color: #ffffff;
}

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

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

#innerfooter a {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding: 6px 10px 6px 25px;
}

#innerfooter a::before {
    content: "";
    display: block;
    position: absolute;
    left: 10px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 300ms linear;
}

#innerfooter a:is(:hover, :focus)::before {
    background: #ffffff;
}

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

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

#vernetzt {
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    font-size: clamp(0.8125rem, 1vw, 1rem);
    color: #ffffff;
    line-height: 1.3;
    font-weight: 400;
    text-decoration: none;
}

@media (min-width: 992px) {
    #vernetzt {
        text-align: right;
        justify-content: end;
        align-content: end;
        align-items: end;
    }
}

#vernetzt span span {
    display: block;
}

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

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