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

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

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

a {
    color: #d7785b;
}

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

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

b,
strong {
    font-weight: 00;
}

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

#logo {
    display: inline-block;
}

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

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

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

@media (min-width: 992px) {
    #logo img {
        -webkit-transition: max-width 300ms linear;
        -moz-transition: max-width 300ms linear;
        -ms-transition: max-width 300ms linear;
        -o-transition: max-width 300ms linear;
        transition: max-width 300ms linear;
        padding-top: 15px;
    }
    .is-sticky #logo img {
        max-width: 98px;
        padding: 10px 0;
    }
}

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

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

#topbar {
    padding-top: 25px;
    font-size: 0.875rem;
}

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

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

#topbar :is(b, strong, a) {
    font-size: 1rem;
}

/* contact col */

#phone-tab,
#mail-tab {
    padding-top: 42px;
    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: 0;
        padding-left: 48px;
        background-position: center 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='%23ff9600'/%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='%23ff9600'/%3E%3C/svg%3E");
}

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

/* #region ----------------------------------- language ----------------------------------------- */

#language {
    position: relative;
    font-size: 13px;
    font-family: "Source Serif 4", sans-serif;
    text-align: center;
    display: inline-block;
    margin-left: 10px;
    padding-top: 10px;
    transition: padding-top 300ms linear;
}

.is-sticky #language {
    padding-top: 16px;
}

@media (min-width: 576px) and (max-width: 991px) {
    #language {
        margin-right: 90px;
    }
}

#language>span {
    display: inline-flex;
    place-items: center;
    justify-content: center;
    color: #666666;
    background: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    #language>span {
        display: none;
    }
}

#language:is(:hover, :focus-within)>span,
#chooseLanguage>a:is(:hover, :focus) {
    color: #ffffff;
    background: #2d2d2d;
}

@media (min-width: 992px) {
    #chooseLanguage {
        position: absolute;
        top: 0;
        padding-top: 8px;
        left: 0;
        right: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 300ms linear, top 300ms linear;
    }

    #language:is(:hover, :focus-within) #chooseLanguage {
        top: 100%;
        opacity: 1;
        pointer-events: all;
    }
}

#chooseLanguage>a {
    display: inline-flex;
    place-items: center;
    justify-content: center;
    padding: 8px 4px;
    color: #666666;
    background: #ffffff;
    position: relative;
    text-decoration: none;
}

@media (max-width: 991px) {
    #chooseLanguage>a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
}

@media (min-width: 992px) {
    #chooseLanguage>a {
        display: block;
        transform: rotateY(90deg);
        transition: all 300ms linear;
    }

    #language:is(:hover, :focus-within) #chooseLanguage>a {
        transform: none;
    }

    #language #chooseLanguage>a:nth-child(2) {
        transition-delay: 50ms;
    }

    #language #chooseLanguage>a:nth-child(3) {
        transition-delay: 100ms;
    }

    #language #chooseLanguage>a:nth-child(4) {
        transition-delay: 150ms;
    }
}

/* #endregion -------------------------------- language ----------------------------------------- */

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    .dropdown-toggle-button::before {
        color: #172830;
    }

    nav.horizontally {
        position: static !important;
    }

    #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: #241c1f;
        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: #241c1f;
        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: 8px;
        right: 0;
    }

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

/* menu desktop */

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

    nav.horizontally > .row {
        max-width: 1600px;
        width: 100%;
    }

    .is-sticky nav.horizontally {
        left: auto !important;
        background: #241c1f;
    }

    nav.horizontally .navbar-nav {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        transition: padding-top 300ms linear;
    }

    .is-sticky nav.horizontally .navbar-nav {
        border-top-color: transparent;
        padding-top: 16px;
    }

    nav.horizontally li[class*="toplevel"] {
        flex-grow: 1;
    }

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

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

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

    nav.horizontally .navbar-nav li :is([class*="toplevel"]>ul, [class*="secondlevel"]>ul) {
        display: block !important;
        pointer-events: none;
        opacity: 0;
        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: #ffffff;
    font-weight: 400;
    text-align: left;
    padding: 14px 5px;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
    transition: border 300ms linear;
    border: 1px solid rgba(255, 255, 255, 0);
}

@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: 6px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100%;
    }

    .is-sticky nav.horizontally a[class*="toplevel"] {
        font-size: 21px;
    }
}


/* 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) {
    border: 1px solid rgba(255, 255, 255, 1);
}

/* secondlevel + thirdlevel dropdown-box */

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

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

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

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

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

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

/* secondlevel + thirdlevel */

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

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

/* 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-color: #e7ecfd;
}

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

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

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

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

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

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

#headerpic {
    background: #172830;
    position: relative;
    min-height: 450px;
}

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

/* header text */

#header-text {
    font-weight: 400;
    font-size: clamp(1.875rem, 7vw, 5.625rem);
    padding: clamp(60px, 12vw, 135px) 0 clamp(30px, 20vw, 75px) 0;
    line-height: 1.1;
    position: relative;
}

@media (min-width: 768px) {
    #header-text article {
        position: relative;
    }
    #header-text article::before {
        content: '';
        display: block;
        position: absolute;
        top: 50px;
        left: -360px;
        width: 360px;
        height: 1px;
        background: #fff;
    }
}

.theme-default .nivo-controlNav a,
#header-text,
#header-text :is(h1, h2, h3, h4, h5, h6) {
    color: #ffffff;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

#header-text a,
#contact a:not([href^="mailto:"]) {
    text-decoration: none;
    display: inline-block;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    padding: 6px 20px;
    border: 1px solid #fff;
    border-radius: 30px;
}

#header-text a:hover,
#header-text a:focus,
#contact a:not([href^="mailto:"]):hover,
#contact a:not([href^="mailto:"]):focus {
    background: #6f2914;
    color: #fff;
    border: 2px solid #6f2914;
}

/* banner */

#slider {
    position: relative;
    height: 100%;
}

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

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

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

.slider-wrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.slider-mask {
    display: block;
    background: linear-gradient(to bottom, rgba(36, 28, 31, 0.7) 220px, rgba(36, 28, 31, 0.7));
}

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

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

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

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

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


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

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

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

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

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

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

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

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


/* ----------------------------------------------- Contact -------------------------------------------- */

#contact {
    padding: clamp(2.5rem, 12vw, 10rem) 0 clamp(2.5rem, 13vw, 12.5rem) 0;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
}

#contact a {
    color: #fff;
    text-decoration: underline;
}

@media (min-width: 992px) {
    #contact::before {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 140px;
        background: #fff;
    }
}

#contact :is(h1, h2, h3, h4, h5, h6) {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

#contact > .row > div > article+article {
    margin-top: 50px;
}

#newsletter label {
    font-size: 0.875rem;
    margin-bottom: 24px;
    display: block;
}
#newsletterInputs {
    height: 48px;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid #fff;
    display: inline-block;
    position: relative;
    margin-top: 20px;
    border-radius: 30px;
}
#newsletter_input {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 48px;
    padding-left: 10px;
    padding-right: 370px;
    height: 48px;
    width: 100%;
}
#newsletter_submit {
    width: 300px;
    background: rgba(0, 0, 0, 0);
    padding: 0;
    cursor: pointer;
    line-height: 48px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    -webkit-transition: background-color 300ms linear;
    -moz-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    -o-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
    border-radius: 30px;
    border: 1px solid #fff;
}

#newsletter_input::-ms-input-placeholder {
    color: #fff !important;
}
#newsletter_input::-webkit-input-placeholder {
    color: #fff !important;
}
#newsletter_input::-moz-placeholder {
    opacity: 1;
}
#newsletter_input:-moz-placeholder {
    opacity: 1;
}

/* #region ------------------------------------ tabs1 ------------------------------------------- */
.noPadding {
    padding-left: 0;
    padding-right: 0;
}

#tabs1 {
    max-width: 100%;
    width: 100%;
}

#tabs1 .tab-1 {
    padding: 20px;
    position: relative;
    color: #ffffff;
    background: linear-gradient(to bottom, #6f2914, #6f2914) center bottom / auto 600%;
    height: clamp(120px, 25vw, 380px);
    transition: background 300ms linear;
    overflow: hidden;
}

#tabs1 .tab-1:is(:hover, :focus-within) {
    background-size: auto 100%;
}

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

#tabs1 .tabHeadline {
    padding: 0 20px;
    margin: 0;
    text-transform: uppercase;
    font-size: 1.5625rem;
    font-weight: 700;
    font-family: inherit;
    position: absolute;
    z-index: 2;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.7);
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

#tabs1 .tab-1 img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.25;
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms linear;
}

#tabs1 .tab-1:is(:hover, :focus-within) img {
    transform: scale(1.1);
}

#tabs1 .tab :is(.row, .row>div) {
    margin: 0;
    padding: 0;
    position: static;
}



/* #endregion --------------------------------- tabs1 ------------------------------------------- */


/* ----------------------------------------------- @11ev events -------------------------------------------- */

#ev11 {
    padding-top: clamp(35px, 4vw, 60px);
    padding-bottom: 35px;
    background-color: #fff;
    position: relative;
    color: #241c1f;
}

#ev11>.row {
    row-gap: clamp(30px, 4vw, 50px);
}

#ev11 .tabHeadline {
    text-transform: uppercase;
    color: #241c1f;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0;
}

#ev11 .tab a {
    color: #6f2914;
    text-decoration: underline;
}

#ev11 .tab :is(b, strong) {
    color: #241c1f;
    font-weight: 700;
    font-size: 1.125rem;
}

#ev11 .tab_link {
    display: grid;
    gap: 35px;
}

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

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

#ev11 .tab_link_entry {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    hyphens: auto;
    color: #241c1f;
    font-size: 1rem;
    padding: 40px 5px 45px 5px;
    text-align: center;
}
@media (min-width: 768px) {
    #ev11 .tab_link_entry+.tab_link_entry::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    width: 1px;
    height: 100%;
    background: #241c1f;
}
}

#ev11 .tab_link_date {
    order: 1;
    color: #6f2914;
    font-weight: 700;
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 10px;
}

#ev11 .tab_link_title {
    order: 2;
}

#ev11 .tab_link_title a {
    font-weight: 700;
    font-size: 1.375rem;
    color: #c1512f;
}

#ev11 .tab_link_mandat {
    order: 3;
}

#ev11 .tab_link_mandat a {
    color: #241c1f;
}

#ev11 .tab_link_mehr {
    text-align: center;
    display: block;
    font-size: 0;
}

#ev11 .tab_link_mehr a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 700;
    color: #322b2e;
    padding: 6px 20px;
    border: 2px solid #322b2e;
    margin-top: 15px;
    border-radius: 30px;
}

#ev11 .tab_link_mehr a:hover,
#ev11 .tab_link_mehr a:focus {
    background: #6f2914;
    color: #fff;
    border: 2px solid #6f2914;
}


#ev11 .banner img {
    border-radius: 50%;
}
/* ----------------------------------------------- @5f footer ----------------------------------------------- */

#f5 {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #6f2914;
}

.social {
    color: #fff;
    padding: 10px 0 30px 0;
    transition: padding 300ms linear;
}

.is-sticky .social {
    padding: 10px 0 10px 0;
}

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

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

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

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

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

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

@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: 12px;
    text-align: right;
    font-size: 0.9375rem;
    color: #ffffff;
    line-height: 1.3;
    text-decoration: none;
}

#vernetzt span span {
    display: block;
}