/* ======================================================
   GRUNDEINSTELLUNGEN
====================================================== */

:root {
    --page-spacing: 30px;
    --dot-size: 10px;
    --fade-duration: 500ms;
}


/* ======================================================
   RESET
====================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;

    /*
     * Scrollbalken dauerhaft reservieren.
     * Dadurch springt die Seite beim Öffnen
     * des Menüs nicht seitlich.
     */
    overflow-y: scroll;
    scrollbar-gutter: stable;
}


body {
    margin: 0;

    min-width: 320px;

    overflow-x: hidden;
    overflow-y: auto;

    color: #111111;
    background: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
}


/*
 * Scrollbalken bleibt auch bei geöffnetem Menü erhalten.
 */
body.menu-open {
    overflow-x: hidden;
    overflow-y: auto;
}


img {
    max-width: 100%;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* ======================================================
   HEADER
====================================================== */

.site-header {
    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    /*
     * Über Offcanvas-Menü und Backdrop.
     * Dadurch bleiben Logo und Burger/X sichtbar.
     */
    z-index: 10000;

    pointer-events: none;
}


/* ======================================================
   LOGO
====================================================== */

.site-logo {
    position: absolute;

    top: calc(var(--page-spacing) + env(safe-area-inset-top));
    left: calc(var(--page-spacing) + env(safe-area-inset-left));

    z-index: 10001;

    display: block;

    width: 250px;
    max-width: calc(100vw - 140px);

    pointer-events: auto;
}


.site-logo img {
    display: block;

    width: 100%;
    height: auto;
}


/* ======================================================
   BURGER-BUTTON
====================================================== */

.menu-toggle {
    position: fixed !important;

    top: calc(30px + env(safe-area-inset-top)) !important;
    right: calc(30px + env(safe-area-inset-right)) !important;

    bottom: auto !important;
    left: auto !important;

    z-index: 10002;

    width: 42px;
    height: 32px;

    margin: 0;
    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
    pointer-events: auto;

    appearance: none;
    -webkit-appearance: none;
}


.menu-toggle span {
    position: absolute;

    left: 0;

    display: block;

    width: 42px;
    height: 3px;

    border-radius: 2px;

    background: #ffffff;

    transform-origin: center;

    transition:
        top 300ms ease,
        transform 300ms ease,
        opacity 200ms ease,
        background-color 250ms ease;
}


.menu-toggle span:nth-child(1) {
    top: 3px;
}


.menu-toggle span:nth-child(2) {
    top: 14px;
}


.menu-toggle span:nth-child(3) {
    top: 25px;
}


/* ======================================================
   BURGER AUF HELLEM HINTERGRUND
====================================================== */

.header-light .menu-toggle span {
    background: #000000;
}


/* ======================================================
   BURGER WIRD ZUM X
====================================================== */

body.menu-open .menu-toggle span:nth-child(1),
.menu-toggle.is-open span:nth-child(1) {
    top: 14px;

    transform: rotate(45deg);
}


body.menu-open .menu-toggle span:nth-child(2),
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;

    transform: scaleX(0);
}


body.menu-open .menu-toggle span:nth-child(3),
.menu-toggle.is-open span:nth-child(3) {
    top: 14px;

    transform: rotate(-45deg);
}


/*
 * X immer weiß.
 */
body.menu-open .menu-toggle span,
.menu-toggle.is-open span {
    background: #ffffff !important;
}


/* ======================================================
   MENÜ-BACKDROP
====================================================== */

.menu-backdrop {
    position: fixed;

    inset: 0;

    z-index: 998;

    background: rgba(0, 0, 0, 0.25);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 450ms ease,
        visibility 0s linear 450ms;
}


body.menu-open .menu-backdrop,
.menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transition:
        opacity 450ms ease,
        visibility 0s;
}


/* ======================================================
   OFFCANVAS-MENÜ
====================================================== */

.offcanvas-menu {
    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;
    left: auto;

    z-index: 999;

    /*
     * Breite automatisch nach Inhalt.
     * 50px links + 50px rechts =
     * etwa 100px breiter als der längste Menüpunkt.
     */
    width: fit-content;

    min-width: 0;
    max-width: calc(100vw - 40px);

    height: 100vh;
    height: 100dvh;

    padding:
        clamp(78px, 11vh, 110px)
        50px
        clamp(18px, 3vh, 36px)
        50px;

    overflow: hidden;

    color: #ffffff;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transform: translate3d(100%, 0, 0);

    visibility: hidden;
    pointer-events: none;

    transition:
        transform 450ms cubic-bezier(0.22, 0.61, 0.36, 1),
        visibility 0s linear 450ms;

    will-change: transform;
}


/* ======================================================
   MENÜ GEÖFFNET
====================================================== */

body.menu-open .offcanvas-menu,
.offcanvas-menu.is-open {
    transform: translate3d(0, 0, 0);

    visibility: visible;
    pointer-events: auto;

    transition:
        transform 450ms cubic-bezier(0.22, 0.61, 0.36, 1),
        visibility 0s;
}


/* ======================================================
   MENÜ-INHALT
====================================================== */

.offcanvas-inner {
    display: flex;

    width: auto;
    height: 100%;

    min-height: 0;

    align-items: center;
    justify-content: flex-end;

    overflow: hidden;

    text-align: right;
}


.offcanvas-menu nav {
    display: flex;
    flex-direction: column;

    width: auto;

    max-height: 100%;

    align-items: flex-end;
    justify-content: center;

    gap: clamp(14px, 2.5vh, 30px);
}


/* ======================================================
   HAUPTMENÜ
====================================================== */

.menu-main,
.menu-legal {
    width: auto;

    margin: 0;
    padding: 0;

    list-style: none;
}


.menu-main {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: clamp(4px, 1vh, 14px);
}


.menu-main li,
.menu-legal li {
    margin: 0;
    padding: 0;
}


.menu-main a {
    display: inline-block;

    color: #ffffff;

    font-size: clamp(1rem, 3.6vh, 2.6rem);

    font-weight: 600;

    line-height: 1.05;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color 200ms ease,
        opacity 200ms ease,
        transform 200ms ease;
}


.menu-main a:hover,
.menu-main a:focus-visible {
    color: #ff0000;

    transform: translateX(-4px);
}


/* ======================================================
   SOCIAL-ICONS
====================================================== */

.menu-socials {
    display: flex;

    width: auto;

    align-items: center;
    justify-content: flex-end;

    gap: clamp(10px, 1.2vh, 16px);

    margin: clamp(12px, 3vh, 38px) 0;
}


.menu-socials a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: clamp(30px, 4vh, 50px);

    line-height: 1;

    text-decoration: none;

    transition:
        color 200ms ease,
        opacity 200ms ease,
        transform 200ms ease;
}


.menu-socials a:hover,
.menu-socials a:focus-visible {
    color: #ff0000;

    transform: translateY(-3px);
}


/* ======================================================
   RECHTLICHES MENÜ
====================================================== */

.menu-legal {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: clamp(2px, 0.7vh, 8px);
}


.menu-legal a {
    display: inline-block;

    color: #ffffff;

    font-size: clamp(0.72rem, 1.7vh, 0.95rem);

    font-weight: normal;

    line-height: 1.2;

    letter-spacing: 0.04em;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color 200ms ease,
        opacity 200ms ease;
}


.menu-legal a:hover,
.menu-legal a:focus-visible {
    color: #ff0000;
}


/* ======================================================
   SLIDER – ALLGEMEINE GRUNDSTRUKTUR
====================================================== */

.hero-slider {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #000000;
}


/* ======================================================
   STARTSEITE
   volle Bildschirmhöhe
====================================================== */

body.home .hero-slider {
    height: 100vh;
    height: 100svh;
}


body.home .hero-slider .slides {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}


body.home .hero-slider .slide {
    position: absolute;

    inset: 0;

    z-index: 1;

    width: 100%;
    height: 100%;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity var(--fade-duration) ease-in-out;

    will-change: opacity;
}


body.home .hero-slider .slide.is-active {
    z-index: 2;

    opacity: 1;

    pointer-events: auto;
}


body.home .hero-slider .slide-image {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    /*
     * Startseite soll immer vollflächig wirken.
     */
    object-fit: cover;
    object-position: center center;

    background: #000000;

    user-select: none;
    -webkit-user-drag: none;
}


@media screen and (max-width: 767px) {

    /* ==================================================
       STARTSEITE MOBILE
       Sliderhöhe = tatsächliche Bildhöhe
    ================================================== */

    body.home .hero-slider {
        position: relative;

        width: 100%;
        height: auto !important;
        min-height: 0 !important;

        overflow: hidden;

        background: #000000;
    }


    body.home .hero-slider .slides {
        position: relative !important;

        inset: auto !important;

        width: 100%;
        height: auto !important;
        min-height: 0 !important;
    }


    /* Inaktive Slides liegen über der aktiven Slide */
    body.home .hero-slider .slide {
        position: absolute;

        top: 0;
        right: 0;
        bottom: auto;
        left: 0;

        width: 100%;
        height: auto !important;
        min-height: 0 !important;

        opacity: 0;

        pointer-events: none;
    }


    /* Nur die aktive Slide bestimmt die Höhe */
    body.home .hero-slider .slide.is-active {
        position: relative !important;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
        height: auto !important;

        opacity: 1;

        pointer-events: auto;
    }


    /* Bild komplett sichtbar und proportional skaliert */
    body.home .hero-slider .slide-image {
        position: static !important;

        display: block;

        width: 100%;
        height: auto !important;

        max-width: 100%;

        object-fit: contain;
        object-position: center top;

        transform: none;
    }


    /* Dots innerhalb des tatsächlichen Bildbereichs */
    body.home .slider-dots {
        position: absolute;

        left: 50%;
        bottom: 20px;

        z-index: 20;

        transform: translateX(-50%);
    }

}




/* ======================================================
   UNTERSEITEN
   Höhe automatisch nach Bildformat
====================================================== */

body.subpage .hero-slider {
    height: auto;
}


body.subpage .hero-slider .slides {
    position: relative;

    inset: auto;

    width: 100%;
    height: auto;
}


/*
 * Inaktive Slides liegen absolut über der aktiven Slide.
 */
body.subpage .hero-slider .slide {
    position: absolute;

    top: 0;
    right: 0;
    bottom: auto;
    left: 0;

    z-index: 1;

    width: 100%;
    height: auto;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity var(--fade-duration) ease-in-out;

    will-change: opacity;
}


/*
 * Nur die aktive Slide liegt im normalen Dokumentfluss.
 * Dadurch bestimmt ihr Bild automatisch die Sliderhöhe.
 */
body.subpage .hero-slider .slide.is-active {
    position: relative;

    top: auto;
    right: auto;
    bottom: auto;
    left: auto;

    z-index: 2;

    width: 100%;
    height: auto;

    opacity: 1;

    pointer-events: auto;
}


body.subpage .hero-slider .slide-image {
    position: static;

    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;

    /*
     * Keine feste Höhe.
     * Keine Beschneidung.
     */
    object-fit: unset;
    object-position: unset;

    transform: none;

    background: transparent;

    user-select: none;
    -webkit-user-drag: none;
}


/* ======================================================
   SLIDER-DOTS
====================================================== */

.slider-dots {
    position: absolute;

    bottom: calc(28px + env(safe-area-inset-bottom));
    left: 50%;

    z-index: 20;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    transform: translateX(-50%);
}


.slider-dot {
    display: block;

    flex: 0 0 var(--dot-size);

    width: var(--dot-size);
    min-width: var(--dot-size);
    max-width: var(--dot-size);

    height: var(--dot-size);
    min-height: var(--dot-size);
    max-height: var(--dot-size);

    margin: 0;
    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.35);

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition:
        background-color 200ms ease;
}


.slider-dot.is-active {
    background: #ffffff;
}


/* ======================================================
   CONTENTBEREICH
====================================================== */

.content-section {
    position: relative;

    z-index: 2;

    min-height: 50vh;

    padding: 80px 30px;

    background: #ffffff;
}


.content-inner {
    width: min(1100px, 100%);

    margin: 0 auto;
}


.content-inner h1 {
    margin-top: 0;
    margin-bottom: 20px;

    font-size: clamp(2rem, 4vw, 4rem);
}


.content-inner p {
    max-width: 700px;

    margin: 0;

    font-size: 1.1rem;

    line-height: 1.7;
}


/* ======================================================
   MAIN CONTENT
====================================================== */

.wrapper-main {
    max-width: 100%;

    margin: 0;

    background-color: #ffffff;
}


.container-main {
    max-width: 1200px;

    margin: auto;

    padding: 60px 0;

    color: #000000;

    font-size: 18px;

    font-weight: normal;

    line-height: 32px;

    text-align: left;
}


.container-main h1 {
    margin-top: 0;
    margin-bottom: 30px;

    font-size: clamp(2rem, 4vw, 4rem);
}


.container-main h2 {
    margin-top: 0;
    margin-bottom: 60px;

    font-size: clamp(1.5rem, 3vw, 2.5rem);

    line-height: 3rem;
}


.container-main a {
    display: inline-block;
    color: #ff0000;
    line-height: 1.05;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color 200ms ease,
        opacity 200ms ease,
        transform 200ms ease;
}


.container-main a:hover,
.container-main a:focus-visible {
    color: #000000;
}




/* ======================================================
   CONTENT – MITTLERE DISPLAYBREITEN
====================================================== */

@media screen and (max-width: 1280px) {

    .container-main {
        padding: 30px 20px;
    }


    .container-main h1 {
        margin-bottom: 20px;
    }
	
	.container-main h2 {
    margin-bottom: 30px;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 2rem;
}
}


@media screen and (max-width: 767px) {

    .container-main h1 {
        margin-bottom: 20px;
    }
	
	.container-main h2 {
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 2rem;
}
}


/* ======================================================
   ACCORDION
====================================================== */

.accordion {
    width: 100%;

    margin: 0;

    padding: 20px 0;

    border: none;

    outline: none;

    color: #000000;

    background-color: #ffffff;

    font-size: 28px;

    font-weight: bold;

    line-height: 34px;

    text-align: left;

    cursor: pointer;
}


.accordion:hover {
    color: #000000;
}


.accordion::after {
    content: "+";

    float: right;

    margin-left: 5px;

    color: #000000;

    font-size: 20px;
}


.accordion.active::after,
.active::after {
    content: "−";
}


.active,
.accordion:hover {
    background-color: #ffffff;
}


.panel {
    max-height: 0;

    padding: 0;

    overflow: hidden;

    background-color: #ffffff;

    border-bottom: 1px solid #cccccc;

    transition:
        max-height 0.2s ease-out;
}


/* ======================================================
   MOBILE
====================================================== */

@media screen and (max-width: 767px) {

    :root {
        --page-spacing: 18px;
    }


    /* ==================================================
       MOBILE LOGO
    ================================================== */

    .site-logo {
        top: calc(18px + env(safe-area-inset-top));
        left: calc(18px + env(safe-area-inset-left));

        z-index: 10001;

        width: clamp(130px, 42vw, 190px);

        max-width: calc(100vw - 100px);
    }


    /* ==================================================
       MOBILE BURGER
    ================================================== */

    .menu-toggle {
        position: fixed !important;

        top: calc(18px + env(safe-area-inset-top)) !important;
        right: calc(18px + env(safe-area-inset-right)) !important;

        bottom: auto !important;
        left: auto !important;

        z-index: 10002;

        width: 34px;
        height: 28px;
    }


    .menu-toggle span {
        width: 34px;
        height: 3px;
    }


    .menu-toggle span:nth-child(1) {
        top: 3px;
    }


    .menu-toggle span:nth-child(2) {
        top: 12px;
    }


    .menu-toggle span:nth-child(3) {
        top: 21px;
    }


    body.menu-open .menu-toggle span:nth-child(1),
    .menu-toggle.is-open span:nth-child(1) {
        top: 12px;

        transform: rotate(45deg);
    }


    body.menu-open .menu-toggle span:nth-child(2),
    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;

        transform: scaleX(0);
    }


    body.menu-open .menu-toggle span:nth-child(3),
    .menu-toggle.is-open span:nth-child(3) {
        top: 12px;

        transform: rotate(-45deg);
    }


    body.menu-open .menu-toggle span,
    .menu-toggle.is-open span {
        background: #ffffff !important;
    }


    /* ==================================================
       STARTSEITE MOBILE
       weiterhin volle Bildschirmhöhe
    ================================================== */

    body.home .hero-slider {
        height: 100vh;
        height: 100svh;
    }


    body.home .hero-slider .slides {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;
    }


    body.home .hero-slider .slide {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;
    }


    body.home .hero-slider .slide-image {
        width: 100%;
        height: 100%;

        max-width: none;

        object-fit: cover;
        object-position: center center;
    }


    /* ==================================================
       UNTERSEITEN MOBILE
       Höhe weiterhin automatisch nach Bildformat
    ================================================== */

    body.subpage .hero-slider {
        height: auto;
    }


    body.subpage .hero-slider .slides {
        position: relative;

        inset: auto;

        width: 100%;
        height: auto;
    }


    body.subpage .hero-slider .slide {
        position: absolute;

        top: 0;
        right: 0;
        bottom: auto;
        left: 0;

        width: 100%;
        height: auto;
    }


    body.subpage .hero-slider .slide.is-active {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
        height: auto;
    }


    body.subpage .hero-slider .slide-image {
        position: static;

        display: block;

        width: 100%;
        height: auto;

        max-width: 100%;

        object-fit: unset;
        object-position: unset;

        transform: none;
    }


    /* ==================================================
       MOBILE SLIDER-DOTS
    ================================================== */

    .slider-dots {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }


    /* ==================================================
       MOBILE OFFCANVAS-MENÜ
    ================================================== */

    .offcanvas-menu {
        position: fixed;

        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        z-index: 999;

        width: 100%;

        max-width: 100%;
        min-width: 0;

        height: 100vh;
        height: 100dvh;

        padding:
            max(76px, calc(68px + env(safe-area-inset-top)))
            max(20px, calc(20px + env(safe-area-inset-right)))
            max(18px, calc(18px + env(safe-area-inset-bottom)))
            max(20px, calc(20px + env(safe-area-inset-left)));

        overflow: hidden;

        transform: translate3d(100%, 0, 0);
    }


    body.menu-open .offcanvas-menu,
    .offcanvas-menu.is-open {
        transform: translate3d(0, 0, 0);
    }


    .offcanvas-inner {
        width: 100%;
        height: 100%;

        min-height: 0;

        padding: 0;

        align-items: center;
        justify-content: flex-end;

        overflow: hidden;
    }


    .offcanvas-menu nav {
        width: 100%;

        height: auto;

        max-height: 100%;

        align-items: flex-end;
        justify-content: center;

        gap: clamp(12px, 2.5vh, 24px);
    }


    /* ==================================================
       MOBILE HAUPTMENÜ
    ================================================== */

    .menu-main {
        width: 100%;

        align-items: flex-end;

        gap: clamp(5px, 1.2vh, 12px);
    }


    .menu-main a {
        font-size: clamp(
            1.2rem,
            min(7vw, 4.2vh),
            2.3rem
        );

        line-height: 1.05;
    }


    /* ==================================================
       MOBILE SOCIALS
    ================================================== */

    .menu-socials {
        margin: clamp(10px, 2.5vh, 26px) 0;

        gap: clamp(10px, 3vw, 16px);
    }


    .menu-socials a {
        font-size: clamp(
            24px,
            min(7vw, 4vh),
            32px
        );
    }


    /* ==================================================
       MOBILE RECHTLICHES
    ================================================== */

    .menu-legal {
        gap: clamp(3px, 0.8vh, 7px);
    }


    .menu-legal a {
        font-size: clamp(
            0.72rem,
            min(3.2vw, 1.8vh),
            0.9rem
        );
    }


    /* ==================================================
       MOBILE CONTENT
    ================================================== */

    .content-section {
        padding: 55px 20px;
    }


    .accordion {
        width: 100%;

        margin: 0;

        padding: 14px 0;

        border: none;

        outline: none;

        font-size: 22px;

        line-height: 26px;

        text-align: left;

        cursor: pointer;
    }
}


/* ======================================================
   SEHR KLEINE DISPLAYBREITEN
====================================================== */

@media screen and (max-width: 380px) {

    .site-logo {
        width: 125px;
    }


    .menu-main a {
        font-size: clamp(
            1.05rem,
            3.8vh,
            1.7rem
        );
    }
}


/* ======================================================
   NIEDRIGE DISPLAYHÖHEN
====================================================== */

@media screen and (max-height: 850px) {

    .offcanvas-menu {
        padding-top:
            max(
                72px,
                calc(64px + env(safe-area-inset-top))
            );
    }


    .offcanvas-menu nav {
        gap: clamp(9px, 2vh, 18px);
    }


    .menu-main {
        gap: clamp(4px, 0.8vh, 9px);
    }


    .menu-main a {
        font-size: clamp(
            0.95rem,
            3.2vh,
            2rem
        );
    }


    .menu-socials {
        margin: clamp(8px, 2vh, 18px) 0;
    }


    .menu-socials a {
        font-size: clamp(
            24px,
            3.5vh,
            38px
        );
    }


    .menu-legal a {
        font-size: clamp(
            0.7rem,
            1.4vh,
            0.82rem
        );
    }
}


/* ======================================================
   SEHR NIEDRIGE DISPLAYHÖHEN
====================================================== */

@media screen and (max-height: 700px) {

    .offcanvas-menu {
        padding-top:
            max(
                62px,
                calc(56px + env(safe-area-inset-top))
            );

        padding-bottom:
            max(
                10px,
                env(safe-area-inset-bottom)
            );
    }


    .offcanvas-menu nav {
        gap: 8px;
    }


    .menu-main {
        gap: 4px;
    }


    .menu-main a {
        font-size: clamp(
            0.9rem,
            2.8vh,
            1.7rem
        );

        line-height: 1.05;
    }


    .menu-socials {
        margin: 8px 0;

        gap: 8px;
    }


    .menu-socials a {
        font-size: clamp(
            20px,
            3.8vh,
            30px
        );
    }


    .menu-legal {
        gap: 2px;
    }


    .menu-legal a {
        font-size: clamp(
            0.66rem,
            1.6vh,
            0.76rem
        );
    }
}


/* ======================================================
   EXTREM NIEDRIGE DISPLAYHÖHEN
====================================================== */

@media screen and (max-height: 560px) {

    .offcanvas-menu {
        padding-top:
            max(
                54px,
                calc(50px + env(safe-area-inset-top))
            );

        padding-bottom: 8px;
    }


    .offcanvas-menu nav {
        gap: 6px;
    }


    .menu-main {
        gap: 2px;
    }


    .menu-main a {
        font-size: clamp(
            0.82rem,
            3vh,
            1.35rem
        );

        line-height: 1;
    }


    .menu-socials {
        margin: 6px 0;

        gap: 7px;
    }


    .menu-socials a {
        font-size: clamp(
            18px,
            3.5vh,
            25px
        );
    }


    .menu-legal {
        gap: 1px;
    }


    .menu-legal a {
        font-size: clamp(
            0.62rem,
            1.7vh,
            0.72rem
        );
    }
}


/* ======================================================
   REDUZIERTE BEWEGUNG
====================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    .offcanvas-menu,
    .menu-backdrop,
    .menu-toggle span,
    .slide {
        transition-duration: 0.01ms;
    }
}

















/*	FOOTER BEREICH */

.footer {

	width: 100%;
	margin-top: 0px;
	padding-bottom: 40px;
	padding-top: 60px;
	background: linear-gradient(to right, #222222, #000000) repeat scroll 0 0 rgba(0, 0, 0, 0);
}

.footer-content {

	max-width: 1200px;
	margin: auto;
}


.footer-content-part {

	padding-top: 0px;
	padding: 10px 0px 10px 0px;
	margin: auto;
	text-align: left;
	float: left;
	letter-spacing: 0px;
	color: #ffffff;
	font-size: 16px;
	line-height: 26px;
}

.footer-content-part h4 {

	text-align: left;
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	color: #ffffff;
	margin: 0 0 19px 0;
}

.footer-content-part a {

	font-size: 16px;
	line-height: 22px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: none;
}

.footer-content-part a:active{

	font-size: 16px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: none;
}

.footer-content-part a:visited{

	font-size: 16px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: none;
}

.footer-content-part a:hover{

	font-size: 16px;
	color: #ff0000;
	font-weight: normal;
	text-decoration: none;
}



.footer-content-logo {

	max-width: 200px;
	padding: 0;
}

@media (max-width: 1200px) {
.footer-content-logo {

		max-width: 190px;
		padding: 0 0 0 0px;
}


.footer-content-part {

	padding: 0px 20px 20px 20px;
	text-align: left;
	margin-top: 20px;
	font-size: 13px;
	line-height: 21px;
}

.footer-content-part a {

	font-size: 13px;
	line-height: 21px;
}

.footer-content-part a:active{

	font-size: 13px;
}

.footer-content-part a:visited{

	font-size: 13px;
}

.footer-content-part a:hover{

	font-size: 13px;
}
}

@media (max-width: 767px) {

.footer-content-part {

	padding: 0px 20px 20px 20px;
	text-align: center;
	margin-top: 20px;
	font-size: 16px;
	line-height: 22px;
}

.footer-content-part h4 {

	text-align: center;
	font-size: 22px;
	line-height: 22px;
	margin: 0 0 22px 0;
}

.footer-content-part a {

	font-size: 18px;
	line-height: 24px;

}

.footer-content-part a:active{

	font-size: 18px;
	line-height: 24px;

}

.footer-content-part a:visited{

	font-size: 18px;
	line-height: 24px;

}

.footer-content-part a:hover{

	font-size: 18px;
	line-height: 24px;

}

.footer-content-logo {

	max-width: 240px;
	margin: auto;
	padding: 0 0 0 0;
}
}


ul {

	margin: 0;
	padding: 0;
}


.footer-content-menu {

	padding: 10px 20px 10px 0px;
	margin: auto;
	text-align: left;
	float: left;
	letter-spacing: 0px;
	font-size: 14px;
	line-height: 22px;
}

.footer-content-menu h4 {

	text-align: left;
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	color: #ffffff;
	margin: 0 0 19px 0;
}

.footer-content-menu li {

	list-style-type: none;
	text-align: left;
	font-size: 15px;
	line-height: 22px;
	font-weight: bold;
	color: #ffffff;
	padding: 10px 0 12px 0px;
	border-bottom: 1px solid #333333;
	text-decoration: none;
}

.footer-content-menu li a {

	font-size: 15px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: none;
}

.footer-content-menu li a:active{

	font-size: 15px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: none;
}

.footer-content-menu li a:visited{

	font-size: 15px;
	font-weight: normal;
	color: #ffffff;
	text-decoration: none;
}

.footer-content-menu li a:hover{

	font-size: 15px;
	color:#ff0000;
	font-weight: normal;
	text-decoration: none;
}

@media (max-width: 767px) {
.footer-content-menu {

	padding: 10px 20px 10px 20px;
	margin: auto;
	text-align: center;
	float: left;
	letter-spacing: 0px;
}

.footer-content-menu h4 {

	text-align: center;
	font-size: 22px;
	line-height: 22px;
	margin: 10px 0 10px 0;
	text-transform: normal;
}
.footer-content-menu li {

	font-size: 18px;
	line-height: 26px;
	font-weight: normal;
	text-align: center;
	padding: 12px 0 12px 0px;
	text-decoration: none;
}

.footer-content-menu li a, a:active, a:visited{

	font-size: 18px;
	line-height: 26px;
	font-weight: normal;
	text-decoration: none;
}

.footer-content-menu li a:hover{

	font-size: 18px;
	line-height: 26px;
	font-weight: normal;
	text-decoration: none;
}
}


.container-main li {

	list-style-type: none;
	list-style-position: outside;
	margin: 0 0 0 20px;
	padding: 0;
}

.container-main li:before {
    content: "\e081";
    font-family: 'Glyphicons Halflings';
    font-size: 15px;
    float: left;
    margin-top: 0px;
    margin-left: -24px;
    color: #000000;
}