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

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

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

a {
    color: #307ba6;
}

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


b,
strong {
    font-weight: 700;
}

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

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

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

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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


@media (min-width: 768px) {
    #logoBar {
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: 155px;
        pointer-events: none;
        z-index: 12;
    }
}

@media (max-width: 767px) {
    #logoBar {
        padding: 8px 0;

    }
}


#logoBar #logo {
    pointer-events: all;
}

.welcome {
    color: #fff;
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 700;
}

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

/* burgermenu for tablet */

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

    .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: #307ba6;
        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: #fff;
        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: #307ba6;
        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: 15px 0;
        border-bottom: 1px solid #e6e6e6;
    }

    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 li[class*="toplevel"]>ul {
        display: flex !important;
        flex-wrap: wrap;
        pointer-events: none;
        position: absolute;
        opacity: 0;
        top: auto;
        left: 0px;
        right: 0;
        z-index: 1000;
        padding: 30px 42px;
        -ms-transform-origin: top center;
        -webkit-transform-origin: top center;
        transform-origin: top center;
        -webkit-transition: top 300ms linear, opacity 300ms linear;
        -moz-transition: top 300ms linear, opacity 300ms linear;
        -ms-transition: top 300ms linear, opacity 300ms linear;
        -o-transition: top 300ms linear, opacity 300ms linear;
        transition: top 300ms linear, opacity 300ms linear;
        width: 1170px;
        overflow-y: auto;
        max-height: 60vh;

    }

    li[class*="end"],
    li[class*="start"] {
        display: none !important;
    }


    nav.horizontally li[class*="toplevel"]>ul .mCSB_container {
        width: 100%;
        column-count: 3;
        column-gap: 30px;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
        top: auto;
        z-index: 1003;
    }

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

    .nav li[class*="toplevel"].open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }

    nav.horizontally li[class*="secondlevel"] {
        margin-bottom: 15px;
        padding-bottom: 6px;
        border-bottom: 1px solid #e6e6e6;
    }


    /* Fade in Hover Start */
    .navbar-default .navbar-nav li[class*="toplevel"]>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul {
        display: block !important;
        pointer-events: none;
        break-inside: avoid;
        page-break-inside: avoid;
        -webkit-column-break-inside: avoid;
    }

    .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: 1 !important;
    }

    /* Pseudo */

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

    /* Fade in Hover End */

    nav.horizontally li[class*="secondlevel"] {
        float: none;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
        display: block;
    }
}

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

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

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

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

    .navbar-default .navbar-nav>li>a {
        padding: 20px 1px;
        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;
    }
}

@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: #307ba6;
}

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

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a[title*="Startseite"] {
        font-size: 0px;
        background: url(../img/icon-home.png) no-repeat center;
        width: 23px;
        height: 20px;
        display: block;
        margin: auto;
    }

}



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

.navbar-default .navbar-nav>li>.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    }

}

@media (max-width: 991px) {
    .navbar-default li[class*="firstlevel"]>.dropdown-menu {
        padding: 15px 15px 15px 35px;
    }

    .navbar-default li[class*="secondlevel"]>.dropdown-menu {
        margin-bottom: 8px;
    }

    .dropdown-toggle-button::after,
    .dropdown-toggle-button::before {
        background: #307ba6 !important;
    }
}

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

.navbar-default .navbar-nav>li>.dropdown-menu>li,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li {
    line-height: 20px;
    text-align: left;
}


.navbar-default li[class*="secondlevel"]>a {
    color: #252525;
    font-weight: 700;
    padding: 0 0 10px 10px;
    display: inline-block;
    position: relative;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (min-width: 992px) {
    .navbar-default li[class*="secondlevel"]>a {
        padding: 0 0 10px 0;
    }
}

.navbar-default li[class*="thirdlevel"]>a {
    color: #252525;
    font-weight: 400;
    padding: 8px 20px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    left: 0;
}

@media (min-width: 992px) {
    .navbar-default li[class*="thirdlevel"]>a {
        padding: 7px 0;
    }
}

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


.navbar-default li[class*="secondlevel"]:focus-within>a,
.navbar-default li[class*="secondlevel"]:hover>a,
.navbar-default li[class*="secondlevel"]>a:hover,
.navbar-default li[class*="secondlevel"]>a:focus,
.navbar-default li[class*="secondlevel"].open>a,
.navbar-default li[class*="secondlevel"].open>a:hover,
.navbar-default li[class*="secondlevel"].open>a:focus,
.navbar-default li[class*="secondlevel"][class$="_over"]>a,
.navbar-default li[class*="secondlevel"][class$="_over"]>a:hover,
.navbar-default li[class*="secondlevel"][class$="_over"]>a:focus {
    background: transparent;
    color: #307ba6;
}


.navbar-default li[class*="thirdlevel"]:focus-within>a,
.navbar-default li[class*="thirdlevel"]>a:hover,
.navbar-default li[class*="thirdlevel"]>a:focus,
.navbar-default li[class*="thirdlevel"].open>a,
.navbar-default li[class*="thirdlevel"].open>a:hover,
.navbar-default li[class*="thirdlevel"].open>a:focus,
.navbar-default li[class*="thirdlevel"][class$="_over"]>a,
.navbar-default li[class*="thirdlevel"][class$="_over"]>a:hover,
.navbar-default li[class*="thirdlevel"][class$="_over"]>a:focus {
    background: transparent;
    color: #307ba6;
}

@media (min-width: 992px) {

    .navbar-default li[class*="thirdlevel"]:focus-within>a,
    .navbar-default li[class*="thirdlevel"]>a:hover,
    .navbar-default li[class*="thirdlevel"]>a:focus,
    .navbar-default li[class*="thirdlevel"].open>a,
    .navbar-default li[class*="thirdlevel"].open>a:hover,
    .navbar-default li[class*="thirdlevel"].open>a:focus,
    .navbar-default li[class*="thirdlevel"][class$="_over"]>a,
    .navbar-default li[class*="thirdlevel"][class$="_over"]>a:hover,
    .navbar-default li[class*="thirdlevel"][class$="_over"]>a:focus {
        background: transparent;
        color: #307ba6;
        left: 20px;
    }
}

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

#slider .nivo-main-image,
#slider {
    height: 300px !important;
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {

    #slider .nivo-main-image,
    #slider {
        height: 500px !important;
    }

    body.index #slider .nivo-main-image,
    body.index #slider {
        height: 550px !important;
    }

    #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: block;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.7) 100%);
}



@media (min-width: 992px) {

    #headerpic #nivo-crtlbtn {
        margin-bottom: 3px;
    }

    #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: #307ba6;
    }

    #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: #307ba6;
        -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: #fff;
    }

    #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 .nivo-directionNav a:hover::after,
    #headerpic .nivo-directionNav a:focus::after {
        border-color: #ffffff;
    }

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

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

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

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

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

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



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

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

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

@media (max-width: 767px) {
    #slider .nivo-directionNav {
        display: none !important;
    }

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

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


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

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

#bannerOverlay>.row::before {
    content: '';
    width: 50vw;
    left: -50vw;
    pointer-events: none;
    display: block;
    background: rgba(48, 123, 166, 0.85);
    top: 0px;
    position: absolute;
    top: 0px;
    height: 100%;
}

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

#bannerOverlay .bgStyler,
#bannerOverlay .bgContrast {
    background-color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
    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;
    }
}

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

#style span {
    display: inline-block !important;
    margin-top: 30px;
    line-height: 1;
    font-size: 1.125rem;
    width: 100%;
}

#style {
    font-size: 0;
}

#style button {
    font-size: 18px;
    background: #307ba6;
    padding: 0;
    border: none;
    color: #ffffff;
    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: #4787ca;
    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 {
    background: #164f6f;
}


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

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

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

#contrast_style2 button,
#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: #cbcbcb;
    position: relative;
    top: -1px;
    height: 40px;
}

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

#contrast_style2 button:hover,
#contrast_style2 button:focus,
#contrast_style button:hover,
#contrast_style button:focus {
    border-color: #859ba6;
}

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

/* ----------------------- search ----------------------- */
#bannerOverlay #searchContainer {
    background: rgb(0, 66, 97);
    background: linear-gradient(90deg, #185374 0%, #2f79a4 100%);
}

#bannerOverlay #suche {
    padding-top: 50px;
    padding-bottom: 20px;
}

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

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

#suche strong,
#suche b {
    font-size: 1.5625rem;
}

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

@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: rgba(255, 255, 255, 0.95);
    padding: 50px 30px 59px 30px;
    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;
    }

    #bannerOverlay #suchfeld {
        position: relative;
    }
}

@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: transparent;
    display: inline-block;
    position: relative;
    border-bottom: 1px solid #4787ca;
}

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

#search_input {
    color: #252525;
    font-size: 1rem;
    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-serach.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_input::-ms-input-placeholder {
    color: #252525 !important;
}

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

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

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

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

.greenButton a {
    background-color: #307ba6;
    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;
}

/* ------------------------------------------------ themes ----------------------------------------------- */

#themes {
    position: relative;
    padding-top: 60px;
}

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


#themes .themesTab2 h1,
#themes .themesTab2 h2,
#themes .themesTab2 h3,
#themes .themesTab2 h4,
#themes .themesTab2 h5,
#themes .themesTab2 h6 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 1rem;
    position: relative;
    pointer-events: none;
}

#themes .themesTab2 h1::before,
#themes .themesTab2 h2::before,
#themes .themesTab2 h3::before,
#themes .themesTab2 h4::before,
#themes .themesTab2 h5::before,
#themes .themesTab2 h6::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.themesTab2 {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    padding-top: 278px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #ffffff;
    font-size: 1.1875rem;
    line-height: 1.2;
    background-color: #004261;
    pointer-events: none;
    height: 100%;
}

@media (max-width: 991px) {
    #themes .themesTab2 .tabHeadline {
        font-size: 1.0625rem;
    }

    .themesTab2 {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    #themes .tab {
        margin-top: 30px;
        height: unset;
    }
}

.themesTab2::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: rgb(0, 66, 97);
    background: linear-gradient(0deg, rgba(0, 66, 97, 1) 0%, rgba(0, 133, 113, 0.2) 50%, rgba(0, 133, 113, 0) 100%);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}



@media (max-width: 991px) {
    .themesTab2::after {
        height: 160px;
    }
}


.themesTab2 a img {
    position: absolute;
    z-index: -2;
    pointer-events: all;
    object-fit: cover;
    top: -280px;
    bottom: -20px;
    left: -20px;
    right: -20px;
    display: block;
    min-height: 400px;
    width: calc(100% + 40px);
    max-width: unset;
}

.themesTab2 p:not(.has-image):not([rel]) {
    word-wrap: break-word;
    max-width: 330px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.themesTab2 .tabContent:not(.has-image):not([rel]) {
    padding: 0 20px 30px 20px;
    position: relative;
}


.themesTab2 a:not(.has-image):not([rel]) {
    color: #fff;
}

.themesTab2 strong,
.themesTab2 b {
    font-weight: 400;
}

.themesTab2 strong::after,
.themesTab2 b::after {
    content: '';
    width: 18px;
    height: 8px;
    display: inline-block;
    background: url(../img/icon-arrow-white.png) no-repeat left center;
    margin-left: 10px;
}


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


#tickerWrapper,
#tickerWrapper a {
    color: #307ba6;
    font-size: 1.125rem;
    font-weight: 700;
}

#tickerWrapper hr {
    margin-top: 15px;
}

main {
    text-align: left;
}

#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: 60px;
    }

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

/* ------------------------------------------------ parallax ----------------------------------------------- */

#parallax {
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ------------------------------------------------ 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: 350px;
        background-color: #164f6f;
    }
}

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

@media (max-width: 767px) {
    #events {
        background-color: #164f6f;
        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: #ffffff;
    background-color: #164f6f;
    font-size: 2.1875rem;
}

#events strong,
#events b {
    color: #ffffff !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: #ffffff;
    line-height: 1;
    top: -64px;
    left: 30px;
}

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

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

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

#events .tab_link_entry::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_entry::before {
    content: "";
    background: url('../img/events-platzhalterbild.jpg') center / cover no-repeat, #008571;
}

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

#events .vorschau {
    color: #252525;
    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;
    }
}

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

#matter {
    padding-bottom: 40px;
    padding-top: 90px;
}

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

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

#news {
    padding-top: 80px;
    padding-bottom: 42px;
}

@media (min-width: 1200px) {
    #news {
        background-image: url('../img/skyline.png');
        background-position: right bottom -70px;
        background-repeat: no-repeat;
    }
}

#news h1,
#news h2,
#news h3,
#news h4,
#news h5,
#news h6 {
    font-weight: 400;
    margin-bottom: 0;
    font-size: 2.1875rem;
}



#news .tab_link_entry {
    font-size: 1rem;
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 35px 30px 35px 300px;
    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;
}

@media (max-width: 767px) {
    #news .tab_link_entry {
        padding: 250px 30px 35px 30px;
    }
}

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

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

@media (min-width: 1200px) {
    #news .tab_link_entry {
        width: calc(50% - 20px);
    }

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

    #news .tab_link_entry:nth-child(3) {
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1199px) {
    #news .tab_link_entry {
        width: 100%;
    }

    #news .tab_link_entry+.tab_link_entry {
        margin-top: 30px;
    }
}

#news .tab_link_title a {
    margin-bottom: 25px;
    display: block;
    color: #252525;
    font-weight: 700;
    font-size: 1.25rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-wrap: break-word;
}

#news .tab_link_entry::before,
#news .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    /* height: 180px; */
    overflow: hidden;
    width: 270px;
}

@media (max-width: 767px) {

    #news .tab_link_entry::before,
    #news .tab_link_entry .tab_preview_picture {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        right: 0;
        bottom: unset;
        height: 180px;
        overflow: hidden;
        width: 100%;
    }
}

#news .tab_link_entry::before {
    content: "";
    background: url('../img/news-platzhalterbild.jpg') center / cover no-repeat, #004261;
}

#news .tab_preview_picture {
    background: #ffffff;
}

#news .tab_preview_picture img {
    position: absolute;
    margin: 0 !important;
    left: 50%;
    top: 50%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    max-width: 270px;
    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%);
}

#news .tab_date {
    position: absolute;
    top: 0;
    left: 200px;
    bottom: 0;
    margin: auto;
    width: 85px;
    height: 85px;
    background-color: #164f6f;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    word-break: break-word;
    text-align: center;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    z-index: 12;
}

@media (max-width: 767px) {
    #news .tab_date {
        right: 0;
        display: inline-block;
        left: 0;
        bottom: unset;
        top: 145px;
    }
}

#news .tab_date::before {
    content: '';
    top: -9px;
    right: -9px;
    bottom: -9px;
    left: -9px;
    position: absolute;
    border: 2px solid #ffffff;
    pointer-events: none;
}

#news .vorschau {
    color: #252525;
    opacity: 1 !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

#news .tab_link_mehr,
#news .tab_link_mandat,
#news .tab_spacer {
    display: none;
    height: 0;
}

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

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

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

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

#road {
    position: relative;
    padding-bottom: 60px;
}

#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 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(0, 66, 97);
    background: linear-gradient(90deg, #185374 40%, #2f7aa4 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);
    padding: 40px 20px;
}

@media (min-width: 1200px) {
    .roadBox {
        font-size: 1.5625rem;
    }
}

@media (min-width: 768px) {
    .roadBox .btgrid .row>div:nth-child(2) {
        border-left: 1px solid #e6e6e6;
        border-right: 1px solid #e6e6e6;
    }
}

.roadBox img:hover {
    filter: grayscale(0.3);
    transition: all 300ms;
}

.roadBox a {
    color: #252525;
    text-decoration: none;
}

/* ------------------------------------------------ sponsorBox ----------------------------------------------- */

#sponsorBox {
    padding-top: 20px;
    padding-bottom: 40px;
}

#sponsorBox .sponsorHeadline :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 400;
    margin-bottom: 0;
    color: #307ba6;
    padding-top: 42px;
    padding-bottom: 15px;
    font-size: 1.875rem;
}

#sponsorBox .sponsorHeadline :is(b, strong) {
    color: #307ba6 !important;
}

#sponsorBox .sponsorHeadline .btgrid>.row {
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 1200px) {
    #sponsorBox .sponsorHeadline .btgrid>.row>* {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

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

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
    color: #307ba6;
    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 #004261;
}

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

footer {
    background: #307ba6;
    color: #ffffff;
}

#footerwrapper>.row>div:nth-last-child(1) {
    background: url(../img/wappen-wasserzeichen.png) no-repeat bottom -50px center;
}

@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 ----------------------------------------------- */


#sponsor {
    background: #fff;
    color: #252525;
}

footer #sponsor {
    padding: 20px 0;
}

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

#footerwrapper>.row>div {
    padding-bottom: 50px;
}

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

#footerwrapper a {
    color: #ffffff;
}

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

.arrowLinks .tiny_p+.tiny_p {
    margin-top: 32px;
}

.greenButton.arrowLinks a {
    width: 100%;
}

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

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

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

a#scrollTopBtn {
    background-color: #164f6f;
    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: #164f6f;
}

#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: #307ba6;
}

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

#vernetzt img {
    margin-left: 14px;
}


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



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

.contrast_light_font .themesTab2 a img,
.contrast_dark_font .themesTab2 a img {
    width: auto !important;
}

.themesTab2 .contrast_dark_font .template-page,
.contrast_dark_font #themes .themesTab2 h1,
.contrast_dark_font #themes .themesTab2 h2,
.contrast_dark_font #themes .themesTab2 h3,
.contrast_dark_font #themes .themesTab2 h4,
.contrast_dark_font #themes .themesTab2 h5,
.contrast_dark_font #themes .themesTab2 h6 {
    color: #000000 !important;
    background: #ffffff !important;
}

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

.contrast_dark_font #newsletter_input {
    color: #000 !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: #fff !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;
}