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

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

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

a {
    color: #017e4e;
}

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

b,
strong {
    font-weight: 600;
}

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


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

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

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

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

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

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

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

    .topOptions {
        flex-wrap: wrap;
    }
}

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

#style button {
    padding: 0;
    border: none;
    color: #111111;
    display: inline-block;
    min-width: 29px;
    min-height: 29px;
    font-weight: 400;
    font-size: 0.875rem;
    text-align: center;
    background: #ffffff;
    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: #111111;
    background: #e5f2ed;
}

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

#topbar,
nav address {
    background-color: #111111;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 300;
}

nav address {
    padding: 10px 15px;
}

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

#topbar>.row {
    row-gap: 10px;
}

@media (min-width: 992px) {
    #topbar address {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .contactMail+.contactPhone {
        margin-left: 30px;
    }
}

#topbar a,
nav address a {
    font-style: italic;
    color: #ffffff;
    text-decoration: underline;
}

.contactMail,
.contactPhone {
    padding-left: 20px;
    background-position: center left;
    background-repeat: no-repeat;
}

nav address {
    background-position-x: 7px;
}

.contactMail {
    background-image: url('../img/mail-icon.png');
}

.contactPhone {
    background-image: url('../img/phone-icon.png');
}

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

@media (min-width: 992px) {
    *+#search {
        padding-left: 40px;
        margin-left: 40px;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }
}

#search label {
    text-transform: uppercase;
    font-weight: 400;
    margin-right: clamp(10px, 2vw, 20px);
    padding: 7px 0;
}

#search {
    display: inline-flex;
}

#search_input {
    color: #ffffff;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 300;
    background: transparent;
    padding: 7px 5px;
    border: 0;
    width: 140px;
}

#search_submit {
    min-width: 30px;
    flex-shrink: 0;
    border: none;
    background: url('../img/lupe-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    font-size: 0;
}

#search_submit:is(:hover, :focus) {
    background-color: #017e4e;
}

#search_input::placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
    font-style: italic !important;
}

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

#logo {
    display: inline-block;
    text-decoration: none;
}

#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 {
        position: static !important;
        background: #ffffff;
        padding: 10px 0;
    }

    #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: #017e4e;
        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: 6px;
    }

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

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        padding: 13px 0;
        background-color: #ffffff;
        box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
    }

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

    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: #111111;
    font-weight: 300;
    text-align: left;
    padding: 12px 15px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    font-style: italic;
}

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

    nav.horizontally a[class*="toplevel"].dropdown-toggle {
        padding-right: 35px;
    }
}

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

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

    nav.horizontally a[class*="toplevel"].dropdown-toggle {
        padding-right: 15px;
    }

    nav.horizontally a[class*="toplevel"].dropdown-toggle::after {
        content: "";
        position: absolute;
        display: block;
        right: 0;
        top: 50%;
        margin-top: -5px;
        width: 5px;
        height: 5px;
        border-left: 1px solid #111111;
        border-bottom: 1px solid #111111;
        transform: rotate(-45deg);
        transition: border 300ms linear;
    }

    nav.horizontally a[class*="toplevel"]:is(:hover, :focus-within).dropdown-toggle::after {
        border-color: #017e4e;
    }
}

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background-color: #ffffff;
    border-left: 6px solid #111111;
}

@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;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    }

    nav.horizontally [class*="toplevel"]>ul {
        left: -23px;
        margin-top: 47px;
    }

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

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

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #111111;
    font-weight: 300;
    text-align: left;
    padding: 8px 20px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 1px;
    background: #017e4e;
    transition: width 300ms linear;
}

nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
    padding-right: 35px;
}

@media (min-width: 992px) {
    nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
        padding-right: 25px;
    }

    nav.horizontally a[class*="secondlevel"].dropdown-toggle2::before {
        content: "";
        position: absolute;
        display: block;
        right: 20px;
        top: 50%;
        margin-top: -4px;
        width: 4px;
        height: 4px;
        border-radius: 1px;
        border-right: 1px solid #111111;
        border-bottom: 1px solid #111111;
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        transition: border 300ms linear;
    }

    nav.horizontally a[class*="secondlevel"]:is(:hover, :focus-within).dropdown-toggle2::before {
        border-color: #017e4e;
    }
}

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

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus)::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus)::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus)::after {
    width: calc(100% - 60px);
}

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

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

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

@media (min-width: 992px) {
    body.index #slider {
        max-height: clamp(400px, 82vw, 800px);
    }
}

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

@media (min-width: 992px) {
    #headerpic {
        background: #017e4e;
    }
}

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

.slider-mask {
    display: none;
}

@media (min-width: 992px) {
    body.index .slider-mask {
        display: block;
        background: linear-gradient(-65deg, rgba(1, 126, 78, 0), rgba(1, 126, 78, 0) 50%, rgba(1, 126, 78, 0.75) 50%);
    }

    /* banner arrows */

    #headerpic .nivo-directionNav a {
        background: #ffffff;
        width: 60px;
        height: 48px;
        transform: skewX(-25deg);
        transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
    }

    #headerpic:is(:hover, :focus-within) .nivo-directionNav a {
        width: 100px;
    }

    #headerpic .nivo-directionNav a:is(:hover, :focus) {
        background: #21242a;
    }

    #headerpic .nivo-directionNav a::before,
    #headerpic .nivo-directionNav a::after {
        content: "";
        display: block;
        position: absolute;
    }

    #headerpic .nivo-directionNav a::before {
        height: 2px;
        width: 16px;
        right: 16px;
        top: 50%;
        margin-top: -1px;
        background: #21242a;
        transition: background 300ms linear;
    }

    #headerpic .nivo-directionNav a:is(:hover, :focus)::before {
        background: #ffffff;
    }

    #headerpic .nivo-directionNav a::after {
        height: 8px;
        width: 8px;
        top: 50%;
        margin-top: -5px;
        right: 22px;
        border-left: 2px solid #21242a;
        border-bottom: 2px solid #21242a;
        transform: rotate(45deg);
        transition: border-color 300ms linear;
    }

    #headerpic .nivo-directionNav a:is(:hover, :focus)::after {
        border-color: #ffffff;
    }

    #headerpic a.nivo-prevNav {
        left: -11px;
    }

    #headerpic a.nivo-nextNav {
        right: -11px;
        transform: scaleX(-1) skewX(25deg);
    }

    /* banner dots */

    #headerpic .nivo-controlNav {
        font-size: 0;
        max-width: 992px;
        text-align: right;
        left: 50%;
        transform: translateX(-50%);
    }

    #headerpic .nivo-controlNav li {
        width: auto;
    }

    #headerpic .nivo-controlNav :is(a, button) {
        position: relative;
        background: #ffffff !important;
        opacity: 0.4;
        margin: 0;
        height: 5px;
        width: 30px;
        padding: 0 !important;
        transition: opacity 300ms linear;
    }

    #headerpic .nivo-controlNav :is(a, button) ::before {
        content: "";
        display: block;
        position: absolute;
        top: -15px;
        right: 0;
        bottom: -15px;
        left: 0;
    }

    #headerpic .nivo-controlNav :is(a, button):is(.active, :hover, :focus),
    #headerpic .nivo-controlNav .slick-active :is(a, button) {
        opacity: 1;
    }
}

@media (min-width: 1200px) {
    #headerpic .nivo-controlNav {
        max-width: 1375px;
    }
}

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

/* -------------------------------------------- overlay ----------------------------------------- */

#overlay {
    font-weight: 600;
    font-style: italic;
    font-size: clamp(1rem, 2.4vw, 1.5rem);
}

@media (max-width: 991px) {
    #overlay {
        padding-top: 25px;
        padding-bottom: 20px;
    }
}

@media (min-width: 992px) {
    #overlay {
        color: #ffffff;
        position: absolute;
        z-index: 60;
        right: 0;
        bottom: 100px;
        left: 0;
    }
}

@media (min-width: 1200px) {
    #overlay {
        bottom: 150px;
        max-width: 1390px;
        width: 100%;
    }
}

#overlay :is(h1, h2, h3, h4, h5, h6) {
    line-height: 1.1;
}

@media (min-width: 992px) {
    #overlay :is(h1, h2, h3, h4, h5, h6, a) {
        color: #ffffff;
    }

    #overlay p:first-of-type {
        padding-left: 15px;
    }
}

/* #endregion ----------------------------- button design --------------------------------------- */

#nw23Box {
    padding-top: clamp(40px, 5vw, 60px);
    padding-bottom: clamp(40px, 5vw, 85px);
    background: #e5f2ed;
    position: relative;
}

#nw23Box::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/schraege-news.png') bottom -1px center / 100% auto no-repeat;
}

@media (min-width: 1200px) {
    #nw23::after {
        content: '';
        position: absolute;
        pointer-events: none;
        right: 0;
        bottom: clamp(40px, 6vw, 110px);
        width: 267px;
        height: 339px;
        background: url('../img/grafik-badmintonspieler1.png') center no-repeat;
        z-index: 2;
    }
}

#nw23Box .tab {
    margin-bottom: 30px;
}

#nw23Box .tab :is(h1, h2, h3, h4, h5, h6) {
    color: #111111;
    margin: 0;
}

#nw23Box .tab :is(h1, h2, h3) {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    text-transform: uppercase;
}

#nw23Box .tab a {
    color: #111111;
    text-decoration: underline;
}

#nw23 {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

#nw23 .tab_link_entry {
    background: #ffffff;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
    padding: 30px 35px;
    font-size: 1rem;
    border-bottom: none !important;
    padding-left: 300px;
    min-height: 285px;
    position: relative;
    display: flex !important;
    flex-direction: column;
    color: #111111;
    font-size: 1rem;
    height: 100%;
}

@media (min-width: 992px) {
    #nw23 .tab_link_entry {
        width: 570px !important;
    }
}

#nw23 .tab_link_entry #nw23 .tab_preview_picture {
    background: #fff;
}

#nw23 .tab_link_title a::before,
#nw23 .tab_preview_picture {
    max-width: 270px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

@media (max-width: 767px) {
    #nw23 .tab_link_entry {
        padding-left: 35px;
        padding-right: 35px;
        padding-top: 280px;
    }

    #nw23 .tab_link_title a::before,
    #nw23 .tab_preview_picture {
        max-width: 100%;
        max-height: 250px;
    }
}

#nw23 .tab_date {
    font-style: italic;
    margin-bottom: clamp(20px, 3vw, 40px);
}

#nw23 .tab_preview_picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#nw23 .tab_link_title a::before {
    content: "";
    background: no-repeat center / cover;
}

#nw23 .tab_link_title {
    order: -1;
}

#nw23 .tab_spacer {
    display: none;
}

#nw23 .tab_link_title a {
    font-size: clamp(1.25rem, 2vw, 1.6875rem);
    font-weight: 600;
    color: #017e4e;
    line-height: 1.2;
}

#nw23 .tab_link_mehr {
    font-size: 0px;
}

#nw23 .tab_link_mehr a {
    background: #017e4e;
    color: #ffffff;
    padding: 5px 15px;
    font-size: 1rem;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

#nw23 .tab_link_mehr a:hover,
#nw23 .tab_link_mehr a:focus {
    background: #444;
    color: #fff;
}

#nw23 .slick-slide {
    padding: 15px;
    display: flex;
    align-items: stretch;
}

#nw23 .noPadding {
    padding: 0px;
}

#nw23 .slick-track {
    display: flex;
}

#nw23 .slick-track>.slick-slide {
    height: auto;
    display: flex;
}

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

#nw23 .slick-button {
    font-size: 0px;
    position: relative;
    top: 4px;
}

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

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

#nw23 .slick-button::before {
    font-size: 40px;
    line-height: 9px;
    height: 20px;
    display: block;
    color: #000000;
}

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

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

@media (max-width: 767px) {

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

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

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

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

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

#nw23 .slick-dots>li.slick-active {
    background: #017e4e;
    transition: background 200ms linear;
}

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

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

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

/* slider 1 stop/play button for accessibility -------------------- */

#nw23 .slick-animate-control {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    border: 1px solid #ffffff;
    width: 30px;
    height: 30px;
    top: -5px;
    left: 10px;
    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");
}

#nw23 .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");
}

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

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

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

/* -------------------------------------------- partner ----------------------------------------- */

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

@media (min-width: 1200px) {
    #partner>.row::after {
        content: '';
        position: absolute;
        pointer-events: none;
        left: -290px;
        top: -205px;
        width: 232px;
        height: 304px;
        background: url('../img/grafik-badmintonspieler2.png') center no-repeat;
    }
}

#partner :is(h1, h2, h3, h4, h5, h6) {
    color: #111111;
}

#partner :is(h1, h2, h3) {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

/* --------------------------------------------- team ------------------------------------------- */

#team {
    padding: clamp(40px, 7vw, 125px) 0 clamp(30px, 6vw, 100px) 0;
    background-color: #017e4e;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    font-size: clamp(18px, 2vw, 1.375rem);
}

@media (min-width: 1200px) {
    #team>.row::after {
        content: '';
        position: absolute;
        pointer-events: none;
        right: -340px;
        bottom: clamp(-110px, -6vw, -30px);
        width: 296px;
        height: 245px;
        background: url('../img/grafik-badmintonspieler3.png') center no-repeat;
    }
}

#team::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/schraege-mitglied.png') top -1px center / 100% auto no-repeat;
    z-index: 2;
}

#team,
#team :is(h1, h2, h3, h4, h5, h6) {
    color: #ffffff;
}

@media (min-width: 768px) {
    #team .btgrid>.row {
        display: flex;
        align-items: flex-end;
        align-content: flex-end;
    }
}

#team>.row {
    position: relative;
    z-index: 2;
}

#team::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: -10vw;
    bottom: 0;
    width: 56vw;
    background: rgba(16, 74, 53, 0.6);
    transform: skewX(-25deg);
}

#team a {
    text-decoration: none;
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(1rem, 1vw, 1.125rem);
    padding: 3px 23px;
    border: 2px solid #f5f5f5;
}

#team a:is(:hover, :focus) {
    background: #111111;
}

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

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

h1,
.h1,
.legacy_h1 {
    margin-bottom: clamp(20px, 3vw, 40px);
}

h1,
.h1,
.legacy_h1,
:is(#overlay, #team) :is(h1, h2) {
    font-size: clamp(1.875rem, 5vw, 3.75rem);
}

@media (min-width: 1200px) {
    :is(#overlay, #team) :is(h1, h2) {
        font-size: 5rem;
    }
}

:is(h1, h2) :is(i, em) {
    font-size: 66%;
    display: block;
}

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

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

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

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

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

/* ----------------------------------------------- @1f footer ----------------------------------------------- */

#f1 {
    color: #ffffff;
    font-size: 1rem;
    padding-top: clamp(40px, 3vw, 50px);
    padding-bottom: 40px;
    background-color: #111111;
}

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

#f1 a,
#f1 a:hover,
#f1 a:focus {
    color: #ffffff;
}

#f1 .footerTab {
    font-size: 1rem;
}

#f1 .footerTab a {
    font-style: italic;
    text-decoration: underline;
}

#f1 .tabHeadline {
    font-size: 1.25rem;
    color: #ffffff;
    font-style: normal;
}

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

#innerfooter ul {
    padding: 0;
    line-height: 2.1;
}

#innerfooter a {
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 1rem;
    font-weight: 400;
}

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

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

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

#vernetzt span span {
    display: block;
}

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

.contrast_light_font #style button,
.contrast_light_font #contrast_style button {
    border: 1px solid #ffffff !important;
}

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

.contrast_dark_font #style button,
.contrast_dark_font #contrast_style button {
    border: 1px solid #000000 !important;
}

.contrast_dark_font #search_input::placeholder {
    color: #000000 !important;
}

.contrast_dark_font #search_submit {
    background-color: #000000 !important;
}