@import url("https://fonts.verwaltungsportal.de/import/?family=Barlow:400,400i,500,500i,600,600i,900,900i");

body {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    color: #3c4241;
    background: #eff7f7;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.5;
}

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

a {
    color: #023b6c;
}

a:hover,
a:focus,
#contentBox a {
    color: #023b6c;
    text-decoration: underline;
}

#contentBox a,
b,
strong {
    font-weight: 500;
}

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

.contact {
    background-color: #023b6c;
    color: #ffffff;
    font-size: 0.75rem;
    padding-top: 6px;
    padding-bottom: 6px;
    font-weight: 500;
}

@media (max-width: 991px) {
    #menu .contact {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 0.875rem;
    }

    #menu .contact p+p {
        margin-top: 8px;
    }
}

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

.contact b,
.contact strong {
    font-weight: 600;
}

.contact p {
    margin: 0;
    display: inline-block;
}

.contact p+p {
    margin-left: 15px;
}

@media (min-width: 992px) {
    .contact p+p {
        margin-left: 30px;
    }
}

.contact img {
    display: inline-block;
    margin-right: 2px;
    vertical-align: text-bottom;
}

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

#logo {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    color: #3c4241;
    text-decoration: none;
}

#logo b,
#logo strong {
    display: block;
    font-weight: 900;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    color: #023b6c;
}

#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-top: 15px;
        padding-bottom: 15px;
    }

    #burgerButton {
        font-size: 0;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        cursor: pointer;
        background: #ffffff;
        border: none !important;
        -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: #023b6c;
        color: #fff;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        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: #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;
        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);
        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 */

.is-sticky #menu {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    padding-top: 10px;
}

@media (min-width: 992px) {
    #menu {
        background: #eff7f7;
        padding-top: 30px;
        padding-bottom: 30px;
        transition: padding-top 200ms linear, box-shadow 200ms linear, background 200ms linear;
    }

    nav.horizontally .navbar-nav {
        margin-top: 30px;
        padding-left: 40px;
        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>.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;
    }
}

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

.navbar-default .navbar-nav>li>a {
    color: #3c4241;
    font-weight: 600;
    text-align: left;
    padding: 15px 15px;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.2;
    text-decoration: none;
}

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

    nav.horizontally .navbar-nav>li>a.dropdown-toggle {
        padding-right: 35px;
    }
}

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

    .navbar-default .navbar-nav>li>a {
        padding: 11px 0;
        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;
    }
}

.navbar-default .navbar-nav>li>a::before {
    content: "";
    width: 0;
    height: 4px;
    display: block;
    position: absolute;
    left: 0;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    background-color: #023b6c;
    opacity: 0;
    -webkit-transition: opacity 300ms linear, width 300ms linear;
    -moz-transition: opacity 300ms linear, width 300ms linear;
    -ms-transition: opacity 300ms linear, width 300ms linear;
    -o-transition: opacity 300ms linear, width 300ms linear;
    transition: opacity 300ms linear, width 300ms linear;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a::before {
        left: 50%;
    }
}

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

.navbar-nav>li:hover>a::before,
.navbar-nav>li>a:hover::before,
.navbar-nav>li>a:focus::before,
.navbar-nav>li.open>a::before,
.navbar-nav>li.open>a:hover::before,
.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 {
    opacity: 1;
    width: 100%;
}

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

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

.navbar-default .navbar-nav>li>.dropdown-menu,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background-color: #ffffff;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
}

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

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

@media (min-width: 992px) {

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

    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: 10px;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }

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

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-top: -10px;
        border-radius: 3px;
        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 -------------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu>li>a,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #3c4241;
    font-weight: 400;
    text-align: left;
    padding: 9px 25px 9px 35px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
}

@media (max-width: 991px) {
    nav.horizontally .navbar-nav>li>.dropdown-menu>li>a.dropdown-toggle2 {
        padding-right: 35px;
    }
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a::before,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a::before {
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0079aa;
    -webkit-transition: background 300ms linear;
    -moz-transition: background 300ms linear;
    -ms-transition: background 300ms linear;
    -o-transition: background 300ms linear;
    transition: background 300ms linear;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li+li:not(:nth-child(2)),
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li+li:not(:nth-child(2)) {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

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

.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,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus::before {
    background: #023b6c;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a::before,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a::before {
    background: #023b6c;
}

/* ------------------------------------------- button design ------------------------------------------- */

.buttonStyle a {
    display: inline-block;
    background: #026350;
    border-radius: 3px;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 5px 20px;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    -moz-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    -ms-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    -o-transition: background 300ms linear, color 300ms linear, border 300ms linear;
    transition: background 300ms linear, color 300ms linear, border 300ms linear;
}

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

.buttonStyle a::after {
    content: "\00BB";
    margin-left: 4px;
    position: relative;
    bottom: 1px;
}

.buttonStyle a:hover,
.buttonStyle a:focus {
    color: #291809;
    background: #023b6c;
    border-color: #023b6c;
}

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

#slider {
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.15);
    z-index: 45;
    margin-bottom: -1px;
}

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

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

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


@media (min-width: 768px) {
    #slider{
        margin-top: 30px;
    }
}

#headerpic {
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding-top: 18px;
}

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

#bannerOverlay {
    display: flex;
    align-items: center;
    padding: 30px 0;
    position: relative;
    color: #fff;
}

#bannerOverlay :is(h1, h2, h3, h4, h5, h6, a) {
    color: #fff;
    margin: 0;
}

#bannerOverlay a {
    text-decoration: underline;
}

@media (min-width: 768px) {
    #bannerOverlay::before {
        content: '';
        pointer-events: none;
        width: 185px;
        height: 100%;
        top: 0;
        position: absolute;
        left: -160px;
        background-color: #0079aa;
    }

    
    #bannerOverlay{
        padding: 40px;
        height: calc(100% - 30px);
        background: url(../img/deko-banner.png) no-repeat right -50px bottom -50px, #0079aa;
    }
}

@media (max-width: 767px) {

    #headerpic{
        background: url(../img/deko-banner.png) no-repeat right -50px bottom -50px, #0079aa;
    }

    #headerpic > .row{
        max-width: 100%;
        width: 100%;
    }
}

#bannerOverlay :is(h4, h5, h6) {
    font-size: clamp(1.25rem, 2vw, 1.625rem);
}

#bannerOverlay :is(h1, h2, h3) {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
}


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

.search {
    padding-top: 30px;
    margin: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

form[id^="search"] {
    display: inline-block;
    position: relative;
    margin: 0;
    width: 100%;
}

form[id^="search"] label {
    display: block;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 18px;
    line-height: 1;
}

form [id^="search_input"] {
    color: #383838;
    font-size: 15px;
    font-style: normal;
    padding: 0;
    border: 0;
    line-height: 38px;
    padding-left: 14px;
    padding-right: 47px;
    height: 38px;
    width: 100%;
    border-radius: 3px;
    background: #ffffff !important;
}

form [id^="search_submit"] {
    width: 38px;
    height: 38px;
    border: none;
    background: url("../img/icon-suche.png") center no-repeat;
    padding: 0;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 0;
    transition: background 150ms linear;
}

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

[id^="search_input"]::-ms-input-placeholder {
    color: #383838 !important;
    font-style: italic;
}

[id^="search_input"]::-webkit-input-placeholder {
    color: #383838 !important;
    font-style: italic;
}

[id^="search_input"]::-moz-placeholder {
    opacity: 1;
    font-style: italic;
}


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

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

@media (min-width: 992px) {
    .index #contentBox {
        padding-bottom: 80px;
        padding-top: 30px;
    }
    #contentBox {
        padding-bottom: 80px;
        padding-top: 80px;
    }
}

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

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
    color: #023b6c;
    font-weight: 600;
    line-height: 1.2;
    font-family: "Barlow", sans-serif;
}

h1 em,
h1 i,
h2 em,
h2 i,
h3 em,
h3 i {
    display: inline-block;
    font-style: normal;
    font-size: 68%;
}

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.625rem;
}

@media (min-width: 768px) {

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

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

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

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

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

#newslinks,
#newsmandate {
    border: 1px solid #023b6c;
}

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

#contact {
    background: #0079aa;
    overflow: hidden;
}

#contact>.row>div {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    #contact>.row>div {
        padding-top: 70px;
        padding-bottom: 60px;
    }
}

#contact>.row>div:last-child {
    position: relative;
    background: #023b6c;
}

@media (min-width: 768px) {
    #contact>.row>div:last-child {
        padding-left: 30px;
    }
}

@media (min-width: 1200px) {
    #contact>.row>div:last-child {
        padding-left: 60px;
    }
}

#contact>.row>div:last-child::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -50vw;
    width: 50vw;
    background: #023b6c;
}

@media (max-width: 767px) {
    #contact>.row>div:last-child::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: -50vw;
        width: 50vw;
        background: #023b6c;
    }
}

#contact h1,
#contact h2,
#contact h3,
#contact h4,
#contact h5,
#contact h6,
#contact .tab {
    color: #ffffff;
}

#contact .tabHeadline {
    position: relative;
}

#contact .tabHeadline::after {
    content: '';
    display: block;
    height: 4px;
    width: 120px;
    background: #ffffff;
    margin-top: 20px;
}

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

#contact .tabHeadline2 {
    font-size: 1.25rem;
    margin: 0 0 15px 0;
    width: 100%;
}

#contact .phoneNumber {
    background: #ffffff;
    border-radius: 3px;
    padding: 7px 20px;
    font-weight: 600;
    font-size: 26px;
    color: #3c4241;
}

#contact .phoneNumber a {
    color: #3c4241;
}

@media (min-width: 576px) {
    #contact .phoneNumber {
        font-size: clamp(1.375rem, 2vw, 1.75rem);
    }
}

@media (min-width: 1200px) {
    #contact .phoneNumber {
        font-size: 32px;
    }
}

#contact table td,
#contact table th {
    padding: 0 4px;
}

#contact table td:first-of-type,
#contact table th:first-of-type {
    padding: 0;
}

/* ------------------------------------------------ quote ----------------------------------------------- */

#quote {
    padding-bottom: 100px;
    background: url("../img/deko-psychologie.png") center bottom 20px no-repeat;
}

.index #quote {
    padding-top: 40px;
}

@media (max-width: 767px) {
    #quote {
        background-size: auto 90px;
    }
}

@media (min-width: 768px) {
    #quote {
        padding-bottom: 40px;
    }

    .index #quote {
        padding-top: 130px;
    }
}

#quote :is(h3, h4, h5, h6) {
    font-size: 1.375rem;
}

#quote h2 {
    color: #023b6c;
    font-size: 2rem;
}

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

footer {
    background-color: #023b6c;
    padding-top: 40px;
    padding-bottom: 40px;
    color: #ffffff;
    font-size: 1rem;
}

@media (min-width: 1199px) {
    footer>.row>div:nth-child(2) {
        padding-left: 30px;
        padding-right: 30px;
    }
}

footer a {
    color: #ffffff;
}

footer iframe,
footer .iframe-wrapper-manual-enabling {
    width: 100% !important;
    min-width: 100% !important;
}

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

.footerTab a,
.footerTab a {
    text-decoration: underline;
    border-radius: 3px;
    padding: 2px;
}

.footerTab a:hover,
.footerTab a:focus {
    background-color: rgba(0, 0, 0, 0.2);
}

.footerTab h1,
.footerTab h2,
.footerTab h3,
.footerTab h4,
.footerTab h5,
.footerTab h6 {
    font-size: 1.375rem;
    margin: 0;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

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

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

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

/* ----------------------------------------------- contrast ----------------------------------------------- */

.contrast_light_font form [id^="search_submit"] {
    background: url("../img/icon-suche.png") center no-repeat;
}

.contrast_light_font form [id^="search_input"],
.contrast_light_font #news .tab,
.contrast_light_font #eventsBG .tab,
.contrast_light_font #contact .phoneNumber,
.contrast_dark_font #contrast_style button {
    background: #000000 !important;
}

.contrast_light_font #news .tab_link_title a::before,
.contrast_dark_font #news .tab_link_title a::before,
.contrast_light_font #contact>.row>div:last-child::after,
.contrast_light_font #contact>.row>div:last-child::before,
.contrast_dark_font #contact>.row>div:last-child::after,
.contrast_dark_font #contact>.row>div:last-child::before {
    display: none !important;
}

.contrast_dark_font #bannerOverlay,
.contrast_dark_font #news .tab {
    background: #ffffff !important;
}