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

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

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

a {
    color: #077443;
}

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

b,
strong {
    font-weight: 700;
}

@media (min-width: 1200px) {
    .row.rowWide {
        max-width: 1440px;
        width: 100%;
    }
}

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

@media (min-width: 1200px) and (max-width: 1500px) {
    #contentbottom_right {
        width: 87%;
        margin-right: 40px;
    }
    #scrollTopBtn {
        width: calc(100% - 30px) !important;
        margin-right: 30px;
    }
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    nav.horizontally {
        padding: 10px 0;
        background-color: #ffffff;
        border-bottom: 2px solid #077443;
    }

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

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

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        position: sticky;
        top: 0;
        scroll-padding-top: auto;
        z-index: 61;
        padding: 10px 0;
        background-color: #ffffff;
        border-bottom: 2px solid #077443;
    }

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

    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.open>ul {
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden;
    }

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

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #313131;
    font-weight: 700;
    text-align: left;
    padding: 10px 15px 15px 15px;
    position: relative;
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    line-height: 1.2;
    text-decoration: none;
}

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

@media (min-width: 992px) {
    nav.horizontally li[class*="toplevel"]+li {
        margin-left: 20px;
    }

    nav.horizontally a[class*="toplevel"] {
        text-align: center;
        padding: 18px 0;
    }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
    color: #077443;
    background-color: transparent;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background-color: #ffffff;
    box-shadow: 0px 0px 5px 0px rgba(92, 15, 15, 0.1);
}

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

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

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #313131;
    font-weight: 400;
    text-align: left;
    padding: 8px 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;
    }
}

@media (min-width: 992px) {
    nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
        padding: 8px 20px 8px 30px;
    }
}

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

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

/* 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: #077443;
    color: #ffffff;
}

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 {
    opacity: 1;
}

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

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

#search {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
    padding-top: 16px;
}

@media (min-width: 992px) {
    #search {
        border-top: none;
        margin-left: clamp(15px, 2vw, 30px);
        padding: 16px 0 16px 15px;
        flex: 0 0 auto;
    }
}

@media (min-width: 1200px) {
    #search {
        padding: 16px 9px 16px 24px;
    }
}

#search img {
    display: block;
    margin: 0 auto;
    padding: 10px;
    border: 2px solid transparent;
    transition: border 200ms linear;
}

@media (min-width: 992px) {
    #search img {
        padding: 4px;
    }
}

#search:is(:hover, :focus) img {
    border-color: #032946;
}

/* ------------------------------------------------ @29tab ----------------------------------------------- */

#tab29 details.tab {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    z-index: 12;
    top: 10%;
    right: -276px;
    max-width: 350px;
    transition: all 0.5s 0s ease;
}

@media (min-width: 992px) {
    #tab29 details.tab {
        top: 28%;
    }
}

#tab29 details[open] {
    right: -30px;
    z-index: 13;
    transition: all 0.5s 0s ease;
}

#tab29 details summary {
    list-style: none;
}

#tab29 details .tabContent {
    position: relative;
    pointer-events: all;
    overflow: hidden;
    display: block;
    top: 0;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    max-width: 330px;
    height: 45px;
    max-height: 232px;
    min-height: 232px;
    padding: 25px 30px;
    background: #ffffff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

#tab29 details .tabHeadline {
    color: #313131;
    font-family: "Merriweather", sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    margin: 0;
    min-width: 321px;
    min-height: 45px;
    padding: 13px 32px 10px 45px;
    background: #ffffff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

#tab29 details .tabHeadline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    margin: auto;
    width: 34px;
    height: 34px;
    border-radius: 100px;
}

#tab29 details.tab1 .tabHeadline::before {
    background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23ffffff"><path d="m612-292 56-56-148-148v-184h-80v216l172 172ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-400Zm0 320q133 0 226.5-93.5T800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 133 93.5 226.5T480-160Z"/></svg>') center no-repeat, #2a4783;
}

/* ------------------------------------------------ headerSlogan ----------------------------------------------- */

#headerSlogan {
    padding-top: clamp(30px, 4vw, 55px);
}

#headerSlogan :is(h1, h2, h3, h4, h5, h6) {
    margin: 0;
    font-size: clamp(1.875rem, 4vw, 3rem);
}

#headerSlogan :is(h1, h2, h3, h4, h5, h6) :is(em, i) {
    font-style: normal;
    display: block;
    color: #2a4783;
    font-size: clamp(1.375rem, 3vw, 2.25rem);
}

/* ------------------------------------------------ headerTabs ----------------------------------------------- */

#headerTabs {
    padding-top: clamp(30px, 3vw, 40px);
}

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

@media (min-width: 1200px) {
    #headerTabs>.row>* {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

#headerTabs .tab {
    color: #ffffff;
    position: relative;
    background: #313131;
}

#headerTabs .tab a {
    color: #ffffff;
}

#headerTabs .tab .tabContent {
    font-size: 0;
    line-height: 0;
}

#headerTabs .tab img {
    width: 100%;
}

#headerTabs h2 {
    position: absolute;
    z-index: 12;
    bottom: 0;
    left: 15px;
    right: 0;
    font-family: "Merriweather", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    color: #ffffff;
    margin: 0;
    width: calc(100% - 30px);
    padding: 26px 20px;
    background-color: rgba(7, 116, 67, 0.7);
}

#headerTabs .tab1 h2 {
    background-color: rgba(7, 116, 67, 0.7);
}

#headerTabs .tab2 h2 {
    background-color: rgba(42, 71, 131, 0.7);
}

#headerTabs .tab3 h2 {
    background-color: rgba(155, 15, 0, 0.7);
}

#headerTabs .tab4 h2 {
    background-color: rgba(170, 80, 0, 0.7);
}

#headerTabs .tab5 h2 {
    background-color: rgba(116, 7, 110, 0.7);
}

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

#content {
    text-align: left;
}

body:not(.index) #content {
    padding-top: clamp(30px, 4vw, 60px);
    padding-bottom: clamp(30px, 4vw, 60px);
}

body.index #aboveContent {
    display: none;
}

/* ------------------------------------------------ tabHead ----------------------------------------------- */

.tabHead {
    position: relative;
    font-size: clamp(1.25rem, 4vw, 1.5625rem);
}

@media (min-width: 1200px) {
    .tabHead::before {
        content: '';
        position: absolute;
        pointer-events: none;
        top: 30px;
        left: -620px;
        width: 585px;
        height: 53px;
        background: url('../img/welle-deko-bg-1.png') center no-repeat;
    }

    .tabHead::after {
        content: '';
        position: absolute;
        pointer-events: none;
        top: 30px;
        right: -620px;
        width: 585px;
        height: 53px;
        background: url('../img/welle-deko-bg-2.png') center no-repeat;
    }
}

.tabHead :is(h1, h2, h3, h4, h5, h6) {
    margin: 0;
    font-size: clamp(1.875rem, 4vw, 2.8125rem);
}

.tabHead :is(h1, h2, h3, h4, h5, h6) :is(em, i) {
    font-style: normal;
    display: block;
    color: #2a4783;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

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

#nw1 {
    padding-top: clamp(30px, 4vw, 65px);
}

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

#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 {
    font-size: 1.125rem;
    position: relative;
    width: 100%;
    border-radius: 3px;
    padding: 240px 30px 30px 30px;
    background: #ffffff;
    border: 2px solid rgba(42, 71, 131, 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: -2px;
    left: -2px;
    right: -2px;
    height: 190px;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}

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

#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: -2px;
    top: 175px;
    font-weight: 400;
    color: #ffffff;
    font-size: 1.125rem;
    padding: 6px 20px;
    background: #2a4783;
}

#nw1 .tab_link_title a {
    display: block;
    font-weight: 700;
    font-size: clamp(1.375rem, 4vw, 1.5625rem);
    color: #2a4783;
    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 {
    background-color: #2a4783;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    position: relative;
    padding: 13px 50px 12px 20px;
    display: inline-block;
    line-height: 1.2;
}

#nw1 .buttonStyle a:is(:hover, :focus) {
    color: #ffffff;
    background: #035631;
}

#nw1 .buttonStyle a::after {
    content: '\2192';
    right: 20px;
    top: calc(50% - 7px);
    transition: all 200ms linear;
    position: absolute;
    line-height: 1;
}

/* ------------------------------------------------ events ----------------------------------------------- */

#events {
    padding-top: 30px;
    padding-bottom: clamp(30px, 3vw, 55px);
}

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

#events .tab_link_entry {
    font-size: 1.125rem;
    position: relative;
    width: 100%;
    border-radius: 3px;
    padding: 230px 30px 30px 30px;
    background: #ffffff;
    border: 2px solid rgba(7, 116, 67, 0.15) !important;
}

#events .vorschau {
    opacity: 1;
}

#events .tab_preview_picture {
    background: #ffffff;
}

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

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

#events .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%);
}

#events .tab_link_date {
    font-size: 1.125rem;
}

#events .tab_link_title a {
    display: block;
    font-weight: 700;
    font-size: clamp(1.375rem, 4vw, 1.5625rem);
    color: #077443;
    line-height: 1.2;
    margin-bottom: 8px;
}

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

/* ------------------------------------------------ @26tab ----------------------------------------------- */

#events {
    margin: auto;
    width: 100%;
    max-width: 1440px;
    position: relative;
}

/* ----------------------- @26tab slider arrows + dots ------- DO NOT DELETE ----------------------- */

#events .slick-slide {
    padding: 15px;
}

#events .slick-dots button,
#events .slick-button {
    background: transparent;
    border: none;
    padding: 5px;
}

#events .slick-button {
    font-size: 0px;
    position: relative;
    top: 4px;
    background: #077443;
    height: 30px;
    width: 30px;
}

@media (min-width: 1200px) {
    #events .slick-button {
        font-size: 0px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -30px;
    }

    #events .slick-next {
        left: unset;
        right: -30px;
    }
}

#events .slick-prev {
    margin-left: 14px;
}

@media (max-width: 767px) {
    #events .slick-next {
        margin-left: 14px;
    }
}

#events .slick-button::before {
    display: block;
    line-height: 9px;
    height: 17px;
    font-size: 35px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

#events .slick-button::after {
    content: "";
    position: absolute;
    pointer-events: none;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.05);
    transition: width 200ms linear, height 200ms linear;
    z-index: -1;
}

#events .slick-button:focus::after,
#events .slick-button:hover::after {
    width: 28px;
    height: 28px;
}

@media (max-width: 767px) {

    #events .slick-button::after,
    #events .slick-button::after {
        width: 28px;
        height: 28px;
    }
}

#events .slick-dots {
    padding: 0 15px;
    list-style: none;
}

@media (min-width: 1200px) {
    #events .slick-dots {
        bottom: 0px;
        left: 50%;
        transform: translate(-50%);
        width: unset;
        position: relative;
        margin-top: 10px;
    }
}

#events .slick-dots>li {
    display: inline-block;
    position: relative;
    top: 50%;
    font-size: 0px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #a1a1a1;
    transform: translateY(-50%);
}

#events .slick-dots,
#events .slick-button {
    display: inline-block !important;
}

@media (max-width: 767px) {
    #events .slick-dots {
        display: none !important;
    }
}

#events .slick-dots>li.slick-active {
    background: #077443;
    transition: background 200ms linear;
}

#events .slick-dots>li+li {
    margin-left: 10px;
}

#events .slick-prev::before {
    content: "\2039";
}

#events .slick-next::before {
    content: "\203A";
}

/* ------------ @26tab slider 1 stop/play button for accessibility ------- DO NOT DELETE ------------ */

#events .slick-animate-control {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: -5px;
    left: 10px;
    border: 1px solid #ffffff;
    background-color: #000;
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M12 36V12h24v24Z' fill='%23fff'/%3E%3C/svg%3E");
}

#events .slick-animate-control.slick-pause {
    background-size: 20px 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M16 37.85v-28l22 14Z' fill='%23fff'/%3E%3C/svg%3E");
}

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

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

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

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

/* ----------------------------------------------- kontaktFooter ----------------------------------------------- */

#kontaktFooter {
    font-size: 1rem;
    border-top: 2px solid #035631;
}

@media (max-width: 991px) {
    #kontaktFooter {
        padding-top: clamp(30px, 4vw, 60px);
        padding-bottom: clamp(30px, 4vw, 60px);
    }
}

@media (min-width: 992px) {
    #kontaktFooter>.row>*:not(.mapcol) {
        padding-top: clamp(30px, 4vw, 60px);
        padding-bottom: clamp(30px, 4vw, 60px);
    }
}

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

#kontaktFooter .tab a {
    text-decoration: underline;
}

#kontaktFooter .tabHeadline {
    color: #313131;
    font-size: 1.375rem;
    font-family: "Merriweather", sans-serif;
    font-weight: 700;
}

/* iframetab */

@media (min-width: 1200px) {
    #kontaktFooter .iframetab {
        margin-left: -260px;
    }
}

#kontaktFooter .iframetab iframe,
#kontaktFooter .iframetab .iframe-wrapper-manual-enabling {
    min-width: 100% !important;
    width: 100% !important;
    display: block;
}

/* tabButton */

@media (min-width: 1200px) {
    #kontaktFooter .tabButton {
        width: calc(100% - 40px);
    }
}

#kontaktFooter .tabButton a {
    width: 100%;
    display: block;
    background-color: #2a4783;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 13px 50px 12px 20px;
    display: inline-block;
    line-height: 1.2;
}

#kontaktFooter .tabButton a:is(:hover, :focus) {
    background-color: #035631;
}

#kontaktFooter .tabButton a::after {
    content: '\2192';
    right: 20px;
    top: calc(50% - 7px);
    transition: all 200ms linear;
    position: absolute;
    line-height: 1;
}

/* scrollTopBtn */

#scrollTopBtn {
    text-align: left;
    margin-bottom: clamp(15px, 2vw, 30px);
}

#scrollTopBtn::after {
    content: "\2191" !important;
    right: 20px;
}

.lastOne {
    display: flex;
    justify-content: space-between;
    align-items: end;
    align-content: end;
    flex-direction: column;
}

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

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

#vernetzt span span {
    display: block;
}

/* --------------------------------------------- lastFooter -------------------------------------------- */

#lastFooter {
    padding-top: 35px;
    padding-bottom: 35px;
    background-color: #035631;
}

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

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

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

#innerfooter li+li::before {
    content: "";
    margin: 0 6px;
}

@media (min-width: 992px) {
    #innerfooter li+li::before {
        margin: 0 clamp(15px, 3vw, 40px);
    }
}

@media (max-width: 767px) {
    #innerfooter li {
        display: block;
        text-align: center;
        padding: 5px;
        margin: 0;
    }

    #innerfooter li+li::before {
        display: none;
    }
}