@import url("https://fonts.verwaltungsportal.de/import/?family=Nunito+Sans:400,500,600,700");

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

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

.intro {
    background-color: #444444;
}

a {
    color: #c12121;
}

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

b, strong {
    font-weight: 700;
}

a:focus-visible {
    outline: 3px solid #c12121 !important;
}

button:focus-visible {
    outline: 3px solid #c12121 !important;
}

form:focus-visible,
#search:focus,
#search_input:focus-visible,
#search_submit:focus-visible,
#newsletter_input:focus-visible,
#newsletter_submit:focus-visible {
    border: 3px solid #c12121 !important;
}

#overflow {
    overflow: hidden;
}



.sticky-wrapper {
    order: 1;
}

#headerpic {
    order: 3;
}

main {
    order: 2;
}

footer {
    order: 4;
}

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

#logo {
    display: inline-block;
}

@media (min-width: 992px) {
    .is-sticky #logo {
        right: unset;
    }

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

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

#logo img {
    display: block;
}

@media (max-width: 991px) {
    #logo {
        position: absolute;
        top: -40px;
        z-index: 12;
        background: #ffffff;
        border-bottom: 5px solid #c12121;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
        padding: 10px 15px;
    }

    #logo img {
        max-width: 140px;
        width: 100%;
    }
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    #menu {
        padding: 40px 0;
        background: #ffffff;
    }

    .is-sticky #menu {
        position: relative !important;
    }

    #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: #444444;
        padding: 3px;
    }

    #burgerButton:before, #burgerButton:after, #burgerButtonInner {
        background-color: #ffffff;
        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 {
        padding: 20px 0;
        background-color: #ffffff;
        margin-bottom: 20px;
    }

    .navbar-collapse {
        top: 0;
        background: #ffffff;
        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: #444444;
        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);
    }
}

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

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

/* menu desktop */

@media (min-width: 992px) {
    #menu {
        background-color: #ffffff;
        padding: 11px 0;
    }

    .is-sticky #menu {
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    }

    nav.horizontally .navbar-nav {
        position: relative;
        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 .navbar-nav>li {
        flex-grow: 1;
    }

    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 .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 .nav .open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }
}

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

.navbar-default .navbar-nav>li {
    position: static;
}

.navbar-default .navbar-nav>li>a {
    color: #444444;
    font-weight: 700;
    text-align: left;
    padding: 10px 35px;
    position: relative;
    font-size: 1.15rem;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

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

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

@media (max-width: 991px) {
    .dropdown-toggle-button-wrapper {
        top: 6px;
    }

    .navbar-default .navbar-nav>li>a {
        padding-right: 55px;
        hyphens: auto;
    }
}

@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: #ffffff;
    background-color: #444444;
}

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

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

.navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    padding: 20px 0;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        padding: 15px;
    }
}

@media(min-width:992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: 12px;
        left: 50%;
        -moz-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    .navbar-default .navbar-nav>li>.dropdown-menu::after {
        content: "";
        position: absolute;
        top: -12px;
        left: 50%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 14px 12px 14px;
        border-color: transparent transparent #ffffff transparent;
        -moz-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

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

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

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

/* --------------------------------------------- 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: 700;
    text-align: left;
    padding: 9px 35px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

@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 {
        padding: 9px 25px;
    }
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu>li>a, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        hyphens: auto;
        padding-right: 55px;
    }
}

/* ------------------------------------------ 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 {
    background: transparent;
    color: #c12121;
}

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

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

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

@media (max-width: 991px) {

    body.intro .slider-wrapper,
    body.intro #slider {
        max-height: 300px;
    }
}

@media (max-width: 767px) {

    body.intro .slider-wrapper,
    body.intro #slider {
        max-height: 160px;
    }
}

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

    body.intro #slider,
    body.index #slider {
        max-height: 800px;
    }

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

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

    .theme-default .nivo-controlNav {
        bottom: unset !important;
        top: 30px;
    }
}

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

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

.slider-mask {
    display: none;
}

/* --------------------------------------------- dots -------------------------------------------- */

.slider-wrapper .nivo-controlNav a {
    width: 10px !important;
    height: 10px !important;
    text-indent: -9999px;
    border: 1px solid #444444 !important;
    background: #ffffff !important;
    border-radius: 0%;
    color: #ffffff;
}

.slider-wrapper .nivo-controlNav a.active,
.slider-wrapper .nivo-controlNav a:hover,
.slider-wrapper .nivo-controlNav a:focus {
    background: #c12121 !important;
    border: 1px solid #444444 !important;
}

.slider-wrapper .nivo-controlNav a+a {
    margin-top: 10px;
}

@media (max-width: 767px) {

    .slider-wrapper .nivo-controlNav a {
        display: inline-block;
    }

    .slider-wrapper .nivo-controlNav a+a {
        margin-top: 0;
        margin-left: 7px;
    }
}

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

@media (min-width: 992px) {
    #headerpic .nivo-directionNav a {
        background: #ffffff;
        width: 60px;
        height: 48px;
        -webkit-transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
        -moz-transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
        -ms-transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
        -o-transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
        transition: width 300ms linear, opacity 300ms linear, background 300ms linear;
    }

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

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

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

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

    #headerpic .nivo-directionNav a:hover::before,
    #headerpic .nivo-directionNav a:focus::before {
        background: #c12121 !important;
    }

    #headerpic .nivo-directionNav a::after {
        height: 8px;
        width: 8px;
        top: 50%;
        margin-top: -5px;
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: border-color 300ms linear;
        -moz-transition: border-color 300ms linear;
        -ms-transition: border-color 300ms linear;
        -o-transition: border-color 300ms linear;
        transition: border-color 300ms linear;
    }

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

    #headerpic a.nivo-prevNav::before {
        right: 16px;
    }

    #headerpic a.nivo-prevNav::after {
        right: 22px;
        border-left: 2px solid #000000;
        border-bottom: 2px solid #000000;
    }

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

    #headerpic a.nivo-nextNav::before {
        left: 16px;
    }

    #headerpic a.nivo-nextNav::after {
        left: 22px;
        border-right: 2px solid #000000;
        border-top: 2px solid #000000;
    }

    #headerpic .nivo-directionNav a:hover::after,
    #headerpic .nivo-directionNav a:focus::after {
        border-color: #c12121 !important;
    }

}

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

#bannerOverlay {
    z-index: 13;
    position: relative;
}

@media (min-width: 1200px) {
    #bannerOverlay {
        position: relative;
        bottom: -35px;
        right: 0;
        left: 0;
        z-index: 14;
    }

    .index #bannerOverlay {
        position: absolute;
        bottom: -28px;
    }
}

#bannerOverlay .bgStyler,
#bannerOverlay .bgContrast {
    background-color: #ffffff;
    padding-top: 18px;
    padding-bottom: 17px;
    height: 100%;
}

@media (max-width: 1199px) {

    #bannerOverlay .bgStyler,
    #bannerOverlay .bgContrast {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    @media (min-width: 1200px) {
        #bannerOverlay .bgContrast {
            margin-right: 8px;
        }
    }
}

@media (min-width: 1200px) {
    #bannerOverlay .bgContrast {
        border-left: 1px solid #e6e6e6;
    }
}

/* ------------------------------------------------ introOverlay ----------------------------------------------- */

#introOverlay {
    z-index: 13;
    position: relative;
}

@media (min-width: 1200px) {
    #introOverlay {
        position: absolute;
        bottom: 30px;
        right: 0;
        left: 0;
        z-index: 14;
    }

    #introOverlay>.row>*:first-child {
        margin-bottom: 70px;
    }
}

.startHeadline {
    font-size: 5rem;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 700;
    background-color: rgba(68, 68, 68, 0.6);
    display: inline-block;
    padding: 5px 20px;
    box-shadow: -15px 15px 0px 0px rgba(255, 0, 0, 0.6);
    -webkit-box-shadow: -15px 15px 0px 0px rgba(255, 0, 0, 0.6);
    -moz-box-shadow: -15px 15px 0px 0px rgba(255, 0, 0, 0.6);
    width: 100%;
}

@media (max-width: 1199px) {
    #introOverlay {
        padding-bottom: 30px;
    }

    #introOverlay>.row>*:first-child {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .startHeadline {
        font-size: 3.125rem;
        background-color: rgb(68, 68, 68);
        box-shadow: -15px 15px 0px 0px rgba(255, 0, 0, 1);
        -webkit-box-shadow: -15px 15px 0px 0px rgba(255, 0, 0, 1);
        -moz-box-shadow: -15px 15px 0px 0px rgba(255, 0, 0, 1);
    }

    .introTab {
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    .startHeadline {
        font-size: 1.875rem;
        box-shadow: -10px 10px 0px 0px rgba(255, 0, 0, 1);
        -webkit-box-shadow: -10px 10px 0px 0px rgba(255, 0, 0, 1);
        -moz-box-shadow: -10px 10px 0px 0px rgba(255, 0, 0, 1);
    }

    #introOverlay>.row>*:last-child {
        margin-top: 30px;
    }
}

.introTab {
    background-color: #ffffff;
    padding: 20px 20px 30px 20px;
    height: 100%;
    color: #444444;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.2;
}

.introTab h1,
.introTab h2,
.introTab h3,
.introTab h4,
.introTab h5,
.introTab h6 {
    text-transform: uppercase;
    margin: 0;
    font-size: 1.875rem;
    font-weight: 700;
}

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

#style span {
    display: inline-block !important;
    margin-top: 30px;
    line-height: 1;
    font-size: 18px;
}

#style {
    font-size: 0;
}

#style button {
    font-size: 18px;
    background: #e0e0e0;
    padding: 0;
    border: none;
    color: #444444;
    display: inline-block;
    width: 40px;
    height: 40px;
    font-weight: 400;
    text-align: center;
    position: relative;
    line-height: 1;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    overflow: hidden;
}

#style button+button {
    margin-left: 8px;
}

#style button::before {
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    background-color: #c12121;
    height: 5px;
    width: 100%;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    opacity: 0;
}

#style button:hover:before,
#style button:focus:before {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

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

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

#contrast_style span {
    display: block !important;
    margin-top: 30px;
    line-height: 1;
    font-size: 18px;
}

#contrast_style {
    position: relative;
    font-size: 0;
}

#contrast_style button {
    padding: 5px;
    border: none;
    display: inline-block;
    line-height: 0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
    background: #d2d2d2;
    position: relative;
    top: -1px;
    height: 40px;
}

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

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

.bgContrast {
    background: #ffffff;
    padding-top: 25px;
    padding-bottom: 25px;
}

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

#bannerOverlay #searchContainer {
    background: rgb(144, 36, 36);
    background: linear-gradient(90deg, rgba(144, 36, 36, 1) 0%, rgba(193, 33, 33, 1) 100%);
    height: 100%;
}

#bannerOverlay #suche {
    padding-top: 37px;
    padding-bottom: 38px;
}

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

#suche.tab {
    color: #ffffff;
    position: relative;
    line-height: 1.2;
    z-index: 12;
    font-size: 18px;
}

#suche.tab::before {
    content: '';
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    background-image: url('../img/icon-suche.png');
    background-position: center;
    background-repeat: no-repeat;
}

#suche strong, #suche b {
    font-size: 25px;
}

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

@media (min-width: 992px) {

    #searchContainer:hover>#suchfeld,
    #searchContainer:focus-within>#suchfeld {
        opacity: 1;
        -webkit-transform: translate(0, 100%);
        transform: translate(0, 100%);
        width: 300px;
    }
}

@media (min-width: 1200px) {

    #searchContainer:hover>#suchfeld,
    #searchContainer:focus-within>#suchfeld {
        opacity: 1;
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
}

#bannerOverlay #suchfeld {
    background-color: #ffffff;
    padding: 18px 15px 17px 20px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 100%;
}

@media (max-width: 991px) {
    #bannerOverlay #suchfeld {
        padding: 80px 30px 85px 30px;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 767px) {
    #bannerOverlay #suchfeld {
        left: 0;
    }
}

@media (max-width: 991px) {
    #searchContainer>#suchfeld {
        opacity: 1;
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
}

@media (max-width: 767px) {

    #searchContainer>#suchfeld {
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }
}

#search {
    min-height: 35px;
    background: #ffffff;
    display: inline-block;
    position: relative;
    border-bottom: 1px solid #c12121;
}

@media (max-width: 767px) {
    #search {
        width: 100%;
    }
}

#search_input {
    color: #444444;
    font-size: 16px;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 35px;
    padding-left: 10px;
    padding-right: 43px;
    height: 35px;
    width: 100%;
}

#search_submit {
    width: 35px;
    background: url('../img/icon-arrow-rot.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 35px;
    border: none;
    position: absolute;
    top: 0;
    right: 2px;
    height: 100%;
    font-size: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

#search_submit:hover,
#search_submit:focus {
    transform: translate(5px, 0px);
    -webkit-transform: translate(5px, 0px);
    -moz-transform: translate(5px, 0px);
}

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

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

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

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

/* ------------------------------------------------ greenButton ----------------------------------------------- */

.greenButton a {
    background-color: #c12121;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    position: relative;
    padding: 9px 50px 9px 20px;
    display: inline-block;
}

.greenButton a+a {
    margin-top: 32px;
}

.greenButton a::after {
    content: '\2192';
    right: 25px;
    top: 9px;
    bottom: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    position: absolute;
}

.greenButton a:hover::after,
.greenButton a:focus::after {
    right: 15px;
}

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

main {
    text-align: left;
}

#tickerWrapper {
    padding-top: 30px;
}

.index #tickerWrapper {
    padding-top: 60px;
}

@media (max-width: 767px) {
    #tickerWrapper {
        padding-top: 30px;
    }
}

#tickerWrapper hr {
    margin-top: 8px;
    margin-bottom: 0;
}



.index {
    padding-top: 0;
    border-top: unset;
}

.newsticker,
.newsticker a {
    margin: 0;
    color: #c12121;
}

#content {
    padding-bottom: 30px;
    padding-top: 30px;
}

.index #content {
    padding-bottom: 30px;
    padding-top: 30px;
}

@media (min-width: 992px) {
    #content {
        padding-bottom: 60px;
        padding-top: 30px;
    }



    .index main {
        background: url('../img/haende-halten.png') top -80px right 180px no-repeat;
    }
}

/* ------------------------------------------------ newsletterBox ----------------------------------------------- */

#newsletterBox {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    background-color: #000000;
}

#newsletterBox::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 50%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
    #newsletterBox::before {
        left: 25px;
        bottom: 25px;
        top: 25px;
    }
}

#newsletterBox .tab {
    padding: 90px 25px 52px 25px;
    color: #ffffff;
}

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

#newsletterBox .tab a {
    color: #ffffff;
}

#newsletterBox h1,
#newsletterBox h2,
#newsletterBox h3,
#newsletterBox h4,
#newsletterBox h5,
#newsletterBox h6 {
    color: #ffffff;
}

#newsletterInputs {
    min-height: 50px;
    background: #ffffff;
    display: inline-block;
    position: relative;
    width: 100%;
    margin-top: 40px;
}

#newsletter_input {
    color: #444444;
    font-size: 16px;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 50px;
    padding-left: 30px;
    padding-right: 45px;
    height: 50px;
    width: 100%;
}

#newsletter_submit {
    width: 70px;
    background: url('../img/newsletter-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 50px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

#newsletter_submit:hover {
    transform: translate(-10px, 0px);
    -webkit-transform: translate(-10px, 0px);
    -moz-transform: translate(-10px, 0px);
}

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

/* ------------------------------------------------ events ----------------------------------------------- */

#events {
    padding-top: 55px;
    position: relative;
}

@media (min-width: 768px) {
    #events::before {
        content: '';
        left: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        pointer-events: none;
        width: 100%;
        height: 500px;
        background-color: #e0e0e0;
    }

    #events::after {
        content: '';
        position: absolute;
        pointer-events: none;
        right: 0;
        top: 0;
        bottom: 0;
        left: 0;
        background: url('../img/finger-eingehakt.png') top 155px right no-repeat;
        z-index: -1;
    }
}

@media (min-width: 1500px) {
    #events::before {
        width: 75%;
    }
}

@media (max-width: 767px) {
    #events {
        background-color: #e0e0e0;
        padding-bottom: 60px;
    }
}

#events .tabContent h1,
#events .tabContent h2,
#events .tabContent h3,
#events .tabContent h4,
#events .tabContent h5,
#events .tabContent h6 {
    font-weight: 400;
    margin-bottom: 0;
    color: #c12121;
    font-size: 2.1875rem;
}

#events strong, #events b {
    color: #c12121 !important;
}

@media (min-width: 576px) {
    #events .tab_link_entries {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

#events .tab_link_entry {
    font-size: 1rem;
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 200px 30px 30px 30px;
    box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
    -webkit-box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
    -moz-box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
    border: none !important;
}

#events .tab_link_entries {
    counter-reset: section;
}

#events .tab_link_entry::before {
    counter-increment: section;
    content: "0"counter(section);
    font-size: 100px;
    font-weight: 700;
    pointer-events: none;
    position: absolute;
    color: #444444;
    line-height: 1;
    top: -64px;
    left: 30px;
    opacity: 0.3;
}

.contrast_light_font #events .tab_link_entry::before {
    color: #ffffff !important;
}

#events .tab_link {
    margin-top: 110px;
}

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

@media (min-width: 768px) {
    #events .tab_link_entry {
        width: calc(33.33% - 20px);
    }

    #events .tab_link_entry+.tab_link_entry {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    #events .tab_link_entry+.tab_link_entry {
        margin-top: 85px;
    }
}

#events .tab_link_title a {
    line-height: 1.2;
    font-weight: 700;
    font-size: 1.375rem;
    display: block;
    margin-bottom: 20px;
    color: #444444;
}

@media (max-width: 991px) {
    #events .tab_link_title a {
        font-size: 1.125rem;
    }
}

#events .tab_link_title a::before,
#events .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    overflow: hidden;
}

#events .tab_link_title a::before {
    content: "";
    background: url('../img/events-platzhalterbild.jpg') center / cover no-repeat, #e0e0e0;
}

#events .tab_preview_picture {
    background: #ffffff;
}

#events .tab_preview_picture img {
    position: absolute;
    margin: 0 !important;
    left: 50%;
    top: 50%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    max-width: 370px;
    width: auto;
    height: auto;
    -ms-interpolation-mode: bicubic;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#events .tab_link_date {
    font-size: 1rem;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 1;
    display: inline-block;
    padding: 8px 40px;
    background: #ffffff;
    color: #c12121;
}

#events .vorschau {
    color: #444444;
    opacity: 1 !important;
}

#events .tab_link_entries+div,
#events .tab_link_entries .tab_spacer,
#events .tab_link_entry>div:nth-last-child(2) {
    display: none;
}

#events .greenButton p:last-child {
    text-align: right;
}

@media (max-width: 767px) {
    #events .greenButton p:last-child {
        text-align: left;
    }
}

@media (max-width: 767px) {
    #events .greenButton a {
        margin-top: 10px;
    }
}

#events .tab_link_mandat {
    display: none;
}

/* ------------------------------------------------ matter ----------------------------------------------- */

#matter {
    padding-bottom: 80px;
    padding-top: 66px;
}

@media (max-width: 767px) {
    #matter {
        padding-top: 40px;
        padding-bottom: 22px;
    }
}

/* ------------------------------------------------ road ----------------------------------------------- */

#road {
    position: relative;
    margin-top: 40px;
}

#road .roadHeadline h1,
#road .roadHeadline h2,
#road .roadHeadline h3,
#road .roadHeadline h4,
#road .roadHeadline h5,
#road .roadHeadline h6 {
    font-weight: 400;
    margin-bottom: 0;
    color: #ffffff;
    padding-top: 42px;
    padding-bottom: 35px;
    font-size: 1.875rem;
}

#road .roadHeadline,
#road .roadHeadline strong,
#road .roadHeadline b {
    color: #ffffff !important;
}

#road::before {
    content: '';
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    pointer-events: none;
    width: 880px;
    height: 200px;
    background: rgb(144, 36, 36);
    background: linear-gradient(90deg, rgba(144, 36, 36, 1) 0%, rgba(193, 33, 33, 1) 100%);
}

@media (min-width: 768px) {
    #road::before {
        width: 73vw;
        height: 200px;
    }
}

@media (min-width: 992px) {
    #road::before {
        width: 1345px;
    }

}

#road .tabHeadline {
    color: #ffffff;
    padding-top: 42px;
    padding-bottom: 30px;
    margin: 0;
}

.roadBox {
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
    -webkit-box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
    -moz-box-shadow: 0px 0px 20px 10px rgba(37, 37, 37, 0.1);
    position: relative;
    z-index: 12;
}

.roadBox .tab {
    padding: 40px 20px;
}

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

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

h1, .h1, .legacy_h1 {
    font-size: 2.1875rem;
}

@media (min-width: 992px) {
    h1, .h1, .legacy_h1 {
        font-size: 2.8125rem;
    }
}

h2, .h2, .legacy_h2 {
    font-size: 1.875rem;
}

@media (min-width: 992px) {
    h2, .h2, .legacy_h2 {
        font-size: 2.5rem;
    }
}

h3, .h3, .legacy_h3 {
    font-size: 1.6rem;
}

h4, .h4, .h4link a:link, .h4link a:hover, .h4link a:focus, .h4link a:visited, .legacy_h4 {
    font-size: 1.5rem;
}

h5, .h5, .legacy_h5 {
    font-size: 1.4rem;
}

h6, .h6, .legacy_h6 {
    font-size: 1.3rem;
}

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

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

footer {
    background-color: #444444;
    color: #ffffff;
}

@media (max-width: 767px) {
    footer .row>.col-xs-12:not(:first-child)::before {
        background: #ffffff;
        content: " ";
        height: 1px;
        width: 100%;
        display: block;
        margin: 25px 0;
        opacity: 0.2;
    }

    footer .row>.col-xs-12.hidden-xs~.col-xs-12::before, footer .row>.col-xs-12.hidden-sm~.col-xs-12::before {
        display: none;
    }
}

/* ----------------------------------------------- footerwrapper ----------------------------------------------- */

#footerwrapper {
    padding-top: 80px;
    padding-bottom: 50px;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
}

.index #footerwrapper {
    padding-top: 45px;
}

#footerwrapper::before {
    content: '';
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 645px;
    height: 100%;
}

#footerwrapper .tabHeadline {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 35px;
}

#footerwrapper a {
    color: #ffffff;
}

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

@media (min-width: 768px) and (max-width:991px) {

    #footerwrapper>.row>div:first-child,
    #footerwrapper>.row>div:nth-child(2) {
        margin-bottom: 30px;
    }
}

/* --------------- counter --------------- */

#counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    background-color: #c12121;
    color: #ffffff;
    padding: 9px 30px;
    font-size: 0.875rem;
}

#counter span {
    font-weight: 700;
}

/* --------------- scrollTopBtn --------------- */

a#scrollTopBtn {
    background-color: #c12121;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    position: relative;
    padding: 9px 62px 9px 32px;
    display: inline-block;
    margin-bottom: 32px;
    width: 100%;
}

a#scrollTopBtn::before {
    content: '\2191';
    right: 30px;
    top: 8px;
    bottom: 0;
    position: absolute;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    font-size: 20px;
}

a#scrollTopBtn:hover::before,
a#scrollTopBtn:focus::before {
    top: 2px;
}

/* ----------------------------------------------- lastFooter ----------------------------------------------- */

#lastFooter {
    border-top: 2px solid #fefefe;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #444444;
}

.intro #lastFooter {
    border: unset;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    font-size: 0.875rem;
    padding: 15px;
}

#innerfooter a:hover,
#innerfooter a:focus {
    background-color: #c12121;
}

@media (max-width: 767px) {
    #innerfooter li {
        display: block;
        text-align: center;
        padding: 5px;
        margin: 0;
    }

    #innerfooter a {
        display: block;
    }
}

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

#vernetzt {
    text-align: right;
    font-size: 0.875rem;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 auto;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
}

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

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

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

.contrast_light main,
.contrast_dark main {
    filter: none;
    background: none;
}

.contrast_dark #contrast_style button {
    background: rgb(212, 212, 212) !important;
    border: none !important;
}

.contrast_light #contrast_style button {
    background: rgb(53, 53, 53) !important;
    border: none !important;
}

.contrast_dark #logo img {
    background: #ffffff;
}

.contrast_light_font #search_input {
    color: #000000 !important;
}

.contrast_dark_font #suche.tab::before {
    filter: brightness(0%);
    -webkit-filter: brightness(0%);
    -moz-filter: brightness(0%);
}

#newsletterBox .contrast_dark_font {
    color: #ffffff !important;
}

.contrast_dark_font #newsletter_input {
    color: #000000 !important;
}

.contrast_dark_font #vernetzt img {
    background-color: #000000;
}

.contrast_dark_font .searchbar,
.contrast_dark_font #bannerOverlay {
    background-color: #ffffff !important;
}

.contrast_dark .navbar {
    background: rgba(0, 0, 0, 0) !important;
}

.contrast_dark_font #road .roadHeadline,
.contrast_dark_font #road .roadHeadline h1,
.contrast_dark_font #road .roadHeadline h2,
.contrast_dark_font #road .roadHeadline h3,
.contrast_dark_font #road .roadHeadline h4,
.contrast_dark_font #road .roadHeadline h5,
.contrast_dark_font #road .roadHeadline h6 {
    color: #ffffff !important;
}

.tab_link_title .contrast_grayscale {
    filter: none !important;
}

.contrast_dark_font #burgerButton::before,
.contrast_dark_font #burgerButton::after,
.contrast_dark_font #burgerButtonInner {
    background-color: #000000 !important;
}

.contrast_light_font #burgerButton::before,
.contrast_light_font #burgerButton::after,
.contrast_light_font #burgerButtonInner {
    background-color: #ffffff !important;
}