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

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

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

a {
    color: #E6143E;
}

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

b,
strong {
    font-weight: 600;
}

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

#topbar {
    padding: 10px 0;
    border-bottom: 1px solid #dbd8d8;
}

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

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

#logoText {
    display: inline-block;
    text-decoration: none;
    line-height: 1.1;
    color: #4f4f4f;
    font-size: clamp(1.25rem, 2vw, 2.1875rem);
}

#logoText :is(b, strong) {
    display: block;
    text-transform: uppercase;
    color: #191919;
}

/* #region ----------------------------------- search ------------------------------------------- */

form[id^="search"] {
    background: #f4f4f4;
    display: inline-flex;
    margin: 15px 15px 0 15px;
}

@media (min-width: 992px) {
    form[id^="search"] {
        min-width: 220px;
        margin: 0 0 30px 0;
    }
}

form [id^="search_input"] {
    color: #191919;
    font-size: 1rem;
    font-style: normal !important;
    background: transparent;
    border: 0;
    width: 100%;
    padding: 6px 14px;
}

form [id^="search_submit"] {
    background: #E6143E url('../img/lupe-icon.png') center / 14px auto no-repeat;
    padding: 0;
    cursor: pointer;
    margin: 0;
    font-size: 0;
    aspect-ratio: 1/1;
    min-width: 37px;
    flex-shrink: 0;
    transition: transform 150ms linear;
}

form [id^="search_submit"]:is(:hover, :focus) {
    transform: scale(1.2);
}

form [id^="search_input"]::placeholder {
    color: #191919 !important;
    opacity: 1 !important;
    font-style: normal !important;
}

/* #endregion -------------------------------- search ------------------------------------------- */

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    nav.horizontally {
        position: static !important;
    }

    #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: #E6143E;
        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: #ffffff;
        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: #ffffff;
    }

    .is-sticky nav.horizontally {
        box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    }

    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;
    }
}

@media (min-width: 1200px) {
    .horizontally>.row {
        max-width: 1820px;
        width: 100%;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #191919;
    font-weight: 600;
    text-align: left;
    padding: 10px 15px 15px 15px;
    text-transform: uppercase;
    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;
    }
}

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

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

nav.horizontally a[class*="toplevel"]::before {
    content: "";
    width: 30px;
    height: 13px;
    display: block;
    position: absolute;
    left: 30px;
    bottom: 0;
    background-color: #08afc4;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0;
    transition: opacity 300ms linear;
}

@media (min-width: 992px) {
    nav.horizontally a[class*="toplevel"]::before {
        left: 0;
        right: 0;
        margin: auto;
    }
}

/* 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: #E6143E;
    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: #ffffff;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 6px 0px 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;
        border-top: 3px solid #08afc4;
    }

    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: -21px;
        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: #4f4f4f;
    font-weight: 400;
    text-align: center;
    padding: 8px 25px;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

@media(max-width:991px) {
    nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
        font-size: 1rem;
        text-align: left;
    }

    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: #08afc4;
    color: #191919;
}

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

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

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

@media (min-width: 992px) {
    body.index #slider {
        max-height: clamp(300px, 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;
}

/* #region -------------------------------- scroll bottom --------------------------------------- */

#scrollBottom {
    font-size: 0;
    display: block;
    width: 36px;
    height: 36px;
    text-align: center;
    background-color: #ffffff;
    transition: all .2s ease-in;
    position: absolute;
    left: calc(50% - 20px);
    bottom: 20px;
    z-index: 50;
}

@media (min-width: 768px) {
    #scrollBottom {
        bottom: 45px;
    }
}

#scrollBottom:is(:hover, :focus) {
    animation-play-state: paused;
}

#scrollBottom::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 1px;
    margin-top: 10px;
    display: inline-block;
    border-left: 2px solid #ed2650;
    border-bottom: 2px solid #ed2650;
    transform: rotate(-45deg);
    transition: border 300ms linear;
}

#scrollBottom:is(:hover, :focus)::after {
    border-color: #191919;
}

/* #endregion ----------------------------- scroll bottom --------------------------------------- */

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

#content {
    text-align: left;
    padding-top: clamp(30px, 4vw, 65px);
    padding-bottom: clamp(30px, 4vw, 65px);
}

@media (min-width: 1200px) {
    #content {
        background: url('../img/wasserzeichen-beim-content.png') left 20px center no-repeat;
    }
}

/* ---------------------------------------------- 6nw aktuelles ---------------------------------------------- */

#aktuelles {
    padding-top: clamp(30px, 3vw, 60px);
    padding-bottom: clamp(30px, 3vw, 50px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#aktuelles .tabHeadline {
    margin-bottom: 0;
    color: #191919;
    text-transform: uppercase;
    margin-bottom: 5px;
}

@media (min-width: 992px) {
    #aktuelles .tabHeadline {
        font-size: 35px;
    }
}

#aktuelles .tabContent {
    font-size: 1.25rem;
    color: #4f4f4f;
}

#aktuelles .tab_link {
    margin-top: 15px;
}

@media (min-width: 768px) {
    #aktuelles .tab_link {
        margin-top: 35px;
    }

    #aktuelles .tab_link_entries {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #aktuelles .tab_link_entries {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #aktuelles .tab_link_entries+div {
        width: 50% !important;
        text-align: right;
        margin-left: 50%;
        margin-top: -80px;
    }
}

#aktuelles .tab_link_entry {
    color: #4f4f4f;
    border-bottom: none !important;
    text-align: center;
    position: relative;
    background: #ffffff;
    width: 100%;
    font-size: 1rem;
    padding: 165px 20px 20px 20px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) and (max-width: 991px) {
    #aktuelles .tab_link_entry {
        width: calc(50% - 15px);
    }

    #aktuelles .tab_link_entry:nth-child(2n+1) {
        margin-right: 15px;
    }

    #aktuelles .tab_link_entry:nth-child(2n+2) {
        margin-left: 15px;
    }
}

@media (min-width: 992px) {
    #aktuelles .tab_link_entry {
        width: calc(33.33% - 20px);
    }

    #aktuelles .tab_link_entry:nth-child(3n+1) {
        margin-right: 15px;
    }

    #aktuelles .tab_link_entry:nth-child(3n+2) {
        margin-right: 15px;
        margin-left: 15px;
    }

    #aktuelles .tab_link_entry:nth-child(3n+3) {
        margin-left: 15px;
    }
}

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

@media (min-width: 768px) {
    #aktuelles .tab_link_entry:nth-child(2) {
        margin-top: 0;
    }
}

@media (min-width: 992px) {
    #aktuelles .tab_link_entry:nth-child(3) {
        margin-top: 0;
    }
}

#aktuelles .tab_link_entry::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: #f6f6f6;
    background: url("../img/platzhalterbild-aktuelles.png") center / cover no-repeat;
}

#aktuelles .tab_link_entry .tab_preview_picture {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 150px;
    overflow: hidden;
    background: #ffffff;
}

#aktuelles .tab_preview_picture img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    -ms-interpolation-mode: bicubic;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#aktuelles .tab_date {
    font-size: 1rem;
    position: absolute;
    left: 50%;
    top: 134px;
    z-index: 1;
    display: inline-block;
    padding: 4px 10px;
    background: #89c542;
    color: #191919;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-weight: 400;
}

#aktuelles .tab_link_title a {
    color: #191919;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

#aktuelles .tab_link_entry>div:nth-last-child(2) {
    line-height: 0;
    font-size: 0;
}

#aktuelles .tab_link_entry>div:nth-last-child(2)>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(8, 175, 196, 0.9), rgba(8, 175, 196, 1) 150px);
    z-index: 1;
    color: #191919;
    text-align: center;
    font-size: 0;
    font-weight: 600;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    opacity: 0;
    -webkit-transition: opacity 200ms linear;
    -moz-transition: opacity 200ms linear;
    -ms-transition: opacity 200ms linear;
    -o-transition: opacity 200ms linear;
    transition: opacity 200ms linear;
}

#aktuelles .tab_link_entry:hover div:nth-last-child(2)>a {
    opacity: 1;
}

#aktuelles .tab_link_entry div:nth-last-child(2)>a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -60px;
    display: block;
    background: url("../img/plus-kreis.png") center no-repeat;
    width: 80px;
    height: 80px;
}

#aktuelles div:nth-last-child(2)>a::after {
    content: "mehr erfahren";
    margin-top: 100px;
    font-size: 1.125rem;
}

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

/* ----------------------------------------- news button ---------------------------------------- */

#aktuelles .tab_link_mehr_main {
    color: transparent;
    font-size: 0;
    text-align: right;
    margin-top: 30px;
}

#aktuelles .tab_link_mehr_main a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 14px 35px 13px 20px;
    background: #E6143E;
}

#aktuelles .tab_link_mehr_main a::after {
    content: "\203A";
    display: block;
    position: absolute;
    right: 0;
    top: 14px;
    bottom: 9px;
    width: 35px;
    text-align: center;
    font-size: 16px;
}

#aktuelles .tab_link_mehr_main a:hover,
#aktuelles .tab_link_mehr_main a:focus {
    background: #910b28;
}

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

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

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

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

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

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

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

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

/* --------------------------------------------- kontaktFooter -------------------------------------------- */

#kontaktFooter {
    padding-top: clamp(30px, 3vw, 40px);
    padding-bottom: clamp(30px, 3vw, 55px);
}

@media (min-width: 1200px) {
    #kontaktFooter {
        background: url('../img/wasserzeichen-beim-footer.png') top 22px right 20px no-repeat;
    }
}

@media (min-width: 768px) {
    #kontaktFooter>.row>*+* {
        border-left: 1px solid #dbd8d8;
    }

    #kontaktFooter .tabButton {
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    #kontaktFooter>.row>*+* {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #dbd8d8;
    }
}

#kontaktFooter .tab {
    font-size: 1rem;
}

#kontaktFooter .tab:not(.tabButton) a {
    text-decoration: underline;
}

#kontaktFooter .tabHeadline {
    font-size: 1.5rem;
    text-transform: uppercase;
}

#kontaktFooter .tabButton a {
    margin-top: 5px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 7px 18px;
    background: #E6143E;
}

#kontaktFooter .tabButton a::after {
    content: ' \203A';
}

#kontaktFooter .tabButton a:hover,
#kontaktFooter .tabButton a:focus {
    background: #910b28;
}

/* ----------------------------------------------- @5f footer ----------------------------------------------- */

#f5 {
    color: #191919;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #f1f1f1;
}

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

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

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

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

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

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

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

@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.875rem;
    color: #191919;
    line-height: 1.3;
    margin: 0 auto;
    text-decoration: none;
}

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

#vernetzt span {
    color: #191919;
}

#vernetzt b {
    color: #E6143E;
}

#vernetzt span span {
    display: block;
}

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