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

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

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

a {
    color: #e10590;
}

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

#content a {
    font-style: italic;
}

b, strong {
    font-weight: 600;
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

@media (max-width: 991px) {
    #logo {
        margin-bottom: -30px;
        position: relative;
        z-index: 51;
    }

    #logo img {
        max-width: 190px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    #logo {
        position: absolute;
        top: -42px;
        left: 15px;
        z-index: 60;
    }

    #logo img {
        -webkit-transition: max-width 300ms linear;
        -moz-transition: max-width 300ms linear;
        -ms-transition: max-width 300ms linear;
        -o-transition: max-width 300ms linear;
        transition: max-width 300ms linear;
    }

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

    .is-sticky #logo {
        top: 0;
    }
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    .is-sticky #menu {
        position: relative !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;
        -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    #burgerButtonInner2, #burgerButton:after, #burgerButtonInner {
        background-color: #99afff;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        -webkit-transition: transform 200ms linear, opacity 200ms linear;
        -moz-transition: transform 200ms linear, opacity 200ms linear;
        -ms-transition: transform 200ms linear, opacity 200ms linear;
        -o-transition: transform 200ms linear, opacity 200ms linear;
        transition: transform 200ms linear, opacity 200ms linear;
    }

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

    #burgerButton[aria-expanded="true"] #burgerButtonInner2 {
        opacity: 0;
    }

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

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButtonInner2 {
        top: 24px;
    }

    #burgerButton:after {
        top: 32px;
        content: "";
        display: block;
    }

    .navbar-nav {
        margin: 20px 0;
        width: 100%;
    }

    .navbar-collapse {
        top: 0;
        background: #ffffff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-transition: left 300ms linear, opacity 300ms linear;
        -moz-transition: left 300ms linear, opacity 300ms linear;
        -ms-transition: left 300ms linear, opacity 300ms linear;
        -o-transition: left 300ms linear, opacity 300ms linear;
        transition: left 300ms linear, opacity 300ms linear;
    }

    .navbar-collapse[aria-expanded="true"],
    .navbar-collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-header {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
    }

    .navbar-toggle::before {
        content: "";
        opacity: 0;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 0;
        z-index: -1;
        display: block;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: width 300ms linear, opacity 300ms linear;
        -moz-transition: width 300ms linear, opacity 300ms linear;
        -ms-transition: width 300ms linear, opacity 300ms linear;
        -o-transition: width 300ms linear, opacity 300ms linear;
        transition: width 300ms linear, opacity 300ms linear;
    }

    .navbar-toggle[aria-expanded="true"]::before {
        opacity: 1;
        width: 90px;
    }
}

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

    .navbar-collapse.collapse.in:after,
    .navbar-toggle[aria-expanded="true"]::before {
        width: 40%;
    }
}

/* menu desktop */

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

    .is-sticky #menu {
        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 {
        margin: 35px 0 30px 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-transition: margin 300ms linear;
        -moz-transition: margin 300ms linear;
        -ms-transition: margin 300ms linear;
        -o-transition: margin 300ms linear;
        transition: margin 300ms linear;
    }

    .is-sticky nav.horizontally .navbar-nav {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    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: #444444;
    font-weight: 600;
    text-align: left;
    padding: 10px 35px;
    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(0, 0, 0, 0.2);
    }
}

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

    .navbar-default .navbar-nav>li>a {
        padding: 6px 8px;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 20px;
        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;
    }
}

/* -------------------------------------------- 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: #444444;
    background-color: #99afff;
    border-color: #eff7e9;
}

.navbar-nav>li:focus-within>a {
    color: #444444;
    background-color: #99afff;
    border-color: #eff7e9;
}

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

.navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background-color: #c1a1fc;
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>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: 15px 0;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu {
        border-top-right-radius: 17px;
        border-bottom-right-radius: 17px;
        border-bottom-left-radius: 17px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        border-radius: 17px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: 14px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-left: 10px;
        margin-top: -15px;
    }

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

    .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: #444444;
    text-align: left;
    padding: 10px 40px 10px 20px;
    font-weight: 400;
    position: relative;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a::after, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a::after {
    content: "\00BB";
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -12px;
    font-size: 24px;
    line-height: 1;
}

/* ------------------------------------------ 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: rgba(255, 255, 255, 0.5);
    color: #444444;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
    background: rgba(255, 255, 255, 0.5);
    color: #444444;
}

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

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

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

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

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

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

.slider-mask {
    display: none;
}

@media (min-width: 1200px) {
    .slider-mask {
        display: block;
        background: url('../img/maske-header.png') bottom center no-repeat;
    }
}

#bannerOverlay {
    color: #038387;
    line-height: 1.4;
    margin-top: 30px;
    font-size: 1rem;
}

@media (min-width: 768px) {
    #bannerOverlay {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    body:not(.index) #bannerOverlay {
        display: none;
    }

    #bannerOverlay {
        padding-bottom: 30px;
    }
}

@media (min-width: 992px) {
    #bannerOverlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 90px;
        z-index: 51;
        pointer-events: none;
    }

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

@media (min-width: 1200px) {
    #bannerOverlay {
        bottom: 150px;
    }
}

#slogan {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    border-radius: 17px;
}

.sloganHeadline {
    color: #038387;
    margin: 0 0 14px 0;
    font-size: 2rem;
}

@media (min-width: 768px) {
    .sloganHeadline {
        font-size: 2.8125rem;
        margin-bottom: 20px;
    }
}

#bannerOverlay a,
.contactBtn a {
    color: #444444;
    font-weight: 600;
    display: inline-block;
    padding: 4px 20px;
    text-align: center;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: 17px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    position: relative;
}

@media (min-width: 1200px) {
    #bannerOverlay a {
        bottom: -10px;
    }

    #slogan {
        max-height: 130px;
        padding: 30px;
    }
}

#bannerOverlay a:nth-of-type(1) {
    background-color: #de99ea;
}

#bannerOverlay a:nth-of-type(2) {
    background-color: #28c3c8;
}

#bannerOverlay a:nth-of-type(3),
.contactBtn a {
    background-color: #fc8dd3;
}

.contactBtn a {
    border: 2px solid #ffffff;
    text-decoration: none !important;
    padding: 10px 30px;
    border-radius: 25px;
}

@media (min-width: 1200px) {
    .contactBtn {
        margin-top: 60px;
    }
}

#bannerOverlay a+a {
    margin-left: 20px;
}

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

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

main {
    text-align: left;
}

#content {
    padding-bottom: 30px;
    padding-top: 30px;
}

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

/* ------------------------------------------------ parallax ----------------------------------------------- */

#parallax {
    height: 372px;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 991px) {
    #parallax {
        height: 172px;
    }
}

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

#tabs {
    padding-top: 45px;
    padding-bottom: 45px;
}

@media (min-width: 1800px) {
    #tabs {
        margin-bottom: -300px;
        z-index: 12;
        position: relative;
        padding-top: 85px;
        padding-bottom: 0;
    }
}

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

#tabs .tab {
    background-color: #ffffff;
    border-radius: 17px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-size: 0.9375rem;
    padding: 15px 20px;
}

#tabs .tab img {
    left: -20px;
    right: -20px;
    top: -15px;
    width: calc(100% + 40px);
    height: calc(100% + 15px);
    max-width: unset;
    position: relative;
}

@media (min-width: 768px) and (max-width:991px) {

    #tabs>.row>div:nth-child(4),
    #tabs>.row>div:nth-child(5),
    #tabs>.row>div:nth-child(6),
    #tabs>.row>div:nth-child(7),
    #tabs>.row>div:nth-child(8) {
        margin-top: 30px;
    }
}

@media (min-width: 992px) {

    #tabs>.row>div:nth-child(5),
    #tabs>.row>div:nth-child(6),
    #tabs>.row>div:nth-child(7),
    #tabs>.row>div:nth-child(8) {
        margin-top: 30px;
    }
}

#tabs .tab a {
    background-color: #5d6fc2;
    border-radius: 17px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    padding: 5px 10px;
}

#tabs .tab a:hover,
#tabs .tab a:focus {
    background-color: rgba(93, 111, 194, 0.4);
    color: #444444;
}

#tabs h1,
#tabs h2,
#tabs h3,
#tabs h4,
#tabs h5,
#tabs h6 {
    border-radius: 17px;
    color: #444444;
    font-size: 1.25rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 5px 10px;
    margin-top: -40px;
    z-index: 12;
    position: relative;
}

#tabs .tab1 h1,
#tabs .tab1 h2,
#tabs .tab1 h3,
#tabs .tab1 h4,
#tabs .tab1 h5,
#tabs .tab1 h6 {
    background-color: #28c3c8;
}

#tabs .tab2 h1,
#tabs .tab2 h2,
#tabs .tab2 h3,
#tabs .tab2 h4,
#tabs .tab2 h5,
#tabs .tab2 h6 {
    background-color: #fc8dd3;
}

#tabs .tab3 h1,
#tabs .tab3 h2,
#tabs .tab3 h3,
#tabs .tab3 h4,
#tabs .tab3 h5,
#tabs .tab3 h6 {
    background-color: #99afff;
}

#tabs .tab4 h1,
#tabs .tab4 h2,
#tabs .tab4 h3,
#tabs .tab4 h4,
#tabs .tab4 h5,
#tabs .tab4 h6 {
    background-color: #c1a1fc;
}

#tabs .tab5 h1,
#tabs .tab5 h2,
#tabs .tab5 h3,
#tabs .tab5 h4,
#tabs .tab5 h5,
#tabs .tab5 h6 {
    background-color: #e69ebd;
}

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

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

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

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

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

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

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

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

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

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

footer {
    font-weight: 400;
    position: relative;
}

#footer {
    background: #f4cadc;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #444444;
    font-size: 1rem;
    line-height: 1.4;
    position: relative;
}

#footer hr {
    background-color: #ffffff !important;
    opacity: 1 !important;
    margin-top: 0;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    #innerfooter>.row>*+*::before {
        background: rgba(0, 0, 0, 0.15);
        content: " ";
        height: 1px;
        width: 100%;
        display: block;
        margin: 25px 0;
    }
}

@media (max-width: 575px) {
    #footer>.row>*+*::before, #innerfooter>.row>*+*::before {
        background: rgba(0, 0, 0, 0.15);
        content: " ";
        height: 1px;
        width: 100%;
        display: block;
        margin: 25px 0;
    }
}

@media (min-width: 768px) {
    #innerfooter>.row>*+*:nth-child(2)::before {
        display: none;
    }
}

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

@media (min-width: 1200px) {
    #footer {
        padding-top: 40px;
        position: relative;
    }
}

@media (min-width: 1600px) {
    #footer {
        background-position: bottom left 320px;
    }
}

#footer {
    padding-top: 0;
    margin-top: 385px;
}

@media (max-width: 991px) {
    #footer::after {
        top: -378px;
    }
}

#footer::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: -350px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/welle-footer.png')top center no-repeat;
    z-index: -1;
}

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

    #footer::before {
        background-size: contain;
        top: -70px;
    }

    #footer::after {
        top: -255px;
        right: 0;
    }
}

#footer a {
    color: #444444;
    text-decoration: underline;
}

.footerHeadline {
    color: #444444;
    margin: 0 0 10px 0;
    font-size: 1.5625rem;
}

#footer .linkStyle {
    margin-top: 25px;
}

#footer .linkStyle a {
    color: #e10590;
    font-weight: 600;
    display: inline-block;
    padding: 6px 20px;
    min-width: 110px;
    text-align: center;
    background: #ffffff;
    text-decoration: none;
    font-size: 0.9375rem;
    border-radius: 16px;
}

#footer .linkStyle a:hover,
#footer .linkStyle a:focus {
    background: rgba(255, 255, 255, 0.8);
}

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

#footerInside {
    position: relative;
    z-index: 12;
    padding: 20px 0;
}

@media (min-width: 1200px) {
    #footerInside {
        position: relative;
        z-index: 12;
        margin-bottom: -30px;
        margin-top: -25px;
        padding: 0;
    }
}

@media (max-width: 1199px) {
    #footerInside {
        border-top: 3px solid #ffffff;
        background-color: #df82ad;
    }
}

.socialTab .btgrid>.row {
    display: flex;
    align-items: center;
    align-content: center;
}

@media (max-width: 767px) {
    .socialTab .btgrid>.row>*+* {
        margin-top: 0 !important;
    }

    #footerInside>.row>*+* {
        margin-top: 20px;
    }
}

.socialTab img {
    padding: 5px;
}

.socialTab p {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.socialTab p::before {
    content: '';
    position: absolute;
    height: 51px;
    width: 51px;
    background-color: #ffffff;
    border-radius: 100%;
    z-index: -1;
    pointer-events: none;
}

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

#innerfooter {
    color: #ffffff;
    border-top: 3px solid #ffffff;
    background-color: #99668e;
    padding-top: 45px;
    padding-bottom: 20px;
    font-size: 1rem;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

.innerfooter a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    padding: 4px 12px;
    border-radius: 25px;
}

@media (min-width: 992px) {
    .innerfooter a {
        padding: 10px 12px;
    }
}

.innerfooter a:hover,
.innerfooter a:focus {
    color: #ffffff;
    background: #8c5881;
}

.innerfooter li+li {
    margin-left: 10px;
}

@media (max-width: 767px) {
    #innerfooter li {
        display: block;
        text-align: center;
        margin: 0;
    }

    .innerfooter li+li {
        margin: 0;
    }

    .innerfooter a {
        display: block;
        padding: 6px 12px;
    }
}

/* ----------------------------------------------- scroll top ----------------------------------------------- */

#scrollTop {
    font-size: 0;
    width: 33px;
    height: 33px;
    display: block;
    position: relative;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 100%;
}

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

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

#scrollTop::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 3px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-top: 10px;
    display: inline-block;
    border-right: 3px solid #e10590;
    border-top: 3px solid #e10590;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: border 300ms linear;
    -moz-transition: border 300ms linear;
    -ms-transition: border 300ms linear;
    -o-transition: border 300ms linear;
    transition: border 300ms linear;
}

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

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

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

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

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

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