@import url("https://fonts.verwaltungsportal.de/import/?family=Montserrat:400,400i,500,500i,700,700i");
@import url("https://fonts.verwaltungsportal.de/import/?family=Playfair+Display:400,400i,700,700i");

html {
    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
    background: #f0f0f0;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-color: #2e3c48 #ffffff;
    scrollbar-width: thin;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #252525;
    background: #fafdfa;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.5;
}

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

a {
    color: #00752d;
}

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

b,
strong {
    font-weight: 700;
}

:is(input, a, button):focus-visible {
    outline: 3px solid #fffc00 !important;
}

/* ============================================ bannerOverlay ============================================ */

@media (min-width: 576px) {
    #bannerOverlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 12;
        pointer-events: none;
    }
}

@media (max-width: 575px) {
    #bannerOverlay {
        padding-bottom: 10px;
    }
}

#logo {
    pointer-events: all;
}

/* ============================================ logo ============================================ */

#logo {
    display: inline-block;
}

.contrast_light_font #logo img {
    background-color: #fff;
}

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

    #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: #00752d;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 2px;
        transition: transform 200ms linear, opacity 200ms linear;
    }

    .contrast_light_font #burgerButton:before,
    .contrast_light_font #burgerButton:after,
    .contrast_light_font #burgerButtonInner {
        background-color: #fff;
    }

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

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

    #burgerButton[aria-expanded="true"]:after {
        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: #00752d;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        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;
        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 {
        padding-top: 16px;
        padding-bottom: 16px;
        position: sticky;
        z-index: 180;
        left: 0;
        right: 0;
        top: 0;
        background-color: #00752d;
        box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
        border-top: 3px solid #ffffff;
        border-bottom: 3px solid #ffffff;
    }

    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: flex-end !important;
        align-items: center !important;
        flex-wrap: wrap;
    }

    nav.horizontally .navbar-nav>li {
        flex-grow: 1;
    }

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

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

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

    nav.horizontally .navbar-nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: block !important;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms linear;
    }

    nav.horizontally .navbar-nav li {
        position: relative;
    }

    nav.horizontally .navbar-nav li:is(.open:focus-within, :hover)>ul,
    nav.horizontally .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible;
    }

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

/* ============================================ Toplevel ============================================ */

.navbar-default .navbar-nav>li>a {
    color: #ffffff;
    font-weight: 500;
    text-align: left;
    padding: 15px 35px 15px 15px;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.2;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 300ms ease-in-out;
    hyphens: auto;
}

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

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        padding: 14px 5px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }
}

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

/* ============================================ Toplevel Hover ============================================ */

.navbar-nav>li:hover>a,
.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus,
.navbar-nav>li:focus-within>a,
.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;
    border-color: #ffffff;
}

/* ============================================ Secondlevel + Thirdlevel Dropdown ============================================ */

.navbar-default .navbar-nav>li>.dropdown-menu,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background: #00752d;
}

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

@media(min-width:992px) {

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

    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: 20px;
        left: 50%;
        transform: translate(-50%, 0);
    }

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

    .navbar-default .navbar-nav>li>.dropdown-menu::after {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        top: -20px;
        margin-left: -20px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 20px 0 20px;
        border-color: #ffffff transparent transparent transparent;
        transition: top 150ms linear;
    }

    .navbar-default .navbar-nav>li:hover>.dropdown-menu::after {
        top: 0;
    }

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

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

/* ============================================ Secondlevel + Thirdlevel Links ============================================ */

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

@media(min-width:992px) {

    .navbar-default .navbar-nav>li>.dropdown-menu>li>a,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        text-align: center;
        padding: 13px 25px;
    }
}

/* ============================================ Secondlevel + Thirdlevel Hover ============================================ */

.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:focus-within>a,
.navbar-nav>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus {
    background: rgba(255, 255, 255, 0.4);
}

/* ============================================ Banner ============================================ */

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

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

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

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

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

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

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

.slider-mask {
    display: block;
    background: url('../img/slider-mask.png') top left / contain no-repeat;
}

/* ============================================ Ticker Wrapper ============================================ */

#tickerWrapper {
    padding-bottom: 15px;
}

.newsticker,
.newsticker a {
    margin: 0;
}

.newsticker {
    color: #252525;
}

.newsticker a {
    color: #037034;
}

/* ============================================ Content ============================================ */

#mainBox {
    text-align: left;
    padding-top: 60px;
    padding-bottom: 60px;
}

#rightRow .tab {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    padding: 30px 40px;
    hyphens: auto;
    min-height: 100%;
}

.contrast_light_font #rightRow .tab img {
    background-color: #fff;
}

#rightRow address a {
    text-decoration: underline;
}

#rightRow .tabHeadline {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    text-align: center;
}

#rightRow>.row {
    row-gap: 30px;
}

/* ============================================ Events ============================================ */

#events {
    margin-bottom: 30px;
}

#events .tab_link_entries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

#events .tab_link_entry {
    background: #037034;
    padding: 30px;
    color: #fff;
}

#events .tab_spacer {
    display: none !important;
}

#events .tab_link_mehr {
    display: none;
}

#events .tab_link_title a {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

#events .tab_link_mandat a {
    color: #fff;
    text-decoration: underline;
}

#events .template-page a {
    font-weight: 700;
    font-size: 1.3125rem;
    color: #037034;
}

#events .tabContent {
    margin-top: 15px;
}

#events .tabHeadline {
    font-size: clamp(1.5625rem, 3vw, 2rem);
    margin: 0;
}

@media (max-width: 575px) {
    #events .tab_link_entries {
        grid-template-columns: 1fr;
    }
}

/* ============================================ Options Bar ============================================ */

#optionsBar {
    background: #fff;
}

@media (min-width: 768px) {
    #optionsBar>.row>.col-xs-12:first-child {
        gap: 30px;
        padding: 30px 0;
    }
}



/* ============================================ Kontrast ============================================ */

#contrast_style button {
    color: #000000;
    padding: 0;
    display: inline-block;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    font-weight: 400;
    text-align: center;
    background: #ededed;
    position: relative;
    z-index: 1;
    font-size: 0;
    border: none;
}


#contrast_style button::before {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    right: 6px;
    left: 6px;
    bottom: 6px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

#contrast_style button::after {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    right: 11px;
    left: 11px;
    bottom: 11px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

#contrast_style button:nth-of-type(2)::after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) 50%, rgba(255, 255, 255, 1) 50%);
}

#contrast_style button:nth-of-type(3)::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0.6) 50%);
}

#contrast_style button:nth-of-type(1)::after {
    background-color: #ea5b0c !important;
    border: none;
    filter: unset !important;
}

.contrast_light_font #contrast_style button {
    background-color: #fff !important;
}

@media (min-width: 992px) {
    #style button {
        font-size: 20px;
        padding: 2px 0 0 0;
        border: none;
        color: #252525;
        display: inline-block;
        width: 37px;
        height: 37px;
        border-radius: 50%;
        font-weight: 500;
        text-align: center;
        background: #ededed;
        position: relative;
        line-height: 1;
    }

    #style button:hover,
    #style button:focus {
        color: #00752d;
    }

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

#style,
#contrast_style {
    gap: 10px;
}

:is(#contrast_style, #style) span {
    font-size: 1rem;
    font-weight: 700;
}

/* ============================================ Search ============================================ */

form[id^="search"] {
    background-color: #00752d;
    display: inline-block;
    position: relative;
    border-radius: 30px;
    border: 1px solid #00752d;
    max-width: 350px;
    min-height: 40px;
    width: 100%;
    display: flex;
    align-items: stretch;
}

@media (max-width: 767px) {
    form[id^="search"] {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
        max-width: unset;

    }
}

.darkMode form[id^="search"] {
    background-color: #000000 !important;
}

.contrast_dark_font form[id^="search"] {
    background-color: #ffffff !important;
}

form [id^="search_input"] {
    color: #ffffff;
    font-size: 0.9375rem;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    padding-left: 15px;
    padding-right: 50px;
    width: 100%;
    min-height: 30px;
}

form [id^="search_submit"] {
    min-width: 45px;
    min-height: 45px;
    border: none;
    background: #ffffff url('../img/icon-search.png') center no-repeat;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: -3px;
    right: -2px;
    font-size: 0;
    border: 1px solid#00752d;
}

.darkMode form [id^="search_submit"] {
    background-color: #ffffff !important;
}

form [id^="search_submit"]:hover,
form [id^="search_submit"]:focus {
    background-color: #bafcd3;
}


[id^="search_input"]::placeholder,
[id^="search_input"]::-ms-input-placeholder,
[id^="search_input"]::-webkit-input-placeholder {
    color: #ffffff !important;
}

[id^="search_input"]::-moz-placeholder {
    color: #ffffff !important;
    opacity: 1;
}


/* ============================================ News ============================================ */

#nw1 {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #f5f5f5;
}

#nw1>.row {
    row-gap: 30px;
}

#nw1 .tab {
    color: #ffffff;
    padding: 30px;
    overflow: hidden;
    background: #037034;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

#nw1 .tab img {
    display: block;
    width: calc(100% + 60px);
    left: -30px;
    top: -30px;
    position: relative;
    max-width: unset;
}

#nw1 .tab a {
    color: #ffffff;
    text-decoration: underline;
}

#nw1 :is(H1, h2, h3, h4, h5, h6) {
    color: #ffffff;
    font-weight: 700;
    hyphens: auto;
    font-size: clamp(1.75rem, 2vw, 2rem);
    margin-top: 0;
}

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

#nw1 .tab_link_entries {
    display: grid;
    gap: 30px;
    height: 100%;
}

@media (min-width: 576px) {
    #nw1 .tab_link_entries {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    #nw1 .tab_link_entries {
        grid-template-columns: repeat(3, 1fr);
    }
}

#nw1 .tab_link_entry {
    font-size: 1rem;
    position: relative;
    width: 100%;
    border-radius: 3px;
    padding: 90px 30px 30px 30px;
    background: #ffffff;
    border-bottom: none !important;
    min-height: 100%;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}

#nw1 .vorschau {
    opacity: 1;
}

#nw1 .tab_preview_picture {
    display: none;
}

#nw1 .tab_date {
    display: inline-block;
    position: absolute;
    z-index: 1;
    left: -1px;
    top: 30px;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.75rem;
    padding: 6px 20px;
    background: #037034;
    border-radius: 0 3px 3px 0;
}

#nw1 .tab_link_title a {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #037034;
    line-height: 1.2;
    margin-bottom: 8px;
}

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

/* ============================================ Button Style ============================================ */

#nw1 .buttonStyle a {
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 14px;
    border: 1px solid #ffffff;
    background: #037034;
    transition: filter 300ms ease;
}

@media (min-width: 768px) {
    #nw1 .buttonStyle a+a {
        margin-left: 12px;
    }
}

#nw1 .buttonStyle a:hover,
#nw1 .buttonStyle a:focus {
    filter: brightness(115%);
}

/* ============================================ Headings ============================================ */

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
    color: #037034;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Playfair Display", serif;
    hyphens: auto;
}

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

@media (min-width: 768px) {

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

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

@media (min-width: 768px) {

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

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

/* ============================================ Footer Wrapper ============================================ */

#footerwrapper {
    margin-top: 35px;
    margin-bottom: 35px;
    position: relative;
    z-index: 12;
}

#footerwrapper .footerBox .tab ul,
#footerwrapper .footerBox .tab li {
    all: unset;
}

#footerwrapper .footerBox .tab li::before {
    display: none;
}

#footerwrapper .footerBox .tab ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

#footerwrapper .footerBox img {
    display: block;
    max-width: 220px;
    height: auto !important;
}

@media (min-width: 768px) {
    #footerwrapper {
        margin-bottom: -75px;
    }

    .footerBox {
        background-color: #ffffff;
        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
        padding: 33px 30px 25px 30px;
    }

    .footerBox>.row>div:last-child {
        border-left: 1px solid rgba(14, 137, 82, 0.2);
    }
}

@media (max-width: 767px) {
    .footerBox>.row>div:last-child {
        border-top: 1px solid rgba(14, 137, 82, 0.2);
        margin-top: 30px;
        padding-top: 30px;
    }
}

@media (min-width: 576px) and (max-width:767px) {
    .footerBox .btgrid>.row-1>div:nth-child(2) {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    .googleTranslate {
        padding-top: 60px;
    }
}

/* ============================================ Vernetzt ============================================ */

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

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

#vernetzt span {
    color: #252525;
}

#vernetzt span span {
    display: block;
}

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

/* ============================================ Footer ============================================ */

footer {
    font-size: 1rem;
}

@media (max-width: 767px) {
    footer .row>.col-xs-12:not(:first-child)::before {
        background: #0d3d24;
        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;
    }
}

/* ============================================ First Footer ============================================ */

.firstFooter {
    background-color: #f5f5f5;
    padding-top: 110px;
    padding-bottom: 50px;
    position: relative;
    hyphens: auto;
}

@media (max-width: 767px) {
    .firstFooter {
        padding-top: 50px;
    }
}

@media (min-width: 992px) {
    .firstFooter {
        padding-top: 185px;
        padding-bottom: 90px;
    }
}

@media (min-width: 1200px) {
    .firstFooter::before {
        content: '';
        position: absolute;
        pointer-events: none;
        right: 0;
        top: 0;
        bottom: 0;
        width: 886px;
        height: 100%;
        background-position: bottom right;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

.firstFooter .tabHeadline {
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.firstFooter .tab1 a {
    text-decoration: underline;
}

.firstFooter .tab2 ul {
    margin: 0;
    list-style: none;
    padding-left: 0;
}

.firstFooter .tab2 ul li {
    position: relative;
    padding-left: 8px;
}

.firstFooter .tab2 ul li+li {
    margin-top: 10px;
}

.firstFooter .tab2 ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 3px;
    width: 3px;
    background: #252525;
    border-radius: 50%;
}

.firstFooter .tab2 ul li,
.firstFooter .tab2 a {
    color: #252525;
}

.firstFooter .tab2 ul li:hover,
.firstFooter .tab2 ul li:focus,
.firstFooter .tab2 a:hover,
.firstFooter .tab2 a:focus {
    color: #037034;
}

/* ============================================ Last Footer ============================================ */

.lastFooter {
    background-color: #ffffff;
    padding-top: 35px;
    padding-bottom: 35px;
    color: #252525;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

#innerfooter a:hover,
#innerfooter a:focus {
    color: #00752d;
}

#innerfooter li+li {
    margin-left: 15px;
}

@media (min-width: 1200px) {
    #innerfooter li+li {
        margin-left: 40px;
    }
}

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

    #innerfooter li+li {
        margin-left: 0;
    }
}


#counter span {
    font-weight: 700;
}