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

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

a {
    color: #150460;
}

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

b, strong {
    font-weight: 500;
}

@media (min-width: 1200px) {
    .row, .compact, ._op-container .container {
        max-width: 1440px;
        width: 100%;
    }
}

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

#topbar {
    position: relative;
    -webkit-box-shadow: 0 0 5px 0 rgba(43, 43, 43, 0.2);
    box-shadow: 0 0 5px 0 rgba(43, 43, 43, 0.2);
}

@media (max-width: 991px) {
    #topbar {
        min-height: 95px;
    }
}

@media (min-width: 992px) {
    #topbar {
        background: #ffffff;
    }

    #topbar>.row>div:last-child {
        padding-top: 34px;
        padding-bottom: 40px;
    }
}

#topbar::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 12px;
    right: 0;
    height: 12px;
    background-image: url('../img/rope-topbar.png');
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

#topbar .tab+.tab {
    padding-left: 30px;
}

.buttonStyle a {
    font-size: 14px;
    font-weight: 700;
    position: relative;
    color: #444444;
    padding-left: 30px;
    width: 100%;
    text-decoration: none;
}

.buttonStyle a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    margin: auto;
}

.buttonStyle.tabLink1 a::before {
    width: 18px;
    height: 21px;
    background-image: url('../img/easy_language.png');
}

.buttonStyle.tabLink2 a::before {
    width: 20px;
    height: 20px;
    background-image: url('../img/normal_language.png');
}

.buttonStyle.tabLink1:not(.active),
.buttonStyle.tabLink2:not(.active) {
    opacity: 0.6;
}

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

#logo {
    display: inline-block;
    padding: 14px 20px 20px 20px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 5px 0 rgba(43, 43, 43, 0.2);
    box-shadow: 0 0 5px 0 rgba(43, 43, 43, 0.2);
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 50;
}

#logo img {
    display: block;
}

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

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

@media (min-width: 992px) {
    #contrast_style span {
        color: #444444;
        font-size: 0.875rem;
        font-weight: 700;
        padding-right: 8px;
    }

    #contrast_style {
        line-height: 0;
        display: flex;
        align-items: center;
        padding-right: 35px;
    }

    #contrast_style button {
        padding: 0;
        height: 34px;
        width: 34px;
        border: 1px solid #000000;
        border-radius: 5px;
        background: #ffffff;
        display: inline-block;
    }

    button#whiteBlack {
        background-color: #150460;
    }

    #contrast_style button+button {
        margin-left: 10px;
    }
}

/* ----------------------------------------------- styler ----------------------------------------------- */

@media (min-width: 992px) {
    #style span {
        color: #444444;
        font-size: 0.875rem;
        font-weight: 700;
        padding-right: 8px;
    }

    #style {
        display: flex;
        align-items: center;
    }

    #style button {
        font-size: 20px;
        height: 34px;
        width: 34px;
        border: 1px solid #000000;
        border-radius: 5px;
        background-color: #ffffff;
        padding: 0;
        color: #444444;
        display: inline-block;
        font-weight: 400;
        text-align: center;
        position: relative;
        line-height: 1;
        -webkit-transition: color 150ms linear;
        -moz-transition: color 150ms linear;
        -ms-transition: color 150ms linear;
        -o-transition: color 150ms linear;
        transition: color 150ms linear;
    }

    button#font_std {
        background-color: #150460;
        color: #ffffff;
    }

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

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

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

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

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

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

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

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

#headerpic .nivo-controlNav {
    bottom: 25px;
}

@media (min-width: 768px) {
    #headerpic .nivo-controlNav {
        bottom: 40px;
    }

    .index #headerpic .nivo-controlNav {
        bottom: 110px;
    }
}

@media (min-width: 992px) {
    .index #headerpic .nivo-controlNav {
        bottom: 170px;
    }
}

@media (min-width: 1200px) {
    #headerpic .nivo-controlNav {
        bottom: 60px;
    }
}


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

.slider-mask {
    display: block;
    background: url('../img/banner-overlay.png') center bottom / 100% auto no-repeat, linear-gradient(to top, rgba(48, 75, 120, 1), rgba(255, 255, 255, 0) 200px);
}

/* ------------------------------------ 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;
        -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: #150460;
        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: #ffffff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-transition: left 300ms linear, opacity 300ms linear;
        -moz-transition: left 300ms linear, opacity 300ms linear;
        -ms-transition: left 300ms linear, opacity 300ms linear;
        -o-transition: left 300ms linear, opacity 300ms linear;
        transition: left 300ms linear, opacity 300ms linear;
    }

    .navbar-collapse[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;
    }

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

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

@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) {
    #navContainer {
        margin-top: -140px;
        position: relative;
        z-index: 99;
    }

    nav {
        border-radius: 2px;
        padding: 2px 2px 30px 2px;
        background: #ffffff;
        position: relative;
        -webkit-box-shadow: 0 0 5px 0 rgba(43, 43, 43, 0.2);
        box-shadow: 0 0 5px 0 rgba(43, 43, 43, 0.2);
    }

    #navContainer::after {
        content: "";
        display: block;
        position: fixed;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        pointer-events: none;
        background: rgba(48, 75, 120, 0.2);
        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;
    }

    #navContainer:hover::after {
        opacity: 1;
    }

    .navbar-default .navbar-nav {
        width: 100%;
    }

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

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

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

    .navbar-default .navbar-nav>li.open:hover>.dropdown-menu, .navbar-default .navbar-nav>li:hover>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
        z-index: 1003;
    }

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

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

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

@media (min-width: 1200px) {
    nav {
        padding: 30px 20px;
    }
}

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

.navbar-default .navbar-nav>li>a {
    color: #444444;
    font-weight: 700;
    text-align: left;
    padding: 10px 35px 10px 10px;
    position: relative;
    font-size: 1.125rem;
    background: #f8f8f8;
    line-height: 1.2;
    text-decoration: none;
}

.navbar-default .navbar-nav>li+li>a {
    margin-top: 2px;
}

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

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        padding: 9px 15px;
    }

    .navbar-default .navbar-nav>li>a.dropdown-toggle::before {
        content: "\00BB";
        position: absolute;
        right: 15px;
        top: 21px;
        line-height: 0;
    }

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

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

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

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

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

.navbar-default .navbar-nav>li>.dropdown-menu {
    padding: 10px;
    background: #ffffff;
    border-radius: 2px;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: -20px;
        padding: 20px 20px;
        min-width: 360px;
        max-width: 500px;
        margin-left: 50px;
        min-height: 200px;
        -webkit-box-shadow: 0 0 5px 0 rgba(43, 43, 43, 0.2);
        box-shadow: 0 0 5px 0 rgba(43, 43, 43, 0.2);
    }

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

    .navbar-default .navbar-nav>li>.dropdown-menu::before,
    .navbar-default .navbar-nav>li>.dropdown-menu::after {
        content: "";
        position: absolute;
        display: block;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu::before {
        width: 50px;
        top: 0;
        bottom: 0;
        left: -50px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu::after {
        top: 12px;
        left: -24px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 17px 24px 17px 0;
        border-color: transparent #ffffff transparent transparent;
    }
}

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

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

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

.navbar-default .navbar-nav>li>.dropdown-menu>li>a, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #444444;
    font-size: 1rem;
    text-align: left;
    position: relative;
    line-height: 1.2;
    text-decoration: none;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a {
    padding: 8px 35px 8px 10px;
    background: #f8f8f8;
    font-weight: 700;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu>li>a {
        padding: 10px 20px
    }
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    padding: 6px 15px 6px 38px;
    font-weight: 400;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a::before {
    content: "\00BB";
    display: block;
    position: absolute;
    top: 15px;
    line-height: 0;
    left: 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 {
    background: #150460;
    color: #ffffff;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a {
    background: #150460;
    color: #ffffff;
}

.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: #150460;
}

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

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

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

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

    main {
        background: url('../img/hintergrund.png') bottom 250px left no-repeat;
    }

}

@media (max-width: 991px) {
    #bg-left {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
}

hr, .hrstyle {
    opacity: 1;
    background: rgba(110, 110, 110, 0.3);
}

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

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

h1 em, h1 i,
h2 em, h2 i,
h3 em, h3 i {
    font-style: normal;
    font-weight: 700;
    color: #2707b2;
    font-size: 75%;
    position: relative;
    top: -5px;
}

@media (min-width: 768px) {

    h1 em, h1 i,
    h2 em, h2 i,
    h3 em, h3 i {
        margin-left: 35px;
    }
}

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

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

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

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

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

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

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

@media (min-width: 768px) {
    h4, .h4, .h4link a:link, .h4link a:hover, .h4link a:focus, .h4link a:visited, .legacy_h4 {
        font-size: 1.7rem;
    }
}

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

@media (min-width: 768px) {
    h5, .h5, .legacy_h5 {
        font-size: 1.6rem;
    }
}

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

@media (min-width: 768px) {
    h6, .h6, .legacy_h6 {
        font-size: 1.5rem;
    }
}

#newslinks, #newsmandate {
    border: 1px solid #304b78;
}

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

#tabs {
    padding-bottom: 35px;
}

#tabs hr {
    margin: 0 0 35px 0;
}

#tabs a {
    text-decoration: underline;
}

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

    #tabs hr {
        margin: 0 0 50px 0;
    }
}

@media (max-width: 991px) {
    #tabs>.row>div:not(:first-child)+div {
        margin-top: 30px;
    }
}

#tabs .tab {
    height: 100%;
    min-height: 100%;
    background: #ffffff;
    width: 50%;
    padding: 40px 25px 55px 35px;
}

#tabs .tabHeadline {
    color: #150460;
    margin-bottom: 15px;
    font-size: 25px;
}

@media (min-width: 992px) {

    #tabs .tabHeadline {
        margin-bottom: 25px;
    }
}


@media (min-width:768px) {

    #tabs .tab1, #tabs .tab2 {
        min-height: 100%;
        display: flex;
    }
}

.imgTab {
    width: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
}

.tab1, .tab2 {
    position: relative;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width:767px) {
    #tabs .tab {
        width: 100%;
    }

    .imgTab {
        width: 100%;
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        position: relative;
        top: 0;
        bottom: 0;
        left: 0;
        height: 210px;
    }

    .tab2 {
        padding-top: 0;
    }
}

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

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer .footerHeadline {
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 400;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer a,
footer a:hover {
    color: #ffffff;
}

.footerTab a {
    text-decoration: underline;
}

#footer {
    color: #ffffff;
    position: relative;
    background: #150460;
    padding-top: 45px;
    padding-bottom: 30px;
    margin-bottom: 200px;
}

footer {
    position: relative;
}

@media (min-width: 576px) and (max-width: 991px) {
    #footer>.row>div+div {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    #footer>.row>div:first-child {
        padding-bottom: 25px;
    }

    #footer>.row>div:last-child {
        padding-top: 25px;
    }
}

@media (min-width: 992px) {
    #footer>.row>div+div {
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    #footer>.row>div:first-child {
        padding-right: 40px;
    }

    #footer>.row>div:last-child {
        padding-left: 40px;
    }
}

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

    footer::before {
        content: '';
        position: absolute;
        background-image: url('../img/boat.png');
        background-position: right center;
        background-repeat: no-repeat;
        top: 0;
        right: 0;
        bottom: -9vw;
        left: 0;
        z-index: 12;
        pointer-events: none;
    }
}

#footer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -200px;
    display: block;
    height: 200px;
    background-position: center top, center;
    background-size: 100% auto, cover;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    #footer {
        margin-bottom: 375px;
    }

    #footer::after {
        bottom: -375px;
        height: 375px;
    }
}

#footer::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 12px;
    right: 0;
    height: 12px;
    background-image: url('../img/rope-footer.png');
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

#innerfooter a:hover,
#innerfooter a:focus {
    text-decoration: none;
}

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

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

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

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

.contrast_light_font #topbar,
.contrast_dark_font #topbar,
.contrast_light_font main,
.contrast_dark_font main {
    background: inherit;
}

.contrast_light_font .navbar-default .navbar-nav>li>.dropdown-menu::after {
    border-color: transparent #000000 transparent transparent;
}

.contrast_light_font #bg-content {
    z-index: 60;
    position: relative;
}

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

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

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

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

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

#vernetzt img {
    margin-right: 10px;
}

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

@media (min-width:768px) and (max-width:991px) {
    #vernetzt {
        margin-right: 70px;
    }
}