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

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

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

b,
strong {
    font-weight: 700;
}

#tickerWrapper {
    padding: 30px 0 0 0;
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    #menu {
        padding: 10px 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: #ffffff;
        padding: 3px;
    }

    #burgerButton:before,
    #burgerButton:after,
    #burgerButtonInner {
        background-color: #239cec;
        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: #ffffff;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
        -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

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

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

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

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

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

    /* Pseudo */

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

    /* 3rd */

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

    /* Fade in Hover End */
}

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

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

.navbar-default .navbar-nav>li>a {
    color: #252525;
    font-weight: 400;
    text-align: left;
    padding: 10px 35px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0ms;
    hyphens: auto;
}

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

    .navbar-default .navbar-nav>li>a {
        padding: 15px 1px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
        z-index: 1;
        font-size: 1.375rem;
    }
}

@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: #242325;
    background-color: #00A0D9;
    box-shadow: -5px -5px 0 0 #ffdd00, 5px 5px 0 0 #c60074;
}

.navbar-nav>li:focus-within>a {
    color: #242325;
    background-color: #00A0D9;
    box-shadow: -5px -5px 0 0 #ffdd00, 5px 5px 0 0 #c60074;
}


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

.navbar-default .navbar-nav>li>.dropdown-menu,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    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);
    border-left: 2px solid #ffdd00;
}

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

@media(min-width:992px) {

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

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

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

.navbar-default .navbar-nav>li>.dropdown-menu>li>a,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #3e3d40;
    font-weight: 400;
    text-align: left;
    padding: 9px 25px;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
    hyphens: auto;
}

@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 {
        font-size: 1rem;
    }

}

/* ------------------------------------------ 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:hover>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus {
    color: #c60074;
}

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

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

#slider {
    max-height: 300px;
    overflow: hidden;
    position: relative;
    margin: auto;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    border: 6px solid #ffffff;
    z-index: 1;
}

#headerpic {
    margin: 0 auto;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0 20px 0;
    background-position: center;
    background-repeat: no-repeat;
}

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

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

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

    #headerpic {
        padding: 70px 0 150px 0;
    }
}

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

.slider-mask {
    display: none;
}

#bannerMiddle {
    position: relative;
    height: 368px;
    z-index: 1;
    border: 6px solid #ffffff;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 1200px) {
    #bannerBox {
        position: relative;
    }

    #bannerBox::before,
    #bannerBox::after {
        content: '';
        position: absolute;
        pointer-events: none;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
        border: 6px solid #ffffff;
        background-position: center;
        background-repeat: no-repeat;
    }

    #bannerBox::after {
        top: 80px;
        left: unset;
        right: -490px;
        bottom: 0;
        transform: rotate(5deg);
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        width: 650px;
        height: 350px;
        background-size: cover;
    }

    #bannerBox::before {
        top: 40px;
        left: -580px;
        right: 0;
        bottom: 0;
        transform: rotate(4deg);
        -webkit-transform: rotate(4deg);
        -moz-transform: rotate(4deg);
        width: 600px;
        height: 370px;
    }
}

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

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

.slider-wrapper .nivo-controlNav a.active,
.slider-wrapper .nivo-controlNav a:hover,
.slider-wrapper .nivo-controlNav a:focus {
    background: #239cec !important;
    border: 1px solid #239cec !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;
    }
}

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

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

#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: #1e557d;
    -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::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: 26px;
}

#headerpic a.nivo-prevNav::after {
    right: 32px;
    border-left: 2px solid #1e557d;
    border-bottom: 2px solid #1e557d;
}

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

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

#headerpic a.nivo-nextNav::after {
    left: 32px;
    border-right: 2px solid #1e557d;
    border-top: 2px solid #1e557d;
}

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

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

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

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

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

@media (min-width: 992px) {
    #bannerOverlay {
        margin-bottom: -60px
    }
}


#bannerOverlay>.row {
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

/* ----------------------- 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: #1f75b2;
    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: #c60074;
    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);
}

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

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

@media (max-width: 991px) {
    #contrast_style span {
        margin-top: 15px;
    }
}

#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: #1f75b2;
    position: relative;
    top: -1px;
    height: 40px;
}

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

#contrast_style button:hover,
#contrast_style button:focus {
    background-color: #c60074;
}

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

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

#bannerOverlay #searchContainer {
    background: #1e557d;
    background: linear-gradient(90deg, #1f75b2 0%, #1e557d 100%);
    height: 100%;
}

#bannerOverlay #suche {
    padding-top: 114px;
    padding-bottom: 42px;
}

@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 a {
    color: #ffffff;
}

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

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

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

    body:not(.index) #searchContainer>#suchfeld {
        opacity: 1;
        -webkit-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }

}

#bannerOverlay #suchfeld {
    background-color: #ffffff;
    padding: 90px 30px 89px 30px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 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;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    width: 100%;
}

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

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

    body:not(.index) #bannerOverlay #suchfeld {
        position: relative;
        margin-bottom: -60px;
    }
}

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

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

#search_input {
    color: #252525;
    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.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: #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: #1e557d;
    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;
}

/* ------------------------------------------------ links ----------------------------------------------- */

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

#links::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 351px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 1200px) {
    #links::before {
        top: -208px;
        height: 34vw;
    }

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

@media (min-width: 1400px) {
    #links::before {
        width: 34.2%;
    }
}

@media (max-width: 991px) {
    #links::before {
        width: 330px;
        height: 530px;
        top: -168px;
    }
}

@media (max-width: 767px) {
    #links::before {
        width: 100%;
        height: 300px;
        top: unset;
    }
}


#links>.row:nth-child(1)::before {
    position: absolute;
    content: '';
    display: block;
    width: 15.6vw;
    height: 10vw;
    left: 0;
    top: -210px;
    background-color: #ffffff;
}

@media (max-width: 1199px) {
    #links>.row:nth-child(1)::before {
        display: none;
    }
}

@media (min-width: 1200px) {
    #links>.row:nth-child(1)::before {
        left: 173px;
    }
}

@media (min-width: 1500px) {
    #links>.row:nth-child(1)::before {
        left: 129px;
    }
}

@media (min-width: 1700px) {
    #links>.row:nth-child(1)::before {
        left: 70px;
    }
}

@media (min-width: 1900px) {
    #links>.row:nth-child(1)::before {
        left: 0;
    }
}

#links .tab {
    position: relative;
    padding: 90px 40px 50px 60px;
}

@media (min-width: 992px) {
    #links .tab {
        font-size: 1.375rem;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    #links .tab {
        padding: 330px 0 30px 0;
    }
}

#links .tabHeadline {
    font-size: 2.1875rem;
    font-weight: 700;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    #links .tabHeadline {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    #links .tabHeadline {
        margin-bottom: 15px;
    }
}

#links .tab a {
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding: 8px 0 8px 35px;
    color: #252525;
    -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;
}

#links .tab a:hover,
#links .tab a:focus {
    color: #1f75b2;
    left: 15px;
}

#links .tab a::before {
    content: '\2192';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -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: 22px;
}

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

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: 40px;
        padding-top: 60px;
    }
}

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

#newsletterBox {
    position: relative;
    background-color: #1e557d;
    padding-top: 155px;
    padding-bottom: 145px;
    max-height: 400px;
    z-index: 1;
}

@media (min-width: 1200px) {
    #newsletterBox {
        margin-bottom: 230px;
    }
}

#newsletterBox::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    background-color: #1e557d;
    opacity: 0.8;
    background-blend-mode: multiply;
    z-index: -1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#newsletterBox::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/overlay-banner-breaker.png') center no-repeat;
    z-index: 0;
}

#newsletterBox .tab {
    color: #ffffff;
}

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

#newsletterBox .tab a {
    color: #ffffff;
    background-color: #1f75b2;
    text-decoration: none;
    display: inline-block;
    padding: 7px 35px;
}

#newsletterBox .tab a:hover,
#newsletterBox .tab a:focus {
    background-color: #c60074;
}

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

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

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

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

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

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

    #events {
        padding-top: 60px;
    }

    #events::after {
        top: 15px;
    }
}

#events .tabContent {
    color: #ffffff;
}

#events .tabContent :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 0;
    color: #ffffff;
    background-color: #1f75b2;
    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;
    z-index: 1;
}

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

#events .tab_link_entry::after {
    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;
    z-index: -1;
}

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

@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/Platzhalter.jpg') center / cover no-repeat, #ffffff;
}

#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;
    position: absolute;
    left: 0;
    top: 20px;
    z-index: 1;
    display: inline-block;
    padding: 8px 40px;
    background: #ffffff;
    color: #3e3d40;
}

#events .tab_link_mandat a,
#events .vorschau {
    color: #000022;
    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;
    }
}

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

#news {
    padding-top: 55px;
    padding-bottom: 84px;
}

#news :is(h1, h2, h3, h4, h5, h6) {
    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;
    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/Platzhalter.jpg') center / cover no-repeat, #1f75b2;
}

#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: #1f75b2;
    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: 400;
    z-index: 12;
}

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

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

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

#news .tab_link_mehr {
    font-size: 0;
}

#news .tab_link_mehr a {
    color: #1e557d;
    font-size: 1rem;
    text-decoration: underline;
}

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

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

#bgHeadline {
    position: relative;
}

@media (min-width: 1200px) {
    #road::before {
        content: '';
        position: absolute;
        pointer-events: none;
        width: 576px;
        height: 514px;
        left: 0;
        bottom: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }
}

#road .roadHeadline {
    background: #c60074;
    color: #ffffff;
}

#road .roadHeadline a {
    color: #ffffff;
}

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

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

.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: 20px 20px;
    font-family: "Arvo", sans-serif;
}

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

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

.roadBox .tabContent {
    padding: 20px 0;
}

.roadBox .tabContent:hover img {
    animation-name: example;
    animation-duration: 1500ms;
}

@keyframes example {
    25% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }
}

.roadBox .tab:hover {
    background: rgba(198, 0, 116, 0.1);
    transition: all 300ms;
}

.roadBox a {
    color: #252525;
    display: block;
}

.roadBox a:hover {
    text-decoration: none;
}

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

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
    color: #1f75b2;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Arvo", 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;
}

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

footer {
    background-color: #1f75b2;
    color: #ffffff;
    font-size: 1rem;
    padding-bottom: 30px;
    padding-top: 70px;
}

body:not(.index) footer {
    padding-top: 110px;
}

footer a {
    color: #ffffff;
}

footer a:hover,
footer a:focus {
    color: #ffffff;
}

footer .footerTab {
    font-size: 1rem;
}

footer .footerTab a {
    text-decoration: underline;
}

footer .tabHeadline {
    color: #ffffff;
    font-size: 1.375rem;
    font-weight: 700;
}

@media (max-width: 767px) {
    #innerfooter {
        margin-bottom: 30px;
    }
}

#innerfooter ul {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding: 0;
}

#innerfooter li {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

#innerfooter a {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding: 6px 10px 6px 25px;
    position: relative;
    text-decoration: none;
}

#innerfooter a::before {
    -moz-transition: background 300ms linear;
    -ms-transition: background 300ms linear;
    -o-transition: background 300ms linear;
    -webkit-transition: background 300ms linear;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    content: "";
    display: block;
    height: 6px;
    left: 10px;
    position: absolute;
    top: 16px;
    transition: background 300ms linear;
    width: 6px;
}

#innerfooter a:hover::before,
#innerfooter a:focus::before {
    background: #ffffff;
}

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

#vernetzt {
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 30px auto 0 auto;
    text-align: right;
    text-decoration: none;
}

@media (min-width: 992px) {
    #vernetzt {
        margin: 0;
    }
}

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

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

/* --------------------------------------------- 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_light_font #search_input {
    color: #fff !important;
}

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

.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 :is(h1, h2, h3, h4, h5, h6) {
    color: #000 !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;
}