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

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

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

a {
    color: #7c6e03;
}

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

#content a {
    color: #7c6e03;
    text-decoration: underline;
}

b,
strong {
    font-weight: 00;
}

a:focus {
    outline: 3px solid #b81600 !important;
}

button:focus {
    outline: 3px solid #b81600 !important;
}

form:focus {
    outline: 3px solid #b81600 !important;
}

#newsletter_input:focus,
#newsletter_submit:focus,
#search_input1:focus,
#search_submit1:focus {
    outline: 3px solid #b81600 !important;
}
/* #region --------------------------------------- logo ----------------------------------------- */

#logo {
    display: inline-block;
    background-color: #fff;
    border-radius: 0 0 75px 75px;
    box-shadow: 0 2px 5px rgba(115, 115, 115, 0.4);
    padding: 17px 34px 30px 34px;
}

#logo img {
    display: block;
}

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

@media (min-width: 992px) {
    #logo {
        transition: margin 300ms linear, padding 300ms linear;
    }

    .is-sticky #logo {
        padding: 10px 24px 20px 24px;
        border-radius: 0 0 35px 35px;
    }

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

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

/* #region ------------------------------------ ButtonStyle -------------------------------------- */

.buttonStyle a {
    background-color: #757372;
    color: #fff;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
}

#termin .buttonStyle a {
    background-color: #fff;
    color: #757372 !important;
    text-decoration: none !important;
}

.buttonStyle a:is(:hover, :focus),
#termin .buttonStyle a:is(:hover, :focus) {
    background-color: #fee73e;
    color: #333 !important;
    text-decoration: none;
}

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

/* burgermenu for tablet */

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

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

    #burgerButton::before,
    #burgerButton::after,
    #burgerButtonInner {
        background-color: #333333;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        transition: transform 200ms linear, opacity 200ms linear;
    }

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

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

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

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButton::before {
        top: 24px;
        content: "";
    }

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

    .navbar-nav {
        padding: 20px 10px;
    }

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: #ffffff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        overflow-y: auto;
        transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
        box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
    }

    .navbar-collapse:is([aria-expanded="true"], .in) {
        left: 0;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
    }

    .navbar-header {
        position: fixed;
        top: 30px;
        right: 15px;
        z-index: 101;
        transition: top 300ms linear;
    }

    .is-sticky .navbar-header {
        top: 15px;
    }

    .dropdown-toggle-button-wrapper {
        top: 9px;
        right: 5px;
    }

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

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        transition: background 300ms linear, box-shadow 300ms linear;
    }

    .is-sticky nav.horizontally {
        background: #ffffff;
        box-shadow: 0 20px 40px 0 rgba(82, 71, 47, 0.2);
    }

    nav.horizontally .navbar-nav {
        margin: 50px 0 50px 0;
        position: relative;
        display: flex;
        justify-content: space-between;
        transition: margin 300ms linear;
    }

    .is-sticky nav.horizontally .navbar-nav {
        margin: 20px 0;
    }

    nav.horizontally li[class*="toplevel"] {
        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;
    }

    nav.horizontally .navbar-nav li:is(.open:focus-within, :hover)>ul,
    nav.horizontally .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible;
    }

    nav.horizontally .navbar-nav li:is(:hover, :focus-within)>ul {
        z-index: 1003;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #333333;
    font-weight: 400;
    text-align: left;
    padding: 14px 15px;
    position: relative;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 30px;
}

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

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

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

    nav.horizontally a[class*="toplevel"] {
        padding: 12px clamp(10px, 1.3vw, 15px);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }
}

nav.horizontally a[class*="toplevel"]::after,
nav.horizontally a[class*="toplevel"].dropdown-toggle::before {
    content: "";
    display: block;
    position: absolute;
}

nav.horizontally a[class*="toplevel"]::after {
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #fae64d;
    transition: width 300ms linear;
    border-radius: 30px;
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
    color: #333333;
    background: #fae64d;
}

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a::after,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus)::after,
nav.horizontally li[class*="toplevel"].open>a::after,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus)::after,
nav.horizontally li[class*="toplevel"][class*="_over"]>a::after,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus)::after {
    width: 100%;
}

@media (min-width: 992px) {

    nav.horizontally li[class*="toplevel"]:hover>a.dropdown-toggle::before,
    nav.horizontally li[class*="toplevel"].open>a.dropdown-toggle::before,
    nav.horizontally li[class*="toplevel"].open>a.dropdown-toggle:is(:hover, :focus)::before {
        opacity: 1;
    }
}

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

.navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 15px;
}

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

@media(min-width:992px) {
    .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>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: #333;
    font-weight: 400;
    text-align: left;
    padding: 8px 25px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 10px;
}

@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: #fae64d;
}

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

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

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

:is(#headerpic, #footer) .row {
    row-gap: 30px;
}

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

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

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

#headerpic {
    margin-top: -12px;
}

/* header text */

#header-text {
    padding-top: clamp(30px, 8vw, 45px);
    padding-bottom: clamp(30px, 8vw, 65px);
}

#header-text :is(b, strong) {
    font-size: clamp(1.125rem, 6vw, 1.5rem);
}

body:not(.index) #header-text p {
    display: none;
}


/* contact */

#contact-tab {
    position: relative;
    z-index: 30;
    background: #ffffff;
    box-shadow: 0 20px 40px 0 rgba(82, 71, 47, 0.2);
    padding: 20px 20px 20px 20px;
    border-radius: 30px;
}

@media (min-width: 576px) {
    #contact-tab {
        position: absolute;
        bottom: -25px;
        right: 0;
    }
}

@media (min-width: 992px) {
    #contact-tab {
        right: -15px;
    }
}

#contact-tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.625rem;
}

#phone-tab,
#mail-tab {
    position: relative;
    padding: 9px 0 9px 60px;
    min-height: 45px;
}

:is(#phone-tab, #mail-tab)::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 22px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fee73e center / 32px auto no-repeat;
}

#phone-tab {
    font-weight: 500;
    font-size: clamp(1rem, 6vw, 1.25rem);
}

#phone-tab::before {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M38.55 22.75q-.5-5.75-4.525-9.775T24.3 8.55V7q3.15.15 5.95 1.45 2.8 1.3 4.9 3.425 2.1 2.125 3.4 4.925 1.3 2.8 1.5 5.95Zm-8.25 0q-.45-2.3-2.075-3.95-1.625-1.65-3.925-2.05V15.2q2.95.4 5 2.5t2.55 5.05Zm7.45 17q-5.05 0-10.325-2.725-5.275-2.725-9.575-7-4.3-4.275-7.025-9.525Q8.1 15.25 8.1 10.15q0-.9.6-1.525Q9.3 8 10.25 8h4.4q.85 0 1.475.525.625.525.775 1.375l1.05 4.45q.15.8-.025 1.425T17.25 16.8l-4.4 4.15q2.95 4.95 6.475 8.425Q22.85 32.85 27.6 35.45L31.9 31q.5-.55 1.075-.775.575-.225 1.275-.075L38 31q.9.15 1.4.8.5.65.5 1.55v4.25q0 .95-.6 1.55-.6.6-1.55.6ZM12.05 19.6l4.2-3.9q.15-.15.2-.425.05-.275 0-.525l-1-4.6q-.05-.3-.275-.45-.225-.15-.525-.15h-4.5q-.25 0-.4.15-.15.15-.15.4-.05 1.95.6 4.35.65 2.4 1.85 5.15Zm17 16.55q2.05 1.05 4.525 1.575 2.475.525 4.275.525.25 0 .4-.15.15-.15.15-.35v-4.5q0-.3-.15-.5t-.5-.25l-3.9-.8q-.25-.05-.425 0t-.325.2Zm-17-16.55Zm17 16.55Z' fill='%23333'/%3E%3C/svg%3E");
}

#mail-tab::before {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M24 42q-3.8 0-7.075-1.4-3.275-1.4-5.7-3.825Q8.8 34.35 7.4 31.075 6 27.8 6 24q0-3.8 1.4-7.075 1.4-3.275 3.825-5.7Q13.65 8.8 16.925 7.4 20.2 6 24 6q3.8 0 7.075 1.4 3.275 1.4 5.7 3.825 2.425 2.425 3.825 5.7Q42 20.2 42 24v1.85q0 2.5-1.7 4.175-1.7 1.675-4.2 1.675-2 0-3.4-1.025t-2-2.825q-1.1 1.75-2.65 2.8Q26.5 31.7 24 31.7q-3.2 0-5.45-2.25T16.3 24q0-3.25 2.25-5.475Q20.8 16.3 24 16.3t5.45 2.225Q31.7 20.75 31.7 24v1.85q0 1.75 1.275 3.025T36.1 30.15q1.8 0 3.075-1.275Q40.45 27.6 40.45 25.85V24q0-6.8-4.825-11.625T24 7.55q-6.8 0-11.625 4.825T7.55 24q0 6.8 4.825 11.625T24 40.45h10.3V42Zm0-11.85q2.55 0 4.35-1.8 1.8-1.8 1.8-4.35 0-2.6-1.8-4.375T24 17.85q-2.55 0-4.35 1.775-1.8 1.775-1.8 4.375 0 2.55 1.8 4.35 1.8 1.8 4.35 1.8Z' fill='%23333'/%3E%3C/svg%3E");
}

#mail-tab a {
    text-decoration: underline;
}

#phone-tab+#mail-tab {
    margin-top: 6px;
}

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

/* #region -------------------------------------- banner ---------------------------------------- */

#slider {
    height: 100%;
    max-height: 400px;
    position: relative;
}

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

@media (min-width: 992px) {
    #headerpic a.nivo-prevNav {
        left: 30px;
    }

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

.slider-wrapper {
    position: relative;
    z-index: 1;
    height: auto !important;
}

@media (min-width: 576px) {
    .slider-wrapper {
        margin: 0 30px 30px 30px;
    }
}

@media (min-width: 992px) {
    .slider-wrapper {
        margin-left: 70px;
    }
}


#slider,
.slider-wrapper::after {
    border-radius: 0px 0px 100px 100px;
}

@media (max-width: 991px) {
    #slider,
    .slider-wrapper::after {
        border-radius: 30px 30px;
    }
}

.slider-mask {
    display: none;
}

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

/* #endregion ------------------------------------ banner --------------------------------------- */

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

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

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

/* ------------------------------------------------ leistungen ----------------------------------------------- */
#leistungen {
padding: 60px 0 30px 0;
}

#leistungen > .row {
    background-color: #757372;
    border-radius: 20px;
    max-width: 1170px;
    width: 100%;
    padding: 40px 15px 10px 15px;
}

.specialHeadline {
    color: #fff;
    font-size: clamp(1.875rem, 5.5vw, 2.5rem);
    margin-bottom: 40px;
}

.tab8Box {
    border-radius: 30px;
    background: #fee73e;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    transition: background 300ms;
}

.tab8Box:is(:hover, :focus) {
    background: #fff;
}

#leistungen .tab {
    padding: 20px 20px 20px 30px;
    hyphens: auto;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    position: relative;
    z-index: 1;
    width: 100%;
}

#leistungen .tab a {
    color: #333;
}

#leistungen .tab a:hover {
    color: #333;
    text-decoration: none;
}

@media (max-width: 575px) {
    #leistungen .tab {
        padding-bottom: 0;
    }
}

#tabImg {
    position: relative;
    z-index: 1;
    background-color: #2e3c48 !important;
}

@media (min-width: 768px) {
    #tabImg {
        max-width: 170px;
    }
}

#leistungen #tabImg .banner {
    height: 100%;
    line-height: 0;
    
}

#leistungen .tab8Box:is(:hover, :focus) #tabImg .banner {
    opacity: 0.4;
}

#leistungen #tabImg .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 992px) {
    #leistungen .tab8Box {
        padding: 0px 0 0 0px;
    }

    #tabImg {
        width: 100%;
        overflow: hidden;
        background-position: center;
    }

    #tabImg img {
        min-height: 190px;
        max-width: unset;
    }

    #leistungen .tab {
        max-width: 470px;
        width: 100%;
    }
}

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

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

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

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

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

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

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

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

/* #region ------------------------------------- termin ----------------------------------------- */

#termin {
    z-index: 1;
    background: linear-gradient(to bottom, #fff 50%, #fff8c5 50%);
    padding: 0 15px;
}

#termin>.row {
    background: #757372;
    border-radius: 20px;
}

@media (min-width: 768px) {
    #termin>.row::before {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        background: center / cover no-repeat;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

@media (min-width: 1200px) {
    #termin>.row {
        max-width: 1170px;
        width: 100%;
    }
}

#termin .tab {
    padding: clamp(40px, 5vw, 70px) clamp(30px, 4vw, 60px) clamp(40px, 7vw, 100px) clamp(30px, 4vw, 60px);
}

#termin .tab,
#termin .tab :is(h1, h2, h3, h4, h5, h6, a) {
    color: #ffffff;
}

#termin .tab a {
    text-decoration: underline;
}

#tabImg {
    background: center / cover no-repeat;
}

/* #endregion ---------------------------------- termin ----------------------------------------- */

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

#footer {
    font-size: 1rem;
    padding: clamp(40px, 6vw, 80px) 0;
    background: #fff8c5;
    color: #333333;
}

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

#footer :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 20px;
    color: #333333;
    font-size: 1.125rem;
}

#footer a,
#footer .footerTab a {
    color: #333333;
    text-decoration: underline;
}

#footer hr {
    background: rgba(0, 0, 0, 0.2);
    margin: clamp(30px, 3vw, 38px) 0;
    opacity: 1;
}

#footer .iframeTab {
    min-height: 250px;
}

#footer .iframeTab :is(.row, .row>*) {
    position: static !important;
}

#footer :is(.iframe-wrapper-manual-enabling, iframe) {
    width: 100% !important;
    min-width: 100% !important;
    border-radius: 20px;
}

@media (min-width: 768px) {
    #footer :is(.iframe-wrapper-manual-enabling, iframe) {
        position: absolute;
        top: 0;
        right: 15px;
        bottom: 0;
        left: 15px;
        height: 100% !important;
        width: calc(100% - 30px) !important;
        min-width: calc(100% - 30px) !important;
    }
}

@media (min-width: 992px) {
    #innerfooter {
        margin-top: 20px;
    }
}

#innerfooter ul {
    padding: 0;
}

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

#innerfooter ul a:is(:hover, :focus) {
    text-decoration: underline;
}

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

    #innerfooter li+li::before {
        color: #333333;
        content: "•";
        margin: 0 15px;
    }
}

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

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

#footer #vernetzt {
    gap: 15px;
    text-align: left;
    font-size: 0.875rem;
    color: #333333;
    line-height: 1.3;
    font-weight: 400;
    text-decoration: none;
}

#footer #vernetzt span span {
    display: block;
}