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

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

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

a {
    color: #bf192d;
}

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

b,
strong,
#content a {
    font-weight: 600;
}

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

@media (min-width: 992px) {
    .rowWide {
        width: 100%;
        max-width: 1600px;
    }
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

@media (min-width: 992px) {
    #logo {
        position: absolute;
        top: -60px;
        left: 7px;
    }

    #logo img {
        -webkit-transition: max-width 300ms linear;
        -moz-transition: max-width 300ms linear;
        -ms-transition: max-width 300ms linear;
        -o-transition: max-width 300ms linear;
        transition: max-width 300ms linear;
    }

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    #menu {
        padding: 10px 0;
        position: static !important;
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
        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: #1a7439;
        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;
        -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
        box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    }

    nav.horizontally .navbar-nav {
        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;
    }

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

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

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

.navbar-default .navbar-nav>li>a {
    color: #131313;
    font-weight: 500;
    text-align: left;
    padding: 15px 35px 15px 15px;
    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(68, 68, 68, 0.2);
    }
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        padding: 34px 5px 36px 5px;
        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::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    bottom: 0;
    height: 6px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #1a7439;
    -webkit-transition: width 300ms linear;
    -moz-transition: width 300ms linear;
    -ms-transition: width 300ms linear;
    -o-transition: width 300ms linear;
    transition: width 300ms linear;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a::after {
        top: -9px;
        bottom: auto;
    }
}

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

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

.navbar-nav>li:focus-within>a::after {
    width: 100%;
}

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

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

@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 {
        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: #ffffff 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>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: #ffffff;
    font-weight: 400;
    text-align: left;
    padding: 8px 25px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

@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,
.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 {
    background: #185f31;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
    background: #185f31;
}

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

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

#options {
    padding: 5px 0 10px 0;
    width: 100%;
}

form[id^="search"] {
    display: inline-flex;
    margin: 0 0 10px 0;
    width: 100%;
    max-width: 212px;
    border-bottom: 1px solid #e8e8e8;
}

form [id^="search_input"] {
    color: #131313;
    font-size: 0.9375rem;
    font-style: normal;
    background: #fff !important;
    padding: 8px 0;
    border: 0;
    width: 100%;
}

form [id^="search_submit"] {
    min-width: 38px;
    flex-shrink: 0;
    border: none;
    background: #ffffff url('../img/icon-search.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    font-size: 0;
}

form [id^="search_submit"]:is(:hover, :focus) {
    background-color: #e8e8e8;
}

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

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

#style+#contrast_style {
    margin-left: clamp(20px, 4vw, 55px);
}

#style,
#contrast_style {
    line-height: 1;
}

@media (min-width: 992px) and (max-width: 1199px) {
    #options {
        row-gap: 4px;
    }

    #style,
    #contrast_style {
        display: flex;
        align-items: center;
        column-gap: 5px;
    }
}

:is(#contrast_style, #style) h2 {
    font-size: 15px;
    font-weight: inherit;
    color: inherit;
    margin: 0 0 5px 0;
}

:is(#style, #contrast_style) button {
    font-size: 18px;
    padding: 0;
    border: 1px solid #131313;
    color: #131313;
    display: inline-block;
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    border-radius: 50%;
    text-align: center;
    background: #ffffff;
    position: relative;
    line-height: 1;
}

:is(#style) button:is(:hover, :focus) {
    color: #bf192d;
}

:is(#contrast_style) button:is(:hover, :focus) {
    background: #e8e8e8;
}

:is(#style, #contrast_style) button+button {
    margin-left: 2px;
}

#contrast_style button::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid #131313;
    border-radius: 50%;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 51%, #131313 50%);
}

#contrast_style button:nth-of-type(2)::after {
    transform: scale(-1);
}

#contrast_style button:nth-of-type(3)::after {
    background: #ea5b0c;
    border: none;
}

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

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

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

#nw3 .tabHeadline {
    color: #131313;
    font-weight: 700;
    font-size: 1.5625rem;
    font-style: italic;
    margin-bottom: 0;
    text-transform: uppercase;
}

#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;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

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

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

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

#nw3 .tab_link_title {
    order: 1;
}

#nw3 .vorschau {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    order: 2;
    opacity: 1;
}

#nw3 .tab_date {
    order: 3;
}

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

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

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

#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: 600;
    color: #ffffff;
    font-size: clamp(1rem, 3vw, 1.125rem);
    font-style: italic;
    padding: 8px 20px;
    background: #bf192d;
    transition: background 300ms linear;
}

#nw3 .tab_link_mehr a:hover,
#nw3 .tab_link_mehr a:focus {
    color: #ffffff;
    background: #1a7439;
}

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

#headerpic {
    background: #cfe8d3 url('../img/welle-header.png') no-repeat bottom center / 100% auto;
}

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

@media (min-width: 992px) {
    #headerpic a.nivo-prevNav {
        left: 65px;
    }

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

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

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

.slider-mask {
    display: none;
}

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

main {
    text-align: left;
    padding-bottom: 30px;
    padding-top: 30px;
    background: url(../img/wasserzeichen-wappen.png) top 50px left no-repeat;
}

@media (min-width: 992px) {
    main {
        padding-bottom: 60px;
        padding-top: 60px;
    }
}

.index #content {
    padding-bottom: 80px;
}

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

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

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

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

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

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

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

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

/* -------------------------------------------- @18tab -------------------------------------------- */

#tab18>.row {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

#tab18 .tabElement {
    position: relative;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.08);
}

#tab18>.row>div {
    margin-top: 30px;
}

#tab18 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: -1px;
}

#tab18 .tabHeadline :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 5px;
    padding: 30px 15px;
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    font-size: 1.5625rem;
    color: #ffffff;
    background: #1a7439;
    border-top: 10px solid #bf192d;
}

#tab18 .tab2 :is(h1, h2, h3, h4, h5, h6) {
    color: #131313;
    background: #cfe8d3;
    border-top: 10px solid #1a7439;
}

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

#ev12,
#newsletterTab,
#contactTab {
    color: #131313;
    font-size: 1rem;
    position: relative;
    background: #cfe8d3;
    height: 100%;
    border-top: 10px solid #1a7439;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.clr-events-tab-h3 {
    color: #131313 !important;
}

#contactTab {
    color: #ffffff;
    border-top: 10px solid #bf192d;
    background: #1a7439;
}

#ev12 .tabHeadline,
#newsletterTab .tabHeadline,
#contactTab .tabHeadline {
    margin-bottom: 0;
    text-align: center;
    font-size: 1.5625rem;
    padding: 30px 0 0 0;
    color: #131313;
    text-transform: uppercase;
}

#contactTab .tabHeadline,
#contactTab a {
    color: #ffffff;
}

#contactTab a {
    font-weight: 600;
    text-decoration: underline;
}

#ev12 #clr-events-hide,
#newsletterTab .tabContent,
#newsletter,
#contactTab .tabContent {
    padding: 30px;
}

#ev12 .tabContent .box {
    padding: 0 0 30px 0;
}

.eventclndr-tab {
    padding: 0 30px;
}

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

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

#ev12 .tab_link_mandat a {
    color: #131313;
    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: clamp(1rem, 3vw, 1.125rem);
    font-weight: 600;
    color: #ffffff;
    font-style: italic;
    padding: 5px 15px;
    background: #bf192d;
}

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

#newsletterInputs {
    height: 52px;
    background: #bf192d;
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 339px;
}

#newsletter_input {
    color: #ffffff;
    font-size: 16px;
    font-style: italic;
    background: transparent;
    padding: 0;
    border: 0;
    font-weight: 600;
    line-height: 52px;
    padding-left: 10px;
    padding-right: 43px;
    height: 52px;
    width: 100%;
}

#newsletter_submit {
    width: 52px;
    background: #bf192d url('../img/newsletter-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 52px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    transition: background-color 300ms linear;
}

#newsletter_submit:hover {
    background-color: #185f31;
}

form [id^="newsletter_inpu"]::placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
    font-style: italic !important;
}

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

footer {
    background-color: #1a7439;
    padding-top: 100px;
    padding-bottom: 12px;
    color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    font-size: 1rem;
}

#f5>.row {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
}

@media (min-width: 992px) {
    #f5>.row.rowWide {
        width: 100%;
        max-width: 1300px;
    }
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: url(../img/welle-footer.png) no-repeat top center / 100% auto;
    pointer-events: none;
    display: block;
    z-index: 6;
}

footer .tabHeadline {
    color: #ffffff;
    font-size: 1.5625rem;
    text-transform: uppercase;
}

footer .tab a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

footer .socialMedia a {
    display: block;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0 auto;
}

footer .socialMedia a:hover,
footer .socialMedia a:focus {
    background: #185f31;
}
footer .socialMedia a img:hover,
footer .socialMedia a img:focus {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(303deg) brightness(102%) contrast(101%);
}

@media (max-width: 767px) {
    footer .row>.col-xs-12:not(:first-child)::before {
        background: #ffffff;
        content: " ";
        height: 1px;
        width: 100%;
        display: block;
        margin: 25px 0;
        opacity: 0.2;
    }

    footer .row>.col-xs-12.hidden-xs~.col-xs-12::before,
    footer .row>.col-xs-12.hidden-sm~.col-xs-12::before {
        display: none;
    }
}

#innerfooter {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1rem;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: block;
}

#innerfooter a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

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

@media (min-width: 576px) {
    #innerfooter li+li::before {
        content: "•";
        margin: 0 clamp(15px, 2vw, 25px);
        color: #fff;
    }

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

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

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

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

#vernetzt span span {
    display: block;
}