@import url("https://fonts.verwaltungsportal.de/css/?family=Open+Sans:400,700,400i,700i");
@import url("https://fonts.verwaltungsportal.de/css/?family=Roboto:700");

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

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    color: #2d2d2d;
    background: #ffffff;
    font-size: clamp(1rem, 2vw, 1.125rem);
    /* 1rem = 16px */
    line-height: 1.5;
}

a {
    color: #b61d22;
}

a:is(:hover, :focus) {
    color: #b61d22;
    text-decoration: underline;
}

b,
strong {
    font-weight: 700;
}


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

#topbar {
    padding: 10px 0;
}

#logo {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
}

.logoText {
    margin-left: clamp(15px, 4vw, 50px);
}

#logo :is(h1, h2, h3) {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
}



#logo img {
    display: block;
}

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

#search {
    display: inline-block;
    position: relative;
    display: flex;
    align-items: stretch;
    max-width: 300px;
    width: 100%;
    border: 1px solid #1d5997;
}


@media (max-width: 991px) {
    #search {
        max-width: 100%;
        margin-top: 30px;

    }
}

#search_input {
    color: #000000;
    font-size: 0.875rem;
    background: transparent;
    padding: 0;
    border: 0;
    padding-left: 10px;
    width: 100%;
    font-style: italic;
    min-height: 40px;
    width: 100%;
    display: block;

}

#search_submit {
    width: 45px;
    background: url('../img/icon_suchen.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    border: none;
    position: relative;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    transition: background-color 300ms linear;
}

#search_submit:hover {
    background-color: rgba(0, 0, 0, 0.08);
}

#search_input::-ms-input-placeholder {
    color: #000000 !important;
}

#search_input::-webkit-input-placeholder {
    color: #000000 !important;
}

#search_input::-moz-placeholder {
    opacity: 1;
}

#search_input:-moz-placeholder {
    opacity: 1;
}


/* #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: #1d5997;
        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: #1d5997;
        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: #1d5997;
        position: sticky;
        z-index: 155;
        top: 0;
        left: 0;
    }

    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;
        visibility: hidden;
        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.open>ul {
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden;
    }

    nav.horizontally .navbar-nav li:is(:hover)>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:is(:hover, :focus)>ul {
        z-index: 1003;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #ffffff;
    font-weight: 700;
    text-align: left;
    padding: 10px 15px 15px 15px;
    text-transform: uppercase;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

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

@media (min-width: 992px) {

    nav.horizontally a[class*="toplevel"] {
        text-align: center;
        padding: 30px 10px;
    }
}


@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: #b61d22;
}


/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background-color: #fff;
    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 {
        left: 0;
        margin-top: 30px;
    }

    nav.horizontally [class*="secondlevel"]>ul {
        margin-top: -18px;
        margin-left: 30px;

    }


    nav.horizontally [class*="toplevel"]>ul::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid #fff;
        position: absolute;
        top: -15px;
        left: 30px;
        pointer-events: none;
    }

    nav.horizontally [class*="secondlevel"]>ul::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-right: 15px solid #fff;
        position: absolute;
        top: 21px;
        left: -15px;
        pointer-events: none;
    }

    nav.horizontally [class*="toplevel"]>ul::before {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        top: -30px;
        height: 30px;

    }

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

/* secondlevel + thirdlevel */

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

@media(max-width:991px) {
    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: #b61d22;
    color: #fff;
}

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

#slider {
    max-height: clamp(300px, 42vw, 400px);
    position: relative;
}

@media (min-width: 992px) {
    body.index #slider {
        max-height: clamp(400px, 62vw, 650px);
    }

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

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

#headerpic {
    padding: 0;
    overflow: hidden;
    position: relative;
}

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

.slider-mask {
    display: none;
}


#scrollBottomBtn {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 50px;
    z-index: 12;
    width: 60px;
    height: 60px;
    display: flex;
    text-align: center;
    justify-content: center;
    background-color: rgba(29, 89, 151, 0.8);
    font-size: 0;
    padding: 0;
    color: #fff;
    animation: bounce 4s ease-in-out infinite;
}

#scrollBottomBtn:hover {
    animation-play-state: paused;
}

@keyframes bounce {

    0%,
    20%,
    100% {
        transform: translate(-50%, 0);
    }

    10% {
        transform: translate(-50%, -15px);
    }
}

#scrollBottomBtn::after {
    content: '';
    width: 20px;
    height: 20px;
    border-bottom: 4px solid #fff;
    border-right: 4px solid #fff;
    transform: rotate(45deg);
    margin: 10px;
    border-radius: 3px;
    top: 3px;
    position: relative;
}


/* ----------------------------------------------- @1nw news -------------------------------------------- */

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

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

#nw1 .tab {
    color: #ffffff;
    padding: 30px;
    overflow: hidden;
    border-radius: 3px;
    background: url('../img/newspaper-icon.png') top 20px right 20px no-repeat, #1d5997;
}

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

#nw1 .tabHeadline {
    color: #ffffff;
    font-weight: 400;
    hyphens: auto;
    font-size: clamp(1.75rem, 2vw, 2rem);
    padding-right: 30px;
}

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

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

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

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

#nw1 .tab_link_entry {
    font-size: 1rem;
    position: relative;
    width: 100%;
    padding: 160px 30px 30px 30px;
    background: #ffffff;
    border-bottom: 3px solid #1d5691;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
}

#nw1 .vorschau {
    opacity: 1;
}

#nw1 .tab_preview_picture {
    background: #ffffff;
}

#nw1 .tab_link_entry::before,
#nw1 .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 120px;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}

#nw1 .tab_link_entry::before {
    content: "";
    background: center / cover no-repeat, #666666;
}

#nw1 .tab_preview_picture img {
    position: absolute;
    margin: 0 !important;
    left: 50%;
    top: 50%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    max-width: 350px;
    width: auto;
    height: auto;
    -ms-interpolation-mode: bicubic;
    transform: translateX(-50%) translateY(-50%);
}

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

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

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

/* ------------------------------------------- @1nw buttonStyle ------------------------------------------- */



#tabs .tab_link_mehr {
    font-size: 0;
}

#tabs .tab_link_mehr a,
#nw1 .buttonStyle a {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #ffffff;
    padding: 5px 12px;
    border: 1px solid #ffffff;
    background: #1d5997;
    transition: background 300ms linear, color 300ms linear;
}

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

#tabs .tab_link_mehr a:hover,
#tabs .tab_link_mehr a:focus,
#nw1 .buttonStyle a:hover,
#nw1 .buttonStyle a:focus {
    color: #ffffff;
    background: #004261;
}



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

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
    color: #2d2d2d;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Open Sans", sans-serif;
}

h1,
.h1,
.legacy_h1 {
    font-size: clamp(1.875rem, 5.5vw, 2.375rem);
}

h2,
.h2,
.legacy_h2 {
    font-size: clamp(1.75rem, 5vw, 2.2125rem);
}

h3,
.h3,
.legacy_h3 {
    font-size: clamp(1.625rem, 4.5vw, 2.1rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

h5,
.h5,
.legacy_h5 {
    font-size: clamp(1.375rem, 3.5vw, 1.875rem);
}

h6,
.h6,
.legacy_h6 {
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
}



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

#content {
    padding: 0 0 60px 0;
}

body:not(.index) #content {
    padding-top: 30px;
}

/* ----------------------------------------------- breaker ----------------------------------------------- */


#breaker {
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

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

#breaker .tabContent {
    padding-right: 30px;
}

#breaker .linkStyle {
    padding-left: 30px;
    line-height: 35px;
}

#breaker .linkStyle a {
    font-size: 2.875rem;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
}

#breaker .linkStyle p::after {
    content: '»';
    font-family: "Roboto", sans-serif;
    font-size: 85px;
    position: relative;
    /* bottom: -5px; */
    position: absolute;
    right: -37px;
    bottom: 0;
    /* transform: translateY(-50%); */
    line-height: 68px;
}

#breaker .tabContent :is(h2, h3) {
    margin: 0;
    text-transform: uppercase;
}

#breaker .tabContent h3 {
    margin-bottom: 30px;
}

#breaker>.row>.col-xs-12:nth-child(1)::before {
    left: -40vw;
    width: 40vw;
    height: 100%;
    content: "";
    background: rgba(6, 43, 81, 0.80);
    position: absolute;
    top: 0;
}

#breaker>.row>.col-xs-12:nth-child(2)::after {
    right: -40vw;
    width: 40vw;
    height: 100%;
    content: "";
    background: rgba(141, 14, 18, 0.70);
    position: absolute;
    top: 0;
}

#breaker>.row>.col-xs-12 {
    min-height: 400px;
}

#breaker>.row>.col-xs-12:nth-child(1) {
    background: rgba(6, 43, 81, 0.80);
}

#breaker>.row>.col-xs-12:nth-child(2) {
    background: rgba(141, 14, 18, 0.70);
}


/* ----------------------------------------------- @10ev events -------------------------------------------- */

#tabs {
    padding: 60px 0;
}


#tabs .tab {
    margin-top: 32px;
    position: relative;
    background: #ffffff;
    font-size: 0.9375rem;
    color: #444444;
    border-top: 4px solid #1d5895;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    #tabs>.row>.col-xs-12 {
        margin-top: 60px;

    }
}


#tabs .tab::before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -32px;
    left: 50%;
    margin-left: -30px;
    border-radius: 50%;
    background: url("../img/date-icon.png") center no-repeat, #ffffff;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
}

#tabs .tab1::before {
    background: url("../img/king-icon.png") center no-repeat, #ffffff;
}

#tabs .tab2::before {
    background: url("../img/instagram-icon.png") center no-repeat, #ffffff;
}

#tabs .tab {
    padding: 45px 45px 20px 45px;
    min-height: 100%;
}

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

#tabs .tabHeadline {
    text-align: center;
    font-size: 1.4375rem;
    font-weight: 700;
    color: #0c5c82;
    margin: 0;
    text-transform: uppercase;
}

#tabs #clr-events-hide {
    margin-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
}

#tabs .tab .eventclndr-tab {
    margin-bottom: 0;
}

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

#tabs .tab .tab_link_mandat a {
    color: #444444;
    font-weight: 600;
}

#tabs .tab #clr-events-hide>p:nth-child(1) {
    display: none !important;
}

#tabs .tab .tab_spacer {
    height: 15px;
}

/* ----------------------------------------------- @12f footer ----------------------------------------------- */

/* ----------------------------------------------- footerTop ----------------------------------------------- */

#footerTop {
    margin-bottom: -30px;
    position: relative;
    z-index: 55;
    margin-top: 30px;
}

@media (max-width: 991px) {
    #footerTop {
        margin-bottom: 0px;
        background-color: #b61d22;
    }
}

/* ----------------------------------------------- scrollTop ----------------------------------------------- */

#scrollTop {
    font-size: 0;
    width: 62px;
    height: 62px;
    display: block;
    position: relative;
    margin: 0 auto;
    background: #b61d22;
}

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

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

#scrollTop::after {
    content: "";
    position: absolute;
    pointer-events: none;
    display: inline-block;
    left: 21px;
    top: 17px;
    width: 15px;
    height: 15px;
    margin-top: 10px;
    border-radius: 2px;
    border-right: 4px solid #fff;
    border-top: 4px solid #fff;
    transform: rotate(-45deg);
}

#scrollTop:hover,
#scrollTop:focus {
    background: #2d2d2d;
}

/* ----------------------------------------------- counter ----------------------------------------------- */

#counter {
    font-size: 1.125rem;
    display: block;
    position: relative;
    margin: 0 auto;
    background: #b61d22;
    color: #fff;
    padding: 18px 30px;
    text-align: center;
    max-height: 62px;
}

#counter-l {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

#counter-r {
    display: inline-block;
}

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

#footer {
    color: #ffffff;
    font-size: 1rem;
    background-color: #1d5997;
}

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

#footer .footerTab {
    font-size: 1rem;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (min-width: 992px) {

    #footer .footerTab {
        padding-top: 55px;
        padding-bottom: 50px;
        padding-left: 30px;
    }
}

#footer .tabHeadline {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
}

#footer .footerTab a {
    color: #fff;
    text-decoration: underline;
}

#footer .footerTab a:hover,
#footer .footerTab a:focus {
    color: #fff;
    text-decoration: underline;
}

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

#innerfooter {
    padding-top: 20px;
    padding-bottom: 20px;
}

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

@media (min-width: 992px) {
    #innerfooter {
        position: relative;
        padding-top: 40px;
        padding-bottom: 40px;
        padding-right: 100px;
    }


}

@media (min-width: 1200px) {
    #innerfooter::after {
        right: -160px;
    }
}

#innerfooter ul {
    padding: 0;
    z-index: 1;
    position: relative;
}

#innerfooter li {
    width: 100%;
    display: inline-block;
    padding-right: 15px;
}

#innerfooter li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: border 300ms linear;
}


#innerfooter a {
    display: block;
    font-weight: 400;
    position: relative;
    font-size: 1.125rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 6px 10px 6px 20px;
}

#innerfooter a:hover,
#innerfooter a:focus {
    font-weight: 700;
}

#innerfooter a::before {
    content: "";
    position: absolute;
    display: block;
    left: 2px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    transition: background 300ms linear;
}


#footerBG {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    display: block;
}

@media (min-width: 992px) {
    #footerBG {
        left: calc((100vw - 992px) / -2);
    }
}

@media (min-width: 1200px) {
    #footerBG {
        left: calc((100vw - 1200px) / -2);
    }
}

@media (max-width: 991px) {
    #footerBG {
        display: none;
    }
}

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

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

#vernetzt span {
    display: block;
}

#vernetzt strong {
    color: #fff;
}