@import url('https://fonts.verwaltungsportal.de/import/?family=PT+Sans:400,400i,700,700i');

body {
    font-family: 'PT Sans', sans-serif;
    font-weight: 300;
    color: #2b2b2b;
    background: #ffffff;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.5;
}

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

a {
    color: #27824e;
}

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

#content a, b, strong {
    font-weight: 700;
}

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

#topbar {
    padding-top: 15px;
    padding-bottom: 15px;
    background: #fff;
}

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

/* ----------------------------------------------- styler ----------------------------------------------- */
@media (min-width: 992px) {
    #style button {
        border: none;
        color: #fff;
        display: inline-block;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        font-weight: 400;
        text-align: center;
        background-color: #27824e;
        position: relative;
        line-height: 1;
        -webkit-transition: transform 150ms linear;
        -moz-transition: transform 150ms linear;
        -ms-transition: transform 150ms linear;
        -o-transition: transform 150ms linear;
        transition: transform 150ms linear;
        font-size: 18px;
    }

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

    #style button:hover {
        background: #216e42;
        color: #ffde5c;
    }
}

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

form[id^="search"] {
    height: 44px;
    background: #fff;
    display: inline-block;
    position: relative;
    width: 100%;
    border: 1px solid #b2b2b2;
}

@media (max-width: 991px) {
    form[id^="search"] {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

form [id^="search_input"] {
    color: #2b2b2b;
    font-size: 16px;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 44px;
    padding-left: 14px;
    padding-right: 47px;
    height: 44px;
    width: 100%;
    font-weight: 300;
}

form [id^="search_submit"] {
    font-size: 0;
    width: 44px;
    height: 44px;
    border: 1px solid #ffde5c;
    background: url('../img/lupe-icon.png') center no-repeat, #ffde5c;
    background-size: 16px 16px;
    padding: 0;
    cursor: pointer;
    position: absolute;
    top: -1px;
    right: -1px;
    backface-visibility: hidden;
    -webkit-transition: transform 100ms linear;
    -moz-transition: transform 100ms linear;
    -ms-transition: transform 100ms linear;
    -o-transition: transform 100ms linear;
    transition: transform 100ms linear;
}

form [id^="search_submit"]:hover,
form [id^="search_submit"]:focus {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

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

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

[id^="search_input"]::-moz-placeholder, #newsletter_input::-moz-placeholder {
    opacity: 1;
}

[id^="search_input"]:-moz-placeholder, #newsletter_input:-moz-placeholder {
    opacity: 1;
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        border: none;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        cursor: pointer;
        background-color: #216e42;
        -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);
    }

    #burgerButtonInner2, #burgerButton:after, #burgerButtonInner {
        background-color: #fff;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        -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"] #burgerButtonInner2 {
        opacity: 0;
    }

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

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButtonInner2 {
        top: 24px;
    }

    #burgerButton:after {
        top: 32px;
        content: "";
        display: block;
    }

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

    .navbar-collapse {
        top: 0;
        background: #fff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-transition: left 300ms linear, opacity 300ms linear;
        -moz-transition: left 300ms linear, opacity 300ms linear;
        -ms-transition: left 300ms linear, opacity 300ms linear;
        -o-transition: left 300ms linear, opacity 300ms linear;
        transition: left 300ms linear, opacity 300ms linear;
    }

    .navbar-collapse[aria-expanded="true"],
    .navbar-collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-header {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
    }

    .navbar-toggle::before {
        content: "";
        opacity: 0;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 0;
        z-index: -1;
        display: block;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: width 300ms linear, opacity 300ms linear;
        -moz-transition: width 300ms linear, opacity 300ms linear;
        -ms-transition: width 300ms linear, opacity 300ms linear;
        -o-transition: width 300ms linear, opacity 300ms linear;
        transition: width 300ms linear, opacity 300ms linear;
    }

    .navbar-toggle[aria-expanded="true"]::before {
        opacity: 1;
        width: 90px;
    }
}

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

    .navbar-collapse.collapse.in:after,
    .navbar-toggle[aria-expanded="true"]::before {
        width: 40%;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    #menu {
        background-color: #fff;
        border-top: 1px solid rgba(218, 200, 138, 0.4);
    }

    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 .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }

    nav.horizontally .navbar-nav>li:last-of-type>.dropdown-menu {
        left: auto;
        right: 0;
    }

    nav.horizontally .navbar-nav>li:last-of-type>.dropdown-menu>li>.dropdown-menu {
        left: auto;
        right: 100%;
    }

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

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

    .navbar-default .navbar-nav li[class*="toplevel"]>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: opacity 300ms linear;
        -moz-transition: opacity 300ms linear;
        -ms-transition: opacity 300ms linear;
        -o-transition: opacity 300ms linear;
        transition: opacity 300ms linear;
    }

    .navbar-default .open>.dropdown-menu,
    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

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

    .navbar-default .nav .open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }

    .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: #2b2b2b;
    font-weight: 700;
    text-align: center;
    padding: 10px 35px;
    text-transform: uppercase;
    position: relative;
    font-family: 'PT Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

.navbar-default .navbar-nav>li:first-child>a {
    color: #2b2b2b;
    font-weight: 700;
    text-align: center;
    padding: 30px 35px;
    text-transform: uppercase;
    position: relative;
    font-family: 'PT Sans', sans-serif;
    font-size: 0;
    line-height: 1.2;
    text-decoration: none;
    background: url(../img/home-btn.png) center no-repeat;
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li {
        border-top: 1px solid rgba(218, 200, 138, 0.4);
    }
}

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

    .navbar-default .navbar-nav>li>a {
        padding: 19px 0;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: 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-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: #216e42;
    background-color: transparent;
}

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

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

.navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background-color: #fff;
    border-top: 4px solid #fcca00;
}


@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>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: 12px;
        padding-bottom: 12px;
    }

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

    .navbar-default .navbar-nav>li:nth-last-child(1)>.dropdown-menu {
        margin-top: 10px;
        left: 50%;
        -moz-transform: translate(0%, 0);
        -webkit-transform: translate(0%, 0);
        -o-transform: translate(0%, 0);
        -ms-transform: translate(0%, 0);
        transform: translate(0%, 0);
    }

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

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

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

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

.navbar-default .navbar-nav>li>.dropdown-menu>li>a, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #2b2b2b;
    font-weight: 400;
    text-align: center;
    padding: 8px 35px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

@media(min-width:992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu>li>a, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        padding: 8px 25px;
    }
}

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

.navbar-nav>li>.dropdown-menu>li:hover>a,
.navbar-nav>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus {
    color: #27824e;
}

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

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

#slider {
    height: 300px;
    overflow: hidden;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
}

@media (min-width: 992px) {
    #headerpic {
        overflow: hidden;
        position: relative;
        background-attachment: fixed;
        background-size: cover;
    }

     #slider {
        height: 400px;
    }

     .index #slider {
        height: 670px;
    }

    #headerpic {
        background: #000;
    }
}

#banneroverlay {
    position: relative;
    padding: 15px;
}

.slogan {
    color: #2b2b2b;
    font-size: clamp(30px, 5vw, 80px);
    font-weight: 700;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

.slogan a {
    color: #fff;
    background: #27824e;
    padding: 4px 14px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    font-family: 'PT Sans', sans-serif;
    font-size: 1rem;
    text-decoration: none;
}

.slogan a:hover,
.slogan a:focus {
    background: #ffde5c;
    color: #27824e;
}

@media (min-width: 992px) {
    #banneroverlay {
        position: absolute;
        bottom: 20%;
        z-index: 55;
        width: 100%;
    }

    .slogan {
        color: #fff;
    }
}

/* ----------------------------------------------- tabs ----------------------------------------------- */

#tabs {
    background: #f7f7f7;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #4b4b4b;
}

@media (min-width: 992px) {
    #tabs {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

#tabs .tab {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    min-height: 100%;
}

#tabs .tab>.row, #tabs .tab>.row>div {
    padding: 0;
    margin: 0;
}

@media (min-width: 992px) {
    #tabs .tab>.row {
        height: 100%;
        min-height: 100%;
    }
}

#tabs .tab.news {
    background-color: #fff;
}

#tabs .tab.contact {
    background-color: #fff;
}

@media (max-width: 575px) {
    #tabs .tab.contact {
        margin-top: 15px;
    }
}

#tabs .tab a {
    color: #27824e;
    text-decoration: none;
}

#tabs .tabHeadline {
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    color: #27824e;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
}

#tabs .tabHeadline::before {
    content: "";
    display: block;
    height: 91px;
    width: 100%;
    margin-bottom: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

#tabs .news .tabHeadline::before {
    background-image: url('../img/icon-kontakt.png');
}

#tabs .contact .tabHeadline::before {
    background-image: url('../img/icon-kontakt.png');
}

@media (min-width: 992px) {
    #tabs header {
        border-right: 2px solid #ffde5c;
    }

    #tabs .tabHeadline {
        height: 100%;
        min-height: 100%;
    }
}

@media (min-width: 1200px) {
    #tabs .tabHeadline {
        font-size: 1.5rem;
    }
}

#tabs .tabHeadline, #tabs .tabContent {
    padding: 28px;
}

@media (max-width: 768px) {
    #tabs .tabHeadline {
        padding-bottom: 0;
    }

    #tabs .tabContent {
        padding-top: 10px;
    }
}

#tabs .tabContent {
    line-height: 1.3;
}

.tab_link_title a {
    color: #27824e;
    font-weight: 600;
}

.tab_spacer {
    height: 15px;
}

.tab_link_mehr {
    color: transparent;
    margin-right: -3px;
}

@media (max-width: 768px) {
    .tab_link_mehr {
        text-align: center;
    }
}

.tab_link_mehr a {
    color: #fff;
    background: #27824e;
    padding: 4px 14px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    font-family: 'PT Sans', sans-serif;
    font-size: 1rem;
    text-decoration: none;
}

.tab_link_mehr a:hover,
.tab_link_mehr a:focus {
    background: #ffde5c;
    color: #27824e;
}

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

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

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


#natura {
    padding: 40px 0;
}

/* ------------------------------------------------ textIcons ----------------------------------------------- */

#textIcons {
    padding-top: 30px;
    padding-bottom: 30px;
    background: #ffffff;
    color: #2b2b2b;
    font-size: 1rem;
    background-size: cover;
    background-attachment: fixed;
}

@media (min-width: 992px) {
    #textIcons {
        padding: 110px 0;
    }
}

#textIcons a {
    color: #27824e;
}

#textIcons h1,
#textIcons h2,
#textIcons h3,
#textIcons h4,
#textIcons h5,
#textIcons h6 {
    color: #27824e;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

#textIcons .tab1 {
    background: url(../img/bg-tab.png) center no-repeat, rgba(255, 255, 255, 0.9);
    padding: 30px 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#textIcons .tabIcon {
    background: rgba(255, 255, 255, 0.9);
    padding: 80px 30px 30px 30px;
    height: 100%;
}

#textIcons>.row>div {
    margin-bottom: 30px;
}

.tabIcon .tabHeadline {
    position: relative;
}

.tabIcon .tabHeadline::before {
    content: '';
    display: block;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 46px;
    margin: 0 auto;
}

.tab2 .tabHeadline::before {
    background: url(../img/icon-beratung.png) no-repeat;
    width: 34px;
}

.tab3 .tabHeadline::before {
    background: url(../img/icon-artenschutz.png) no-repeat;
    width: 40px;
}

.tab4 .tabHeadline::before {
    background: url(../img/icon-natura.png) no-repeat;
    width: 40px;
}

.tab5 .tabHeadline::before {
    background: url(../img/icon-natur.png) no-repeat;
    width: 40px;
}

.tab6 .tabHeadline::before {
    background: url(../img/icon-wasser.png) no-repeat;
    width: 40px;
}

.tab7 .tabHeadline::before {
    background: url(../img/icon-management.png) no-repeat;
    width: 48px;
}

.tab8 .tabHeadline::before {
    background: url(../img/icon-umweltbildung.png) no-repeat;
    width: 45px;
}

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

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

H1, H3, H5, H2, H4, H6 {
    color: #27824e;
}

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

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

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

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

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

@media (min-width: 768px) {
    h3, .h3, .legacy_h3 {
        font-size: 2.1rem;
    }
}

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

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

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

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

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

#footer {
    background: url(../img/bg-footer.png) bottom left no-repeat, #216e42;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #f7ede5;
    border-bottom: 10px solid #27824e;
}

@media (min-width: 992px) {
    #footer {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

#footer a {
    color: #fff15f;
}

#footer H1, #footer H2, #footer H3, #footer H4, #footer H5, #footer H6 {
    color: #ffffff;
}

@media (max-width: 991px) {
    #footer H1, #footer H2, #footer H3, #footer H4, #footer H5, #footer H6 {
        margin-bottom: 10px;
    }
}

/* ---------------------------------------------- lastBox ---------------------------------------------- */

#lastBox {
    background-color: #27824e;
    padding: 20px 0;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

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

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

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

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

#vernetzt {
    text-align: right;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 auto;
    text-decoration: none;
}

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

#vernetzt span {
    color: #ffffff;
}

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

#vernetzt span span {
    display: block;
}

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