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

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

body {
    font-family: "Work Sans", sans-serif;
    font-weight: 400;
    color: #1a1a1a;
    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: #971433;
}

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

:is(#content-area, #header-text) a,
b,
strong {
    font-weight: 500;
}

:is(#content-area, #header-text, #footer) a {
    text-decoration: underline;
}

#overflow {
    overflow: clip;
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
    #logo img {
        border-radius: 50px 0 50px 0;
    }
}

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

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

#logo {
    position: relative;
    z-index: 12;
}

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

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

    #logo img {
        transition: max-width 200ms linear, border-radius 200ms linear;
    }

    .is-sticky #logo img {
        max-width: 80px;
        border-radius: 20px 0 20px 0;
    }

    #logo-col {
        position: static;
    }
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    .sticky-wrapper {
        height: auto !important;
    }

    nav.horizontally {
        background: #ffffff;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
        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: #971433;
        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: #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: 11px;
    }

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

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        position: relative;
        z-index: 10;
        transition: background 300ms linear, box-shadow 300ms linear;
    }

    .is-sticky nav.horizontally {
        background: #ffffff;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    }

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

    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"] {
    font-family: "Oswald", sans-serif;
    color: #1a1a1a;
    font-weight: 700;
    text-align: left;
    padding: 14px 15px;
    position: relative;
    font-size: 1.25rem;
    text-transform: uppercase;
    line-height: 1.2;
    text-decoration: none;
    transition: border 300ms linear;
}

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

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

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

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

nav.horizontally a[class*="toplevel"]::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
    height: 4px;
    width: 0;
    background: #971433;
    transform: translateX(-50%);
    transition: width 300ms linear;
}

/* toplevel-over */

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

/* secondlevel + thirdlevel dropdown-box */

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

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

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

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

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

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

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

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

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

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

/* #region ------------------------------- max-width + resp-gaps -------------------------------- */

#headerpic,
#news,
footer {
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
}

#news .tab_link_entries,
#footer>.row {
    row-gap: 30px;
}

/* #endregion ---------------------------- max-width + resp-gaps -------------------------------- */

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

#headerpic {
    background: #971433;
    position: relative;
}

@media (min-width: 992px) {
    #headerpic {
        border-radius: 100px 0 100px 0;
    }
}

/* header text */

#header-text {
    line-height: 1.4;
    position: relative;
    z-index: 10;
    padding: 60px 0 clamp(60px, 8vw, 105px) 0;
    font-size: clamp(1rem, 3vw, 1.625rem);
}

@media (min-width: 576px) {
    #header-text {
        padding-top: clamp(110px, 13vw, 235px);
    }
}

@media (max-width: 991px) {
    #header-text {
        padding-top: 100px;
    }

    .theme-nivo .nivo-directionNav a {
        top: unset;
        bottom: 8px !important;
        pointer-events: all;
        z-index: 100;
    }
}

@media (max-width: 767px) {
    #header-text {
        padding-top: 60px;
        padding-bottom: 45px;
    }
}

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

#header-text :is(h1, h2, h3, h4, h5, h6) {
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: clamp(15px, 4vw, 32px);
    text-shadow: 15px 15px 15px rgba(0, 0, 0, 0.2);
}

#header-text :is(h1, h2, h3) {
    font-size: clamp(2.25rem, 7vw, 5rem);
}

#header-text :is(b, strong) {
    font-weight: normal;
    display: block;
    font-size: clamp(1.25rem, 4vw, 2.375rem);
    margin-bottom: clamp(10px, 4vw, 24px);
}

@media (min-width: 992px) {
    #header-text>article {
        opacity: 0;
        transform: translate(-100px, -100px);
        animation: showHeaderText 500ms linear 300ms 1 normal forwards;
    }
}

@keyframes showHeaderText {
    0% {
        opacity: 0;
        transform: translate(-100px, -100px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

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

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

#slider {
    height: 100%;
    overflow: hidden;
    min-height: 400px;
}

@media (min-width: 992px) {
    #slider {
        border-radius: 100px 0 100px 0;
    }
}

#headerpic,
#header-text,
#headerpic #slider,
#headerpic .slider-mask,
#headerpic .slider-wrapper {
    min-height: 520px;
}

@media (max-width: 991px) {

    #headerpic,
    #header-text,
    #headerpic #slider,
    #headerpic .slider-mask,
    #headerpic .slider-wrapper {
        min-height: 360px;
    }
}

@media (max-width: 767px) {

    #headerpic,
    #header-text,
    #headerpic #slider,
    #headerpic .slider-mask,
    #headerpic .slider-wrapper {
        min-height: 245px;
    }
}

.theme-nivo .nivo-controlNav .slick-dots li,
.nivo-directionNav a,
a.nivo-control,
a.nivo-control.active {
    color: #ffffff !important;
}

@media (max-width: 1199px) {
    #headerpic :is(a.nivo-prevNav, a.nivo-nextNav) {
        display: none;
    }
}

#headerpic .slider-wrapper {
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

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

    #header-text,
    #headerpic,
    #headerpic .slider-mask,
    #slider {
        min-height: 700px;
    }

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

#headerpic .nivo-main-image {
    min-height: 100% !important;
}

#headerpic .nivo-controlNav {
    bottom: 8px;
}

#headerpic .slider-mask {
    display: block;
    background: rgba(151, 20, 51, 0.5);
}

@media (min-width: 992px) {
    #headerpic .slider-mask {
        border-radius: 100px 0 100px 0;
    }
}

@media (max-width: 991px) {

    #slider-onebanner,
    #slider .nivo-box>div,
    #slider .nivo-slice>div,
    #slider .nivo-main-image,
    #slider div[style*='background-size'] {
        background-size: auto !important;
    }
}

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

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

#content-area {
    position: relative;
    text-align: left;
    padding: clamp(40px, 7vw, 110px) 0 clamp(40px, 4vw, 75px) 0;
}

#content-area>* {
    position: relative;
    z-index: 10;
}

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

#news {
    padding: clamp(40px, 4vw, 70px) 0 clamp(40px, 4vw, 75px) 0;
    position: relative;
    z-index: 1;
    background-color: #971433;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    #news {
        border-radius: 100px 0 100px 0;
    }
}

@media (max-width: 767px) {
    #news {
        background-image: none !important;
    }

    #news .button-design {
        margin-top: 30px;
    }
}

#news .tab {
    padding-bottom: clamp(30px, 4vw, 36px);
}

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

#news .news-headline {
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 32px;
}

#news .news-headline::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: clamp(-275px, -15vw, -15px);
    height: 1px;
    background: #ffffff;
}

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

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

#news .tab_link_entry {
    width: 100%;
    position: relative;
    color: #1a1a1a;
    background: #ffffff;
    padding: clamp(215px, 12vw, 240px) clamp(15px, 4vw, 25px) clamp(20px, 4vw, 35px) clamp(15px, 4vw, 25px);
    display: flex;
    flex-direction: column;
    border: none !important;
}

@media (min-width: 992px) {
    #news .tab_link_entry {
        border-radius: 50px 0 50px 0;
    }
}

#news .tab_link_entry::after,
#news .tab_link_entry+.tab_link_entry::before {
    content: "";
    display: block;
    position: absolute;
}

#news .tab_link_entry::after {
    top: 20px;
    right: 20px;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: none;
    background: #ffffff url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M7 42q-1.25 0-2.125-.875T4 39V6l3.35 3.35L10.65 6 14 9.35 17.35 6l3.3 3.35L24 6l3.35 3.35L30.65 6 34 9.35 37.35 6l3.3 3.35L44 6v33q0 1.25-.875 2.125T41 42Zm0-3h15.5V25H7v14Zm18.5 0H41v-5.5H25.5Zm0-8.5H41V25H25.5ZM7 22h34v-6H7Z' fill='%23971433'/%3E%3C/svg%3E") center / 25px auto no-repeat;
}

#news .tab_link_entry .tab_preview_picture,
#news .tab_link_entry .tab_link_title a::before {
    height: 190px;
    top: 0;
    left: 0;
    width: calc(100% - 8px);
    display: block;
    overflow: hidden;
    position: absolute;
    border: 4px solid #ffffff;
}

@media (min-width: 992px) {

    #news .tab_link_entry .tab_preview_picture,
    #news .tab_link_entry .tab_link_title a::before {
        border-radius: 50px 0 0 0;
    }
}

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

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

#news .tab_link_title {
    line-height: 1.2;
    order: 1;
}

#news .tab_link_title a {
    color: #1a1a1a;
    font-weight: 500;
    font-size: clamp(1.125rem, 0.5rem, 1.25rem);
}

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

#news .tab_date {
    font-size: 1rem;
    order: 2;
    margin-top: 10px;
}

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

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

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

.button-design a:not(.has-image) {
    text-decoration: none;
    display: inline-block;
    position: relative;
    text-align: left;
    color: #ffffff;
    font-size: 0.875rem;
    width: 100%;
    font-weight: 500;
    max-width: 200px;
    padding: 15px 15px 15px 50px;
    background: #971433;
}

@media (min-width: 992px) {
    .button-design a:not(.has-image) {
        border-radius: 20px 0 20px 0;
    }
}

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

.button-design a:not(.has-image)::after {
    content: '';
    position: absolute;
    pointer-events: none;
    display: block;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="20px" viewBox="0 -960 960 960" width="20px" fill="%23ffffff"><path d="M120-520v-320h320v320H120Zm0 400v-320h320v320H120Zm400-400v-320h320v320H520Zm0 400v-320h320v320H520Z"/></svg>') center no-repeat;
}

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

/* ----------------------------------------------- @17ev events -------------------------------------------- */

#ev17 {
    padding-top: clamp(40px, 4vw, 65px);
    padding-bottom: clamp(40px, 6vw, 115px);
}

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

#ev17 .specialHeadline {
    color: #ffffff;
    background: #971433;
    padding: 0 0 0 50px;
    width: calc(100% - 30px);
    max-width: 1170px;
    overflow: hidden;
    margin: 0 auto;
}

@media (min-width: 992px) {
    #ev17 .specialHeadline {
        border-radius: 40px 0 40px 0;
    }
}

#ev17 .tabHeadline {
    color: #ffffff;
    font-size: clamp(1.5625rem, 2vw, 1.875rem);
    margin: 0px;
}

#ev17 .tab_link_mehr a,
#ev17 .specialHeadline a:not(.has-image):not([rel]) {
    text-decoration: none;
    display: inline-block;
    position: relative;
    text-align: left;
    color: #ffffff;
    font-size: 0.875rem;
    width: 100%;
    max-width: 225px;
    padding: 22px 15px 22px 50px;
    background: #971433;
}

#ev17 .tab_link_mehr a {
    margin-top: 20px;
    width: auto;
    font-weight: 500;
    max-width: unset;
    padding: 12px 20px 12px 50px;
}

@media (min-width: 992px) {
    #ev17 .tab_link_mehr a {
        border-radius: 20px 0 20px 0;
    }
}

#ev17 .tab_link_mehr {
    font-size: 0px;
    text-align: left !important;
}

#ev17 .tab_link_mehr a::before,
#ev17 .specialHeadline a::before {
    content: '';
    position: absolute;
    pointer-events: none;
    display: block;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" height="20px" viewBox="0 -960 960 960" width="20px" fill="%23ffffff"><path d="M120-520v-320h320v320H120Zm0 400v-320h320v320H120Zm400-400v-320h320v320H520Zm0 400v-320h320v320H520Z"/></svg>') center no-repeat;
}

#ev17 .tab_link_mehr a:hover,
#ev17 .tab_link_mehr a:focus,
#ev17 .specialHeadline a:not(.has-image):not([rel]):hover,
#ev17 .specialHeadline a:not(.has-image):not([rel]):focus {
    color: #ffffff;
    background: #1a1a1a;
}

@media (max-width: 768px) {
    #ev17 .specialHeadline {
        padding: 0px;
    }

    #ev17 .specialHeadline .tabHeadline {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    #ev17 .specialHeadline a:not(.has-image):not([rel]) {
        max-width: unset;
    }
}

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

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

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

#ev17 .tab_link_entry {
    width: 100%;
    font-size: 1rem;
    color: #444444;
    padding: 30px;
    background: #ffffff;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
    #ev17 .tab_link_entry {
        border-radius: 50px 0 50px 0;
    }
}

#ev17 .tab_link_title {
    margin-bottom: 15px;
}

#ev17 .tab_link_title a {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 500;
    color: #971433;
    display: inline-block;
}

#ev17 .tab_link_mandat a {
    color: #444444;
}

#ev17 .tab_spacer,
#ev17 .vorschau {
    display: none;
}

/*  ---------------------------------- logoBox --------------------------------- */

#logoBox {
    padding-bottom: clamp(30px, 4vw, 60px);
}

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

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

h1,
.h1,
.legacy_h1 {
    font-size: clamp(2.25rem, 6vw, 3.125rem);
    margin-bottom: clamp(15px, 4vw, 40px);
}

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

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

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

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

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

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

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

footer {
    font-size: 1rem;
}

#footer {
    padding: 40px 0 clamp(40px, 5vw, 80px) 0;
    background: #971433;
}

@media (min-width: 992px) {
    #footer {
        border-radius: 100px 0 100px 0;
    }
}

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

#footer :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.625rem;
    margin-bottom: 2px;
}

.iframetab {
    border-radius: 30px 0 30px 0;
    overflow: hidden;
}

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

#innerfooter {
    padding: 24px 0;
    position: relative;
}

@media (min-width: 992px) {
    .tabDeko {
        position: absolute;
        pointer-events: none;
        bottom: -31px;
        right: -5px;
        width: 240px;
    }
}

@media (min-width: 1200px) {
    .tabDeko {
        position: absolute;
        pointer-events: none;
        bottom: -31px;
        right: -210px;
        width: 452px;
        height: 648px;
    }
}

#innerfooter ul {
    padding: 0;
}

@media (min-width: 576px) {
    #innerfooter li+li {
        margin-left: 30px;
    }

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

#innerfooter li a {
    color: #333333;
}

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

@media (max-width: 575px) {
    #innerfooter li a {
        padding: 4px;
        display: inline-block;
    }
}

#footer #social-media img+img,
#footer a.has-image+a.has-image {
    margin-left: 10px;
}

#footer #social-media+#vernetzt {
    margin-top: 20px;
}

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

/* #region -------------------------------------- vernetzt -------------------------------------- */

#footer #vernetzt {
    gap: 14px;
    text-align: right;
    font-size: 0.8125rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
    text-decoration: none;
}

#footer #vernetzt span {
    display: block;
}

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