@import url("https://fonts.verwaltungsportal.de/css/?family=Poppins:300,300i,400,400i,600,600i,600i%7CKhand:700,700i");

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #444444;
    background: #ffffff;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.66;
}

@media (min-width: 768px) {
    body {
        font-size: 1.125rem;
    }
}

a {
    color: #a01122;
}

#content a {
    font-style: italic;
}

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

b,
strong {
    font-weight: 600;
}

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

#overflowwrapper {
    position: relative;
    overflow: hidden;
}

/* ------------------------------------------------- optionsbar ------------------------------------------------ */

#optionsbar {
    padding: 14px 0 10px 0;
    position: relative;
}

#optionsbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(-90deg, rgba(231, 231, 231, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

#optionsbar>* {
    padding: 0 29px;
}

@media (min-width: 992px) {
    #optionsbar>.search::after {
        content: "";
        width: 1px;
        height: 100%;
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.1);
        position: absolute;
        left: 0px;
        top: 0px;
    }
}

/* ------------------------------------------------- übersetzer ------------------------------------------------ */

#uebersetzer {
    position: relative;
    padding: 0;
}

/* ------------------------------------------------- social ------------------------------------------------ */

#social {
    position: relative;
    margin-right: auto;
    font-size: 0;
}

#social :is(img + img, img + a, a + img, a + a) {
    margin-left: 10px;
}

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

#style {
    position: relative;
}

#style::before {
    content: "";
    position: relative;
    display: inline-block;
    background: url("../img/icon-styler.png") center right no-repeat;
    width: 20px;
    height: 15px;
    margin-right: 15px;
}

#style button {
    padding: 0;
    border: none;
    color: #444444;
    display: inline-block;
    font-weight: 300;
    text-align: center;
    background: transparent;
    position: relative;
    line-height: 1;
    font-size: 1rem;
}

#style button+button::before {
    content: "|";
    margin: 0 9px;
    color: #444444 !important;
}

#style button:hover,
#style button:focus {
    color: #a01122;
}

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

.search {
    height: 2rem;
    background: transparent;
    display: inline-block;
    position: relative;
    padding-right: 0px;
}

.search .search_input {
    color: #444444;
    font-size: 1rem;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 2rem;
    padding-right: 2rem;
    height: 2rem;
    width: 100%;
    max-width: 15rem;
    font-weight: 300;
}

.search .search_submit {
    width: 33px;
    background: url("../img/suche-icon.png") center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 33px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    -webkit-transition: all 150ms linear;
    -moz-transition: all 150ms linear;
    -ms-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}

@media (max-width: 991px) {
    .search {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 18px;
        margin-left: 10px;
        max-width: 300px;
        width: 100%;
    }

    .search .search_input {
        max-width: inherit;
    }
}

.search .search_submit:hover,
.search .search_submit:focus {
    background-color: rgba(0, 0, 0, 0.1);
}

.search .search_input::-ms-input-placeholder {
    color: #444444 !important;
}

.search .search_input::-webkit-input-placeholder {
    color: #444444 !important;
}

.search .search_input::-moz-placeholder {
    opacity: 1;
}

.search .search_input:-moz-placeholder {
    opacity: 1;
}

.search .search_input:focus::placeholder {
    opacity: 0;
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

@media (min-width: 1200px) {
    #logo {
        position: absolute;
        box-shadow: -0.035px -2px 10px 0px rgba(0, 0, 0, 0.12);
        left: 0;
    }
}

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

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

/* --------------------------------------- navigation --------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        border: none !important;
        position: relative;
        z-index: 1002;
        display: block;
        width: 46px;
        height: 40px;
        border-radius: 2px;
        cursor: pointer;
        background-color: #ffffff;
        padding: 3px;
    }

    #burgerButton:before,
    #burgerButton:after,
    #burgerButtonInner {
        background-color: #a01122;
        color: #fff;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 2px;
        -webkit-transition: transform 200ms linear, opacity 200ms linear;
        -moz-transition: transform 200ms linear, opacity 200ms linear;
        -ms-transition: transform 200ms linear, opacity 200ms linear;
        -o-transition: transform 200ms linear, opacity 200ms linear;
        transition: transform 200ms linear, opacity 200ms linear;
    }

    #burgerButton[aria-expanded="true"] #burgerButtonInner {
        -webkit-transform: rotate(-45deg) translate(-6px, 6px);
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    #burgerButton[aria-expanded="true"]:before {
        opacity: 0;
    }

    #burgerButton[aria-expanded="true"]:after {
        -webkit-transform: rotate(45deg) translate(-4px, -6px);
        transform: rotate(45deg) translate(-4px, -6px);
    }

    #burgerButtonInner {
        top: 10px;
    }

    #burgerButton:before {
        top: 18px;
    }

    #burgerButton:after {
        top: 26px;
    }

    #burgerButton:before,
    #burgerButton:after {
        content: "";
        display: block;
    }

    .navbar-nav {
        margin: 20px 0;
    }

    .navbar-collapse {
        top: 0;
        background-color: #ffffff;
        background-image: url(../img/maindecoration-loeffel.png);
        background-position: right bottom -500px;
        background-repeat: no-repeat;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-transition: left 300ms linear, opacity 300ms linear;
        -moz-transition: left 300ms linear, opacity 300ms linear;
        -ms-transition: left 300ms linear, opacity 300ms linear;
        -o-transition: left 300ms linear, opacity 300ms linear;
        transition: left 300ms linear, opacity 300ms linear;
    }

    .navbar-collapse.collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-header {
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        background-color: #ffffff;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
        -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    .navbar-collapse.in:after {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        display: block;
        width: 90px;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .dropdown-toggle-button-wrapper {
        top: 9px !important;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 5px !important;
    }
}

@media (min-width: 575px) and (max-width: 991px) {
    .navbar-collapse {
        width: 60%;
    }

    .navbar-collapse.collapse.in:after {
        width: 40%;
    }
}

/* menu desktop */

.horizontally {
    position: relative;
    z-index: 102;
    background: #ffffff;
}

.is-sticky .horizontally {
    background: #ffffff;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.18);
}

@media (max-width: 1199px) {
    .is-sticky #logo {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .is-sticky #optionsbar {
        display: none !important;
    }

    nav.horizontally .navbar-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        flex-wrap: wrap;
    }

    nav.horizontally .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }

    nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    nav.horizontally .navbar-nav>li,
    nav.horizontally .navbar-nav>li>.dropdown-menu>li {
        position: relative;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: opacity 300ms linear;
        -moz-transition: opacity 300ms linear;
        -ms-transition: opacity 300ms linear;
        -o-transition: opacity 300ms linear;
        transition: opacity 300ms linear;
    }

    .navbar-default .open>.dropdown-menu,
    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar-default .nav .open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu::before {
        content: "";
        position: absolute;
        display: block;
        height: 35px;
        left: 0;
        right: 0;
        top: -35px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu::before {
        content: "";
        position: absolute;
        display: block;
        width: 20px;
        top: 0;
        bottom: 0;
        left: -20px;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:focus-within>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:focus-within>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar-default:focus-within .navbar-nav li[class*="secondlevel"]>ul,
    .navbar-default:focus-within .navbar-nav li[class*="toplevel"]>ul {
        z-index: 80;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="toplevel"]:focus>ul {
        z-index: 81;
    }
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav>li>a {
    color: #444444;
    font-weight: 400;
    text-align: left;
    padding: 12px 15px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    hyphens: auto;
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li {
        border-bottom: 1px solid rgba(46, 60, 72, 0.2);
    }

    nav.horizontally .navbar-nav>li>a.dropdown-toggle {
        padding-right: 35px;
    }
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li+li {
        margin-left: 15px;
    }

    .navbar-default .navbar-nav>li>a {
        padding: 42px 0;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        display: block;
    }
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav>li:hover>a,
.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus,
.navbar-nav>li.open>a,
.navbar-nav>li.open>a:hover,
.navbar-nav>li.open>a:focus,
.navbar-nav>li[class$="_over"]>a,
.navbar-nav>li[class$="_over"]>a:hover,
.navbar-nav>li[class$="_over"]>a:focus {
    color: #a01122;
    background-color: transparent;
}

.navbar-nav>li:focus-within>a {
    color: #a01122;
    background-color: transparent;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background-color: #fff;
    -webkit-box-shadow: -1px 0px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: -1px 0px 5px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.65);
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        padding: 15px 0;
        background-color: rgba(255, 255, 255, 0.15);
    }

    .navbar-default .navbar-nav>li>.dropdown-menu,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        -webkit-box-shadow: inset -1px 0px 5px 0 rgba(0, 0, 0, 0.2);
        box-shadow: inset -1px 0px 5px 0 rgba(0, 0, 0, 0.2);
    }
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        padding: 18px 0;
        left: 50%;
        transform: translate(-50%);
        margin-top: -10px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        padding-top: 18px;
        padding-bottom: 18px;
        margin-top: -18px;
        margin-left: 20px;
    }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu>li>a,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #444444;
    font-weight: 300;
    text-align: left;
    padding: 7px 16px;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    hyphens: auto;
}

@media (max-width: 991px) {
    nav.horizontally .navbar-nav>li>.dropdown-menu>li>a.dropdown-toggle2 {
        padding-right: 35px;
    }
}

@media (min-width: 992px) {

    .navbar-default .navbar-nav>li>.dropdown-menu>li>a,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        margin: 0 15px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li+li+li>a,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li+li+li>a {
        border-top: 1px solid #c2c1c1;
    }
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav>li>.dropdown-menu>li:hover>a,
.navbar-nav>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus {
    color: #a01122;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
    color: #a01122;
}

/* ----------------------------------------------- banner ----------------------------------------------- */

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

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

    body.index #slider {
        max-height: 730px;
    }

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

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

#headerpic {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

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

.slider-mask {
    display: block;
    background-image: linear-gradient(0deg, rgb(20, 73, 30) 0%, rgba(20, 73, 30, 0.5) 28%, rgba(20, 73, 30, 0) 100%);
}

/* ------------------------------------------------ content + main ----------------------------------------------- */

main {
    position: relative;
    padding-top: 30px;
}

@media (min-width: 992px) {
    main {
        padding-top: 70px;
    }
}

#content {
    position: relative;
    padding-bottom: 70px;
}

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

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
    color: #a01122;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Khand", sans-serif;
}

h1,
.h1,
.legacy_h1 {
    position: relative;
    font-size: calc(1.875rem + (45 - 30) * (100vw - 320px) / (1920 - 320));
}

h2,
.h2,
.legacy_h2 {
    font-size: calc(1.75rem + (40 - 28) * (100vw - 320px) / (1920 - 320));
}

h3,
.h3,
.legacy_h3 {
    font-size: calc(1.625rem + (35 - 26) * (100vw - 320px) / (1920 - 320));
}

h4,
.h4,
.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
.legacy_h4 {
    font-size: calc(1.5rem + (30 - 24) * (100vw - 320px) / (1920 - 320));
}

h5,
.h5,
.legacy_h5 {
    font-size: calc(1.375rem + (26 - 22) * (100vw - 320px) / (1920 - 320));
}

h6,
.h6,
.legacy_h6 {
    font-size: calc(1.25rem + (22 - 20) * (100vw - 320px) / (1920 - 320));
}

#newslinks,
#newsmandate {
    border: 1px solid #a01122;
}

/* ----------------------------------------------- news ----------------------------------------------- */

@media (min-width: 576px) {
    #news .newstitle .tabHeadline {
        display: inline-block;
        width: auto;
    }
}

#news .newscontent {
    padding: 70px 0 70px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #444444;
    position: relative;
    isolation: isolate;
}

@media (min-width: 576px) {

    #news .newscontent::before,
    #news .newscontent::after {
        content: "";
        position: absolute;
        bottom: 0;
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: contain;
        z-index: -1;
    }

    #news .newscontent::before {
        background-image: url(../img/kaktus-links.png);
        width: 13.0208vw;
        height: 7.3438vw;
        left: 0;
    }

    #news .newscontent::after {
        background-image: url(../img/kaktus-rechts.png);
        width: 12.7083vw;
        height: 9.2708vw;
        right: 0;
        background-position: bottom -5px center;
    }
}

#news .newscontent .tab_link_entries {
    display: flex;
    flex-wrap: wrap;
}

#news .newscontent .tab_link_entry {
    background-color: #fff;
    padding: 25px 20px;
    -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
    #news .newscontent .tab_link_entry {
        padding: 30px 25px;
    }
}

#news .newscontent .tab_link_entry {
    width: 100%;
}

@media (max-width: 575px) {
    #news .newscontent .tab_link_entry {
        margin-bottom: 10px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #news .newscontent .tab_link_entry {
        width: calc(50% - 10px);
    }

    #news .newscontent .tab_link_entry:nth-child(2) {
        margin-left: 10px;
    }

    #news .newscontent .tab_link_entry:last-child {
        width: calc(100% - 10px);
        margin-top: 10px;
        margin-left: 0px;
    }
}

@media (min-width: 768px) {
    #news .newscontent .tab_link_entry {
        width: calc(33.33% - 30px);
    }

    #news .newscontent .tab_link_entry:nth-child(n + 2) {
        margin-left: 30px;
    }
}

#news .newscontent {
    color: #444444;
    font-size: 1.125rem;
    font-weight: 400;
}

#news .newscontent .tab_link_title a {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
    color: #444444;
}

#news .newscontent .tab_link_date {
    font-style: italic;
}

#news .newscontent .tab_link_date {
    font-style: italic;
}

#news .tab_spacer {
    display: none;
}

/* Button */

#news .newscontent .tab_link {
    display: flex;
    flex-wrap: wrap;
}

@media (min-width: 576px) {
    #news .newscontent .tab_link>.tab_link_entries {
        flex: 0 0 88%;
        min-width: 88%;
    }

    #news .newscontent .tab_link>div:nth-child(2) {
        flex: 0 0 12%;
        min-width: 12%;
    }
}

@media (min-width: 992px) {
    #news .newscontent .tab_link>.tab_link_entries {
        flex: 0 0 92%;
        min-width: 92%;
    }

    #news .newscontent .tab_link>div:nth-child(2) {
        flex: 0 0 8%;
        min-width: 8%;
    }
}

#news .newscontent .tab_link>div:nth-child(2) .tab_link_mehr,
#news .newscontent .tab_link>div:nth-child(2) .tab_link_mehr a {
    font-size: 0px;
    height: 100%;
    color: #fff;
}

#news .newscontent .tab_link>div:nth-child(2) .tab_link_mehr a {
    display: block;
    position: relative;
    background-color: #0d3715;
    max-width: 100%;
    width: 100%;
}

@media (min-width: 1200px) {
    #news .newscontent .tab_link>div:nth-child(2) .tab_link_mehr {
        padding-left: 30px;
    }
}

#news .newscontent .tab_link>div:nth-child(2) .tab_link_mehr a::after {
    content: "\00BB";
    font-size: 60px;
    color: #fff;
    top: 50%;
    left: 50%;
    line-height: 38px;
    height: 50px;
    transform: translate(-50%, -50%);
    position: absolute;
    display: block;
    text-align: center;
    pointer-events: none;
}

@media (max-width: 575px) {

    #news .newscontent .tab_link>div:nth-child(2) .tab_link_mehr,
    #news .newscontent .tab_link>div:nth-child(2) .tab_link_mehr a {
        height: 60px;
        max-width: inherit;
    }
}

#news .newscontent .tab_link>div:nth-child(2) .tab_link_mehr a:hover,
#news .newscontent .tab_link>div:nth-child(2) .tab_link_mehr a:focus {
    background-color: #b50623;
}

/* -------------------------------------- tabHeadline with dekoration---------------------------------------- */

.tabHeadline {
    position: relative;
    font-size: calc(1.625rem + (35 - 26) * (100vw - 320px) / (1920 - 320));
    margin-bottom: 60px;
    text-align: center !important;
    width: fit-content;
}

.tabHeadline::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    height: 3px;
    background: #a01122;
    opacity: 1;
    z-index: 2;
}

/* ----------------------------------------------- tabs ----------------------------------------------- */

#tabs #special-tabs {
    padding: 80px 0 0 0;
}

#tabs #special-tabs strong,
#tabs #special-tabs b {
    font-size: 1.25rem;
}

#tabs #special-tabs .tabHeadline {
    margin-bottom: 60px;
    flex-grow: 0;
}

#tabs #special-tabs>div {
    gap: 30px;
    flex-wrap: wrap;
}

#tabs #special-tabs .tab {
    flex: 1 1 0;
    width: 0;
    min-width: 200px;
    z-index: 1;
}

#tabs #special-tabs .tab .tabContent {
    width: 100%;
}

@media (min-width: 1200px) {
    #tabs #special-tabs .tab {
        max-width: 370px;
    }

    #tabs #special-tabs>div {
        justify-content: space-between;
    }
}

#tabs #special-tabs .tabContent {
    padding: 55px 20px 25px 20px;
    -webkit-box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    position: relative;
    flex-grow: 1;
}

@media (min-width: 992px) {
    #tabs #special-tabs .tabContent {
        padding-left: 30px;
        padding-right: 30px;
    }
}

#tabs #special-tabs>.row>*:nth-child(1) .tab a {
    font-style: italic;
}

#tabs #special-tabs .iframetab .tabContent {
    padding: 0px;
}

#tabs #special-tabs>.row>*:nth-child(2) .tabHeadline::before,
#tabs #special-tabs>.row>*:nth-child(2) .tabHeadline::after {
    display: none;
}

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

@media (min-width: 768px) {

    #tabs #special-tabs .iframetab .row,
    #tabs #special-tabs .iframetab .row>div {
        position: static;
    }

    #tabs #special-tabs .iframetab iframe,
    #tabs #special-tabs .iframetab .iframe-wrapper-manual-enabling {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
}

#tabs #special-tabs #events {
    position: relative;
}

#tabs #special-tabs #events .tab_link_entry:nth-child(n + 2) {
    margin-top: 5px;
}

#tabs #special-tabs #events .tab_link_mandat a {
    color: #444444;
}

#tabs #special-tabs #events .tab_link_title a {
    color: #444444;
    font-weight: 600;
}

#tabs #special-tabs #events .tab_link_mehr,
#tabs #special-tabs #events .tab_link_mehr a {
    font-size: 0px;
}

#tabs #special-tabs #events .tab_link_mehr a::after {
    content: "Alle Veranstaltungen";
    position: absolute;
    color: #fff;
    background-color: #a01122;
    bottom: -25px;
    right: 15px;
    padding: 12px 25px;
    -webkit-transition: all 250ms linear;
    -moz-transition: all 250ms linear;
    -ms-transition: all 250ms linear;
    -o-transition: all 250ms linear;
    transition: all 250ms linear;
    font-size: 1rem;
    font-family: "Khand", serif;
}

#tabs #special-tabs #events .tab_link_mehr a:hover::after,
#tabs #special-tabs #events .tab_link_mehr a:focus::after {
    background-color: #b50623;
}

#tabs .tabsbannermodul {
    width: 100%;
    position: relative;
    margin-top: -150px;
    background-position: center;
    background-size: cover;
}

@media (max-width: 991px) {
    #tabs .tabsbannermodul {
        margin-top: -100px;
    }
}

@media (max-width: 767px) {
    #tabs .tabsbannermodul {
        margin-top: 20px;
    }
}

#tabs .tabsbannermodul::before {
    content: "";
    background: url(../img/kanten-overlay.png) no-repeat center top / contain;
    height: 105px;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
}

/* ----------------------------------------------- newsletter-wrapper ----------------------------------------------- */

#newsletter-wrapper {
    padding: 70px 0;
    color: #fff;
}

@media (min-width: 768px) {
    #newsletter-wrapper {
        padding-top: 270px;
    }
}

#newsletter-wrapper .tabHeadline {
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

#newsletter-wrapper .tabHeadline::after {
    background: #fff;
}

#newsletter-wrapper .tabContent a {
    color: #fff;
    text-decoration: underline;
}

/* ----------------------------------------------- newsletter ----------------------------------------------- */

#newsletterInputs {
    background: #fff;
    display: inline-block;
    position: relative;
    margin-top: 50px;
}

#newsletter_input {
    color: #444444;
    font-size: 16px;
    font-style: normal;
    background: transparent;
    font-weight: 300;
    border: 0;
    padding: 10px 30px;
    padding-right: 50px;
    width: 40.1042vw;
    min-width: fit-content;
    max-width: 100vw;
}

@media (max-width: 575px) {
    #newsletter_input {
        width: 90vw;
        min-width: 0;
    }
}

#newsletter_submit {
    background: url("../img/senden-icon.png") center no-repeat;
    width: 2.125rem;
    height: 1.6875rem;
    padding: 0;
    cursor: pointer;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    font-size: 0;
    transition: opacity 300ms linear;
    opacity: 0.6;
}

#newsletter_submit:hover {
    opacity: 1;
}

#newsletter_input::-ms-input-placeholder {
    color: #444444 !important;
}

#newsletter_input::-webkit-input-placeholder {
    color: #444444 !important;
}

#newsletter_input::-moz-placeholder {
    opacity: 1;
}

#newsletter_input:-moz-placeholder {
    opacity: 1;
}

/* ----------------------------------------------- footer ----------------------------------------------- */

footer {
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #ffffff;
    position: relative;
}

@media (max-width: 767px) {
    footer>.row>*+* {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: block;
}

#innerfooter a {
    color: #444444;
    text-decoration: none;
    display: inline-block;
    font-weight: 300;
}

#innerfooter a:hover,
#innerfooter a:focus {
    color: #a01122;
}

@media (min-width: 500px) {
    #innerfooter li {
        display: inline-block;
    }

    #innerfooter li+li::before {
        content: "•";
        margin: 0 15px;
        color: #444444;
    }
}

@media (min-width: 1200px) {
    #innerfooter li+li::before {
        margin: 0 25px;
    }
}

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

#vernetzt {
    text-align: left;
    font-size: 0.9375rem;
    color: #444444;
    line-height: 1.3;
    margin: 0 auto;
    font-weight: 400;
    text-decoration: none;
}

#vernetzt b {
    color: #a01122;
    font-weight: 400;
}

#vernetzt span {
    color: #444444;
}

#vernetzt span span {
    display: block;
}

#vernetzt img {
    margin-right: 18px;
}