@import url('https://fonts.verwaltungsportal.de/import/?family=Barlow:400,400i,500,500i,600,600i,700,700i');
@import url("https://fonts.verwaltungsportal.de/import/?family=Vujahday+Script:400,400i");
@import url("https://fonts.verwaltungsportal.de/import/?family=Asap: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: #567a00 #ffffff;
    scrollbar-width: thin;
}

body {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    color: #3c4241;
    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: #f39a1a;
}

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

#contentBox a,
b,
strong {
    font-weight: 500;
}

.over {
    overflow: hidden;
}

.news-entry-new-link :is(h2, h3) {
    font-weight: 600 !important;
}

/* ------------------------------------------- contact ------------------------------------------ */

.contact {
    background-color: #406d06;
    color: #ffffff;
    font-size: 0.75rem;
    padding: 6px 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    nav.horizontally .contact {
        padding: 15px 0;
    }

    nav.horizontally .contact p+p {
        margin-top: 8px;
    }
}

@media (min-width: 992px) {
    .contact p {
        margin: 0;
        display: inline-block;
    }

    .contact p+p {
        margin-left: 30px;
    }
}

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

.contact :is(b, strong) {
    font-weight: 600;
}

.contact img {
    display: inline-block;
    margin-right: 2px;
    vertical-align: middle;
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

@media (min-width: 992px) {
    #logo {
        position: absolute;
        top: -97px;
        transition: top 300ms linear;
    }

    .is-sticky #logo {
        top: -46px;
    }

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

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

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

@media (max-width: 575px) {
    #logo img {
        max-width: 40px;
    }
}

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

/* burgermenu for tablet */

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

    #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: #406d06;
        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: #406d06;
        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 {
        background: #406d06;
        padding: 30px 0;
        transition: all 0.2s 0s linear;
    }

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

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

    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 a[class*="toplevel"] {
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    padding: 10px 15px 14px 15px;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    nav.horizontally li[class*="toplevel"] {
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    }

    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"] {
        padding: 11px 0;
    }
}

nav.horizontally a[class*="toplevel"]::before {
    content: "";
    width: 0;
    height: 4px;
    display: block;
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    bottom: 0;
    background-color: #f39a1a;
    opacity: 0;
    transition: opacity 300ms linear, width 300ms linear;
}

@media (min-width: 992px) {
    nav.horizontally a[class*="toplevel"]::before {
        left: 50%;
    }
}

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

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::before,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"].open>a::before,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::before {
    opacity: 1;
    width: 100%;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    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) {
    nav.horizontally [class*="toplevel"]>ul {
        padding: 10px 0;
    }

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

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

    nav.horizontally [class*="toplevel"]>ul {
        margin-top: 10px;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }

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

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

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

    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: #3c4241;
    font-weight: 400;
    text-align: left;
    padding: 9px 25px 9px 35px;
    font-size: 1rem;
    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: #567a00;
    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: #f39a1a;
}

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: #f39a1a;
}

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

/* ----------------------------------------- button design -------------------------------------- */

.buttonStyle a {
    display: inline-block;
    background: #f39a1a;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #383838;
    font-weight: 600;
    padding: 6px 22px;
    border-radius: 3px;
    transition: background 300ms linear, color 300ms linear;
}

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

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

/* #region ------------------------------------ banner ------------------------------------------ */

body.intro header>.row {
    row-gap: 30px;
}

#slider {
    height: 200px;
    position: relative;
    border-radius: 3px;
}

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

@media (min-width: 768px) {

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

@media (min-width: 992px) {
    #slider {
        min-height: 200px;
    }

    body.intro #slider {
        max-width: 870px;
        min-height: 500px;
    }
}

#headerpic {
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: 3px;
}

.slider-mask {
    display: none;
}

/* #endregion --------------------------------- banner ------------------------------------------ */

/* ------------------------------------------- tabdonateBox --------------------------------------- */

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

@media (min-width: 992px) {
    #tabdonateBox {
        position: fixed;
        top: 80%;
        left: 0;
        z-index: 12;
    }
}

#tabdonateBox a {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    color: #383838;
    font-weight: 700;
    line-height: 1.2;
    font-size: 1.5625rem;
    border-radius: 0 3px 3px 0;
    padding: 4px 50px 4px 12px;
    background: url('../img/icon-spenden.png') right 8px center no-repeat, #f39a1a;
}

/* ------------------------------------------- bannerOverlay --------------------------------------- */

@media (max-width: 991px) {
    #bannerOverlay {
        padding-top: 15px;
    }
}

#bannerOverlay .tab {
    color: #ffffff;
    font-size: 1rem;
    border-radius: 3px;
    padding: 25px 30px;
    background: rgba(86, 122, 0, 0.9);
}

#bannerOverlay .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 2.1875rem;
    margin-bottom: 10px;
}

#bannerOverlay .tab :is(h1, h2, h3, h4, h5, h6, a) {
    color: #ffffff;
}

#bannerOverlay {
    margin-top: 30px;
}

@media (min-width: 992px) {
    /* #bannerOverlay {
        position: absolute;
        pointer-events: none;
        bottom: 30px;
        left: 30px;
        right: 0;
        z-index: 51;
    } */

    #bannerOverlay .tab,
    #bannerOverlay .headerContent2 {
        pointer-events: all;
    }

    #bannerOverlay .headerContent2 {
        border-radius: 3px 3px 0 0;
    }
}

/* ------------------------------------------- header tab --------------------------------------- */

#headerTab {
    border-radius: 3px;
    background: #567a00;
    color: #ffffff;
    height: 100%;
    min-height: 100%;
    position: relative;
}

@media (min-width: 1200px) {
    header {
        position: relative;
    }

    .intro header>.row::before {
        content: '';
        position: absolute;
        pointer-events: none;
        bottom: -60px;
        left: -365px;
        width: 217px;
        height: 315px;
        background: url('../img/schmetterling.png') center no-repeat;
    }
}

.headerContent {
    hyphens: auto;
    padding: 30px 25px 20px 25px;
}

.headerContent .buttonStyle {
    margin-top: 15px;
}

.headerContent .tab_link_entry {
    font-size: 1rem;
    border-bottom: unset !important;
}

.headerContent .tab_link_entry+.tab_link_entry {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #7da51f;
}

.headerContent .tab_link_title a {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
}

.headerContent .vorschau {
    opacity: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.headerContent .tab_preview_picture,
.headerContent .tab_spacer,
.headerContent .tab_link_mehr {
    display: none;
}

.headerContent .tabHeadline {
    font-size: 1.75rem;
    color: #ffffff;
}

.headerContent2 {
    color: #ffffff;
}

.headerContent2 :is(h1, h2, h3, h4, h5, h6) {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 0.875rem;
}

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

@media (min-width: 992px) {
    #styleContrast {
        gap: 30px;
    }

    #styleContrast h2 {
        color: inherit;
        font-weight: inherit;
        font-size: 14px;
        margin-bottom: 0;
    }

    #styleContrast h2 {
        width: auto;
        margin-right: 10px;
    }

    #styleContrast button {
        font-size: 18px;
        padding: 0 0 2px 0 !important;
        border: none;
        color: #ffffff;
        display: inline-block;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        font-weight: 500;
        text-align: center;
        background: rgba(0, 0, 0, 0.2);
        position: relative;
        line-height: 1;
    }

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

    #contrast_style button:nth-of-type(2)::after {
        background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 50%, #027a62 50%);
    }

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

    #styleContrast button+button {
        margin-left: 4px;
    }

    #styleContrast button:is(:hover, :focus) {
        background: rgba(243, 154, 26, 0.2);
    }
}

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

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

#contentBox {
    text-align: left;
    padding-top: 40px;
    padding-bottom: clamp(40px, 5vw, 60px);
    position: relative;
}

@media (min-width: 1200px) {
    #contentBox>.row::after {
        content: '';
        position: absolute;
        pointer-events: none;
        top: 15px;
        right: -150px;
        width: 122px;
        height: 216px;
        background: url('../img/marienkäfer.png') center no-repeat;
    }

    .intro #contentBox>.row::after {
        bottom: -110px;
        right: -140px;
        top: unset;
    }
}

/* #region --------------------------------- news  -------------------------------------- */

#events {
    padding: clamp(40px, 4vw, 70px) 0;
    position: relative;
}

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

#events .tab {
    hyphens: auto;
    border-radius: 3px;
    overflow: hidden;
    padding: 30px;
    color: #ffffff;
    background-image: url('../img/icon-kalender.png');
    background-position: top 20px right 20px;
    background-color: #567a00;
    background-repeat: no-repeat;
}

#events .tabHeadline {
    color: #ffffff;
    hyphens: auto;
    font-family: "Asap", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0 0 clamp(15px, 2vw, 25px) 0;
}

#events .tab,
#events .tab_link,
#events .tab_link_entries {
    height: 100%;
    min-height: 100%;
}

#events .tab_link_entry {
    font-size: 1rem;
    color: #291809;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    padding: 180px 30px 30px 30px;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

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

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

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

#events .tab_link_entry .tab_link_title a::before,
#events .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 147px;
    overflow: hidden;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

#events .tab_link_entry .tab_link_title a::before {
    content: "";
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#events .tab_link_entry .tab_preview_picture {
    z-index: 1;
}

#events .tab_preview_picture img {
    margin: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#events .tab_link_date {
    font-size: 0.75rem;
    font-weight: 600;
    order: 1;
}

#events .tab_link_mandat {
    order: 2;
}

#events .tab_link_mandat a {
    font-size: 0.75rem;
    font-weight: 600;
    color: #291809;
}

#events .tab_link_title {
    order: 3;
}

#events .tab_link_title a {
    line-height: 1.2;
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    color: #567a00;
    margin-bottom: 8px;
}

.event-entry-new-1-headline h2 a {
    color: #567a00 !important;
}

#events .vorschau,
#events .tab_link_entries .tab_spacer,
#events .tab_link_entry>.tab_link_mehr {
    display: none;
}

/* #endregion ------------------------------ news  -------------------------------------- */

/* -------------------------------------------- icons ------------------------------------------- */

#icons {
    padding: 22px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

#icons>.row {
    row-gap: 22px;
}

#icons .tabHeadline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin: 0;
}

#icons .iconsTabs {
    font-size: 1rem;
}

#icons .iconsTabs :is(b, strong) {
    line-height: 1.2;
    font-weight: 600;
    font-size: clamp(22px, 3vw, 45px);
    display: block;
}

@media (min-width: 768px) {
    #icons .iconsTabs .btgrid>.row>*+* {
        border-left: 1px solid #d4d4d4;
    }
}

/* #region ------------------------------------ contact ----------------------------------------- */

#contact {
    overflow: hidden;
    background: #567a00;
}

#contact>.row>div {
    padding-top: clamp(30px, 3vw, 45px);
    padding-bottom: clamp(30px, 3vw, 40px);
}

@media (min-width: 768px) {
    #contact>.row>div:last-child {
        padding-left: 30px;
    }
}

#contact :is(h1, h2, h3, h4, h5, h6, .tab, .tab2, .tab2 a, .tab a) {
    color: #ffffff;
}

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

#contact .tabHeadline {
    font-family: "Asap", sans-serif;
    font-weight: 700;
    font-size: 2.1875rem;
}

#contact .tabHeadline::after {
    content: "";
    display: block;
    background: #f28f38;
    width: 120px;
    height: 4px;
    margin: 15px 0 20px 0
}

/* #endregion --------------------------------- contact ----------------------------------------- */

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

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

h1,
.h1,
.legacy_h1 {
    font-weight: 400;
    font-family: "Vujahday Script", cursive;
    font-size: clamp(2rem, 3vw, 50px);
}

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

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

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

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

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

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


#footer {
    color: #ffffff;
    font-size: 1rem;
    padding: 15px 0;
    background-color: #406d06;
}

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

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

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

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

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

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

#footer .footerTab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.5625rem;
    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;
    font-weight: 500;
    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(0, 0, 0, 0.2);
    transition: background 300ms linear;
}

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

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

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

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

#vernetzt span span {
    display: block;
}

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

.contrast_light_font #events .tab,
.contrast_dark_font #contrast_style button {
    background: #000000 !important;
}

:is(.contrast_light_font, .contrast_dark_font) #contact>.row>div:last-child::after,
:is(.contrast_light_font, .contrast_dark_font) #contact>.row>div:last-child::before {
    display: none !important;
}

:is(.contrast_light_font, .contrast_dark_font) #events .tab_link_title a {
    filter: unset !important;
}

.contrast_dark_font #events .tab {
    background: #ffffff !important;
}