@import url('https://fonts.verwaltungsportal.de/import/?family=Overpass:400,400i,500,500i,700,700i%7CPermanent+Marker:400');

html {
    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
    background: #fceeda;
}

body {
    font-family: "Overpass", sans-serif;
    font-weight: 500;
    color: #383838;
    background: #fff;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.5;
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.1);
}

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

a {
    color: #b92242;
}

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

main a,
b,
strong {
    font-weight: 700;
}

#topbar a,
main a,
#footer .tab a {
    text-decoration: underline;
}

#overflow {
    overflow: clip;
}

#headerpic {
    background: #101010;
}

/* #region --------------------------------------- logo ----------------------------------------- */

#logo {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, calc(-100% - 25px));
}

@media (min-width: 992px) {
    #logo {
        top: 5px;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

#logo img {
    display: block;
    max-width: 135px;
}

@media (max-width: 991px) {
    #logo {
        margin: 15px 0;
    }

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

    #logo .row {
        margin-left: -15px;
        margin-right: -15px;
    }
}

/* #endregion ----------------------------------- logo ------------------------------------------ */

/* #region -------------------------------------- topbar ---------------------------------------- */

#topbar {
    font-size: 0.875rem;
    background: #212121;
    color: #fff;
}

#topbar a {
    color: #fff;
    text-decoration: none;
}

#topbar>.row>* {
    padding-top: 24px;
    padding-bottom: 24px;
}

@media (min-width: 992px) {
    #topbar>.row>* {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

@media (max-width: 991px) {
    #topbar>.row>div {
        height: 120px;
    }
}

/* social-media */

#social-media img {
    vertical-align: middle
}

#social-media img+img,
#social-media a+a {
    margin-left: 8px;
}

/* search */

#search-button {
    background: url('../img/suche.png') center no-repeat;
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

*+#search-button {
    margin-left: 60px;
}

#search-button::before,
*+#search-button::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
}

#search-button::before {
    z-index: -1;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: 300ms opacity linear;
}

#search-button:hover::before,
#search-button:focus::before {
    opacity: 1;
}

*+#search-button::after {
    left: -30px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #fff;
    opacity: 0.4;
}

/* #endregion -------------------------------------- topbar ---------------------------------------- */

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    #menu {
        position: static !important;
    }

    #burgerButton {
        font-size: 0;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 6px;
        padding: 6px 8px;
        cursor: pointer;
        background: #fff;
        border: none !important;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    #burgerButtonInner2,
    #burgerButton:after,
    #burgerButtonInner {
        background-color: #2f1c2a;
        color: #fff;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        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 {
        padding: 20px 10px;
    }

    .navbar-collapse {
        top: 0;
        background: #fff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        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;
        transition: top 300ms linear;
    }

    .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);
        transition: width 300ms linear, opacity 300ms linear;
    }

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

    .dropdown-toggle-button-wrapper {
        top: 8px;
        right: 0;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 2px;
        right: 0;
    }
}

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

.navbar-collapse {
    background: #101010;
}

/* menu desktop */

@media (min-width: 992px) {
    #menu-sticky-wrapper {
        position: absolute;
        left: 0;
        right: 0;
    }

    #menu {
        transition: background 300ms linear, box-shadow 300ms linear;
    }

    body:not(.index) #menu {
        background-color: #101010;
    }

    .is-sticky #menu,
    #menu-bg,
    #menu-bg::before,
    #menu-bg::after {
        background: #101010;
    }

    .is-sticky #menu {
        left: auto !important;
        box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.12);
    }

    .is-sticky #logo {
        bottom: 5px;
        display: flex;
        justify-content: center;
    }

    .is-sticky img {
        height: 100%;
    }

    #menu-bg>.row {
        min-height: 100px;
        position: relative;
    }

    #menu-bg::before,
    #menu-bg::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50vw;
    }

    #menu-bg::before {
        right: calc(-50vw + 15px);
    }

    #menu-bg::after {
        display: none;
    }

    @media (max-width: 1400px) {
        #menu-bg::after {
            left: calc(-50vw + 15px);
            display: block;
        }
    }

    .is-sticky #menu-bg::before,
    .is-sticky #menu-bg::after {
        display: none;
    }

    #menu-bg :is(.navbar-default, #myNavbar, #myNavbar-2, .navbar-nav, [class*="toplevel"]) {
        height: 100% !important;
    }

    #headerpic :is(.sticky-wrapper, #menu) {
        z-index: 101;
    }

    nav.horizontally .navbar-nav {
        position: relative;
        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;
    }

    .is-sticky nav.horizontally .navbar-nav {
        border-top: none;
    }

    nav.horizontally li[class*="toplevel"]>.dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
    }

    nav.horizontally li[class*="secondlevel"]>.dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    nav.horizontally :is([class*="toplevel"], [class*="secondlevel"]) {
        position: relative;
    }

    .navbar-default .navbar-nav li :is([class*="toplevel"]>ul, [class*="secondlevel"]>ul) {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        transition: opacity 300ms linear;
    }

    .navbar-default :is(.open>.dropdown-menu, .navbar-nav li[class*="toplevel"]:hover>ul, .navbar-nav li[class*="secondlevel"]:hover>ul, .navbar-nav li[class*="secondlevel"]>ul[style*="block"]) {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar-default .navbar-nav :is(li[class*="toplevel"]:focus-within>ul, 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 :is(li[class*="toplevel"]:hover>ul, li[class*="secondlevel"]:hover>ul) {
        z-index: 1003;
    }
}

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

.navbar-default li[class*="toplevel"]>a {
    color: #ffffff;
    font-weight: 500;
    text-align: left;
    padding: 14px 5px;
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.navbar-default li[class*="toplevel"]>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    opacity: 0;
    background: #ffffff;
    transition: all 300ms linear;
}

@media (max-width: 991px) {
    nav.horizontally li[class*="toplevel"]+li {
        margin-top: 2px;
    }

    nav.horizontally li[class*="toplevel"]>a.dropdown-toggle {
        padding-right: 35px;
    }
}

@media (min-width: 992px) {
    .navbar-default li[class*="toplevel"]>a {
        padding: 10px 0;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }

    .navbar-default li[class*="toplevel"]+li {
        margin-left: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-default li[class*="toplevel"]>a {
        font-size: 14px;
    }

    .navbar-default li[class*="toplevel"]+li {
        margin-left: 10px;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) and (min-width: 992px) {
    .navbar-default li[class*="toplevel"]>a {
        display: block;
    }
}

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

.navbar-default li[class*="toplevel"]:hover>a::after,
.navbar-default li[class*="toplevel"]>a:hover::after,
.navbar-default li[class*="toplevel"]>a:focus::after,
.navbar-default li[class*="toplevel"].open>a::after,
.navbar-default li[class*="toplevel"].open>a:hover::after,
.navbar-default li[class*="toplevel"].open>a:focus::after,
.navbar-default li[class*="toplevel"][class*="_over"]>a::after,
.navbar-default li[class*="toplevel"][class*="_over"]>a:hover::after,
.navbar-default li[class*="toplevel"][class*="_over"]>a:focus::after {
    width: 100%;
    height: 7px;
    opacity: 1;
}

.navbar-default li[class*="toplevel"]:focus-within>a::after {
    width: 100%;
    height: 7px;
    opacity: 1;
}

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

.navbar-default :is([class*="toplevel"]>ul, [class*="secondlevel"]>ul) {
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12);
}

@media(min-width: 992px) {
    .navbar-default :is(li[class*="toplevel"]>ul, li[class*="secondlevel"]>ul) {
        padding: 18px 0;
    }

    .navbar-default li[class*="toplevel"]>ul {
        margin-top: 25px;
    }

    .navbar-default li[class*="secondlevel"]>ul {
        margin-top: -18px;
        margin-left: 10px;
    }

    .navbar-default li[class*="toplevel"]>ul::before,
    .navbar-default li[class*="secondlevel"]>ul::before {
        content: "";
        position: absolute;
        display: block;
    }

    .navbar-default li[class*="toplevel"]>ul::before {
        height: 27px;
        left: 0;
        right: 0;
        top: -27px;
    }

    .navbar-default li[class*="secondlevel"]>ul::before {
        width: 12px;
        top: 0;
        bottom: 0;
        left: -12px;
    }
}

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

.navbar-default :is(li[class*="secondlevel"]>a, li[class*="thirdlevel"]>a) {
    color: #404040;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    padding: 8px 20px 8px 40px;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
}

@media(max-width: 991px) {
    .navbar-default :is(li[class*="secondlevel"]>a, li[class*="thirdlevel"]>a) {
        padding-left: 20px;
    }

    nav.horizontally li[class*="secondlevel"]>a.dropdown-toggle2 {
        padding-right: 35px;
    }
}

.navbar-default li[class*="secondlevel"]>a::after,
.navbar-default li[class*="thirdlevel"]>a::after {
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    left: 25px;
    top: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b92242;
    transition: all 300ms linear;
    transform: scale(0);
}

@media(max-width: 991px) {

    .navbar-default li[class*="secondlevel"]>a::after,
    .navbar-default li[class*="thirdlevel"]>a::after {
        left: 0;
    }
}

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

.navbar-default li[class*="secondlevel"]:hover>a::after,
.navbar-default li[class*="secondlevel"]>a:hover::after,
.navbar-default li[class*="secondlevel"]>a:focus::after,
.navbar-default li[class*="secondlevel"].open>a::after,
.navbar-default li[class*="secondlevel"].open>a:hover::after,
.navbar-default li[class*="secondlevel"].open>a:focus::after,
.navbar-default li[class*="secondlevel"][class*="_over"]>a::after,
.navbar-default li[class*="secondlevel"][class*="_over"]>a:hover::after,
.navbar-default li[class*="secondlevel"][class*="_over"]>a:focus::after,
.navbar-default li[class*="thirdlevel"]:hover>a::after,
.navbar-default li[class*="thirdlevel"]>a:hover::after,
.navbar-default li[class*="thirdlevel"]>a:focus::after,
.navbar-default li[class*="thirdlevel"].open>a::after,
.navbar-default li[class*="thirdlevel"].open>a:hover::after,
.navbar-default li[class*="thirdlevel"].open>a:focus::after,
.navbar-default li[class*="thirdlevel"][class*="_over"]>a::after,
.navbar-default li[class*="thirdlevel"][class*="_over"]>a:hover::after,
.navbar-default li[class*="thirdlevel"][class*="_over"]>a:focus::after {
    opacity: 1;
    transform: scale(1);
}

.navbar-default li[class*="secondlevel"]:focus-within>a::after,
.navbar-default li[class*="thirdlevel"]:focus-within>a::after {
    opacity: 1;
    transform: scale(1);
}

.navbar-default li[class*="secondlevel"]:hover>a,
.navbar-default li[class*="secondlevel"]>a:hover,
.navbar-default li[class*="secondlevel"]>a:focus,
.navbar-default li[class*="secondlevel"].open>a,
.navbar-default li[class*="secondlevel"].open>a:hover,
.navbar-default li[class*="secondlevel"].open>a:focus,
.navbar-default li[class*="secondlevel"][class*="_over"]>a,
.navbar-default li[class*="secondlevel"][class*="_over"]>a:hover,
.navbar-default li[class*="secondlevel"][class*="_over"]>a:focus,
.navbar-default li[class*="thirdlevel"]:hover>a,
.navbar-default li[class*="thirdlevel"]>a:hover,
.navbar-default li[class*="thirdlevel"]>a:focus,
.navbar-default li[class*="thirdlevel"].open>a,
.navbar-default li[class*="thirdlevel"].open>a:hover,
.navbar-default li[class*="thirdlevel"].open>a:focus,
.navbar-default li[class*="thirdlevel"][class*="_over"]>a,
.navbar-default li[class*="thirdlevel"][class*="_over"]>a:hover,
.navbar-default li[class*="thirdlevel"][class*="_over"]>a:focus {
    color: #b92242;
}

.navbar-default li[class*="secondlevel"]:focus-within>a,
.navbar-default li[class*="thirdlevel"]:focus-within>a {
    color: #b92242;
}

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

/* #region ------------------------------------- resp-gaps -------------------------------------- */

.tabs>.row,
#blog>.row,
#blog .tab_link_entries,
#feedback>.row {
    row-gap: 30px;
}

#footer>.row {
    row-gap: 40px;
}

/* #endregion ---------------------------------- resp-gaps -------------------------------------- */

/* #region -------------------------------------- header ---------------------------------------- */

@media (min-width: 992px) {
    header {
        position: relative;
    }
}

/* header text */

#header-text {
    position: relative;
    z-index: 10;
    padding-top: clamp(40px, 5vw, 285px);
    padding-bottom: clamp(40px, 5vw, 185px);
    color: #ffffff;
}

@media (min-width: 992px) {
    #header-text {
        padding-top: clamp(40px, 20vw, 285px);
        padding-right: clamp(30px, 4vw, 55px);
    }
}

body:not(.index) #headerpic #header-text::before,
body:not(.index) #headerpic #header-text>.template-page {
    display: none;
}

@media (max-width: 767px) {
    body:not(.index) #headerpic #header-text {
        display: none;
    }
}

@media (min-width: 768px) {
    body:not(.index) #headerpic #header-text {
        margin-bottom: 15vw;
        pointer-events: none;
    }
}

#header-text::before {
    background-color: rgba(198, 41, 65, .9);
    border-bottom-right-radius: clamp(100px, 20vw, 300px);
}

#header-text::before,
#headerpic::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    right: 0;
}

@media (min-width: 1400px) {
    #headerpic::before {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 30vw;
        left: 0;
        background-image: url('../img/wave.png');
        background-position: top left;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 100;
        max-height: 428px;
    }
}

@media (min-width: 992px) {
    #header-text::before {
        width: 965px;
    }
}

#header-text>* {
    position: relative;
    z-index: 1;
}

#header-text h2 {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #ffffff;
    font-family: "Overpass", sans-serif;
    font-weight: 700;
    padding-left: 70px;
    position: relative;
    margin-bottom: 0;
}

#header-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    background: #ffffff;
}

#header-text h3 {
    font-size: clamp(2rem, 4vw, 3.125rem);
    color: #ffffff;
    padding-bottom: 3vw;
}

/* banner */

#headerpic,
#slider {
    overflow: hidden;
    position: relative;
}

#slider {
    height: 100%;
}

div.slider-wrapper {
    height: 50vw;
}

@media (max-width: 767px) {
    body:not(.index) .slider-wrapper {
        display: none;
    }
}

@media (min-width: 768px) {
    div.slider-wrapper {
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
    }
}

@media (min-width: 992px) {div.slider-wrapper {
        top: 100px;
        left: 0;
        height: calc(100% - 100px);
    }
}

.slider-mask {
    display: none;
}

#headerpic .nivo-main-image {
    min-height: 100% !important;
}

#headerpic .nivo-controlNav {
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 20;
}

#headerpic .nivo-controlNav .slick-dots {
    pointer-events: auto;
    color: #fff;
}

@media (min-width: 768px) {
    #headerpic a.nivo-prevNav {
        bottom: 15px;
        top: unset;
    }

    body.index #headerpic a.nivo-prevNav {
        left: 55%;
    }

    #headerpic a.nivo-nextNav {
        right: 15px;
        bottom: 15px;
        top: unset;
    }

    body.index #headerpic .nivo-controlNav {
        left: 55%;
        width: 45%;
    }
}

/* #endregion ----------------------------------- header ---------------------------------------- */

/* #region --------------------------------------- tabs ----------------------------------------- */

.tabs:not(.tabs-unten) {
    background: url('../img/tabs-bg.png') bottom right no-repeat;
}

.tabs {
    padding: clamp(40px, 10vw, 85px) 0;
    margin-top: 15px;
}

@media (min-width: 1200px) {
    .tabs:not(.tabs-unten) {
        background-size: 45% auto;
        background-position: bottom right;
        margin-top: 0;
    }
}

.tabs .tab {
    height: 100%;
    min-height: 100%;
    font-size: 1rem;
    padding: 30px;
    background: #fff;
    border-bottom-right-radius: 60px;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.12);
}

.tabs .tab :is(h1, h2, h3, h4, h5, h6) {
    color: #1f1f1f;
    font-weight: 500;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-family: "Overpass", sans-serif;
}

.tabs:not(.tabs-unten) #tabs-headline {
    position: relative;
}

.tabs:not(.tabs-unten) #tabs-headline::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 15px;
    height: 1px;
    width: 50px;
    background: #1f1f1f;
}

.tabs .tab img {
    display: block;
    width: calc(100% + 60px);
    max-width: calc(100% + 60px);
    margin: -30px -30px 38px -30px;
    height: 180px;
    object-fit: cover;
}

/* #endregion ------------------------------------ tabs ----------------------------------------- */

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

#content-area {
    text-align: left;
    padding: clamp(40px, 4vw, 50px) 0 clamp(40px, 10vw, 90px) 0;
}

body:not(.index) #content-area {
    padding: 140px 0 40px 0;
}

/* #region -------------------------------------- service --------------------------------------- */

#service {
    position: relative;
    z-index: 10;
}

#service .tabHeadline {
    position: relative;
    margin-bottom: 30px;
}

#service .tabHeadline::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 10px;
    height: 1px;
    width: 50px;
    background: #1f1f1f;
}

#service a {
    margin-top: 30px;
}

@media (min-width: 768px) {
    #service {
        background-size: clamp(20%, 30vw, 845px);
    }
}

#service .img::before {
    content: "";
    display: block;
    position: absolute;
    top: clamp(40px, 10vw, 80px);
    bottom: clamp(20px, 4vw, 50px);
    left: clamp(-365px, -20vw, -100px);
    right: 50%;
    background: url('../img/service-welle.png') center left / 100% auto no-repeat;
}

#service .banner {
    position: relative;
    z-index: 1;
    border-radius: 300px;
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    z-index: 2;
}

@media (max-width: 991px) {
    #service .banner {
        max-width: 400px;
        margin: 0 auto;
    }
}

#service .banner img {
    display: block;
    object-fit: cover;
    height: 100%;
}

#service .tab {
    position: relative;
    z-index: 1;
    margin: 50px 0;
    padding-top: clamp(40px, 10vw, 90px);
    padding-bottom: clamp(40px, 10vw, 70px);
}

#service .tab::after {
    content: '';
    position: absolute;
    background: #ffffff;
    border-bottom-right-radius: 60px;
    top: 0;
    bottom: 0;
    left: -10vw;
    right: 0;
    z-index: -1;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.12);
}


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

    #service .tab {
        padding-left: clamp(30px, 4vw, 60px);
    }
}

#service ul {
    padding-left: 30px;
    margin: clamp(15px, 4vw, 30px) 0 clamp(15px, 4vw, 40px) 0;
}

#service ul li+li {
    border-top: 1px solid rgba(47, 28, 42, 0.2);
}

#service ul li {
    padding: 14px 0;
    background: transparent;
}

#service ul li::before {
    top: 18px;
    left: -30px;
    width: 18px;
    height: 18px;
    opacity: 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.957' height='15.4' viewBox='0 0 13.957 15.4'%3E%3Cpath id='psychology_FILL0_wght400_GRAD0_opsz48' d='M22.3,27.1l.1,1.5a.9.9,0,0,0,.25.5.678.678,0,0,0,.5.2h1.6a.678.678,0,0,0,.5-.2.9.9,0,0,0,.25-.5l.1-1.5a3.081,3.081,0,0,0,1.125-.425,5.087,5.087,0,0,0,.925-.725l1.5.5a.65.65,0,0,0,.5,0,.812.812,0,0,0,.4-.35l.75-1.3a.8.8,0,0,0,.125-.5.662.662,0,0,0-.275-.45l-1-.8a4.33,4.33,0,0,0,0-2.9l1-.8a.662.662,0,0,0,.275-.45.8.8,0,0,0-.125-.5l-.75-1.3a.812.812,0,0,0-.4-.35.65.65,0,0,0-.5,0l-1.5.5a4.126,4.126,0,0,0-.95-.7,5.1,5.1,0,0,0-1.1-.45l-.1-1.5a.9.9,0,0,0-.25-.5.678.678,0,0,0-.5-.2h-1.6a.678.678,0,0,0-.5.2.9.9,0,0,0-.25.5l-.1,1.5a5.1,5.1,0,0,0-1.1.45,4.126,4.126,0,0,0-.95.7l-1.5-.5a.65.65,0,0,0-.5,0,.812.812,0,0,0-.4.35l-.75,1.3a.8.8,0,0,0-.125.5.662.662,0,0,0,.275.45l1,.8a4.33,4.33,0,0,0,0,2.9l-1,.8a.662.662,0,0,0-.275.45.8.8,0,0,0,.125.5l.75,1.3a.812.812,0,0,0,.4.35.65.65,0,0,0,.5,0l1.5-.5a5.087,5.087,0,0,0,.925.725A3.081,3.081,0,0,0,22.3,27.1Zm1.65-2a3.5,3.5,0,0,1-2.475-5.975,3.5,3.5,0,0,1,4.95,4.95A3.372,3.372,0,0,1,23.95,25.1ZM24.85,25.5Z' transform='translate(-16.971 -13.9)' fill='%23700b55'/%3E%3C/svg%3E%0A") center / 15px auto no-repeat;
}

/* #endregion ----------------------------------- service --------------------------------------- */

/* #region --------------------------------------- Tabs unten ----------------------------------------- */

.tabs-unten h2,
.tabs-unten a {
    color: #ffffff;
}

.tabs-unten {
    margin-top: 80px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.tabs-unten::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    background-image: url(../img/rocknroll.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    height: 452px;
    width: 16vw;
    z-index: -1;
}

/* #endregion --------------------------------------- Tabs Unten -------------------------------------- */



/* #region -------------------------------------- buttons --------------------------------------- */

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
    display: inline-block;
    line-height: 1.2;
    color: #ffffff;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    background: #2f2f2f;
    padding: 12px 20px 11px 20px;
    border-radius: 24px;
    position: relative;
    text-decoration: none !important;
    text-shadow: none !important;
    border: 2px solid transparent;
    transition: border 300ms linear, color 300ms linear, background 300ms linear;
}

.button-design.button-design-2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
    border-color: transparent;
    background: #ffffff;
    color: #101010;
    padding: 3px 20px 2px 20px;
    margin-top: 30px;
    font-size: 0.75rem;
    font-weight: 700;
}

#header-text.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
    margin-top: clamp(20px, 4vw, 45px);
}

.tabs .tab.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]) {
    margin-top: 10px;
}

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):hover,
.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):focus {
    border: 2px solid #ffffff;
    background: #2f2f2f;
}

.button-design.button-design-2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):hover,
.button-design.button-design-2 a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):focus {
    border-color: #c62941;
    background: #ffffff;
}

/* #endregion ----------------------------------- buttons --------------------------------------- */

/* #region ---------------------------------- h1 - h6, newslink --------------------------------- */

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
    color: #b92242;
    font-weight: 400;
    line-height: 1.2;
    font-family: "Permanent Marker", serif;
    margin-bottom: 15px;
}

:is(h1, h2, h3) :is(i, em) {
    display: flex;
    align-items: center;
    align-content: center;
}

.xs-text-center :is(h1, h2, h3) :is(i, em) {
    justify-content: center;
}

h1 i::before,
h1 em::before,
h2 i::before,
h2 em::before,
h3 i::before,
h3 em::before,
.xs-text-center h1 i::after,
.xs-text-center h1 em::after,
.xs-text-center h2 i::after,
.xs-text-center h2 em::after,
.xs-text-center h3 i::after,
.xs-text-center h3 em::after {
    content: "";
    display: block;
    width: clamp(20px, 2vw, 50px);
    flex-shrink: 0;
    height: 1px;
    margin-top: 2px;
    background: #b92242;
}

h1 i::before,
h1 em::before,
h2 i::before,
h2 em::before,
h3 i::before,
h3 em::before {
    margin-right: 15px;
}

.xs-text-center h1 i::after,
.xs-text-center h1 em::after,
.xs-text-center h2 i::after,
.xs-text-center h2 em::after,
.xs-text-center h3 i::after,
.xs-text-center h3 em::after {
    margin-left: 15px;
}

h1,
.h1,
.legacy_h1,
#blog :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: clamp(15px, 4vw, 35px);
}

:is(.tabs-headline, #feedback-headline) :is(h1, h2, h3, h4, h5, h6) {
    margin: 0;
}

:is(.tabs-headline, #feedback-headline) {
    margin-bottom: clamp(1px, 1vw, 20px);
}

h1,
.h1,
.legacy_h1,
:is(.tabs-headline, #service, #blog, #feedback) h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
}

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

h3,
.h3,
.legacy_h3 {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
}

h4,
.h4,
.legacy_h4 {
    font-size: clamp(1.375rem, 5vw, 1.625rem);
}

h5,
.h5,
.legacy_h5 {
    font-size: clamp(1.3125rem, 5vw, 1.5rem);
}

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

/* #endregion ---------------------------------- h1 - h6, newslink ------------------------------ */

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

/* footer */

footer {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
}

footer iframe,
footer .iframe-wrapper-manual-enabling {
    min-width: 100% !important;
    width: 100% !important;
}

:not(.button-design)#footer {
    padding: clamp(40px, 8vw, 80px) 0;
    background: url(../img/gitarre-schmuckelement.png) top 10px right no-repeat, #101010;
}

@media (min-width: 992px) {
    footer iframe,
    footer .iframe-wrapper-manual-enabling {
        min-width: calc(100% - 45px) !important;
        width: calc(100% - 45px) !important;
    }
}

#footer :is(h1, h2, h3, h4, h5, h6) {
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.375rem);
    margin-bottom: 25px;
}

#footer .tabContent {
    font-size: 1rem;
    color: #ffffff;
}

#footer .tabContent a {
    color: #ffffff;
}

/* mini blog */

#blog-mini .tab_link_entry {
    position: relative;
    min-height: 70px;
    border: none !important;
}

@media (min-width: 576px) and (max-width: 991px) {
    #blog-mini .tab_link_entry {
        padding-left: 0;
        padding-top: 85px;
    }
}

#blog-mini .tab_link_entry+.tab_link_entry {
    margin-top: 60px;
    position: relative;
}

#blog-mini .tab_link_title a {
    color: #ffffff;
    display: block;
    font-weight: 400;
    line-height: 1.2;
    font-size: 1rem;
    margin-top: 4px;
}

#blog-mini .tab_date {
    font-weight: 700;
}

#blog-mini :is(.tab_link_mehr, .tab_spacer, .vorschau) {
    display: none;
}

/* innerfooter */

#innerfooter {
    background: #2f2f2f;
    padding: 30px 0 30px 0;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: block;
}

@media (min-width: 576px) {
    #innerfooter li+li::before {
        content: "•";
        margin: 0 15px;
        color: inherit;
        color: #ffffff;
    }

    #innerfooter li {
        display: inline-block;
    }
}

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

#innerfooter li a {
    color: inherit;
    text-decoration: none;
    color: #ffffff;
}

@media (max-width: 575px) {
    #innerfooter li a {
        padding: 4px;
        display: inline-block;
    }
}

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

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

/* #region -------------------------------------- vernetzt -------------------------------------- */

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

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

#vernetzt span {
    display: block;
}

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

/* #endregion -------------------------------- vernetzt ----------------------------------------- */

/* --------------------------------------------- ScrollTop -------------------------------------------- */

#scrollTopBtn {
    position: relative;
    text-decoration: none;
    padding: 6px 15px 6px 15px;
    display: inline-block;
    border-radius: 30px;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #82142c;
}

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

#scrollTopBtn:hover,
#scrollTopBtn:focus {
    background: #6e081e;
}

#scrollTopBtn::after {
    content: "\203A";
    position: relative;
    bottom: 1px;
    display: inline-block;
    margin-left: 4px;
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

@media (min-width: 576px) {
    #scrollTopBtn::after {
        margin-left: 15px;
    }
}