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

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

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

a {
    color: #bc501a;
}

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


b, strong {
    font-weight: 600;
}

@media (min-width: 1200px) {
    .row, .compact, ._op-container .container {
        max-width: 1600px;
        width: 100%;
      }
}
/* ----------------------------------------------- 3tp topbar ----------------------------------------------- */

#topbar {
    padding-top: 18px;
    padding-bottom: 18px;
    background: #1c4669;
    color: #fff;
}

#newsletter label {
    font-size: 1.125rem;
    display: inline-block;
    margin-right: 20px;
}
#newsletterInputs {
    height: 48px;
    background: #8bbac8;
    display: inline-block;
    position: relative;
}
#newsletter_input {
    color: #1c4669;
    font-size: 16px;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 48px;
    padding-left: 10px;
    padding-right: 63px;
    height: 48px;
    width: 100%;
}
#newsletter_submit {
    width: 53px;
    background: url('../img/icon-newsletter.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 48px;
    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;
}

#newsletter_input::-ms-input-placeholder {
    color: #1c4669 !important;
}
#newsletter_input::-webkit-input-placeholder {
    color: #1c4669 !important;
}
#newsletter_input::-moz-placeholder {
    opacity: 1;
}
#newsletter_input:-moz-placeholder {
    opacity: 1;
}

@media (min-width: 992px) {
    #bgStyler {
        background-color: #fff;
        padding: 48px 0;
    }
#style span {
    font-size: 1rem;
    margin-right: 10px;
}

    #style button {
        border: none;
        color: #fff;
        display: inline-block;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        font-weight: 400;
        text-align: center;
        background-color: #1c4669;
        position: relative;
        line-height: 1;
        -webkit-transition: transform 150ms linear;
        -moz-transition: transform 150ms linear;
        -ms-transition: transform 150ms linear;
        -o-transition: transform 150ms linear;
        transition: transform 150ms linear;
    }
    #style button+button {
        margin-left: 8px;
    }
    #style button:hover {
        background-color: #efbc7b;
        color: #004261;
    }
    #style button:focus-visible {
        outline: 2px auto;
    }
}

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

#logo {
    display: inline-block;
    transition: all 300ms;
}

#logo img {
    display: block;
    transition: all 300ms;
}

@media (min-width: 992px) {
    #logo {
        position: absolute;
        top: -150px;
        z-index: 44;
    }

    .is-sticky #logo {
        top: -25px;
    }

    .is-sticky #logo img {
        max-width: 250px;
    }
}

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

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

#menu {
    position: relative;
    z-index: 100;
    background-color: #93bdca;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
}

/* burgermenu for tablet */

@media (max-width: 991px) {
    #menu{
        padding: 10px 0;
    }

    #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: #1c4669;
        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: #93bdca;
        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) {
    nav.horizontally .navbar-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        flex-wrap: wrap;
    }
    nav.horizontally .navbar-nav>li {
        flex-grow: 1;
    }
    nav.horizontally .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }
    nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }
    nav.horizontally .navbar-nav>li, nav.horizontally .navbar-nav>li>.dropdown-menu>li {
        position: relative;
    }
    .navbar-default .navbar-nav li[class*="toplevel"] > ul,
    .navbar-default .navbar-nav li[class*="secondlevel"] > ul {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: opacity 300ms linear;
        -moz-transition: opacity 300ms linear;
        -ms-transition: opacity 300ms linear;
        -o-transition: opacity 300ms linear;
        transition: opacity 300ms linear;
    }
    .navbar-default .open > .dropdown-menu,    
    .navbar-default .navbar-nav li[class*="toplevel"]:hover > ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover > ul,
    .navbar-default .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
    }
    .navbar-default .navbar-nav li[class*="toplevel"]:focus-within > ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:focus-within > ul {
        pointer-events: auto !important;
        opacity: 1 !important;
    }
    .navbar-default .nav .open > .dropdown-menu {
        pointer-events: none !important;
        opacity: 0 !important;
    }
    .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
    .navbar-default .navbar-nav li[class*="secondlevel"]:hover>u {
        z-index: 1003;
    }
}

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

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

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

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        padding: 22px 5px 22px 5px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }
}


@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        display: block;
    }
}

.navbar-default .navbar-nav>li>a::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    bottom: 0;
    height: 6px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    -webkit-transition: width 300ms linear;
    -moz-transition: width 300ms linear;
    -ms-transition: width 300ms linear;
    -o-transition: width 300ms linear;
    transition: width 300ms linear;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li>a::after {
        top: 0;
        bottom: auto;
    }
}

/* -------------------------------------------- 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: #1c4669;
}

.navbar-nav > li:focus-within > a {
    color: #1c4669;
}

.navbar-nav > li:hover > a::after,
.navbar-nav > li > a:hover::after,
.navbar-nav > li > a:focus::after,
.navbar-nav > li.open > a::after,
.navbar-nav > li.open > a:hover::after,
.navbar-nav > li.open > a:focus::after,
.navbar-nav > li[class$="_over"] > a::after,
.navbar-nav > li[class$="_over"] > a:hover::after,
.navbar-nav > li[class$="_over"] > a:focus::after {
    width: 100%;
}

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

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

.navbar-default .navbar-nav>li>.dropdown-menu {
    background: #1c4669;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background: #1c4669;
}

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

@media(min-width:992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .navbar-default .navbar-nav>li>.dropdown-menu {
        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::after {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        top: -20px;
        margin-left: -20px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 20px 0 20px;
        border-color: #ffffff transparent transparent transparent;
        -webkit-transition: top 150ms linear;
        -moz-transition: top 150ms linear;
        -ms-transition: top 150ms linear;
        -o-transition: top 150ms linear;
        transition: top 150ms linear;
    }
    .navbar-default .navbar-nav>li:hover>.dropdown-menu::after {
        top: 0;
    }
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-top: -30px;
        margin-left: 10px;
    }
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu::before {
        content: "";
        position: absolute;
        display: block;
        width: 10px;
        top: 0;
        bottom: 0;
        left: -10px;
    }
}

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

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

@media(min-width:992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu>li>a, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
        text-align: center;
        padding: 13px 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,
.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 {
    background: #efbc7b;
    color: #1c4669;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a {
    background: #efbc7b;
    color: #1c4669;
}



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

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

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

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

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

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

    .theme-nivo .nivo-controlNav {
        bottom: 30px !important;
    }
}

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

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

.slider-mask {
    display: none;
}

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

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

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

    .index main {
        padding-bottom: 60px;
        padding-top: 0px;
    }
}

.quicklinks {
    position: relative;
    z-index: 55;
}

@media (min-width: 992px) {
    .quicklinks {
        margin-top: -30px;
    }
}

.quicklinks a {
    background-color: #8bbac8;
    padding: 10px 30px;
    color: #004261;
    font-size: clamp(1.125rem, 2vw, 1.4375rem);
    font-weight: 600;
    transition: all 300ms;
    display: inline-block;
}

.quicklinks a {
    margin: 0 15px 15px 15px;
 }

@media (max-width: 1199px) {
    .quicklinks a {
        width: 40%;
    }
}

@media (max-width: 767px) {
    .quicklinks a {
        width: 100%;
        display: block;
        margin: 0 0 15px 0;
    }
}

.quicklinks a:hover {
    background-color: #efbc7b;
    text-decoration: none;
}
/* ------------------------------------------ h1 - h6, newslink ----------------------------------------- */

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

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

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

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

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

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

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

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


/* ------------------------------------------------- tab ------------------------------------------------ */
.teaser {
    padding: 50px 0 50px 0;
}

.teaser>.row>div {
    margin-bottom: 30px;
}

.specialHeadline {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    color: #1c4669;
    font-weight: 600;
}

.teaser a {
    color: #1c4669;
    text-decoration: underline;
}

.teaser .tab {
    background-color: #1c4669;
    color: #ffffff;
    position: relative;
    max-width: 503px;
    margin: 0 auto;
}

.teaser .tab {
    height: 100%;
    min-height: 100%;
}

.teaser .tabHeadline {
    margin: 0;
    color: #1c4669;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 18px;
    background: rgba(139, 186, 200,0.9);
    padding: 10px 15px;
    pointer-events: none;
    z-index: 1;
    font-size: 1.3rem;
    display: inline-block;
    width: auto;
    line-height: 1.2;
    font-weight: 600px;
    text-align: center;
    text-transform: uppercase;
}

.teaser .tab:hover .tabHeadline {
    color: #1c4669;
    background: rgba(239, 188, 123,0.9);
}

@media (min-width: 992px) {
    .teaser .tabHeadline {
        font-size: 1.5625rem;
    }
}

.teaser .tabContent {
    overflow: hidden;
}

.teaser .tabContent img {
    display: block;
}


.infoBottom {
    background-color: #8bbac8;
    padding: 15px 30px;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #1c4669;
    font-weight: 600;
    position: relative;
}

@media (min-width: 1200px) {
    .infoOne::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        right: 10%;
        height: 332px;
        width: 169px;
        background: url('../img/ente-schmuckelement.png') bottom right no-repeat;
    }
}

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

footer {
    background-color: #1c4669;
    font-size: 1.125rem;
}

#footer {
    padding: 20px 0;
    background: #1c4669;
    border-top: 5px solid #efbc7b;
}

/* --------------------------------------------- formular --------------------------------------------- */

#kontakt {
    padding-bottom: 40px;
    padding-top: 40px;
    background-color: #2b2b2b;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    font-style: normal;
    position: relative;
}

@media (min-width: 768px) {
    #kontakt>.row {
        position: relative;
    }

    #kontakt>.row::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        display: block;
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 992px) {
    #kontakt>.row::after {
        left: 42%;
    }

    #kontakt::before {
        content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 8%;
    height: 191px;
    width: 586px;
    background: url('../img/motoryacht-freisteller.png') bottom center no-repeat;
    }
}

#kontakt .formtab p {
    margin: 0;
}

#kontakt .formgen_element, #kontakt input[id$="_input"], #kontakt input[name="captcha"], #kontakt input[type="text"], #kontakt textarea {
    color: #2b2b2b;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ffffff;
    padding: 3px 10px;
}

#kontakt input[type="submit"] {
    color: #2b2b2b;
    border-radius: 4px;
    border: none;
    padding: 6px 20px;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    background: #efbc7b;
}

@media (max-width: 767px) {
    #kontakt>.row>div+div {
        margin-top: 30px;
    }
}

@media (min-width: 992px) {
    #kontakt {
        padding-bottom: 70px;
        padding-top: 70px;
    }
}

#kontakt h1, #kontakt h2, #kontakt h3, #kontakt p {
    color: #ffffff;
}

#kontakt h4, #kontakt h5, #kontakt h6, #kontakt a, #kontakt a:hover, #kontakt a:focus {
    color: #e9cb64;
    font-weight: 700;
}

#kontakt .formgen {
    margin: 0;
}

.ascii-captcha-refresh {
    color: #000;
}

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

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: block;
}

#innerfooter a {
    color: #94bfcb;
    text-decoration: none;
    display: inline-block;
}

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


@media (min-width:500px) {
    #innerfooter li {
        display: inline-block;
    }

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

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

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

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

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

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

#vernetzt b {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

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