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

body {
    font-family: "Source Sans Pro", sans-serif;
    color: #4b4b4b;
    background: #fff;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.5;
}

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

a {
    color: #0069b4;
}

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


b, strong {
    font-weight: 600;
}

#search {
    height: 36px;
    background: #f6f6f6;
    display: inline-block;
    position: relative;
    border-radius: 10px;
    max-width: 230px;
    width: 100%;
}

@media (min-width: 992px) {
    #search{
        margin-right: 16px;
    }
}

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



#search_input {
    color: #5d5d5d;
    font-size: 16px;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 36px;
    padding-left: 10px;
    padding-right: 43px;
    height: 36px;
    width: 100%;
}
#search_submit {
    width: 36px;
    background: #1e8443 url('../img/suche-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 36px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    -webkit-transition: background-color 300ms linear;
    -moz-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    -o-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
#search_submit:hover, #newsletter_submit:hover {
    background-color: #196535;
}
#search_input::-ms-input-placeholder {
    color: #5d5d5d !important;
}
#search_input::-webkit-input-placeholder {
    color: #5d5d5d !important;
}
#search_input::-moz-placeholder {
    opacity: 1;
}
#search_input:-moz-placeholder {
    opacity: 1;
}

#search_input:focus::placeholder {
    opacity: 0 !important;
}

/* ------------------------------------------------- topbar ------------------------------------------------ */

#topbar {
    background-color: #fff;
    position: relative;
}


@media (max-width: 767px) {
    #topbar>.row>div:last-child {
        padding: 0;
    }
}

#innerfooter2 ul {
    padding: 0;
}

#innerfooter2 li {
    display: inline-block;
}

#innerfooter2 a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    font-size: 1rem;
    background: #1e8443;
    border-radius: 10px;
    padding: 5px;
}

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

#innerfooter2 li+li::before {
    content: "";
    margin: 0 8px;
}

#innerfooter2 li::before {
    background: rgba(0,0,0,0) !important;
}

@media (max-width: 991px) {
    #innerfooter2 li{
        background-color: transparent !important;
    }

    #innerfooter2 li::before{
        display: none!important;
    }
}
/* ------------------------------------------------- logo ------------------------------------------------ */

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

@media (max-width: 767px) {
    #logo img {
        max-width: 230px;
        width: 100%;
        display: block;
    }
}


   


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

/* burgermenu for tablet */

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

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

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

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

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

    #burgerButtonInner {
        top: 10px;
    }

    #burgerButton:before {
        top: 18px;
    }

    #burgerButton:after {
        top: 26px;
    }

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

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

    .navbar-collapse {
        top: 0;
        background: #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);
    }
    .dropdown-toggle-button-wrapper2 {
        top: 0;
        z-index: 1;
    }
}

@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) {
    #burgerButton {
        pointer-events: none;
    }

    nav {
        padding: 8px 0 20px 0;
        min-height: 430px;
        background-color: #ffffff;
        position: relative;
    }

    nav::after {
        content: "";
        position: absolute;
        left: 30px;
        right: 30px;
        bottom: 0;
        height: 30px;
        z-index: -1;
        -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.16);
    }

    .navbar-header {
        margin-bottom: 8px;
    }

    .navbar-default .navbar-nav {
        width: 100%;
        padding-top: 40px;
        padding-bottom: 35px;
    }

    .navbar-default .navbar-nav>li {
        display: block !important;
        width: 100%;
        float: none;
    }

    .navbar-default .navbar-nav>li {
        position: relative;
        padding: 0;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li:not(:first-of-type):not(:last-of-type) {
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid-column;
        display: table;
        width: 100%;
    }

    .navbar-default .navbar-nav>li>ul {
        position: absolute;
        left: 100%;
        top: 0 !important;
        column-count: 1;
        column-gap: 30px;
        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 .navbar-nav>li.open:hover>.dropdown-menu, .navbar-default .navbar-nav>li:hover>ul {
        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 .navbar-nav>li.open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        opacity: 1;
    }

    #myNavbar {
        box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        border-radius: 10px;
        background-color: #ffffff;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
    .navbar-header .menuTitle {
        background: transparent;
    }
}

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

.navbar-default .navbar-nav>li>a {
    color: #4b4b4b;
    font-weight: 600;
    text-align: left;
    padding: 13px 15px 13px 15px;
    position: relative;
    z-index: 0;
    border-radius: 0;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
    display: block;
}


.navbar-default .navbar-nav>li>a::before {
    z-index: -1;
}

/* hover menu */

.navbar-default .navbar-nav>li>a::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    width: 0;
    -webkit-transition: width 400ms linear;
    -moz-transition: width 400ms linear;
    -ms-transition: width 400ms linear;
    -o-transition: width 400ms linear;
    transition: width 400ms linear;
}

.navbar-default .navbar-nav>li:nth-child(14n+1)>a::before, .navbar-default .navbar-nav>li:nth-child(14n+2)>a::before {
    background-color: #be0f2c;
}

.navbar-default .navbar-nav>li:nth-child(14n+3)>a::before, .navbar-default .navbar-nav>li:nth-child(14n+4)>a::before {
    background-color: #ec9e27;
}

.navbar-default .navbar-nav>li:nth-child(14n+5)>a::before, .navbar-default .navbar-nav>li:nth-child(14n+6)>a::before {
    background-color: #ffe434;
}

.navbar-default .navbar-nav>li:nth-child(14n+7)>a::before, .navbar-default .navbar-nav>li:nth-child(14n+8)>a::before {
    background: #1e8443;
}

.navbar-default .navbar-nav>li:nth-child(14n+9)>a::before, .navbar-default .navbar-nav>li:nth-child(14n+10)>a::before {
    background: #1372ab;
}

.navbar-default .navbar-nav>li:nth-child(14n+11)>a::before, .navbar-default .navbar-nav>li:nth-child(14n+12)>a::before {
    background: #023a81;
}

.navbar-default .navbar-nav>li:nth-child(14n+13)>a::before, .navbar-default .navbar-nav>li:nth-child(14n+14)>a::before {
    background: #5b2267;
}

.navbar-default .navbar-nav>li>a::before {
    left: 0;
}




/* strich vor menu */

.navbar-default .navbar-nav>li>a:after {
    content: "";
    display: block;
    width: 9px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.navbar-default .navbar-nav>li:nth-child(14n+1)>a:after, .navbar-default .navbar-nav>li:nth-child(14n+2)>a:after {
    background: #be0f2c;
}

.navbar-default .navbar-nav>li:nth-child(14n+3)>a:after, .navbar-default .navbar-nav>li:nth-child(14n+4)>a:after {
    background: #ec9e27;
}

.navbar-default .navbar-nav>li:nth-child(14n+5)>a:after, .navbar-default .navbar-nav>li:nth-child(14n+6)>a:after {
    background: #ffe434;
}

.navbar-default .navbar-nav>li:nth-child(14n+7)>a:after, .navbar-default .navbar-nav>li:nth-child(14n+8)>a:after {
    background: #1e8443;
}

.navbar-default .navbar-nav>li:nth-child(14n+9)>a:after, .navbar-default .navbar-nav>li:nth-child(14n+10)>a:after {
    background: #1372ab;
}

.navbar-default .navbar-nav>li:nth-child(14n+11)>a:after, .navbar-default .navbar-nav>li:nth-child(14n+12)>a:after {
    background: #023a81;
}

.navbar-default .navbar-nav>li:nth-child(14n+13)>a:after, .navbar-default .navbar-nav>li:nth-child(14n+14)>a:after {
    background: #5b2267;
}



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

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li.open>a,
.navbar-default .navbar-nav>li.open>a:hover,
.navbar-default .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: transparent;
}

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


/* hover breite */

.navbar-default .navbar-nav>li>a:hover::before,
.navbar-default .navbar-nav>li>a:focus::before,
.navbar-default .navbar-nav>li.open>a::before,
.navbar-default .navbar-nav>li.open>a:hover::before,
.navbar-default .navbar-nav>li.open>a:focus::before,
.navbar-nav>li[class$="_over"]>a::before,
.navbar-nav>li[class$="_over"]>a:hover::before,
.navbar-nav>li[class$="_over"]>a:focus::before {
    width: 100%;
}

.navbar-default .navbar-nav>li:focus-within>a::before {
    width: 100%;
}


/* dunkle farbe beim hover */

.navbar-default .navbar-nav>li:nth-child(14n+3)>a:hover,
.navbar-default .navbar-nav>li:nth-child(14n+3)>a:focus,
.navbar-default .navbar-nav>li:nth-child(14n+3).open>a,
.navbar-default .navbar-nav>li:nth-child(14n+3).open>a:hover,
.navbar-default .navbar-nav>li:nth-child(14n+3).open>a:focus,
.navbar-nav>li:nth-child(14n+3)[class$="_over"]>a,
.navbar-nav>li:nth-child(14n+3)[class$="_over"]>a:hover,
.navbar-nav>li:nth-child(14n+3)[class$="_over"]>a:focus {
    color: #4b4b4b;
    background-color: transparent;
}

.navbar-default .navbar-nav>li:nth-child(14n+3):focus-within>a {
    color: #4b4b4b;
    background-color: transparent;
}

.navbar-default .navbar-nav>li:nth-child(14n+4)>a:hover,
.navbar-default .navbar-nav>li:nth-child(14n+4)>a:focus,
.navbar-default .navbar-nav>li:nth-child(14n+4).open>a,
.navbar-default .navbar-nav>li:nth-child(14n+4).open>a:hover,
.navbar-default .navbar-nav>li:nth-child(14n+4).open>a:focus,
.navbar-nav>li:nth-child(14n+4)[class$="_over"]>a,
.navbar-nav>li:nth-child(14n+4)[class$="_over"]>a:hover,
.navbar-nav>li:nth-child(14n+4)[class$="_over"]>a:focus {
    color: #4b4b4b;
    background-color: transparent;
}

.navbar-default .navbar-nav>li:nth-child(14n+4):focus-within>a {
    color: #4b4b4b;
    background-color: transparent;
}

.navbar-default .navbar-nav>li:nth-child(14n+5)>a:hover,
.navbar-default .navbar-nav>li:nth-child(14n+5)>a:focus,
.navbar-default .navbar-nav>li:nth-child(14n+5).open>a,
.navbar-default .navbar-nav>li:nth-child(14n+5).open>a:hover,
.navbar-default .navbar-nav>li:nth-child(14n+5).open>a:focus,
.navbar-nav>li:nth-child(14n+5)[class$="_over"]>a,
.navbar-nav>li:nth-child(14n+5)[class$="_over"]>a:hover,
.navbar-nav>li:nth-child(14n+5)[class$="_over"]>a:focus {
    color: #4b4b4b;
    background-color: transparent;
}

.navbar-default .navbar-nav>li:nth-child(14n+5):focus-within>a {
    color: #4b4b4b;
    background-color: transparent;
}

.navbar-default .navbar-nav>li:nth-child(14n+6)>a:hover,
.navbar-default .navbar-nav>li:nth-child(14n+6)>a:focus,
.navbar-default .navbar-nav>li:nth-child(14n+6).open>a,
.navbar-default .navbar-nav>li:nth-child(14n+6).open>a:hover,
.navbar-default .navbar-nav>li:nth-child(14n+6).open>a:focus,
.navbar-nav>li:nth-child(14n+6)[class$="_over"]>a,
.navbar-nav>li:nth-child(14n+6)[class$="_over"]>a:hover,
.navbar-nav>li:nth-child(14n+6)[class$="_over"]>a:focus {
    color: #4b4b4b;
    background-color: transparent;
}

.navbar-default .navbar-nav>li:nth-child(14n+6):focus-within>a {
    color: #4b4b4b;
    background-color: transparent;
}


/* -------------------------------------- second+thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu {
    background-color: #ffffff;
    z-index: 90;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        width: auto;
        margin-left: 30px;
        min-height: 200px;
        padding: 25px 0;
        border-radius: 10px;
        box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
        margin-top: -25px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li {
        margin-bottom: 0;
    }

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

@media (min-width: 1200px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        width: 100%;
    }
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    margin: 0px;
    padding: 4px 0;
}

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

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        display: block !important;
    }
}

/* --------------------------------------------- secondlevel -------------------------------------------- */

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu>li>a {
        padding: 13px 15px 13px 15px;
        display: block;
    }
}

.navbar-default .navbar-nav li[class*="secondlevel"]>a {
    background-color: transparent;
    font-weight: 600;
    color: #4b4b4b;
    text-align: left;
    padding: 12px 30px;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

/* hover menu */
.navbar-default .navbar-nav>li>.dropdown-menu>li>a::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    width: 0;
    -webkit-transition: width 400ms linear;
    -moz-transition: width 400ms linear;
    -ms-transition: width 400ms linear;
    -o-transition: width 400ms linear;
    transition: width 400ms linear;
}

.navbar-default .navbar-nav>li:nth-child(14n+1)>.dropdown-menu>li>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+2)>.dropdown-menu>li>a::before {
    background-color: #be0f2c;
}

.navbar-default .navbar-nav>li:nth-child(14n+3)>.dropdown-menu>li>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+4)>.dropdown-menu>li>a::before {
    background-color: #ec9e27;
}

.navbar-default .navbar-nav>li:nth-child(14n+5)>.dropdown-menu>li>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+6)>.dropdown-menu>li>a::before {
    background-color: #ffe434;
}

.navbar-default .navbar-nav>li:nth-child(14n+7)>.dropdown-menu>li>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+8)>.dropdown-menu>li>a::befor {
    background-color: #1e8443;
}

.navbar-default .navbar-nav>li:nth-child(14n+9)>.dropdown-menu>li>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+10)>.dropdown-menu>li>a::before {
    background-color: #1372ab;
}

.navbar-default .navbar-nav>li:nth-child(14n+11)>.dropdown-menu>li>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+12)>.dropdown-menu>li>a::before {
    background-color: #023a81;
}

.navbar-default .navbar-nav>li:nth-child(14n+11)>.dropdown-menu>li>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+12)>.dropdown-menu>li>a::before {
    background-color: #5b2267;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a::before {
    z-index: -1;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a::before {
    left: 0;
}


/* Strich vor Menu */
.navbar-default .navbar-nav>li>.dropdown-menu>li>a:after {
    content: "";
    display: block;
    width: 9px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.navbar-default .navbar-nav>li:nth-child(14n+1)>.dropdown-menu>li>a:after,
.navbar-default .navbar-nav>li:nth-child(14n+2)>.dropdown-menu>li>a:after {
    background: #be0f2c;
}

.navbar-default .navbar-nav>li:nth-child(14n+3)>.dropdown-menu>li>a:after,
.navbar-default .navbar-nav>li:nth-child(14n+4)>.dropdown-menu>li>a:after {
    background: #ec9e27;
}

.navbar-default .navbar-nav>li:nth-child(14n+5)>.dropdown-menu>li>a:after,
.navbar-default .navbar-nav>li:nth-child(14n+6)>.dropdown-menu>li>a:after {
    background: #ffe434;
}

.navbar-default .navbar-nav>li:nth-child(14n+7)>.dropdown-menu>li>a:after,
.navbar-default .navbar-nav>li:nth-child(14n+8)>.dropdown-menu>li>a:after {
    background: #1e8443;
}

.navbar-default .navbar-nav>li:nth-child(14n+9)>.dropdown-menu>li>a:after,
.navbar-default .navbar-nav>li:nth-child(14n+10)>.dropdown-menu>li>a:after {
    background: #1372ab;
}

.navbar-default .navbar-nav>li:nth-child(14n+11)>.dropdown-menu>li>a:after,
.navbar-default .navbar-nav>li:nth-child(14n+12)>.dropdown-menu>li>a:after {
    background: #023a81;
}

.navbar-default .navbar-nav>li:nth-child(14n+13)>.dropdown-menu>li>a:after,
.navbar-default .navbar-nav>li:nth-child(14n+14)>.dropdown-menu>li>a:after {
    background: #5b2267;
}

/* ------------------------------------------ secondlevel over ------------------------------------------ */

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

.navbar-nav li[class*="secondlevel"]:focus-within>a {
    color: #ffffff;
}


/* hover breite */

.navbar-nav>li>.dropdown-menu>li:hover>a::before,
.navbar-nav>li>.dropdown-menu>li>a:hover::before,
.navbar-nav>li>.dropdown-menu>li>a:focus::before,
.navbar-nav>li>.dropdown-menu>li.open>a::before,
.navbar-nav>li>.dropdown-menu>li.open>a:hover::before,
.navbar-nav>li>.dropdown-menu>li.open>a:focus::before,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a::before,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover::before,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus::before {
    width: 100%;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a::before {
    width: 100%;
}




/* dunkle farbe beim hover */


.navbar-nav>li:nth-child(18n+3) li[class*="secondlevel"]:hover>a,
.navbar-nav>li:nth-child(18n+3) li[class*="secondlevel"]>a:hover,
.navbar-nav>li:nth-child(18n+3) li[class*="secondlevel"]>a:focus,
.navbar-nav>li:nth-child(18n+3) li[class*="secondlevel"].open>a,
.navbar-nav>li:nth-child(18n+3) li[class*="secondlevel"].open>a:hover,
.navbar-nav>li:nth-child(18n+3) li[class*="secondlevel"].open>a:focus,
.navbar-nav>li:nth-child(18n+3) li[class*="secondlevel"][class$="_over"]>a,
.navbar-nav>li:nth-child(18n+3) li[class*="secondlevel"][class$="_over"]>a:hover,
.navbar-nav>li:nth-child(18n+3) li[class*="secondlevel"][class$="_over"]>a:focus {
    color: #4b4b4b;
}

.navbar-nav>li:nth-child(18n+3) li[class*="secondlevel"]:focus-within>a {
    color: #4b4b4b;
}

.navbar-nav>li:nth-child(18n+4) li[class*="secondlevel"]:hover>a,
.navbar-nav>li:nth-child(18n+4) li[class*="secondlevel"]>a:hover,
.navbar-nav>li:nth-child(18n+4) li[class*="secondlevel"]>a:focus,
.navbar-nav>li:nth-child(18n+4) li[class*="secondlevel"].open>a,
.navbar-nav>li:nth-child(18n+4) li[class*="secondlevel"].open>a:hover,
.navbar-nav>li:nth-child(18n+4) li[class*="secondlevel"].open>a:focus,
.navbar-nav>li:nth-child(18n+4) li[class*="secondlevel"][class$="_over"]>a,
.navbar-nav>li:nth-child(18n+4) li[class*="secondlevel"][class$="_over"]>a:hover,
.navbar-nav>li:nth-child(18n+4) li[class*="secondlevel"][class$="_over"]>a:focus {
    color: #4b4b4b;
}

.navbar-nav>li:nth-child(18n+4) li[class*="secondlevel"]:focus-within>a {
    color: #4b4b4b;
}

.navbar-nav>li:nth-child(18n+5) li[class*="secondlevel"]:hover>a,
.navbar-nav>li:nth-child(18n+5) li[class*="secondlevel"]>a:hover,
.navbar-nav>li:nth-child(18n+5) li[class*="secondlevel"]>a:focus,
.navbar-nav>li:nth-child(18n+5) li[class*="secondlevel"].open>a,
.navbar-nav>li:nth-child(18n+5) li[class*="secondlevel"].open>a:hover,
.navbar-nav>li:nth-child(18n+5) li[class*="secondlevel"].open>a:focus,
.navbar-nav>li:nth-child(18n+5) li[class*="secondlevel"][class$="_over"]>a,
.navbar-nav>li:nth-child(18n+5) li[class*="secondlevel"][class$="_over"]>a:hover,
.navbar-nav>li:nth-child(18n+5) li[class*="secondlevel"][class$="_over"]>a:focus {
    color: #4b4b4b;
}

.navbar-nav>li:nth-child(18n+5) li[class*="secondlevel"]:focus-within>a {
    color: #4b4b4b;
}

.navbar-nav>li:nth-child(18n+6) li[class*="secondlevel"]:hover>a,
.navbar-nav>li:nth-child(18n+6) li[class*="secondlevel"]>a:hover,
.navbar-nav>li:nth-child(18n+6) li[class*="secondlevel"]>a:focus,
.navbar-nav>li:nth-child(18n+6) li[class*="secondlevel"].open>a,
.navbar-nav>li:nth-child(18n+6) li[class*="secondlevel"].open>a:hover,
.navbar-nav>li:nth-child(18n+6) li[class*="secondlevel"].open>a:focus,
.navbar-nav>li:nth-child(18n+6) li[class*="secondlevel"][class$="_over"]>a,
.navbar-nav>li:nth-child(18n+6) li[class*="secondlevel"][class$="_over"]>a:hover,
.navbar-nav>li:nth-child(18n+6) li[class*="secondlevel"][class$="_over"]>a:focus {
    color: #4b4b4b;
}

.navbar-nav>li:nth-child(18n+6) li[class*="secondlevel"]:focus-within>a {
    color: #4b4b4b;
}

/* --------------------------------------------- thirdlevel --------------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    padding: 6px 15px 6px 25px;
    font-size: 1.125rem;
}

.navbar-default .navbar-nav li[class*="thirdlevel"]>a {
    background-color: transparent;
    font-weight: 600;
    color: #4b4b4b;
    text-align: left;
    padding: 12px 30px;
    font-size: 1.1875rem;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* togglepunkt */

.navbar-default .navbar-nav li[class*="thirdlevel"]>a::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 5px;
    top: 13px;
    border-radius: 50%;
    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 .navbar-nav>li:nth-child(14n+1) li[class*="thirdlevel"]>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+2) li[class*="thirdlevel"]>a::before {
    background: #be0f2c;
}

.navbar-default .navbar-nav>li:nth-child(14n+3) li[class*="thirdlevel"]>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+4) li[class*="thirdlevel"]>a::before {
    background: #ec9e27;
}

.navbar-default .navbar-nav>li:nth-child(14n+5) li[class*="thirdlevel"]>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+6) li[class*="thirdlevel"]>a::before {
    background: #ffe434;
}

.navbar-default .navbar-nav>li:nth-child(14n+7) li[class*="thirdlevel"]>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+8) li[class*="thirdlevel"]>a::before {
    background: #1e8443;
}

.navbar-default .navbar-nav>li:nth-child(14n+9) li[class*="thirdlevel"]>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+10) li[class*="thirdlevel"]>a::before {
    background: #1372ab;
}

.navbar-default .navbar-nav>li:nth-child(14n+11) li[class*="thirdlevel"]>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+12) li[class*="thirdlevel"]>a::before {
    background: #023a81;
}

.navbar-default .navbar-nav>li:nth-child(14n+13) li[class*="thirdlevel"]>a::before,
.navbar-default .navbar-nav>li:nth-child(14n+14) li[class*="thirdlevel"]>a::before {
    background: #5b2267;
}

/* ------------------------------------------ thirdlevel over ------------------------------------------ */

.navbar-nav li[class*="thirdlevel"]>a:hover,
.navbar-nav li[class*="thirdlevel"]>a:focus,
.navbar-nav li[class*="thirdlevel"].open>a,
.navbar-nav li[class*="thirdlevel"].open>a:hover,
.navbar-nav li[class*="thirdlevel"].open>a:focus,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:hover,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:focus {
    color: #4b4b4b;
}

.navbar-nav li[class*="thirdlevel"]:focus-within>a {
    color: #4b4b4b;
}

.navbar-nav li[class*="thirdlevel"]>a:hover::before,
.navbar-nav li[class*="thirdlevel"]>a:focus::before,
.navbar-nav li[class*="thirdlevel"].open>a::before,
.navbar-nav li[class*="thirdlevel"].open>a:hover::before,
.navbar-nav li[class*="thirdlevel"].open>a:focus::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:hover::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:focus::before {
    opacity: 1;
}

.navbar-nav li[class*="thirdlevel"]:focus-within>a::before {
    opacity: 1;
}

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

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

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


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

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

}

#banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

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

.slider-mask {
    display: none;
}

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

main {
    text-align: left;
    padding-bottom: 30px;
    padding-top: 20px;
    background: url(../img/bg-main.jpg);
    background-size: cover;
    background-attachment: fixed;
}

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

#content {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        border-radius: 10px;
        background-color: #ffffff;
        padding: 15px;
}

#aboveContent {
    margin-bottom: 0px;
}
/* ------------------------------------------ h1 - h6, newslink ----------------------------------------- */

.h4link a:link, .h4link a:hover, .h4link a:focus, .h4link a:visited, H6, H5, H4, H3, H2, H1 {
    color: #1e8443;
    font-weight: 700;
    line-height: 1.2;
}

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

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

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

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

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

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

#footer {
    background-color: #1372ab;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #ffffff;
    font-size: 0.9375rem;
}

#footer .tabHeadline, #footer a {
    color: #ffffff;
}

#footer .tabHeadline {
    font-size: 1.875rem;
}

#footer .tab1 {
    font-weight: 700;
}

#footer>.row>div:nth-child(2) {
    position: relative;
}

@media (min-width:992px) {
    #footer>.row>div:nth-child(2)::before {
        content: '';
        position: absolute;
        border-left: 2px solid rgba(255, 255, 255, 0.5);
        left: -60px;
        top: 0;
        bottom: 0;
    }

    #footer>.row>div:nth-child(2)::after {
        content: '';
        position: absolute;
        border-right: 2px solid rgba(255, 255, 255, 0.5);
        right: -60px;
        top: 0;
        bottom: 0;
    }
}

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

@media (max-width: 767px) {
    footer .row>.col-xs-12:not(:first-child)::before {
        background: #000000;
        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 {
    background: url(../img/bg-footer.jpg) bottom center no-repeat, #ebf7ff;
    color: #000000;
    padding: 10px 0;
}


#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a {
    color: #000000;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    font-size: 1rem;
}

#innerfooter a:hover,
#innerfooter a:focus {
    color: #0069b4;
    text-decoration: underline;
}

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

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

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

#vernetzt {
    text-align: right;
    font-size: 0.9375rem;
    color: #000000;
    line-height: 1.3;
    margin: 0 auto;
    font-weight: 300;
    text-decoration: none;
}

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

#vernetzt b {
    color: #000000;
    font-weight: 600;
}

#vernetzt span {
    color: #000000;
}

#vernetzt span span {
    display: block;
}

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