@import url("https://fonts.verwaltungsportal.de/import/?family=Work+Sans:400,600,400i,600i");
@import url("https://fonts.verwaltungsportal.de/import/?family=Oswald:400,600,700,400i,600i,700i");

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

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

@media (min-width: 1200px) {
    body.index {
        background-image: url('../img/grafik-zug1.png');
        background-position: top 560px left;
        background-repeat: no-repeat;
    }
}

a {
    color: #c41c1c;
}

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

b,
strong {
    font-weight: 600;
}

/* ------------------------------------------ topbar -------------------------------------------- */

#topbar {
    padding: 20px 0 5px 0;

}

@media (max-width: 575px) {
    #topbar {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 991px) {
    .is-sticky #topbar {
        position: static !important;
    }
}

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

@media (min-width: 992px) {
    #topbar {
        padding: 60px 0;

    }

    .is-sticky #topbar {
        background-color: #ffffff;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
        transition: padding 200ms linear;
    }

    .topbar-col {
        column-gap: 35px;
    }
}

#logo {
    display: inline-block;
}

#logo img {
    display: block;
    transition: max-width 150ms linear;
}

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

/* ------------------------------------------- styler ------------------------------------------- */

@media (min-width: 992px) {
    #style {
        margin-right: -10px;
    }

    #style h2 {
        font-size: 0.8125rem;
        color: inherit;
        text-transform: uppercase;
        margin: 0 10px 0 0;
        display: inline-block;
        width: auto;
    }

    #style button {
        padding: 0;
        border: none;
        font-size: 0.8125rem;
        color: inherit;
        display: inline-block;
        background-color: transparent;
        min-width: 22px;
        font-weight: 600;
        text-align: center;
        position: relative;
        line-height: 1;
        margin-left: 4px;
        transition: all 100ms linear;
    }

    #style button:is(:hover, :focus) {
        transform: scale(1.2);
    }
}

/* -------------------------------------------- suche ------------------------------------------- */

#search {
    display: inline-flex;
}

@media (max-width: 991px) {
    #search {
        display: flex;
        padding-top: 5px;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }
}

#search_input {
    color: inherit;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 600;
    background: transparent !important;
    padding: 7px 10px;
    border: 0;
    width: 100%;
    letter-spacing: 1px;
}

#search_submit {
    min-width: 33px;
    flex-shrink: 0;
    background: url('../img/lupe-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    border: none;
    font-size: 0;
    transition: all 100ms linear;
    transform: scale(0.7);
}

#search_submit:is(:hover, :focus) {
    background-color: transparent;
    transform: scale(1);
}

#search_input::placeholder {
    color: inherit !important;
    opacity: 1 !important;
    font-style: normal !important;
    letter-spacing: inherit !important;
    text-transform: uppercase !important;
}




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

/* burgermenu for tablet */

#burgerButton {
    font-size: 0;
    border: none !important;
    position: relative;
    z-index: 1004;
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: transparent !important;
}

@media (max-width: 991px) {
    #burgerButton {
        position: fixed;
        right: 15px;
        top: 15px;
        background-color: #ffffff !important;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
        border-radius: 2px;
    }
}

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

#burgerButtonInner2,
#burgerButton::after,
#burgerButtonInner {
    position: absolute;
    background: #2b2b2b;
    width: 28px;
    height: 2px;
    left: calc(50% - 14px);
    color: #ffffff !important;
    transition: transform 200ms linear, opacity 200ms linear, width 200ms linear;
}

@media (prefers-contrast: more) {

    #burgerButtonInner2,
    #burgerButton::after,
    #burgerButtonInner {
        border: 1px solid #ffffff;
        box-sizing: border-box;
    }
}

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

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

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

#burgerButtonInner {
    top: 16px;
}

#burgerButtonInner2 {
    top: 23px;
    content: "";
}

#burgerButton::after {
    top: 30px;
    width: 14px;
    content: "";
}

@media (min-width: 992px) {
    #menuspan {
        font-size: 0.8125rem;
        text-transform: uppercase;
        font-weight: 600;
    }
}

/* burgermenu for tablet */

@media (max-width: 991px) {
    .navbar-nav {
        margin: 20px 0;
        background-color: #ffffff;
        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    }

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: linear-gradient(0deg, rgb(229, 131, 11) 0%, rgb(247, 179, 46)100%), #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: 15px;
        right: 15px;
        z-index: 101;
    }

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

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

    .dropdown-toggle-button::before,
    .dropdown-toggle-button::after {
        background: #a35200;
    }
}

/* menu desktop */

@media (min-width: 992px) {

    .navbar-default {
        width: auto;
    }

    .navbar-default .navbar-nav {
        width: 100%;
        margin: 0;
        display: block;
        padding: 30px;
        overflow-y: auto;
        position: relative;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        max-width: 992px;
        margin-left: auto;
        margin-right: auto;
        background: #ffffff;
    }

    .navbar-default li[class*="toplevel"] {
        float: none;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
        display: list-item !important;
    }

    .navbar-nav::after,
    .navbar-nav::before {
        display: none;
    }

    #myNavbar {
        max-height: 70vh;
    }

    #myNavbar.navbar-collapse {
        pointer-events: none;
        position: absolute;
        z-index: 1002;
        top: 50%;
        right: 0;
        opacity: 0;
        width: 600px;
        background: #ffffff;
        height: auto !important;
        filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
        -webkit-transition: opacity 300ms linear, top 300ms linear;
        -moz-transition: opacity 300ms linear, top 300ms linear;
        -ms-transition: opacity 300ms linear, top 300ms linear;
        -o-transition: opacity 300ms linear, top 300ms linear;
        transition: opacity 300ms linear, top 300ms linear;
    }

    #burgerButton::before {
        content: "";
        display: block;
        position: absolute;
        pointer-events: none;
        right: 10px;
        bottom: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 15px 25px 15px;
        border-color: transparent transparent #ffffff transparent;
        opacity: 0;
        transition: opacity 300ms linear, bottom 300ms linear;
    }

    #burgerButton[aria-expanded="true"]::before {
        opacity: 1;
        bottom: -20px;
    }

    #burgerButton[aria-expanded="true"]+#myNavbar {
        pointer-events: auto;
        opacity: 1;
        top: 130%;
    }

    #myNavbar:focus-within {
        pointer-events: auto;
        opacity: 1;
        top: 130%;
    }

    #myNavbar {
        max-height: 50vh;
        overflow: auto;
        scrollbar-color: #555555 #f1f1f1;
        scrollbar-width: thin;
    }
}

@media (min-width: 1200px) {
    .navbar-default .navbar-nav {
        max-width: 1200px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

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

.navbar-default li[class*="toplevel"]>a {
    color: #222222;
    font-weight: 600;
    text-align: left;
    padding: 9px 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    background: #f9f9f9;
    margin-bottom: 2px;
    border: 2px solid #f9f9f9;
}

@media (max-width: 991px) {
    .navbar-default li[class*="toplevel"] {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

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

.navbar-default li[class*="toplevel"]:hover>a:after,
.navbar-default li[class*="toplevel"]>a:hover,
.navbar-default li[class*="toplevel"]>a:focus,
.navbar-default li[class*="toplevel"].open>a,
.navbar-default li[class*="toplevel"].open>a:hover,
.navbar-default li[class*="toplevel"].open>a:focus,
.navbar-default li[class*="toplevel"][class$="_over"]>a,
.navbar-default li[class*="toplevel"][class$="_over"]>a:hover,
.navbar-default li[class*="toplevel"][class$="_over"]>a:focus {
    color: #c41c1c;
    border: 2px solid #c41c1c;
    background: #ffffff;
}

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

@media (max-width: 991px) {
    .navbar-default li[class*="toplevel"]>.dropdown-menu {
        padding: 10px;
    }

    .navbar-default li[class*="toplevel"]>.dropdown-menu,
    .navbar-default li[class*="toplevel"]>.dropdown-menu>li>.dropdown-menu {
        background: rgba(255, 255, 255, 0.5);
    }
}

@media (min-width: 992px) {

    .navbar-default li[class*="toplevel"]>.dropdown-menu,
    .navbar-default li[class*="toplevel"]>.dropdown-menu>li>.dropdown-menu {
        display: block;
    }
}

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

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

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

@media (min-width: 992px) {
    .navbar-default li[class*="secondlevel"]>a {
        padding: 5px 15px 5px 30px;
    }

    .navbar-default li[class*="thirdlevel"]>a {
        padding: 5px 15px 5px 50px;
    }

    .navbar-default li[class*="secondlevel"]>a::before,
    .navbar-default li[class*="thirdlevel"]>a::before {
        content: "";
        position: absolute;
        margin-top: -2px;
        top: 50%;
        left: 15px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #e0a106;
        transition: background 150ms linear;
    }

    .navbar-default li[class*="thirdlevel"]>a::before {
        left: 35px;
    }
}

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

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

.navbar-nav li[class*="secondlevel"]:hover>a::before,
.navbar-nav li[class*="secondlevel"]>a:hover::before,
.navbar-nav li[class*="secondlevel"]>a:focus::before,
.navbar-nav li[class*="secondlevel"].open>a::before,
.navbar-nav li[class*="secondlevel"].open>a:hover::before,
.navbar-nav li[class*="secondlevel"].open>a:focus::before,
.navbar-nav li[class*="secondlevel"][class$="_over"]>a::before,
.navbar-nav li[class*="secondlevel"][class$="_over"]>a:hover::before,
.navbar-nav li[class*="secondlevel"][class$="_over"]>a:focus::before,
.navbar-nav li[class*="thirdlevel"]>a:hover::before,
.navbar-nav li[class*="thirdlevel"]>a:focus::before,
.navbar-nav li[class*="thirdlevel"].open>a::before,
.navbar-nav li[class*="thirdlevel"].open>a:hover::before,
.navbar-nav li[class*="thirdlevel"].open>a:focus::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:hover::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"]>a:focus::before {
    background: #c41c1c;
}


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

#slider {
    max-height: clamp(300px, 52vw, 500px);
    position: relative;
}

@media (min-width: 992px) {
    body.index #slider {
        max-height: clamp(500px, 62vw, 650px);
    }

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

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

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

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

.slider-mask {
    display: none;
}

header>.row {
    row-gap: 30px;
}

@media (min-width: 576px) {
    header {
        position: relative;
        z-index: 101;
    }

    header::after {
        content: "";
        position: absolute;
        z-index: -1;
        right: 0;
        bottom: 0;
        top: 0;
        width: 40vw;
        max-width: 960px;
        pointer-events: none;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    body.index header::after {
        bottom: 60px;
    }
}

@media (min-width: 992px) {
    header::after {
        width: 60vw;
    }
}

/* ------------------------------------------- headertab ---------------------------------------- */

#headertab {
    position: relative;
    padding: 0 0 clamp(20px, 3vw, 35px) clamp(20px, 3vw, 35px);
}

@media (max-width: 991px) {
    #headertab {
        padding-top: 30px;
    }
}

#headertab::before {
    content: "";
    position: absolute;
    top: 36px;
    bottom: 0;
    left: 0;
    right: 40%;
    pointer-events: none;
    border-left: 8px solid #c41c1c;
    border-bottom: 8px solid #c41c1c;
}

#headertab :is(h1, h2, h3, h4, h5, h6) {
    color: inherit;
    margin: 0;
    line-height: 1;
}

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

#tabs {
    font-size: 1rem;
    margin-top: clamp(30px, 6vw, 100px);
    background: linear-gradient(to top, #ececec 50%, rgba(255, 255, 255, 0) 50%);
}

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

#tabs .tab {
    height: 100%;
}

#tabs .tab1 {
    padding: clamp(50px, 8vw, 90px) clamp(15px, 2.5vw, 50px);
    background-color: #e5830b;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#tabs .tab1 :is(h1, h2, h3) {
    text-transform: uppercase;
}

#tabs .tab1 a {
    color: inherit;
    text-decoration: underline;
}

#tabs .tab1 :is(h1, h2, h3, h4, h5, h6) {
    color: inherit;
    font-size: clamp(1.875rem, 3vw, 2.8125rem);
    margin: 8px 0 15px 0;
}

#tabs .tab2 {
    padding: clamp(20px, 4vw, 45px) clamp(15px, 2.5vw, 40px);
    background-color: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

#tabs .tab2 .tabHeadline {
    color: inherit;
    padding-top: clamp(55px, 8vw, 80px);
    margin-bottom: clamp(10px, 2vw, 25px);
    background: url('../img/icon-veranstaltungen.png') top left no-repeat;
}

#tabs .tab2 .tabHeadline2 {
    background-image: url('../img/icon-train.png');
}

/* events */

#events .tab_link a {
    color: inherit;
}

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

#events .tab_link_mehr {
    margin-top: clamp(10px, 3vw, 40px);
    font-size: 0;
}

#events .tab_link_mehr a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #c41c1c;
    display: inline-block;
    padding-right: 30px;
    text-decoration: none;
    background: url('../img/arrow-events.png') center right 15px no-repeat;
    transition: background 200ms linear;
}

#events .tab_link_mehr a:is(:hover, :focus) {
    background-position: center right 0;
}

/* newsletter */

#newsletter {
    display: flex;
    margin-top: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#newsletter_input {
    color: #a35200;
    font-size: 0.9375rem;
    font-style: normal;
    background: transparent;
    padding: 6px 2px;
    border: 0;
    width: 100%;
}

#newsletter_submit {
    min-width: 33px;
    flex-shrink: 0;
    background: url('../img/newsletter-icon.png') center no-repeat;
    padding: 0;
    cursor: pointer;
    border: none;
    font-size: 0;
    transition: transform 100ms linear;
}

#newsletter_submit:is(:hover, :focus) {
    transform: scale(1.1);
}

#newsletter_input::placeholder {
    color: #a35200 !important;
    opacity: 1 !important;
    font-style: normal !important;
}

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

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

#content {
    text-align: left;
    padding-bottom: clamp(40px, 8vw, 90px);
    padding-top: clamp(40px, 8vw, 70px);
    background-color: #ececec;
}

/* #region ------------------------------------- sight ------------------------------------------ */

#sight {
    padding: clamp(30px, 8vw, 65px) 0 clamp(30px, 8vw, 70px) 0;
}

@media (min-width: 1200px) {
    #sight {
        background: url('../img/grafik-zug2.png') top 60px right no-repeat;
    }
}

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

@media (min-width: 992px) {
    .tabSpecial {
        margin-bottom: 20px;
    }
}

.tabSpecial :is(h1, h2, h3, h4, h5, h6) {
    margin: 4px 0 20px 0;
}

#sight .tab {
    padding: 60px 40px 40px 40px;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(255, 194, 41, 1), rgba(223, 159, 0, 1));
}

#sight .tab :is(.row, .row>div) {
    position: static;
}

#sight .tab :is(h1, h2, h3, h4, h5) {
    color: inherit;
    margin: 4px 0;
}

#sight .tab a {
    color: inherit;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
    min-height: 34px;
    background: url('../img/arrow-tab.png') center right 15px no-repeat;
    transition: background 200ms linear;
}

#sight .tab a:is(:hover, :focus) {
    background-position: center right 0;
}

#sight .tab img {
    position: absolute;
    opacity: 0.08;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    max-width: unset;
    display: block;
}

/* #endregion ---------------------------------- sight ------------------------------------------ */

/* #region -------------------------------------- news ------------------------------------------ */

#news {
    padding: clamp(30px, 4vw, 60px) 0 clamp(90px, 10vw, 130px) 0;
    background-color: #e5830b;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#news .tab :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.875rem, 4vw, 2.1875rem);
}

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

#news .tab a {
    font-weight: 400;
    font-size: 0.9375rem;
    position: relative;
    text-decoration: underline;
    padding-right: 20px;
    background: url('../img/arrow.png') right center no-repeat;
}

#news .tab_link {
    margin-top: clamp(30px, 4vw, 50px);
}

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

@media (min-width: 768px) {
    #news .tab_link_entries {
        grid-template-columns: repeat(3, 1fr);
    }
}

#news .tab_link_entry {
    font-size: 1rem;
    width: 100%;
    background: #ffffff;
    padding: clamp(20px, 4vw, 45px) clamp(15px, 2.5vw, 25px);
    border: none !important;
}

#news .tab_link_title a {
    line-height: 1.2;
    font-weight: 600;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 10px;
    color: #222222;
    text-transform: uppercase;
}

#news .tab_date {
    font-size: 1.125rem;
    display: inline-block;
}

.vorschau {
    opacity: 1 !important;
}

#news :is(.tab_preview_picture, .tab_spacer, .tab_link_mehr) {
    display: none;
}

/* #endregion ----------------------------------- news ------------------------------------------ */

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

:is(#headertab, #tabs .tab1, .tabSpecial, #sight .tab) :is(b, strong) {
    font-size: 0.9375rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

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

h1,
.h1,
.legacy_h1,
:is(#headertab, .tabSpecial) :is(h1, h2, h3, h4, h5, h6) {
    font-size: clamp(1.875rem, 4vw, 2.8125rem);
}

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

h3,
.h3,
.legacy_h3,
#tabs .tab2 .tabHeadline,
#sight .tab :is(h1, h2, h3, h4, h5) {
    font-size: clamp(1.625rem, 3vw, 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;
}

/* ----------------------------------------- footerwrapper -------------------------------------- */

.footerBox {
    margin-top: -60px;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    padding: clamp(20px, 3vw, 30px);
}

.footerBox>.row {
    row-gap: 30px;
}

@media (min-width: 768px) {
    .footerBox>.row>div:last-child {
        border-left: 1px solid rgba(0, 0, 0, 0.2);
    }
}

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

footer {
    background: #ececec;
    font-size: 1rem;
}

#besucher {
    display: flex;
    align-content: center;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

#besucher h2 {
    font-size: 1rem;
    margin-bottom: 0;
}

#footer {
    row-gap: 30px;
    padding: clamp(40px, 8vw, 90px) 0;
}

#footer .tabHeadline {
    font-size: 1.25rem;
}

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

.iframetab :is(iframe, .iframe-wrapper-manual-enabling) {
    min-width: 100% !important;
    width: 100% !important;
    display: block;
    max-height: 205px;
}

#innerfooter ul.footer_list {
    padding: 0;
}

#innerfooter ul.footer_list a {
    color: #2b2b2b;
    text-decoration: none;
    display: inline-block;
    padding: 2px 0;
}

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

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

#vernetzt {
    gap: 18px;
    text-align: right;
    font-size: 0.9375rem;
    color: #2b2b2b;
    line-height: 1.3;
    margin: 0 auto;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
}

#vernetzt b {
    color: #222222;
}

#vernetzt span span {
    display: block;
}