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

body {
    font-family: "Hind", sans-serif;
    color: #313336;
    background: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.5;
    padding-bottom: 55px;
}

body::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../img/hg-maske.png') top center no-repeat;
}

body::after {
    content: '';
    position: absolute;
    pointer-events: none;
    bottom: 0;
    left: 0;
    right: 0;
    height: 580px;
    width: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

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

a {
    color: #d0003a;
}

#content a,
a:hover,
a:focus {
    color: #d0003a;
}

b, strong {
    font-weight: 700;
}

.compact {
    background: #f8f8f8;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 155px;
    }
}

@media (min-width: 1200px) {
    .compact {
        max-width: 1170px;
        width: 100%;
    }
}

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

.topbar {
    padding-top: 0px;
    position: relative;
    z-index: 1;
    padding-bottom: 0px;
}

@media (max-width: 767px) {
    .topbar {
        padding-top: 15px;
    }

    .topbar>.row>*+* {
        margin-top: 10px;
    }
}

.tabLogo {
    display: inline-block;
}

.tabLogo img {
    display: block;
}

@media (min-width: 1200px) {
    .tabLogo img {
        margin-left: -5px;
    }
}

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

@media (max-width: 767px) {
    .tabLogo img {
        max-width: 150px;
    }
}

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

#search {
    height: 60px;
    background: #ffffff;
    display: inline-block;
    position: relative;
    width: 100%;
    box-shadow: 0px 0px 20px 0px rgba(68, 68, 68, 0.1);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(68, 68, 68, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(68, 68, 68, 0.1);
    margin-bottom: 30px;
}

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

#search_input {
    color: #444444;
    font-size: 12px;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 60px;
    padding-left: 20px;
    padding-right: 65px;
    height: 60px;
    width: 100%;
}

@media (max-width: 767px) {
    #search_input {
        height: 40px;
        line-height: 40px;
    }
}

#search_submit {
    width: 60px;
    background: #d0003a url('../img/lupe-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 60px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    -webkit-transition: background-color 300ms linear;
    -moz-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    -o-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
}

@media (max-width: 767px) {
    #search_submit {
        width: 40px;
        line-height: 40px;
    }
}

#search_submit:hover {
    background-color: #313336;
}

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

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

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

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

/* ------------------------------------------------- tickerWrapper ------------------------------------------------ */

#tickerWrapper {
    background-color: #d0003a;
    color: #ffffff;
    font-size: 0.8125rem;
}

#tickerWrapper a {
    color: #ffffff;
}

#tickerWrapper h2 {
    background-color: #313336;
    margin-bottom: 0;
    font-size: 1.0625rem;
    padding: 20px 30px;
    margin-left: -15px;
    color: #ffffff;
}

.newsticker-position {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .newsticker {
        padding: 10px 0;
    }
}

/* --------------------------------------- navigation --------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        border: none !important;
        position: relative;
        z-index: 1002;
        display: block;
        width: 46px;
        height: 40px;
        border-radius: 2px;
        cursor: pointer;
        background-color: #ffffff;
        padding: 3px;
    }

    #burgerButton:before, #burgerButton:after, #burgerButtonInner {
        background-color: #d0003a;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 2px;
        -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"]:before {
        opacity: 0;
    }

    #burgerButton[aria-expanded="true"]:after {
        -webkit-transform: rotate(45deg) translate(-4px, -6px);
        transform: rotate(45deg) translate(-4px, -6px);
    }

    #burgerButtonInner {
        top: 10px;
    }

    #burgerButton:before {
        top: 18px;
    }

    #burgerButton:after {
        top: 26px;
    }

    #burgerButton:before, #burgerButton:after {
        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.collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-header {
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        background-color: #ffffff;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
        -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);
    }

    .navbar-collapse.in:after {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        display: block;
        width: 90px;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

@media (min-width: 575px) and (max-width: 991px) {
    .navbar-collapse {
        width: 60%;
    }

    .navbar-collapse.collapse.in:after {
        width: 40%;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    .horizontally {
        margin-top: 4px;
        background-color: #ffffff;
    }

    .is-sticky .horizontally {
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    }

    nav.horizontally .navbar-nav {
        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 .navbar-nav>li {
        flex-grow: 1;
    }

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

    nav.horizontally .navbar-nav>li>.dropdown-menu {
        position: absolute;
        top: 100%;
        /* left: 0; */
        z-index: 1000;
    }

    .navbar-default .navbar-nav li[class*="toplevel"]>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 .navbar-nav li[class*="toplevel"]:hover>ul {
        pointer-events: auto !important;
        opacity: 1 !important;
        top: 100%;
    }

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

    .nav li[class*="toplevel"].open>.dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }
}

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

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

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

    .navbar-default .navbar-nav>li>a {
        overflow-wrap: break-word;
        word-wrap: break-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
    }
}

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

    .navbar-default .navbar-nav>li>a {
        padding: 30px 0;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }
}

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

.navbar-nav>li:hover>a,
.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus,
.navbar-nav>li.open>a,
.navbar-nav>li.open>a:hover,
.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-color: #d0003a;
}

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

.navbar-default .navbar-nav>li>.dropdown-menu {
    background-color: #ffffff;
    padding: 10px 0;
}

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

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

    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: 0;
        padding-top: 12px;
        padding-bottom: 12px;
        left: 50%;
        -moz-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

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

    .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: #313336;
    font-weight: 400;
    text-align: left;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.2;
    text-decoration: none;
    padding: 9px 15px;
}

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

    .navbar-default .navbar-nav>li>.dropdown-menu>li>a,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        overflow-wrap: break-word;
        word-wrap: break-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto;
    }
}

@media (min-width:992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu>li::before {
        content: "";
        display: block;
        position: absolute;
        top: 27px;
        bottom: 27px;
        left: 25px;
        width: 1px;
        background: #313336;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>a,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        font-size: 1.1875rem;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>a::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 1;
        left: -6px;
        top: 15px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #313336;
        border: 1px solid #313336;
        -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>a {
        padding: 9px 15px 9px 25px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        padding: 7px 15px 7px 35px;
    }


}


/* ------------------------------------------ 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,
.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: #d0003a;
    text-decoration: underline;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
    color: #d0003a;
    text-decoration: underline;
}

.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 {
    background: #d0003a;
}

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

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

#headerpic {
    max-height: 300px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 100%;
}

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

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

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

@media (min-width: 992px) {
    main {
        padding-bottom: 25px;
        padding-top: 20px;
    }

    #content {
        padding: 0 20px;
    }

    .index #content {
        padding: 0 0 0 20px;
    }
}

/* ------------------------------------------------ contentTabs ----------------------------------------------- */

#contentTabs {
    padding-top: 45px;
}

#contentTabs>*+* {
    margin-top: 15px;
}

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

#contentTabs .tabHeadline {
    background-color: #313336;
    margin-bottom: 0;
    color: #ffffff;
    padding: 20px 35px;
    max-width: fit-content;
    font-size: 1.375rem;
    margin-left: -15px;
}

#contentTabs .tab .tabContent {
    padding: 30px 20px;
}



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

#tabs>*+* {
    margin-top: 15px;
}

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

@media (max-width: 991px) {
    #tabs {
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
    }
}

#news,
#tabs .tab {
    background-color: #ede8e8;
    font-size: 0.8125rem;
}

#tabs .tab .tabContent,
#tabs .tabNews {
    padding: 20px 15px 15px 25px;
}

#tabs .tabHeadline {
    text-align: center;
    background: #d0003a;
    color: #ffffff;
    margin-bottom: 0;
    padding: 10px;
    font-size: 19px;
}

#tabs .tabLinks a {
    color: #313336;
}

#tabs .tabLinks a:hover,
#tabs .tabLinks a:focus {
    color: #d0003a;
}

#tabs .tabButton a,
#tabs .newsButton a {
    display: inline-block;
    font-size: 0.8125rem;
    color: #ffffff;
    text-decoration: none;
    background: #d0003a;
    padding: 4px 7px;
}

#tabs .newsButton {
    padding-top: 15px;
}

#tabs .newsButton a::after {
    content: ' \00BB';
}

#tabs .tabButton a:hover,
#tabs .tabButton a:focus,
#tabs .newsButton a:hover,
#tabs .newsButton a:focus {
    background-color: #313336;
}

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

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

#news .tab_link_entry {
    border: none !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 80px;
    padding-left: 65px;
    z-index: 12;
}

#news .tab_preview_picture {
    background: #ffffff;
}

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

#news .tab_link_entry::after {
    content: '';
    background: url('../img/platzhalter-blog.png') no-repeat center;
    z-index: -1;
}

#news .tab_preview_picture img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 110px;
    min-width: 100%;
    min-height: 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%);
}

#news .tab_link_title a {
    color: #313336;
    font-size: 0.9375rem;
}

#news .tab_date {
    color: #313336;
}

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

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

#news .tab_link_entry+.tab_link_entry::before {
    content: '';
    pointer-events: none;
    height: 1px;
    width: 100%;
    position: absolute;
    top: -15px;
    left: -25px;
    right: 0px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

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

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

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

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

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

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

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

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

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

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

footer {
    background-color: #d0003a;
}

@media (max-width: 992px) {
    footer {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

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

@media (max-width:991px) {
    footer>.row>*+* {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
        margin-top: 15px;
    }
}

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

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

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

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

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

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

#logo {
    display: inline-block;
    background: #ede8e8;
    padding: 12px 35px;
}

#logo img {
    display: inline-block;
}

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

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

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

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

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