@import url('https://fonts.verwaltungsportal.de/import/?family=Work+Sans:400,400i,600,600i%7CTeko:500,700');

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

body {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    color: #fff;
    background: #070707;
    font-size: clamp(1rem, 2vw, 1.25rem);
    /* 1rem = 16px */
    line-height: 1.5;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.1);
}

a {
    color: #f41010;
}

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

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

main a {
    text-decoration: underline;
}

#overflow {
    overflow: clip;
}

/* #region --------------------------------------- logo ----------------------------------------- */

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

@media (min-width: 992px) {
    #logo {
        position: absolute;
        top: -30px;
        z-index: 55;
    }
}

@media (max-width: 991px) {
    #logo {
        margin: 25px 0;
    }

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

    #logo .row {
        margin-left: -30px;
        margin-right: -30px;
    }
}

/* #endregion ----------------------------------- logo ------------------------------------------ */

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    .dropdown-toggle-button {
        color: #000;
    }

    nav.horizontally {
        position: static !important;
    }

    #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: #070707;
        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 {
        padding: 20px 10px;
    }

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: #070707;
        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: 11px;
    }

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

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        padding: 10px 0;
        transition: background 300ms linear, padding 300ms linear;
    }

    nav.horizontally>.row {
        max-width: 1440px;
        width: 100%;
    }

    .is-sticky nav.horizontally {
        padding: 20px 0;
        background: #070707;
        border-bottom: 2px solid #ffffff;
    }

    .sticky-wrapper {
        z-index: auto;
    }

    .is-sticky.sticky-wrapper {
        z-index: 101;
    }

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

    nav.horizontally [class*="toplevel"]>ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }

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

    nav.horizontally .navbar-nav li :is([class*="toplevel"]>ul, [class*="secondlevel"]>ul) {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms linear;
    }

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

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

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally .navbar-nav {
        padding-right: 20px;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    font-family: "Teko", sans-serif;
    color: #ffffff;
    font-weight: 500;
    text-align: left;
    padding: 13px 15px 11px 15px;
    position: relative;
    font-size: 1.25rem;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 300ms linear;
}

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

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

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

    nav.horizontally a[class*="toplevel"] {
        padding: 8px 15px 6px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }
}

/* toplevel-over */

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background-color: #070707;
}

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

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

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

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

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

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

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

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

/* secondlevel + thirdlevel */

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

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

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

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

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

/* #region -------------------------------------- search ---------------------------------------- */

#search {
    background: #070707;
    position: relative;
    color: #fff;
    line-height: 1;
    border: 2px solid #070707;
    overflow: hidden;
}

@media (min-width: 992px) {
    #search {
        z-index: 101;
        max-width: 260px;
        transition: margin 300ms linear, width 300ms linear;
    }
}

#search label {
    font-weight: 500;
    padding: 8px 15px 6px 13px;
    line-height: 1.2;
    font-family: "Teko", sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
}

#search_input {
    color: #fff;
    background: #de0000;
    font-style: normal;
    border: 0;
    padding: 11px 36px 12px 12px;
    width: 100%;
    font-size: 1rem;
}

#search_submit {
    width: 36px;
    background: #de0000 url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M39.75 43.35 26.3 29.95q-1.45 1.15-3.425 1.8-1.975.65-4.275.65-5.75 0-9.75-4t-4-9.65q0-5.65 4-9.65t9.7-4q5.65 0 9.625 4 3.975 4 3.975 9.65 0 2.25-.625 4.175-.625 1.925-1.875 3.625l13.5 13.4ZM18.55 27.7q3.75 0 6.325-2.625t2.575-6.325q0-3.75-2.575-6.35Q22.3 9.8 18.55 9.8t-6.375 2.6Q9.55 15 9.55 18.75q0 3.7 2.625 6.325T18.55 27.7Z' fill='%23fff'/%3E%3C/svg%3E") center / 22px auto no-repeat;
    padding: 0;
    cursor: pointer;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    transition: background-color 300ms linear;
}

:is(#search_submit, #search_input):is(:hover, :focus) {
    background-color: #070707;
}

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

/* #endregion ----------------------------------- search --------------------------------------- */

/* #region -------------------------------------- header ---------------------------------------- */

nav.horizontally>.row>*:first-child>* {
    position: relative;
    z-index: 101;
}

#headerpic>.row>*:first-child>* {
    position: relative;
    z-index: 3;
}

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

#social-media {
    font-size: 1rem;
    padding-top: clamp(30px, 6vw, 62px);
}

@media (min-width: 1200px) {
    #social-media {
        padding-right: 35px;
    }
}

#social-media a {
    text-decoration: underline;
}

#social-media :is(img+img, a.has-image+a.has-image) {
    margin-left: 8px;
}

/* header text */

#header-text :is(h1, h2, h3, h4, h5, h6) {
    text-transform: uppercase;
    line-height: 0.8;
    font-size: clamp(2.125rem, 6vw, 5rem);
    margin-bottom: clamp(15px, 4vw, 25px);
}

#header-text :is(h1, h2, h3, h4, h5, h6) :is(i, em) {
    font-size: clamp(1.875rem, 7vw, 3.75rem);
    color: #070707;
    font-style: normal;
    text-transform: none;
}

body:not(.index) #header-text p {
    display: none;
}

/* #endregion ----------------------------------- header ---------------------------------------- */

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

#slider {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

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

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

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

    #headerpic::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 460px;
        height: 100%;
        background: #070707;
        clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        z-index: 55;
        pointer-events: none;
    }
}

#headerpic {
    position: relative;
}

.slider-mask {
    display: block;
    background: rgba(220, 0, 0, 0.7);
}


#banneroverlay {
    position: relative;
    padding: 30px 0 30px 0;
}

@media (min-width: 1200px) {
    #banneroverlay {
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 55;
        width: 100%;
        padding: clamp(30px, 8vw, 120px) 0 50px 0;
    }
}

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

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

#news {
    background: linear-gradient(to top, #de0000, #de0000 60%, rgba(255, 255, 255, 0) 60%);
}

#news>.row {
    padding-bottom: clamp(30px, 10vw, 110px);
}

/* tab */

#news .tab-img {
    position: relative;
    z-index: 1;
}

#news .tab {
    font-size: 1rem;
    position: relative;
    z-index: 2;
    background: #de0000;
    padding: clamp(15px, 3vw, 35px) clamp(15px, 3vw, 40px) clamp(15px, 3vw, 25px) clamp(15px, 3vw, 40px);
}

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

#news .tab-img .banner img {
    display: block;
}

@media (min-width: 576px) {
    #news .tab {
        margin-right: -30px;
    }
}

#news .tab-img .banner {
    position: relative;
}

@media (min-width: 992px) {
    #news .tab-img .banner {
        position: absolute;
        left: 15px;
        right: 15px;
    }

    #news .tab-img .banner {
        top: 70px;
        bottom: 70px;
    }

    #news .tab-img .banner img {
        object-fit: cover;
        object-position: 50% 100%;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    #news .tab {
        display: inline-block;
    }

    #news .tab {
        margin: 100px -30px 0 30px;
    }
}

#news .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(2rem, 5vw, 2.8125rem);
    text-transform: uppercase;
    margin-bottom: 0;
}

/* tabnews/tabevents */

#news .tab-container {
    font-size: 1rem;
    border: clamp(4px, 1vw, 10px) solid #de0000;
    background-color: #070707;
    background-repeat: no-repeat;
    padding: clamp(10px, 5vw, 75px) 30px 30px 0;
}

@media (min-width: 768px) {
    #news .tab-container {
        margin-left: -115px;
        min-height: 400px;
    }

    #news .tab-container {
        padding-left: 115px;
    }
}

@media (min-width: 992px) {
    #news .tab-container {
        padding-left: 135px;
    }

}

@media (min-width: 1200px) {
    #news .tab-container {
        margin-left: -215px;
    }

    #news .tab-container {
        padding-left: 235px;
    }
}

#news .tab_link {
    padding-left: 30px;
}

#news .tab_link_entry {
    border-bottom: none !important;
    position: relative;
    padding: clamp(20px, 4vw, 30px) 0;
}

#news .tab_link_entry {
    padding-top: calc(100px + clamp(15px, 4vw, 30px));
}

#news .tab_link_entry+.tab_link_entry {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

#news .tab_link_entry .tab_link_title a {
    font-size: 1.25rem;
    line-height: 1.2;
    display: block;
    color: #ffffff;
    font-weight: 600;
}

#news .tab_link_entry .tab_link_title {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    #news .tab_link_entry .tab_link_title {
        margin-left: 50px;
        margin-bottom: 25px;
    }

    #news .tab_link_entry:not(:has(.tab_date)) .tab_link_title {
        margin-top: -74px;
        margin-bottom: 35px;
    }

    #news .tab_link_entry .tab_date {
        margin-top: -84px;
        margin-left: 100px;
    }
}

#news .tab_link_entry .tab_link_title a:not(:hover):not(:focus) {
    text-decoration: none;
}

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

#news .tab_link_entry .tab_preview_picture,
#news .tab_link_entry .tab_link_title a::before {
    display: block;
    overflow: hidden;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    position: absolute;
    top: clamp(20px, 4vw, 30px);
    left: 0;
}

#news .tab_link_entry .tab_preview_picture img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin: 0;
}

#news .tab_link :is(.tab_spacer, .tab_link_mehr) {
    display: none;
}

@media (min-width: 992px) {
    #news .button-design {
        margin-top: 10px;
    }
}

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

/* ----------------------------------------------- @13ev events -------------------------------------------- */

#ev13 {
    padding-top: clamp(30px, 4vw, 55px);
    padding-bottom: clamp(30px, 5vw, 85px);
}

#ev13 .tabHeadline {
    text-transform: uppercase;
    font-size: clamp(1.875rem, 2vw, 2.8125rem);
    color: #fff;
    font-weight: 700;
    margin: 0;
}

#ev13 .tab_link_mehr {
    color: transparent;
    font-size: 0;
}

#ev13 .tab_link_mehr a {
    color: #fff;
    display: inline-block;
    font-size: clamp(1rem, 2vw, 1.3125rem);
    font-weight: 700;
    font-style: italic;
}

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

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

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

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

#ev13 .tab_link_entry {
    width: 100%;
    padding: 35px 20px 40px 20px;
    display: grid;
    color: #ffffff;
    background: #de0000;
}

#ev13 .tab_link_title {
    order: 1;
}

#ev13 .tab_link_mandat {
    order: 2;
}

#ev13 .tab_link_date {
    order: 3;
}

#ev13 .tab_link_mandat a {
    color: #ffffff;
}

#ev13 .tab_link_title a {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.25rem;
    text-transform: uppercase;
}

#ev13 .tab_link .tab_link_mehr,
#ev13 .tab_spacer,
#ev13 .tab_preview_picture {
    display: none;
}

/* #endregion ----------------------------------- about us -------------------------------------- */

/* #region ------------------------------------- sponsors --------------------------------------- */

#sponsors {
    padding-bottom: clamp(30px, 10vw, 100px);
}

#sponsors :is(h1, h2, h3, h4, h5, h6) {
    color: #fff;
    margin-bottom: 5px;
}

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

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

#tab26 .tab {
    font-size: 1rem;
    padding: 20px;
}

#tab26 .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

#tab26 img {
    display: block;
    position: relative;
    width: 100%;
}

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

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

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

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

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

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

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

#tab26 .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(255, 255, 255, 0.05);
    transition: width 200ms linear, height 200ms linear;
    z-index: -1;
}

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

@media (max-width: 767px) {

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

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

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

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

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

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

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

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

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

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

#tab26 .slick-animate-control {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    top: -5px;
    left: 10px;
    background-size: 16px 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    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");
}

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


/* #endregion ---------------------------------- sponsors --------------------------------------- */

/* #region ----------------------------------- deco stripes ------------------------------------- */

:is(#news, #footer, #headerpic)>.row::before {
    content: "";
    display: block;
    width: 186px;
    height: 145px;
    position: absolute;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 6%, rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.35) 56%, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 0) 100%);
    background-size: 10px 10px;
    pointer-events: none;
}

@media (max-width: 991px) {

    :is(#news, #footer, #headerpic)>.row::before {
        opacity: 0.5;
    }
}

#headerpic>.row::before {
    right: -15px;
    bottom: -260px;
}

#news>.row::before {
    left: -125px;
    bottom: 60%;
}

#footer>.row::before {
    right: -15px;
    top: -60px;
}

/* #endregion -------------------------------- deco stripes ------------------------------------- */

/* #region ------------------------------------ deco words -------------------------------------- */

footer,
header {
    position: relative;
}

@media (min-width: 992px) {
    header::after {
        font-weight: 600;
        position: absolute;
        right: 0;
        content: "";
        width: 90px;
        height: 1200px;
        background: url('../img/schriftzug.png') no-repeat;
        top: 220px;
        z-index: 56;
    }
}

/* #endregion --------------------------------- deco words -------------------------------------- */

/* #region ------------------------------------- resp gaps -------------------------------------- */

:is(#footer-bg, #footer2-bg, #news, #events)>.row {
    row-gap: 30px;
}

#headerpic>.row>:first-child>.row {
    row-gap: clamp(50px, 6vw, 62px);
}

/* #endregion ---------------------------------- resp gaps -------------------------------------- */

/* #region --------------------------------------- buttons -------------------------------------- */

.button-design a:not(.has-image) {
    font-family: "Teko", sans-serif;
    display: inline-block;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    background: #de0000;
    padding: 8px 25px 4px 25px;
    text-decoration: none;
}

#header-text.button-design a:not(.has-image) {
    color: #070707;
    background: #ffffff;
    margin-top: clamp(5px, 2vw, 25px);
}

@media(min-width: 1200px) {
    #header-text.button-design a:not(.has-image) {
        padding-left: 35px;
        padding-right: 35px;
    }
}

:is(.button-design, #header-text.button-design) :is(a:not(.has-image):hover, a:not(.has-image):focus) {
    color: #ffffff;
    background: #070707;
}

.button-design a:not(.has-image)+a:not(.has-image) {
    margin-left: clamp(10px, 2vw, 25px);
}

/* #endregion ------------------------------------ buttons -------------------------------------- */

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

#content-area {
    text-align: left;
    padding-top: clamp(40px, 6vw, 60px);
    padding-bottom: clamp(40px, 10vw, 100px);
}

/* #region ---------------------------------- h1 - h6, newslink --------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.1;
    font-family: "Teko", sans-serif;
    margin-bottom: 15px;
}

h1,
.h1,
.legacy_h1 {
    font-size: clamp(2.375rem, 5vw, 3.75rem);
    margin-bottom: clamp(15px, 4vw, 25px);
}

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

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

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

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

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

/* #endregion ---------------------------------- h1 - h6, newslink ------------------------------ */

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

footer {
    font-size: 1rem;
}

#footer {
    position: relative;
}

@media (min-width: 992px) {
    #footer::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 60%;
        height: 100%;
        background: #de0000;
        clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
    }
}

#footer-bg,
#footer2-bg {
    color: #ffffff;
    position: relative;
    z-index: 1;
}


#footer-bg {
    padding-top: clamp(30px, 6vw, 55px);
    padding-bottom: clamp(30px, 6vw, 55px);
}

#footer2-bg {
    padding-top: 27px;
    padding-bottom: 27px;
}

@media (min-width: 992px) {
    :is(#footer-bg, #footer2-bg)>.row>*:last-child {
        padding-right: 60px;
    }
}

:is(#footer-bg, #footer2-bg) :is(h1, h2, h3, h4, h5, h6) {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    text-transform: uppercase;
    font-weight: 500;
}

.footer-headline {
    padding-top: clamp(55px, 8vw, 70px);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 48px auto;
}

@media (min-width: 768px) {
    .footer-headline {
        background-position-x: -4px;
    }
}

:is(#footer-bg, #footer2-bg) a {
    color: #ffffff;
}

#footer-bg a {
    padding: 2px 6px;
    text-decoration: underline;
    margin: 0 -6px;
}


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

#innerfooter a:is(:hover, :focus) {
    color: #f41010;
}

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

/* #region -------------------------------------- vernetzt -------------------------------------- */
#footer2 {
    background-color: #070707;
}

#vernetzt {
    gap: 22px;
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
    text-decoration: none;
}

#vernetzt span {
    display: block;
}

/* #endregion -------------------------------- vernetzt ----------------------------------------- */

/* #region ------------------------------------- scroll top ------------------------------------- */

#scroll-top-btn {
    display: inline-block;
    background: #de0000 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M14.15 30.75 12 28.6l12-12 12 11.95-2.15 2.15L24 20.85Z' fill='%23fff'/%3E%3C/svg%3E") center right 9px / 24px auto no-repeat;
    font-size: 0.875rem;
    padding: 5px 38px 7px 20px;
    text-decoration: none;
}

#scroll-top-btn:is(:hover, :focus) {
    background-color: #1a1a1a;
}

/* #endregion ------------------------------- scroll top ---------------------------------------- */


