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

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

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

a {
    color: #c1121f;
}

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

b,
strong {
    font-weight: 700;
}

#overflow {
    overflow:clip;
    position: relative;
}

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

#topbar {
    color: #ffffff;
    background: #191919;
}

/* search */

#search h2 {
    color: inherit;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 10px 0 0;
    width: auto;
    line-height: inherit;
}

#search>* {
    padding-top: 12px;
    padding-bottom: 12px;
}

@media (min-width: 992px) {
    #search>* {
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

#search_input {
    color: #ffffff;
    font-size: 0.875rem;
    font-style: normal !important;
    background: transparent;
    border: 0;
    width: 100%;
    max-width: 180px;
    padding-left: 10px;
    padding-right: 10px;
}

#search_submit {
    border: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="48" fill="%23fff" viewBox="0 -960 960 960" width="48"><path d="M796-121 533-384q-30 26-69.959 40.5T378-329q-108.162 0-183.081-75Q120-479 120-585t75-181q75-75 181.5-75t181 75Q632-691 632-584.85 632-542 618-502q-14 40-42 75l264 262-44 44ZM377-389q81.25 0 138.125-57.5T572-585q0-81-56.875-138.5T377-781q-82.083 0-139.542 57.5Q180-666 180-585t57.458 138.5Q294.917-389 377-389Z"/></svg>') no-repeat center / 20px auto;
    padding: 0;
    cursor: pointer;
    font-size: 0;
    min-width: 34px;
    flex-shrink: 0;
    transition: background-color 300ms linear;
}

#search_submit:is(:hover, :focus) {
    background-color: #c1121f;
}

#search_input::placeholder {
    color: #ffffff !important;
    opacity: 0.8 !important;
    font-style: normal !important;
}

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

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

#logo {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 15px;
    text-decoration: none;
}

#logo .logoImg img {
    display: block;
}

@media (max-width: 991px) {
    #logo .logoImg img {
    max-width: 60px;
        width: 100%;
    }
    #logo {
        gap:5px;
    }
}

#logo .logoTxt {
    line-height: 1.2;
    color: #191919;
    font-size: clamp(1rem, 2vw, 1.375rem);
}

#logo .logoTxt :is(b, strong) {
    color: #046a38;
    display: block;
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    nav.horizontally {
        position: static !important;
        background: rgba(255, 255, 255, 0.94);
        padding: 10px 0;
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    }

    #burgerButton {
        font-size: 0;
        border: none !important;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        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: #046a38;
        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 {
        margin: 20px 0;
    }

    .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: 64px;
        right: 15px;
        z-index: 101;
    }

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

    .dropdown-toggle-button-wrapper {
        top: 7px;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 4px;
    }
}

/* menu desktop */

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

    nav.horizontally {
        background: rgba(255, 255, 255, 0.94);
        padding: 10px 0;
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
        transition: background 200ms linear;
    }

    .is-sticky nav.horizontally {
        background: rgba(255, 255, 255, 0.96);
    }

    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    nav.horizontally .navbar-nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: block !important;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms linear;
    }

    nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
        left: 100%;
        top: 0;
    }

    nav.horizontally .navbar-nav li {
        position: relative;
    }

    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: #262626;
    font-weight: 700;
    text-align: left;
    padding: 12px 15px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    nav.horizontally a[class*="toplevel"].dropdown-toggle {
        padding-right: 35px;
    }
   nav.horizontally a[class*="toplevel"]{
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}


    nav.horizontally li[class*="toplevel"]+li {
        border-top: 1px solid rgba(46, 60, 72, 0.2);
    }
}

@media (min-width: 992px) {
    nav.horizontally a[class*="toplevel"] {
        padding: 10px 0;
        text-align: center;
    }

    nav.horizontally li[class*="toplevel"]+li {
        margin-left: 15px;
    }
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav>li.dropdownpr>a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: calc(50% - 3px);
        display: block;
        width: 6px;
        height: 6px;
        border-right: 1px solid #595959;
        border-bottom: 1px solid #595959;
        transform: rotate(45deg);
    }
}

/* 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: #046a38;
    background-color: transparent;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background-color: #ffffff;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    nav.horizontally [class*="toplevel"]>ul {
        padding: 15px;
    }
}

@media (min-width:992px) {
    nav.horizontally [class*="toplevel"] ul {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    nav.horizontally [class*="toplevel"]>ul {
        left: 50%;
        transform: translate(-50%);
        margin-top: 58px;
    }

    .is-sticky nav.horizontally [class*="toplevel"]>ul {
        margin-top: 38px;
    }

    nav.horizontally [class*="secondlevel"]>ul {
        margin-top: -18px;
        margin-left: 20px;
    }

    nav.horizontally :is([class*="toplevel"], [class*="secondlevel"])>ul::before {
        content: "";
        position: absolute;
        display: block;
    }

    nav.horizontally [class*="toplevel"]>ul::before {
        height: 58px;
        left: 0;
        right: 0;
        top: -58px;
    }

    nav.horizontally [class*="secondlevel"]>ul::before {
        width: 20px;
        top: 0;
        bottom: 0;
        left: -20px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #262626;
    font-weight: 400;
    text-align: left;
    padding: 8px 35px 8px 10px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -42px;
    bottom: 0;
    width: 32px;
    background: #c1121f;
    border-left: 2px solid #ffffff;
    transform: skewX(26deg);
    transition: right 300ms linear;
}

@media (min-width: 992px) {
    nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
        text-align: center;
    }
}

@media (max-width: 991px) {
 nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

}

/* secondlevel + thirdlevel over */

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

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus)::before {
    right: -10px;
}

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

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

#slider {
    height: clamp(300px, 55vw, 550px);
    position: relative;
}

@media (min-width: 992px) {
    body.index #slider {
        height: clamp(550px, 70vw, 865px);
    }

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

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

    body:not(.index) #headerpic .nivo-controlNav {
        bottom: 26px;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .index #headerpic a.nivo-nextNav {
        left: 65px;
        right: unset;
        top: 51%;
    }
}

#headerpic {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.slider-wrapper,
.nivo-main-image,
#slider>a>div {
    height: 100% !important;
}

#headerpic .nivo-controlNav {
    bottom: 8%;
    left: 27%;
    text-align: left;
}

.slider-mask {
    display: block;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%23ffffff" width="1920px" height="260px"><path d="M3.000,-0.000 C3.000,-0.000 475.764,206.475 543.764,240.475 C600.431,265.475 600.133,258.267 615.1000,256.1000 C626.467,254.533 1976.1000,2.1000 1976.1000,2.1000 L1976.1000,259.1000 L0.000,259.1000 L3.000,-0.000 Z"/></svg>') no-repeat bottom -1px right / 102% auto,
        linear-gradient(to top, rgba(25, 25, 25, 0.9) 0%, rgba(25, 25, 25, 0.4) 60%, rgba(25, 25, 25, 0));
}

/* overlay */

@media (max-width: 991px) {
    #overlay {
        background: #ffffff;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

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

#overlay .tabHead {
    pointer-events: auto;
    padding: 30px 0;
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(1.125rem, 3vw, 1.875rem);
}

#overlay .tabHead :is(h1, h2, h3) {
    font-size: clamp(1.75rem, 3vw, 2.8125rem);
    margin-top: 6px;
}

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

    #overlay .tabHead {
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
        background-color: rgba(0, 0, 0, 0.01);
    }

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

#overlay .tab {
    font-size: 1rem;
    pointer-events: auto;
    background: #ffffff;
    padding: clamp(30px, 3vw, 40px) 35px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

#overlay .tab .tabHeadline {
    font-size: clamp(1.625rem, 3vw, 1.875rem);
}

#overlay .tab hr {
    height: 2px;
    opacity: 0.2;
    background: #000000;
    margin-top: 15px;
    margin-bottom: 15px;
}

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

/* ------------------------------------------------ buttonStyle ----------------------------------------------- */

.buttonStyle a {
    display: inline-block;
    text-decoration: none;
    line-height: 1.2;
    font-style: italic;
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.125rem);
    padding: 14px 60px 14px 20px;
    background: #191919;
    position: relative;
    transition: background 200ms linear;
}

.buttonStyle a:not(.has-image):is(:hover, :focus) {
    background: #c1121f;
}

.buttonStyle a:not(.has-image)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: #c1121f url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11px' height='12px'%3E%3Cpath d='M0.942,11.636 L5.320,6.488 L5.320,5.256 L0.942,0.108 L0.942,3.540 L3.230,5.850 L0.942,8.204 L0.942,11.636 ZM5.694,11.636 L10.072,6.488 L10.072,5.256 L5.694,0.108 L5.694,3.540 L7.982,5.850 L5.694,8.204 L5.694,11.636 Z' fill='%23ffffff'/%3E%3C/svg%3E") center / 12px auto no-repeat;
    transition: background 200ms linear;
}

.buttonStyle a:not(.has-image):is(:hover, :focus)::after {
    background-color: #191919;
}

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

#content {
    text-align: left;
    padding-top: 40px;
    padding-bottom: clamp(40px, 6vw, 90px);
}

/* ----------------------------------------------- @6nw news -------------------------------------------- */

#nw6 {
    padding-bottom: clamp(30px, 4vw, 60px);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll, fixed;
    background-size: cover;
    position: relative;
}

#nw6::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #ffffff, #ffffff 100px, rgba(255, 255, 255, 0)100px),
        url('../img/news-mask.png') top 100px center / 100% auto no-repeat;
}

#nw6 .tabCol {
    margin-bottom: 40px;
}

#nw6 .tabHeadline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 5px;
}

#nw6 .tabContent {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

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

#nw6 .tab_link_entries {
    display: grid;
    gap: 30px;
}

@media (min-width: 576px) {
    #nw6 .tab_link_entries {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    #nw6 .tab_link {
        margin-top: 18px;
    }

    #nw6 .tab_link_entries {
        grid-template-columns: repeat(3, 1fr);
    }
}

#nw6 .tab_link_entry {
    font-size: 1rem;
    text-align: center;
    position: relative;
    width: 100%;
    border-bottom: none !important;
    padding: 165px 20px 20px 20px;
    background: #ffffff;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

#nw6 .tab_link_entry::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: center / cover no-repeat, #f8f8f8;
}

#nw6 .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    height: 150px;
    overflow: hidden;
    background: #ffffff;
}

#nw6 .tab_preview_picture img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
}

#nw6 .tab_date {
    position: absolute;
    display: inline-block;
    z-index: 1;
    left: 50%;
    top: 134px;
    font-weight: 400;
    font-style: italic;
    font-size: 1rem;
    color: #ffffff;
    padding: 4px 10px;
    background: #191919;
    transform: translateX(-50%);
}

#nw6 .tab_link_title a {
    color: #046a38;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
}

#nw6 .tab_link_entry>div:nth-last-child(2) {
    font-size: 0;
    line-height: 0;
}

#nw6 .tab_link_entry>div:nth-last-child(2)>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    text-align: center;
    font-size: 0;
    color: #ffffff;
    font-weight: 400;
    display: flex !important;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: linear-gradient(to bottom, rgba(193, 18, 31, 0.8), #c1121f 150px);
    opacity: 0;
    transition: opacity 200ms linear;
}

#nw6 .tab_link_entry:hover div:nth-last-child(2)>a {
    opacity: 1;
}

#nw6 .tab_link_entry div:nth-last-child(2)>a::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -60px;
    width: 80px;
    height: 80px;
    background: url("../img/mehr-erfahren-button.png") center no-repeat;
}

#nw6 div:nth-last-child(2)>a::after {
    content: "mehr erfahren";
    margin-top: 100px;
    font-weight: 600;
    font-style: italic;
    font-size: 1.25rem;
}

#nw6 a:hover,
#nw6 a:focus {
    text-decoration: none;
}

/* ----------------------------------------- @6nw tab_link_mehr_main ---------------------------------------- */

#nw6 .tab_link_mehr_main {
    color: transparent;
    font-size: 0;
    text-align: right;
}

/* ------------------------------------------------ tabsBig ----------------------------------------------- */

#tabsBig {
    padding-top: clamp(40px, 6vw, 110px);
    padding-bottom: clamp(40px, 7vw, 120px);
}

#tabsBig .tabsBox {
    background: #ffffff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    position: relative;
}

#tabsBig .tabsBox .tab {
    padding: clamp(30px, 4vw, 70px) clamp(30px, 4vw, 40px) clamp(30px, 4vw, 35px) clamp(30px, 4vw, 40px);
}

#tabsBig .tabsBox .tab .tabHeadline {
    font-size: 1.75rem;
}

#tabsBig .bannerBox {
    line-height: 0;
}

@media (min-width: 768px) {
    #tabsBig .tabsBox>.row>*:last-child {
        padding-left: 0;
    }
}

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

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

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

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

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

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

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

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

/* ----------------------------------------------- @3f footer ----------------------------------------------- */

/* ----------------------------------------- maps_contact -------------------------------------- */

#maps_contact {
    color: #ffffff;
    background-color: #c1121f;
    overflow: hidden;
}

@media (min-width: 1200px) {
    #maps_contact {
        background: url('../img/logo-wasserzeichen.png') right 60px center no-repeat, #c1121f;
    }
}

#maps_contact .tab {
    padding: clamp(30px, 4vw, 60px) 0;
}

#maps_contact :is(h1, h2, h3, h4, h5, h6) {
    color: #ffffff;
    font-size: clamp(1.625rem, 3vw, 2.1875rem);
}

#maps_contact a {
    color: #ffffff;
}

#maps_contact .tab a[href^="mailto:"] {
    text-decoration: underline;
}

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

#maps_contact .noPadding {
    padding: 0px;
}

#maps_contact .iframeMapsTab {
    height: 100%;
}

#maps_contact .iframeMapsTab iframe,
#maps_contact .iframeMapsTab .iframe-wrapper-manual-enabling {
    min-width: 100% !important;
    width: 100% !important;
    display: block;
    max-height: 100%;
    min-height: 100%;
}

@media (min-width: 992px) {
    #maps_contact .colMaps {
        padding-left: 0;
        max-width: 1060px;
    }

    #maps_contact .colContact {
        max-width: 506px;
    }
}

@media (max-width: 767px) {
    #maps_contact .colMaps {
        padding: 0px;
    }

    #maps_contact .colContact {
        max-width: 576px;
        margin: auto;
    }
}

@media (max-width: 991px) {
    #maps_contact{
padding-bottom:30px;
        

    }
        #maps_contact   .iframeMapsTab{
      width: calc(100% + 30px);
        
    }
}
@media (max-width: 767px) {
    #maps_contact {
        padding-bottom: 0;
    }
}
@media (max-width: 575px) {
        #maps_contact   .iframeMapsTab{
      width: 100%;
        
    }

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

#footer {
    color: #ffffff;
    font-size: 0.9375rem;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #191919;
}

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

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

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

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

#innerfooter li+li::before {
    content: "•";
    margin: 0 5px;
}

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

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

    #innerfooter li+li::before {
        display: none;
    }
}

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

#vernetzt {
    gap: 15px;
    text-align: left;
    font-size: 0.8125rem;
    color: #ffffff;
    line-height: 1.3;
    text-decoration: none;
}

#vernetzt span span {
    display: block;
}

/* --------------------------------------------- scrollTopBtn -------------------------------------------- */

#scrollTopBtn {
    display: inline-block;
    text-decoration: none;
    color: #191919;
    font-style: italic;
    font-size: 1.125rem;
    padding: 12px 52px 11px 18px;
    background: #ffffff;
    position: relative;
}

#scrollTopBtn::after {
    content: "\00BB";
    position: absolute;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    top: 5px;
    right: -6px;
    bottom: 0;
    width: 50px;
    height: 40px;
    color: #ffffff;
    font-size: 22px;
    line-height: 0;
    font-style: normal;
    transform: rotate(-90deg);
    background: #c1121f;
    transition: all 300ms linear;
}

#scrollTopBtn:is(:hover, :focus) {
    color: #ffffff;
    background: #c1121f;
}

#scrollTopBtn:is(:hover, :focus)::after {
    color: #191919;
    background: #ffffff;
}