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

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

body {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    color: #666666;
    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: #cb2929;
}

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

main a,
#quote a,
#footer a,
b,
strong {
    font-weight: 600;
}

main a,
#quote a,
#footer a {
    text-decoration: underline;
}

#overflow {
    overflow: clip;
}

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

#logo {
    display: inline-block;
}

@media (min-width: 992px) {
    #logo {
        margin-top: -58px;
        position: absolute;
    }
}

#logo img {
    display: block;
}

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

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

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

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

#phone-tab :is(b, strong, a),
#mail-tab :is(b, strong, a) {
    font-size: 1rem;
    color: #fff;
}

/* contact col */

#phone-tab,
#mail-tab {
    color: #fff;
    font-size: 0.875rem;
    padding-top: 22px;
    padding-bottom: 22px;
    display: block;
    min-height: 42px;
    min-width: 42px;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto 34px;
}

@media (min-width: 576px) {
    #phone-tab,
    #mail-tab {
        padding-top: 48px;
        padding-left: 48px;
        background-position: top 64% left;
    }
}



#phone-tab {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M38.75 40.9q-5.6 0-11.25-2.875T17.3 30.6q-4.55-4.55-7.4-10.175Q7.05 14.8 7.05 9.2q0-.95.625-1.575T9.25 7h5.7q.8 0 1.35.5t.75 1.35l1.2 5.35q.1.75-.05 1.35-.15.6-.6 1l-4.7 4.6q2.85 4.8 6.375 8.275Q22.8 32.9 27.35 35.4l4.5-4.7q.5-.55 1.125-.775.625-.225 1.325-.075l4.85 1.1q.8.15 1.3.75t.5 1.45v5.5q0 .95-.625 1.6-.625.65-1.575.65Zm-27-21.8 4.1-4q.1-.1.125-.225.025-.125.025-.225L14.9 9.6q-.05-.2-.15-.275-.1-.075-.25-.075H9.6q-.15 0-.225.075Q9.3 9.4 9.3 9.55q-.05 1.95.6 4.325t1.85 5.225ZM29.5 36.45q2.05 1 4.475 1.55t4.425.65q.15 0 .225-.075.075-.075.075-.225v-4.9q0-.15-.075-.25t-.225-.15l-4.55-.9q-.1-.05-.2 0l-.2.1ZM11.75 19.1ZM29.5 36.45Z' fill='%23eee922'/%3E%3C/svg%3E");
}

#mail-tab {
    margin-left: clamp(20px, 4vw, 60px);
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M7.9 39q-1.2 0-2.05-.85Q5 37.3 5 36.1V11.9q0-1.2.85-2.05Q6.7 9 7.9 9h32.2q1.2 0 2.05.85.85.85.85 2.05v24.2q0 1.2-.85 2.05-.85.85-2.05.85ZM24 24.3 7.25 13.25V36.1q0 .3.175.475t.475.175h32.2q.3 0 .475-.175t.175-.475V13.25Zm0-2.4 16.3-10.65H7.75ZM7.25 13.25v-2V36.1q0 .3.175.475t.475.175h-.65V36.1Z' fill='%23eee922'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
    #phone-tab {
        padding-top: 30px;
 }
    
    #mail-tab {
        padding-top: 30px;
    }
}

/* #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: #cb2929;
        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: #cb2929;
        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: 6px;
        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%;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    #menu {
        transition: background 300ms linear;
    }

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

    .is-sticky #menu {
        left: auto !important;
        background: #2d2d2d;
    }

    nav.horizontally .navbar-nav {
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding: 20px 0;
        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"] {
        flex-grow: 1;
    }

    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: #fff;
    font-weight: 400;
    text-align: left;
    padding: 14px 5px;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none !important;
    transition: border 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: 6px 10px;
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }

    .navbar-default li[class*="toplevel"]+li {
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }
}

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

.navbar-default li[class*="toplevel"]>a::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    height: 5px;
    width: 0;
    background: #fff;
    transform: translateX(-50%);
    transition: width 300ms linear;
}

@media (min-width: 992px) {
    .navbar-default li[class*="toplevel"]>a::after {
        top: -23px !important;
        background: #eee922;
        top: 0;
        bottom: auto;
    }

    .is-sticky .navbar-default li[class*="toplevel"]>a::after {
        background: #fff;
    }
}

/* -------------------------------------------- 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%;
}

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

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

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

@media (max-width: 991px) {
    .navbar-default li[class*="secondlevel"]>ul {
        margin: 10px;
    }
}

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

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

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

    .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: 22px;
        left: 0;
        right: 0;
        top: -22px;
    }

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

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

.navbar-default :is(li[class*="secondlevel"]:not(:nth-last-child(2)), li[class*="thirdlevel"]):not(:nth-last-child(2)) {
    border-bottom: 1px solid #666666;
}

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

@media(max-width: 991px) {
    nav.horizontally li[class*="secondlevel"]>a.dropdown-toggle2 {
        padding-right: 35px;
    }
}

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

.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: #cb2929;
}

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

.navbar-default :is(li[class*="secondlevel"]:not(:nth-last-child(2)), li[class*="thirdlevel"]):not(:nth-last-child(2)):hover,
.navbar-default :is(li[class*="secondlevel"]:not(:nth-last-child(2)), li[class*="thirdlevel"]):not(:nth-last-child(2)):focus {
    border-bottom: 1px solid #eee922;
}

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

#topbar .row {
    row-gap: 25px;
}

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

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

#headerpic {
    position: relative;
    background-color: #262626;
}

#headerpic>*:not(.slider-wrapper):not(.sticky-wrapper):not(#menu) {
    position: relative;
    z-index: 200;
}

@media (min-width: 768px) {
    body.index #headerpic .nivo-controlNav {
        bottom: clamp(50px, 8vw, 110px);
    }
}

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

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

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

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

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

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

@media (max-width: 1199px) {
    #headerpic a.nivo-prevNav,
    #headerpic a.nivo-nextNav {
        top: auto;
        bottom: 8px;
        z-index: 51;
    }
}

#topbar {
    position: relative;
}

@media (min-width: 992px) {
    #topbar {
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
    }
}

.slider-mask {
    display: block;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 220px, rgba(255, 255, 255, 0));
}

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

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

#tabs {
    position: relative;
    z-index: 30;
    background: #ebebeb;
    padding-bottom: clamp(40px, 6vw, 80px);
}

@media (max-width: 767px) {
    #tabs {
        padding-top: clamp(40px, 6vw, 80px);
    }
}

#tabs-bg {
    font-size: 1rem;
    background: #fff;
}

@media (min-width: 768px) {
    #tabs-bg {
        margin-top: clamp(-100px, -8vw, -40px);
    }
}

@media (min-width: 992px) {
    #tabs-bg::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        right: -5px;
        bottom: -20px;
        width: 100px;
        height: 100px;
        background: #eee922;
    }
}

#tabs-bg>.row {
    margin: 0;
}

#tabs-bg .tab {
    max-width: 100%;
    flex-grow: 1;
    position: relative;
    padding: 80px clamp(15px, 4vw, 30px) 36px clamp(15px, 4vw, 30px);
}

#tabs-bg .tab::after,
#tabs-bg .tab::before {
    content: "";
    display: block;
    position: absolute;
}

#tabs-bg .tab::after {
    left: clamp(15px, 4vw, 30px);
    top: 30px;
    height: 40px;
    width: 38px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px auto;
}

#tabs-bg .tab-2::after {
    background-image: url("../img/eagle.png");
}

#tabs-bg .tab-3::after {
    background-image: url("../img/icon-elektrisch.svg");
}

#tabs-bg .tab-4::after {
    background-image: url("../img/icon-tarifschild.svg");
}

#tabs-bg .tab:not(.tab-1)+.tab::before {
    left: clamp(15px, 4vw, 30px);
    right: clamp(15px, 4vw, 30px);
    top: 0;
    height: 1px;
    background: #9db5e0;
}

@media (min-width: 576px) and (max-width: 911px) {
    #tabs-bg .tab:not(.tab-1)+.tab:nth-child(3):before {
        display: none;
    }
}

@media (min-width: 992px) {
    #tabs-bg .tab:not(.tab-1)+.tab::before {
        left: 0;
        right: unset;
        top: 80px;
        height: unset;
        bottom: 90px;
        width: 1px;
    }
}

#tabs-bg .tab-1 {
    background: #eee922 url('../img/icon-taxi-tabs.png') right 30px bottom 30px no-repeat;
    padding-top: 40px;
}

#tabs-bg .tab-1,
#tabs-bg .tab-1 :is(h1, h2, h3, h4, h5, h6, a) {
    color: #2d2d2d;
}

#tabs-bg .tab:not(.tab-1) :is(h1, h2, h3, h4, h5, h6) {
    color: #262626;
}

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

@media (min-width: 992px) {
    .index #content {
        margin-top: -10px;
    }
    content {
        margin-top: -20px;
    }
}

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

/* ------------------------------------------------ 12ev events ----------------------------------------------- */

.events {
    background-color: #fff;
    padding: 0px 0px 20px 0px;
    color: #444444;
    font-size: 1rem;
    position: relative;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    max-width: 370px;
    margin: 0 auto;
    margin-top: 20px;
}

.events .tabHeadline {
    background: #444444;
    color: #eee922;
    font-size: 1.5625rem;
    font-weight: 600;
    padding: 18px 25px;
    text-align: center;
    margin-bottom: 0;
}

.events .tabContent {
    padding: 25px;
}

.eventclndr-tab {
    margin-left: -25px;
    margin-right: -25px;
    margin-top: -25px;
  }

.events .tab_link_title a {
    font-weight: 600;
    color: #666666;
}

.events .tab_link_mandat a {
    color: #666666;
    font-weight: 400;
    text-decoration: none;
}

.events .tab_link_mehr {
    font-size: 0;
    position: relative;
}

.events::after {
    width: 0px;
    height: 0px;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 0 0 50px 50px;
    border-color: transparent transparent #eee922 transparent;
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: 2;
    display: block;
    content: "";
}

.events .tab_link_mehr a::before {
    content: "+";
    font-size: 1.25rem;
    font-weight: 400;
    color: #2d2d2d;
    z-index: 3;
    display: block;
    position: absolute;
    right: -17px;
    bottom: -45px;
}

/* ------------------------------------------ tabs27 ----------------------------------------- */

#tabs27 {
    color: #ffffff;
    font-size: 1rem;
}

#tabs27>.row {
    max-width: 100%;
    width: 100%;
}

#tabs27 img {
    margin-bottom: 20px;
}

#tabs27 h1,
#tabs27 h2,
#tabs27 h3 {
    font-size: 1.1875rem;
    margin-bottom: 1.5vw;
}

#tabs27 a,
#tabs27 h1,
#tabs27 h2,
#tabs27 h3,
#tabs27 h4,
#tabs27 h5,
#tabs27 h6 {
    color: #ffffff;
}

#tabs27 .tab {
    padding: 2.6vw;
}

#tabs27 .tab a {
    color: #eee922;
}

@media (max-width: 575px) {
    #tabs27 .tab {
        padding: 20px;
    }
}

#tabs27>.row>div {
    background: #5e5e5e;
}

#tabs27>.row>div:nth-child(2),
#tabs27>.row>div:nth-child(4) {
    background: #444444;
}

@media (min-width: 576px) and (max-width: 768px) {
    #tabs27>.row>div:nth-child(4) {
        background: #666666;
    }

    #tabs27>.row>div:nth-child(2),
    #tabs27>.row>div:nth-child(3) {
        background: #444444;
    }
} 

/* #region --------------------------------------- about ---------------------------------------- */

#about {
    padding: clamp(40px, 10vw, 95px) 0;
}

#about img {
    margin-bottom: 20px;
}

#about a:not(.has-image) {
    margin-top: 12px;
    display: inline-block;
}

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

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):not([href*="http://"]) {
    display: inline-block;
    line-height: 1.2;
    color: #2d2d2d !important;
    font-size: 1rem;
    font-weight: 600;
    background: #eee922;
    padding: 12px 58px 11px 20px;
    position: relative;
    text-decoration: none !important;
    text-shadow: none !important;
}

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):not([href*="http://"])::after {
    content: "»";
    display: block;
    position: absolute;
    right: 20%;
    bottom: 30%;
}

.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):not([href*="http://"]):hover,
.button-design a:not(.has-image):not([href*="mailto"]):not([href*="tel"]):not([href*="http://"]):focus {
    background: #fff;
}

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

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
    color: #2d2d2d;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

:is(#tabs-bg, #footer) :is(h1, h2, h3, h4, h5, h6) { 
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

h1,
.h1,
.legacy_h1 {
    margin-bottom: clamp(0.9375rem, 4vw, 2.375rem);
}

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

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

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

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

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

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

#quote {
    background-color: #262626;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: clamp(60px, 10vw, 93px) 0;
}

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

footer {
    font-size: 1rem;
}

#footer {
    padding: clamp(40px, 8vw, 80px) 0;
    background: #444444 url('../img/icon-taxi-footer.png') left 7% bottom no-repeat;
}

@media (min-width: 992px) {
    #footer>.row>*+*:not(:last-child) {
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    #footer>.row>*:nth-child(1) {
        padding-right: 60px;
    }

    #footer>.row>*:nth-child(2) {
        padding-left: 60px;
    }
}

#footer,
#footer a,
#footer a:hover,
#footer a:focus {
    color: #fff;
}

#footer :is(h1, h2, h3, h4, h5, h6) {
    color: #fff;
    margin-bottom: 20px;
}

#map-tab {
    z-index: 1;
}

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


@media (min-width: 768px) {

    #map-tab .iframe-wrapper-manual-enabling,
    #map-tab iframe {
        position: absolute;
        z-index: 1;
        top: clamp(-160px, -15vw, -40px);
        right: 0;
        bottom: calc(clamp(-80px, -8vw, -40px) - 92px);
        left: 0;
        display: block;
        height: calc(100% + clamp(40px, 15vw, 160px) + calc(clamp(40px, 8vw, 80px) + 92px)) !important;
    }
}

@media (min-width: 992px) {

    #map-tab::after {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        left: -20px;
        top: calc(clamp(-160px, -15vw, -40px) - 20px);
        width: 100px;
        height: 100px;
        background: #eee922;
    }
}

#map-tab .iframe-wrapper-manual-enabling iframe {
    pointer-events: none;
}

#map-tab .template-page .row,
#map-tab .template-page .row>* {
    position: static !important;
}

#innerfooter {
    font-size: 0.9375rem;
    padding: 35px 0;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: block;
}

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

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

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

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

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

#innerfooter li a:hover,
#innerfooter li a:focus {
    color: #cb2929;
}

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

#footer #vernetzt {
    text-align: left;
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin: 20px auto 0 auto;
    text-decoration: none;
    display: inline-block;
}

@media (min-width: 576px) {
    #footer #vernetzt {
        margin-left: 0;
        margin-right: 0;
    }
}

#footer #vernetzt b {
    color: #eee922;
    font-weight: 400;
}

#footer #vernetzt span {
    display: block;
}

#footer #vernetzt img {
    display: block;
    margin-bottom: 8px;
}
