@import url('https://fonts.verwaltungsportal.de/import/?family=Shantell+Sans:400,400i,600,600i');

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

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

a {
    color: #ad0812;
}

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

b,
strong {
    font-weight: 600;
}

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

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

#tp3 {
    color: #191919;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #009fe3;
}

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

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

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

#contrast_style button {
    color: #444444;
    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: #bccc68;
}

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

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

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

#style button {
    padding: 0;
    border: none;
    color: #444444;
    display: inline-block;
    min-width: 29px;
    min-height: 29px;
    font-weight: 400;
    font-size: 0.875rem;
    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: #0c5c82;
    background: #bccc68;
}

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

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

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

form [id^="search_input"] {
    font-size: 0.875rem;
    color: #444444;
    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 #bccc68;
    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: #b9cf68;
}

form [id^="search_input"]::placeholder {
    color: #444444 !important;
    opacity: 1 !important;
    font-style: normal !important;
}

/* 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 (min-width: 992px) {
    #logo img {
        transition: max-width 300ms linear;
    }

    .is-sticky #logo img {
        max-width: 140px;
    }
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    nav.horizontally {
        padding: 20px 0;
        background-color: #ffffff;
        position: static !important;
    }

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

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

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

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

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

    #burgerButtonInner {
        top: 16px;
    }

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

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

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

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

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

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

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

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

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        padding: 20px 0;
        background-color: rgba(255, 255, 255, 0.85);
        transition: padding 300ms linear, background 300ms linear, box-shadow 300ms linear;
    }

    .is-sticky nav.horizontally {
        padding: 12px 0;
        background-color: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    }

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

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

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

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

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

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

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

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

/* toplevel */

nav.horizontally li[class*="toplevel"] {
    --nav-color: #282828;
    --nav-background: #6cc4ea;
}

nav.horizontally a[class*="toplevel"] {
    color: var(--nav-color);
    background: var(--nav-background);
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
    text-transform: uppercase;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    font-family: "Shantell Sans", sans-serif;
}

nav.horizontally li[class*="toplevel"]:nth-child(6n+2) {
    --nav-background: #b1c634;
}

nav.horizontally li[class*="toplevel"]:nth-child(6n+3) {
    --nav-background: #ffd300;
}

nav.horizontally li[class*="toplevel"]:nth-child(6n+4) {
    --nav-color: #ffffff;
    --nav-background: #c2222c;
}

nav.horizontally li[class*="toplevel"]:nth-child(6n+5) {
    --nav-color: #ffffff;
    --nav-background: #663182;
}

nav.horizontally li[class*="toplevel"]:nth-child(6n+6) {
    --nav-color: #ffffff;
    --nav-background: #009fe3;
}

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

    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: 19px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }
}

/* 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) {
    --nav-color: #282828;
    --nav-background: #ffffff;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background: var(--nav-background);
}

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

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

    nav.horizontally [class*="toplevel"]>ul:after {
        content: "";
        display: block;
        position: absolute;
        left: calc(50% - 20px);
        top: -20px;
        width: 40px;
        height: 20px;
        clip-path: polygon(100% 0, 0 0, 50% 100%);
        background: #ffffff;
        transition: top 150ms linear;
    }

    nav.horizontally [class*="toplevel"]:is(:hover, :focus-within)>ul:after {
        top: 0;
    }

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

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

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

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: var(--nav-color);
    font-weight: 400;
    text-align: left;
    padding: 9px 25px;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

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

@media (min-width: 992px) {
    nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
        font-size: 1.25rem;
    }
}

/* 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: var(--nav-color);
    color: var(--nav-background);
}

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

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

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

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

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

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

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

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

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

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

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

/* ----------------------------------------------- @1nw news -------------------------------------------- */

#nw1>.row {
    border-top: 2px dotted #009fe3;
    row-gap: 30px;
    padding-bottom: clamp(30px, 4vw, 60px);
    padding-top: clamp(30px, 4vw, 60px);
}

#nw1 .tab {
    color: #191919;
    padding: 30px;
    overflow: hidden;
    border-radius: 3px;
    background: url('../img/icon-meldungen.png') top 20px right 20px no-repeat, #009fe3;
}

#nw1 .tab a {
    color: #ffffff;
    text-decoration: underline;
}

#nw1 .tabHeadline {
    color: #191919;
    hyphens: auto;
    font-size: clamp(1.75rem, 2vw, 2rem);
}

#nw1 .tab,
#nw1 .tab_link,
#nw1 .tab_link>div {
    height: 100%;
    min-height: 100%;
}

#nw1 .tab_link_entries {
    display: grid;
    gap: 30px;
}

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

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

#nw1 .tab_link_entry {
    position: relative;
    width: 100%;
    border-radius: 3px;
    padding: 160px 30px 30px 30px;
    background: #ffffff;
    box-shadow: 0px 14px 32px 0px rgba(0, 0, 0, 0.19);
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

#nw1 .vorschau {
    opacity: 1;
}

#nw1 .tab_preview_picture {
    background: #ffffff;
}

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

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

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

#nw1 .tab_date {
    display: inline-block;
    position: absolute;
    z-index: 1;
    left: -1px;
    top: 105px;
    font-weight: 400;
    color: #283583;
    font-size: 1rem;
    padding: 6px 20px;
    background: #ffffff;
    border-radius: 0 3px 3px 0;
}

#nw1 .tab_link_title a {
    display: block;
    font-weight: 600;
    color: #283583;
    line-height: 1.2;
    margin-bottom: 8px;
}

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

/* ------------------------------------------- @1nw buttonStyle ------------------------------------------- */

#nw1 .buttonStyle a {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4b2152;
    padding: 5px 12px;
    border-radius: 3px;
    border: 1px solid #4b2152;
    background: #ffffff;
    transition: background 300ms linear, color 300ms linear;
}

@media (min-width: 768px) {
    #nw1 .buttonStyle a+a {
        margin-left: 12px;
    }
}

#nw1 .buttonStyle a:hover,
#nw1 .buttonStyle a:focus {
    color: #ffffff;
    background: #4b2152;
}

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

#ev17 {
    padding-bottom: clamp(30px, 6vw, 80px);
}

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

#ev17 .specialHeadline {
    color: #ffffff;
    background: #009fe3;
    padding: 0 0 0 50px;
    width: calc(100% - 30px);
    max-width: 1170px;
    margin: 0 auto;
}

#ev17 .tabHeadline {
    color: #191919;
    font-size: 1.5625rem;
    margin: 0px;
}

#ev17 .tab_link_mehr a,
#ev17 .specialHeadline a:not(.has-image):not([rel]) {
    text-decoration: none;
    display: inline-block;
    position: relative;
    text-align: left;
    color: #283583;
    font-size: 0.875rem;
    width: 100%;
    max-width: 200px;
    padding: 15px 15px 15px 50px;
    background: #ffffff;
    border: 1px solid #009fe3;
}

#ev17 .tab_link_mehr a {
    margin-top: 20px;
    width: auto;
    max-width: unset;
    padding: 12px 20px 12px 50px;
    background: #ffffff;
}

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

#ev17 .tab_link_mehr a::before,
#ev17 .specialHeadline a::before {
    content: '';
    position: absolute;
    pointer-events: none;
    display: block;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="20px" viewBox="0 -960 960 960" width="20px" fill="%23283583"><path d="M120-520v-320h320v320H120Zm0 400v-320h320v320H120Zm400-400v-320h320v320H520Zm0 400v-320h320v320H520Z"/></svg>') center no-repeat;
}

#ev17 .tab_link_mehr a::before {
    background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="20px" viewBox="0 -960 960 960" width="20px" fill="%23283583"><path d="M120-520v-320h320v320H120Zm0 400v-320h320v320H120Zm400-400v-320h320v320H520Zm0 400v-320h320v320H520Z"/></svg>') center no-repeat;
}

#ev17 .tab_link_mehr a:hover,
#ev17 .tab_link_mehr a:focus,
#ev17 .specialHeadline a:not(.has-image):not([rel]):hover,
#ev17 .specialHeadline a:not(.has-image):not([rel]):focus {
    color: #191919;
    background: #009fe3;
}

#ev17 .tab_link_mehr a:hover::before,
#ev17 .tab_link_mehr a:focus::before,
#ev17 .specialHeadline a:not(.has-image):not([rel]):hover::before,
#ev17 .specialHeadline a:not(.has-image):not([rel]):focus::before {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="20px" viewBox="0 -960 960 960" width="20px" fill="%23ffffff"><path d="M120-520v-320h320v320H120Zm0 400v-320h320v320H120Zm400-400v-320h320v320H520Zm0 400v-320h320v320H520Z"/></svg>');
}

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

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

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

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

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

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

#ev17 .tab_link_entry {
    width: 100%;
    font-size: 1rem;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0px 14px 32px 0px rgba(0, 0, 0, 0.19);
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

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

#ev17 .tab_link_mandat a {
    color: inherit;
}

#ev17 .tab_link_title a {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: #283583;
    display: inline-block;
    font-family: "Shantell Sans", sans-serif;
}

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

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

#footer {
    font-size: 1rem;
    position: relative;
    padding: clamp(50px, 8vw, 150px) 0 clamp(30px, 4vw, 60px) 0;
}

@media (min-width: 992px) {
    #footer::after {
        content: "";
        display: block;
        position: absolute;
        background: url('../img/deko-stifte-gross-footer.png') center no-repeat;
        width: 302px;
        height: 250px;
        top: 0;
        left: calc(50% + 500px);
    }
}

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

#footer .tab {
    position: relative;
    padding: 50px 40px;
    min-height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 14px 32px 0px rgba(0, 0, 0, 0.19);
}

#footer .tab::before {
    content: "";
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #283583;
    position: absolute;
    top: -15px;
    left: -15px;
    background: #fff url('../img/icon-kontakt.png') center no-repeat;
}

#footer .tab.icon-2::before {
    background-image: url('../img/icon-oeffnungszeiten.png');
}

#footer .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
}

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

#innerfooter>.row {
    padding: 30px 0 clamp(30px, 2vw, 35px) 0;
    font-size: 1rem;
    row-gap: 25px;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter ul a {
    color: inherit;
    text-decoration: none;
}

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

    #innerfooter ul li+li::before {
        content: "•";
        margin: 0 clamp(15px, 2vw, 25px);
    }
}

#innerfooter ul a:is(:hover, :focus) {
    color: #ad0812;
    text-decoration: underline;
}

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

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

#vernetzt span span {
    display: block;
}

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

.contrast_dark_font #nw1 .tab *:not(a) {
    color: #fff !important;
}