@import url('https://fonts.verwaltungsportal.de/import/?family=Source+Sans+3:400,400i,600,600i%7CPatrick+Hand:400,400i');

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

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

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

a {
    color: #a53b29;
}

a:hover {
    color: #a53b29;
    text-decoration: underline;
}


b,
strong {
    font-weight: 600;
}

#over {
    overflow: clip;
    position: relative;
}

/* ----------------------------------------------- contact ----------------------------------------------- */

.kontakt {
    font-size: 1rem;
}

.kontakt a {
    color: #a53b29;
    text-decoration: none;
}

#contactButton a {
    color: #444444;
    background-color: #ccdc65;
    display: inline-block;
    text-decoration: none;
    padding: 5px 25px;
    border-radius: 5px;
    font-size: 1.25rem;
    font-weight: 600;
}

#contactButton a:hover,
#contactButton a:focus {
    color: #fff;
    background-color: #417c29;
}

.adresse,
.telefon {
    position: relative;
}

.telefon :is(b, strong) {
    text-transform: uppercase;
}

.adresse {
    padding-left: 60px;
}

@media (min-width: 992px) {
    .telefon {
        margin-right: 32px;
    }

    .adresse {
        margin-left: 32px;
    }
}

.adresse::before {
    content: '';
    position: absolute;
    width: 52px;
    height: 53px;
    background: url(../img/address.png) no-repeat;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.telefon::before {
    content: '';
    position: absolute;
    width: 48px;
    height: 49px;
    background: url(../img/contact.png) no-repeat;
    left: -60px;
    top: 5px;
    bottom: 0;
    margin: auto 0;
}

@media (max-width: 991px) {

    .hiddenInfos {
        padding: 15px 10px;
        background: #ffffff;
    }

    .hiddenInfos>*+* {
        margin-top: 15px;
    }

    .adresse,
    .telefon {
        padding-left: 25px;
    }

    .adresse::before,
    .telefon::before {
        left: 0;
        width: 22px;
        aspect-ratio: 1/1;
        height: auto;
        background-size: contain;
    }
}

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

#topbar {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

#topbar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    pointer-events: none;
    background: linear-gradient(to right, rgba(191, 210, 35, 1) 0%, rgba(191, 210, 35, 1) 20%, rgba(2, 160, 60, 1) 20%, rgba(2, 160, 60, 1) 40%, rgba(191, 210, 35, 1) 40%, rgba(191, 210, 35, 1) 60%, rgba(2, 160, 60, 1) 60%, rgba(2, 160, 60, 1) 80%, rgba(191, 210, 35, 1) 80%, rgba(191, 210, 35, 1) 100%);
}

@media (min-width: 992px) {
    #topbar {
        padding-top: 40px;
    }

    #topbar .row>div:nth-child(2) {
        margin-bottom: 6px;
    }
}

@media (min-width: 1200px) {
    #topbar::after {
        content: '';
        position: absolute;
        background: url("../img/wachtel.png") no-repeat;
        width: 77px;
        height: 105px;
        left: calc(50% + 700px);
        bottom: -8px;
        z-index: 1;
    }
}

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

/* #region ---------------------------------- navigation ---------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        border: none !important;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        cursor: pointer;
        background-color: #ffffff;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

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

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

    #burgerButton::before {
        top: 24px;
        content: "";
    }

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

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

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: #002d55;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        overflow-y: auto;
        transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
        box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
    }

    .navbar-collapse:is([aria-expanded="true"], .in) {
        left: 0;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
    }

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

    .dropdown-toggle-button-wrapper {
        top: 7px;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 4px;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        background-color: #002d55;
        position: relative;
        background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 6px, rgba(255, 255, 255, 0) 6px, rgba(255, 255, 255, 0) 11px), repeating-linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 6px, rgba(255, 255, 255, 0) 6px, rgba(255, 255, 255, 0) 11px);
        background-size: 23px 1px;
        background-repeat: repeat-x;
        background-position: top 6px left, bottom 6px left;
    }

    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

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

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

    nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
        left: 100%;
        top: 0;
    }

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

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

    nav.horizontally .navbar-nav li.open>ul {
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden;
    }

    nav.horizontally .navbar-nav li:is(:hover, :focus)>ul {
        z-index: 1003;
    }

    nav.horizontally .dropdown-menu {
        min-width: 190px;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #ffffff;
    font-weight: 400;
    text-align: left;
    padding: 10px 15px 15px 15px;
    font-family: "Patrick Hand", sans-serif;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    nav.horizontally a[class*="toplevel"].dropdown-toggle {
        padding-right: 35px;
    }

    nav.horizontally a[class*="toplevel"] {
        overflow-wrap: break-word;
        word-wrap: break-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
    }
}

@media (min-width: 992px) {
    nav.horizontally li[class*="toplevel"]+li {
        margin-left: 20px;
    }

    nav.horizontally a[class*="toplevel"] {
        text-align: center;
        padding: 25px 0;
        font-size: 1.6875rem;
    }
}

nav.horizontally a[class*="toplevel"]::before {
    content: "";
    width: 20px;
    height: 9px;
    display: block;
    position: absolute;
    left: 30px;
    bottom: 0;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    background-color: #ffffff;
    opacity: 0;
    transition: opacity 300ms linear;
}

@media (min-width: 992px) {
    nav.horizontally a[class*="toplevel"]::before {
        left: calc(50% - 15px);
    }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
    color: #ffffff;
    background-color: transparent;
}

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::before,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"].open>a::before,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a::before,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::before {
    opacity: 1;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background-color: #f4f4f4;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    nav.horizontally [class*="toplevel"]>ul {
        padding: 10px 0;
    }
}

@media(min-width:992px) {
    nav.horizontally [class*="toplevel"] ul {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    nav.horizontally [class*="toplevel"]>ul {
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    nav.horizontally [class*="secondlevel"]>ul {
        margin-top: -18px;
        border-radius: 4px;
        margin-left: 10px;
    }

    nav.horizontally [class*="secondlevel"]>ul::before {
        content: "";
        position: absolute;
        display: block;
        width: 10px;
        top: 0;
        bottom: 0;
        left: -10px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #2e3c48;
    font-weight: 400;
    text-align: center;
    padding: 8px 25px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

@media(max-width:991px) {
    nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
        text-align: left;
        overflow-wrap: break-word;
        word-wrap: break-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
    }

    nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
        padding-right: 35px;
    }
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus) {
    background: #ccdc65;
    color: #2e3c48;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

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

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

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

    body.index #slider {
        max-height: 660px;
    }

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

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

    #slider+.nivo-controlNav {
        bottom: auto;
        top: 10px;
    }
}

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

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

.slider-mask {
    display: block;
    background: url("../img/welle-deko.png") no-repeat bottom -140px center;
}

@media (max-width: 991px) {
    .slider-mask {
        background: url("../img/welle-deko.png") bottom -25px center / 100% auto no-repeat;
    }
}

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

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

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

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

#tabs {
    padding-bottom: 50px;
}

#tabs .tabWrapper {
    margin-bottom: 30px;
}

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

#tabs .tab {
    background-color: #ffffff;
    padding: 0px 0px 20px 0px;
    color: #444444;
    font-size: 1rem;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

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

#tabs .tab>* {
    position: relative;
    z-index: 1;
}

#tabs .tab.widget,
#tabs .tab.school {
    margin-top: 30px;
}

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

    #tabs .tab.widget,
    #tabs .tab.school {
        margin-top: 0;
    }

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

#tabs .tab_spacer {
    height: 20px;
}

.tab .tabHeadline {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 400;
    padding: 18px 25px;
    text-align: center;
    margin-bottom: 0;
    font-family: "Patrick Hand", sans-serif;
    background-color: #002d55;
    background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 6px, rgba(255, 255, 255, 0) 6px, rgba(255, 255, 255, 0) 11px), repeating-linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 6px, rgba(255, 255, 255, 0) 6px, rgba(255, 255, 255, 0) 11px);
    background-size: 23px 1px;
    background-repeat: repeat-x;
    background-position: top 6px left, bottom 6px left;
}

.tab .tabContent {
    padding: 25px;
}

#tabs .tab .tabContent {
    font-size: 1rem;
    color: #444444;
}

#tabs .tab.school .tabContent :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.375rem;
    color: #002d55;
    font-family: "Patrick Hand", sans-serif;
}

#tabs .tab.school a {
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    color: #444444;
    background-color: #ccdc65;
    padding: 5px 15px;
    position: relative;
}

#tabs .tab.school a:focus,
#tabs .tab.school a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #417c29;
}

@media (max-width: 991px) {
    #tabs .tab img {
        height: auto !important;
    }
}

/* ------------------------------------------------ 12nw news ----------------------------------------------- */

.news {
    background-color: #ffffff;
    padding: 0px 0px 20px 0px;
    color: #444444;
    font-size: 1rem;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.news .tabHeadline {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 400;
    padding: 18px 25px;
    text-align: center;
    margin-bottom: 0;
    font-family: "Patrick Hand", sans-serif;
    background-color: #002d55;
    background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 6px, rgba(255, 255, 255, 0) 6px, rgba(255, 255, 255, 0) 11px), repeating-linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3) 6px, rgba(255, 255, 255, 0) 6px, rgba(255, 255, 255, 0) 11px);
    background-size: 23px 1px;
    background-repeat: repeat-x;
    background-position: top 6px left, bottom 6px left;
}

.news .tabContent {
    padding: 25px;
}

.news .tab_link_title a {
    font-weight: 400;
    font-size: 1.375rem;
    color: #002d55;
    font-family: "Patrick Hand", sans-serif;
}

.news .tab_link_mandat a {
    color: #444444;
    font-style: normal;
}

.news .tab_link_mehr {
    font-size: 0;
    position: relative;
}

.news .tab_link_mehr a,
#tabs .tab a {
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    color: #444444;
    background-color: #ccdc65;
    padding: 5px 15px;
    position: relative;
}

.news .tab_link_mehr a:focus,
.news .tab_link_mehr a:hover,
#tabs .tab a:hover,
#tabs .tab a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #417c29;
}

.news .tab_link_entry {
    border: none !important;
    display: flex !important;
    flex-wrap: wrap;
    position: relative;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
    padding-left: 95px;
    z-index: 12;
}

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

.news .tab_preview_picture {
    background: #ffffff;
}

.news .tab_preview_picture,
.news .tab_link_entry::after {
    position: absolute;
    display: inline-block;
    overflow: hidden;
    top: 50%;
    left: 10px;
    width: 70px;
    height: 70px;
    margin: -35px 0 0 0;
    border-radius: 50%;
}

.news .tab_link_entry::after {
    content: '';
    background: center / cover no-repeat, #666666;
    z-index: -1;
    outline: 1px dashed #0c375d;
}

.news .tab_preview_picture img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 110px;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
}

.news .tab_link_title a {
    color: #444444;
    font-weight: 600;
}

.news .tab_date {
    font-style: italic;
}

.news .vorschau,
.news .tab_link_entry>div:nth-last-child(2) {
    display: none;
}

.news .tab_link_entry .tab_spacer {
    height: 0;
}

.news .tab_spacer {
    height: 0px !important;
}

/* ------------------------------------------ h1, #content .legacy_h1, .legacy_h1 - h6, #content .legacy_h6, .legacy_h6, newslink ----------------------------------------- */

.h4link a:link,
.h4link a:hover,
.h4link a:visited,
h6,
#content .legacy_h6,
.legacy_h6,
h5,
#content .legacy_h5,
.legacy_h5,
h4,
#content .legacy_h4,
.legacy_h4,
h3,
#content .legacy_h3,
.legacy_h3,
h2,
#content .legacy_h2,
.legacy_h2,
h1,
#content .legacy_h1,
.legacy_h1 {
    color: #002d55;
    font-weight: normal;
    line-height: 1.2;
    font-family: 'Patrick Hand', cursive;
}

h1,
#content .legacy_h1,
.legacy_h1,
.h1 {
    font-size: 2.1875rem;
}

@media (min-width: 768px) {

    h1,
    #content .legacy_h1,
    .legacy_h1,
    .h1 {
        font-size: 2.8125rem;
    }
}

h2,
#content .legacy_h2,
.legacy_h2,
.h2 {
    font-size: 1.875rem;
}

@media (min-width: 48rem) {

    h2,
    #content .legacy_h2,
    .legacy_h2,
    .h2 {
        font-size: 2.5rem;
    }
}

h3,
#content .legacy_h3,
.legacy_h3,
.h3 {
    font-size: 1.725rem;
}

h4,
#content .legacy_h4,
.legacy_h4,
.h4,
.h4link a:link,
.h4link a:hover,
.h4link a:visited {
    font-size: 1.5rem;
}

h5,
#content .legacy_h5,
.legacy_h5,
.h5 {
    font-size: 1.4rem;
}

h6,
#content .legacy_h6,
.legacy_h6,
.h6 {
    font-size: 1.3rem;
}

#newslinks,
#newsmandate {
    border: 1px solid #2e3c48;
}

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

footer {
    position: relative;
}

#footer {
    padding-top: 25px;
    padding-bottom: 15px;
    color: #ffffff;
    position: relative;
    background-size: 23px 1px, 23px 1px, cover, auto;
    background-repeat: repeat-x, repeat-x, no-repeat, no-repeat;
    background-position: top 25px left, bottom 20px left, center, center;
}

@media (max-width: 991px) {
    #footer {
        background-size: 23px 1px, 23px 1px, cover, cover;
    }
}

#footer .tab.galerie a {
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 5px;
    color: #444444;
    background-color: #ccdc65;
    padding: 5px 15px;
    display: inline-block;
    margin-top: 10px;
    position: relative;
}

#footer .tab.galerie a:focus,
#footer .tab.galerie a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #417c29;
}

#footer .tab :is(h1, h2, h3, h4, h5, h6) {
    color: #fff;
    font-family: "Patrick Hand", sans-serif;
    font-size: 1.5625rem;
}

@media (min-width: 1200px) {
    #footer .tab img {
        max-width: 300px;
    }
}

footer::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(to right, rgba(191, 210, 35, 1) 0%, rgba(191, 210, 35, 1) 20%, rgba(2, 160, 60, 1) 20%, rgba(2, 160, 60, 1) 40%, rgba(191, 210, 35, 1) 40%, rgba(191, 210, 35, 1) 60%, rgba(2, 160, 60, 1) 60%, rgba(2, 160, 60, 1) 80%, rgba(191, 210, 35, 1) 80%, rgba(191, 210, 35, 1) 100%);
}

@media (min-width: 992px) {
    footer .row {
        align-content: center;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    #footer::after {
        content: '';
        position: absolute;
        background: url("../img/fuchs.png") no-repeat;
        width: 270px;
        height: 252px;
        display: block;
        top: -221px;
        left: 60px;
    }
}

/* ----------------------------------------------- @f5 footer ----------------------------------------------- */

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

.f5 {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #002d55;
}

@media (max-width: 991px) {
    .f5 {
        padding-bottom: 18px;
    }
}

/* --------------------------------------------- innerfooter -------------------------------------------- */

@media (max-width: 767px) {
    #innerfooter {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

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

#innerfooter li+li::before {
    content: "";
    margin: 0 6px;
}

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

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

    #innerfooter li+li::before {
        display: none;
    }
}

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

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

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

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

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