        @font-face {
            font-family: "Montserrat";
            src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
            font-weight: 100 900;
            font-style: normal;
            font-display: swap;
        }

        .montserrat {
            font-family: "Montserrat", sans-serif;
            font-weight: 400;
        }

        :root {

            --bs-link-color: #085500;
            --bs-link-hover-color: #333;

            --primary-color: #085500;
            --primary-color-dark: #333;
            --primary-color-hover: #333;
            --secondary-color: #085500;

            --section-background-color: #fff;
            
            --white-color: #fff;
            --white-background-color: #fff;
            --dark-color: #333;
            --black-color: #000;
            --dark-color_trans: rgba(0, 0, 0, 0.85);
            --dark-background-color: #000;
            --gray-color: #37383a;
            --orange-color: #fd7100;
            --orange-color-rgb: rgba(253,113,0, 0.6);
            
            

            --accent-color: #085500;
            --accent-color-rgb: rgba(8,85,0, 1);
            --accent-color-hover: rgb(9, 58, 3);
            --accent-color-transparent: rgba(8,85,0, 0.8);
            --accent-secondary-color: rgb(255, 255, 255);
            --accent-secondary-color-light: rgba(255, 255, 255, 0.9);

            --section-bg-color: rgb(241, 241, 241);
        
            --bg-color-nav: rgba(255, 255, 255, 1);

            --accent-bg-color-section: rgb(18, 126, 6);
            --nav-h: 80px;
            --nav-h-mobile: 50px;;
        }

        html {
            scroll-padding-top: var(--nav-h);
        }

        #Content,
        section[id] {
            scroll-margin-top: var(--nav-h);
        }

        @media (max-width: 991.98px) {
            html {
                scroll-padding-top: var(--nav-h-mobile);
            }

            #Content,
            section[id] {
                scroll-margin-top: var(--nav-h-mobile);
            }
        }
        
        body {
            /*scroll-behavior: smooth;*/
            background-color: var(--white-background-color) !important;
            color: var(--gray-color) !important;
            font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
            font-weight: 400;
            font-optical-sizing: auto;
            hyphens: auto;
        }

        img {
            width: 100%;
        }

        a {
            color: var(--bs-link-color);
            text-decoration: underline;
        }
        a:hover {
            color: var(--bs-link-hover-color);
            text-decoration: none;
        }
        a:not([href]):not([class]),
        a:not([href]):not([class]):hover {
            color:inherit;
            text-decoration: none;
        }


        /*  ScrollSpy section Abstand */
        section[id] { 
            scroll-margin-top: var(--nav-h);
        }

        /*
        @media (max-width: 1024px) {
            section[id] { 
                scroll-margin-top: var(--nav-h);
            }
        }*/

        /* Optional: ScrollSpy + kleine Reserve */
        /*@media (max-width: 991.98px) {
            :root { --nav-h: 64px; }
        }*/

        .color-accent {
            color: var(--accent-color);
        }

        .color-orange {
            color: var(--orange-color);
        }

        .cta-ci {
            background-color: var(--accent-color);
            color: var(--white-color);
            font-size: 1.6rem;
        }

        @media (max-width: 690px) {
            .cta-ci {
                border-top: 4px solid var(--white-color);
                background-color: var(--accent-color);
                color: var(--white-color);
                font-size: 1rem;
                font-weight: 700;
            }
        }

        .bg-accent {
            background-color: var(--accent-color) !important;
            color: var(--white-color) !important;
        }

        .bg-accent a {
            color: var(--white-color) !important;
        }

        .text-primary {
            color: var(--accent-color) !important;
        }

        .text-bg-primary {
            background-color: var(--orange-color) !important;
            color: var(--black-color) !important;
        }

        .logo-header {
            max-width: 200px;
        }

        .bg-accent-secondary {
            background-color: var(--accent-secondary-color);
            border: var(--accent-secondary-color);
        }

        .bg-section {
            background-color: var(--section-bg-color);
        }

        footer {
            background-color: var(--accent-color);
            color: var(--white-color);
            padding: 40px 0;
        }

        footer a {
            color: var(--white-color);
        }

        footer a:hover {
            color: var(--white-color);
        }

        .transform-y {
            transition: transform 0.3s;
            height: 100%;
        }
        
        .transform-y:hover {
            transform: translateY(-4px);
        }

        
        /* Mobile menu stays open when clicking links */
        /*@media (max-width: 991.98px) {
            .navbar-collapse {
                padding: 20px;
                background-color: white;
                border-radius: 0 0 10px 10px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            .navbar-nav {
                margin-top: 10px;
            }
            
            .nav-item {
                margin-bottom: 5px;
            }
        }*/



        /* Mobile menu */

        .navbar-toggler:focus,
        .navbar-toggler:active,
        .navbar-toggler-icon:focus {
            outline: none;
            box-shadow: none;
        }


        @media (max-width: 1399px) {
        .navbar-collapse {
            position: fixed;
            top: 150px;
            right: 0;
            padding-left: 15px;
            padding-right: 15px;
            padding-bottom: 15px;
            width: 40%;
            height: 100%;
            background-color: var(--white-color);
            color: var(--gray-color);
        }

        .navbar-collapse.collapsing {
            right: -75%;
            transition: height 0s ease;
        }

        .navbar-collapse.show {
            right: 0;
            transition: right 300ms ease-in-out;
        }

        .navbar-toggler.collapsed ~ .navbar-collapse {
            transition: right 500ms ease-in-out;
        }
        }


        @media (max-width: 575px) {
            .navbar-collapse {
                top: 120px;
                width: 60%;
            }
        }


        /* Custom Styles */
        .header-logo {
            height: 60px;
            margin-right: 15px;
        }
        

        /* Hero Section Styles */

        .hero-section{
            position:relative;
            height:65vh;
            min-height:520px;
            overflow:hidden;
        }

        /* Bild */

        .hero-image-container{
            position:absolute;
            inset:0;
        }

        .hero-image{
            width:100%;
            height:100%;
            object-fit:cover;
            object-position:right center;
        }

        @media (max-width:690px){

            .hero-image{
                object-position: center;
            }

        }

        /* linker heller Verlauf */

        .hero-overlay-left{
            position:absolute;
            inset:0;
            background:linear-gradient(
                90deg,
                rgba(255,255,255,0.95) 0%,
                rgba(255,255,255,0.85) 30%,
                rgba(255,255,255,0.4) 50%,
                rgba(255,255,255,0) 65%
            );
            opacity: 0.8;
        }

        /* Content */

        .hero-content{
            position:relative;
            z-index:2;
            max-width:1650px;
            margin:auto;
            height:100%;
            display:flex;
            align-items:center;
            padding:0 40px;
        }

        /* linke Seite */

        .hero-left{
            max-width:520px;
        }

        /* Titel */

        .hero-title{
            font-size:3.6rem;
            font-weight:700;
            color: var(--accent-color);
            line-height:1.1;
            margin-bottom:25px;
        }

        .hero-subtitle{
            font-size:1.8rem;
            margin-bottom:30px;
            color:#333;
        }

        @media (max-width:690px){

            .hero-subtitle{
                font-size:1.4rem;
            }

        }

        /* Öffnungszeiten */

        .hero-hours{
            font-size:1rem;
        }

        /*.hero-hours-row{
            display:flex;
            justify-content:space-between;
            margin-bottom:6px;
            color:#333;
        }*/

        .hero-hours-row{
            display:flex;
            gap:20px;
            margin-bottom:6px;
            color:#333;
        }

        .hero-hours-row span:first-child{
            width:140px;
        }

        .hero-hours-row-2{
            display:flex;
            gap:20px;
            margin-bottom:6px;
            color:#333;
        }

        .hero-hours-row-2 span:first-child{
            width:240px;
        }

        /* Telefon Kreis */

        .hero-phone {
            position:absolute;
            left: 500px;
            bottom:90px;

            /*
            left:380px;
            left:450px;
            bottom:70px;
            bottom:110px;
            */

            width:220px;
            height:220px;
            background: var(--accent-color);
            border-radius:50%;

            display:flex;
            flex-direction:column;
            justify-content:center;
            align-items:center;

            text-align:center;
            color:#fff;
            text-decoration:none;
            padding:20px;

            box-shadow:0 15px 35px rgba(0,0,0,0.25);
        }

        .hero-phone:hover {
                color: var(--white-color);
                background: var(--accent-color-hover);
            }

         @media (max-width:1366px){

            .hero-phone {
                left:450px;
            }

        }

        @media (max-width:1024px){

            .hero-phone {
                left:300px;
                bottom: 160px;
            }

        }

        @media (max-width:1080px){

            .hero-phone {
                left:500px;
            }

        }

        @media (max-width:810px){

            .hero-phone {
                left:500px;
                bottom: 200px;
            }

        }

        @media (max-width:768px){

            .hero-phone {
                left:20px;
                bottom: 20px;
            }

        }

        @media (max-width:690px){

            .hero-phone {
                left:auto;
                top: 200px;
            }

        }

        .hero-phone-inner{
            transform:rotate(0deg);
        }

        .hero-phone-text{
            font-size:0.85rem;
            line-height:1.3;
        }

        .hero-phone-number{
            font-size:1rem;
            font-weight:700;
            letter-spacing:0.5px;
        }

        /* RESPONSIVE */

        @media (max-width:992px){

        .hero-title{
            font-size:2.6rem;
        }

        .hero-phone{
            width:180px;
            height:180px;
        }

        }

        @media (max-width:768px){

        .hero-section{
            height:auto;
            padding:80px 0 60px 0;
        }

        .hero-content{
            flex-direction:column;
            text-align:center;
            gap:30px;
        }

        .hero-hours-row{
            justify-content:center;
            gap:20px;
        }

        .hero-phone{
            margin-top:10px;
        }

        }

        .hero-hours-mobile{
            background: var(--accent-color);
            color: var(--white-color);
            padding:5px 0;
        }

        .hours-mobile-box{
            max-width:420px;
            margin:auto;
        }

        .hours-mobile-row{
            display:flex;
            justify-content:space-between;
            padding:1px 0;
            font-size:0.95rem;
        }

        .hours-mobile-row span:first-child{
            font-weight:600;
        }



        .hero-copyright-toggle{
            position:absolute;
            right:15px;
            bottom:15px;

            width:28px;
            height:28px;

            border-radius:50%;
            border:0;

            background:#fff;
            color:#000;

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

            cursor:pointer;

            z-index:5;

            box-shadow:0 3px 10px rgba(0,0,0,0.25);
        }

        .hero-copyright-info{
            right:15px;
            bottom:60px;
            z-index:20;
        }


        /* HERO SLIDER */

        .hero-image-container .carousel,
        .hero-image-container .carousel-inner,
        .hero-image-container .carousel-item {
            height: 100%;
        }

        /* verhindert auto height */
        .hero-image-container .carousel-item {
            position: relative;
        }

        /* Bild exakt wie vorher */
        .hero-image-container .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: right center;
        }

        /* smoother Übergang */
        .carousel-item {
            transition: opacity 0.8s ease-in-out;
        }

        /* SMOOTH SLIDE */

        .carousel-item {
            transition: transform 0.9s ease-in-out;
        }

        /* verhindert zucken */
        .carousel-inner {
            height: 100%;
            overflow: hidden;
        }

        /* GPU-Rendering, weniger ruckeln */
        .carousel-item,
        .carousel-item img {
            backface-visibility: hidden;
            transform: translateZ(0);
        }


        /*
        .hero-section {
            position: relative;
            height: 75vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            margin-top:;
        }

        .hero-image-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-overlay {
            background: rgba(0, 0, 0, 0.6);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 1450px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            color: #fff;
        }

        .hero-subtitle {
            font-size: 2.2rem;
            margin-bottom: 0px;
            max-width: 600px;
            text-shadow: 1px 1px 2px rgba(0,0,0,1);
        }

        .hero-subtitl-2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            text-shadow: 1px 1px 2px rgba(0,0,0,1);
        }

        .hero-buttons .btn {
            margin-right: 15px;
            margin-bottom: 10px;
            padding: 10px 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .hero-buttons .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        @media (max-width: 1440px) {
            .hero-image {
                object-position: left;
            }
        }

        @media (max-width: 1366px) {
            .hero-section {
                height: 65vh;
                margin-top: 0px;
            }
        }

        @media (max-width: 690px) {
            .hero-image {
                object-position: center;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                height: 500px;
                margin-top: 0px;
            }
            
            .hero-title {
                font-size: 2rem;
                text-align: center;
            }
            
            .hero-subtitle, .hero-subtitle-2 {
                font-size: 1rem;
                text-align: center;
            }
            
            .hero-buttons .btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }

        */


/* Hero Box Center Styles */


.hero-centerbox-wrap{
    position:absolute;
    inset:0;
    z-index:4;

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

    padding:40px 20px;
    pointer-events:none;

}

.hero-centerbox{
    position:relative;
    width:min(100%, 1120px);
    min-height:260px;

    padding:48px 56px 72px;

    border-radius:12px;
    background: var(--accent-color-transparent);
    color:#fff;

    text-align:left;
    box-shadow:0 18px 40px rgba(0,0,0,0.18);

    pointer-events:auto;

    opacity:0;
    transform:translateY(30px);
    animation:heroBoxFadeUp 1s ease-out forwards;
    animation-delay:0.25s;
}

.hero-centerbox-title{
    margin:0 0 24px 0;
    font-size:clamp(2rem, 4vw, 4rem);
    line-height:1.08;
    font-weight:700;
    color:#fff;
    max-width:900px;

    opacity:0;
    transform:translateY(18px);
    animation:heroBoxFadeUp 0.9s ease-out forwards;
    animation-delay:0.45s;
}

.hero-centerbox-text{
    margin:0;
    max-width:880px;
    font-size:clamp(1rem, 1.2vw, 1.35rem);
    line-height:1.6;
    color:rgba(255,255,255,0.96);

    opacity:0;
    transform:translateY(18px);
    animation:heroBoxFadeUp 0.9s ease-out forwards;
    animation-delay:0.65s;
}

.hero-centerbox-btn{
    position:absolute;
    left:56px;
    bottom:-24px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:230px;
    min-height:52px;
    padding:12px 28px;

    border:2px solid rgba(255,255,255,0.9);
    border-radius:999px;

    background: var(--orange-color);
    color:var(--black-color);
    text-decoration:none;
    font-weight:700;

    box-shadow:0 10px 24px rgba(0,0,0,0.18);
    transition:background 0.25s ease, transform 0.25s ease;

    opacity:0;
    transform:translateY(18px);
    animation:heroBoxFadeUp 0.9s ease-out forwards;
    animation-delay:0.85s;
}

.hero-centerbox-btn:hover{
    color:#fff;
    background:#126f19;
    transform:translateY(-1px);
}

@keyframes heroBoxFadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media (max-width: 991px){
    .hero-centerbox{
        width:min(100%, 900px);
        padding:36px 32px 68px;
    }

    .hero-centerbox-btn{
        left:32px;
    }
}

@media (max-width: 767px){
    .hero-centerbox-wrap{
        padding:24px 16px 40px;
        align-items:center;
    }

    .hero-centerbox{
        min-height:auto;
        padding:28px 22px 78px;
        border-radius:10px;
        text-align:left;
    }

    .hero-centerbox-title{
        margin-bottom:18px;
        font-size: 1.3rem;
    }

    .hero-centerbox-text{
        font-size:1rem;
        line-height:1.5;
    }

    .hero-centerbox-btn{
        left:22px;
        right:22px;
        bottom:-22px;
        min-width:auto;
    }
}


        /* Hero Video Styles */

        .hero-video {
        /* Höhensteuerung */
        --hero-h: 100vh;
        --hero-h-lg: 85vh;
        --hero-h-md: 720px;
        --hero-h-sm: 600px;

        position: relative;
        height: var(--hero-h);
        overflow: hidden;

        margin-top: -75px;

        }

        @media (max-width: 1199.98px) {
            .hero-video { height: var(--hero-h-lg); }
        }
        @media (max-width: 991.98px) {
            .hero-video { height: var(--hero-h-md); }
        }
        @media (max-width: 575.98px) {
            .hero-video { height: var(--hero-h-sm); }
        }

        /* Background Layer */
        .hero-video__bg {
            position: absolute;
            inset: 0;
        }

        .hero-video__media {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        /* Bild-Fallback (nur sichtbar wenn Video nicht lädt oder via CSS erzwungen) */
        .hero-video__fallback {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: none;
        }

        /* Overlay */
        .hero-video__overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        /* Content Layer */
        .hero-video__content {
            position: relative;
            z-index: 2;
            height: 100%;

            /* Zentrierung horizontal + vertikal */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video__content h1 {
            color: var(--dark-color);
            font-size: 6rem;
            font-weight: 600;
        }

        .hero-video__content h2 {
            color: var(--white-color);
            font-size: 3rem;
        }

        @media (max-width: 1080px) {
            .hero-video__content h1 {
                font-size: 4rem;
                padding-top: 0px;
            }
            .hero-video__content h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 690px) {
            .hero-video__content h1 {
                font-size: 3rem;
                padding-top: 20px;
            }
            .hero-video__content h2 {
                font-size: 2rem;
            }
        }

        .hero-video__inner {
            max-width: 1200px;
            padding: 0 1rem;
            color: var(--white-color);

            position: relative;
            text-align: center;
        }

        /* Flip ganz oben im Content */
        .hero-video__inner .flip {
            position: absolute;
            left: 50%;
            top: -80px;
            transform: translateX(-50%);
            perspective: 1000px;
            z-index: 5;
        }

        .hero-video__inner .flip img {
            display:block;
            width:;
            height:auto;

            /* wichtig: kleine Neigung, damit es nie komplett "kante" wird */
            animation: flipY 2s linear infinite;
            transform-style: preserve-3d;

            backface-visibility: visible;            /* testweise sichtbar */
            -webkit-backface-visibility: visible;    /* testweise sichtbar */
        }

        @keyframes flipY{
            0%   { transform: rotateY(0deg)  rotateX(6deg); }
            50%  { transform: rotateY(180deg) rotateX(6deg); }
            100% { transform: rotateY(360deg) rotateX(6deg); }
        }


        .hero-video__title {
            /*font-size: clamp(2rem, 4vw, 4.2rem);
            font-weight: 700;*/
            margin-bottom: 0.75rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.55);
        }

        .hero-video__subtitle {
            font-size: clamp(1.05rem, 2.2vw, 2rem);
            margin-bottom: 1.25rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,1);
        }

        .hero-video__cta .btn {
            padding: 0.5rem 1.25rem;
        }

        /* Barrierearm: Motion reduzieren */
        @media (prefers-reduced-motion: reduce) {
            .animate-title,
            .animate-subtitle,
            .animate-subtitle-2 {
                animation: none !important;
                transition: none !important;
        }

        /* Video bei reduced motion ausblenden und Bild zeigen */
        .hero-video__media { display: none; }
        .hero-video__fallback { display: block; }
        }

        .hero-video__overlay {
            background: linear-gradient(
                180deg,
                rgba(0,0,0,0.65) 0%,
                rgba(0,0,0,0.55) 45%,
                rgba(0,0,0,0.70) 100%
            );
        }



        /* Content Video */
        .content-video__wrapper {
            max-width: 1000px;
            margin: 0 auto;
        }

        .content-video__media {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 6px;
        }



        /* Logo */
        .logo {
            max-width: 390px;
        }

        @media (max-width: 767.98px) {
            .logo {

            }
        }

         @media (max-width: 767.98px) {
            .logo {
                max-width: 250px;
            }
        }


        /* Content Video */
        .content-video__wrapper {
            max-width: 1000px;
            margin: 0 auto;
        }

        .content-video__media {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 6px;
        }


        ol {
	        padding-left: 20px;
        }

        ul {
            list-style-type: none;
            padding-left: 0;
        }

        .c-ul ul {
            list-style-type: none;
            padding-left: 0;
        }

        .c-ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 0;
        }

        .c-ul li:before {
            position: absolute;
            top: 0;
            left: 0;
            font-family: "Font Awesome 7 Free";
            /*font-weight: 400;*/
            font-weight: 900;
            content: "\f560";
            color: var(--accent-color);
        }



        /* Animationen hinzufügen */
        .animate-item {
            animation: fadeIn 0.4s ease-out 0.3s forwards; /* 0.3s Verzögerung */
            opacity: 0;
            transform: translateY(0px);
        }

        .animate-title {
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .animate-subtitle {
            animation: fadeInUp 0.8s ease-out 0.3s forwards; /* 0.3s Verzögerung */
            opacity: 0;
            transform: translateY(20px);
        }

        .animate-subtitle-2 {
            animation: fadeInUp 0.8s ease-out 0.6s forwards; /* 0.6s Verzögerung */
            opacity: 0;
            transform: translateY(20px);
        }

        .animate-btn-1 {
            animation: fadeInUp 0.8s ease-out 0.8s forwards; /* 0.8s Verzögerung */
            opacity: 0;
            transform: translateY(20px);
        }

        .animate-btn-2 {
            animation: fadeInUp 0.8s ease-out 0.9s forwards; /* 0.9s Verzögerung */
            opacity: 0;
            transform: translateY(20px);
        }

        .animate-btn-3 {
            animation: fadeInUp 0.8s ease-out 1.2s forwards; /* 1.2s Verzögerung */
            opacity: 0;
            transform: translateY(20px);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Floating Mobile Images */

        @media (max-width: 767.98px) {
            .float-mobile-off {
                float: none !important;
                display: block;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }



        /* Navigation */

        .navbar {
            padding: 15px 0;
            background-color: var(--bg-color-nav) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: #333 !important;
        }

        .nav-link {
            position: relative;
            display: inline-block;
        }
        
        .nav-link {
            color: var(--gray-color) !important;
            font-weight: 500;
            margin: 0 25px;
            /*font-size: 1.1rem;*/
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }

        @media (min-width: 1367px) {
            .nav-link {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 1366px) {
            .nav-link {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 1198px) {
            .nav-link {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 1024px) {
            .nav-link {
                margin: 0 5px;
            }
        }
        
        /*.nav-link:hover {
            color: var(--accent-color) !important;
            border-bottom: 6px dotted var(--orange-color) !important;
            margin-bottom: -6px !important;
        }

        .nav-link.active{
            color: var(--accent-color) !important;
            border-bottom: 6px dotted var(--orange-color);
            margin-bottom: -6px;
        }*/

        /* Hover */
        .nav-link:hover {
            color: var(--accent-color) !important;
        }

        .nav-link:hover::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 6px;

            /*background: repeating-linear-gradient(
                90deg,
                var(--orange-color) 0 6px,
                transparent 6px 12px
            );*/

            background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6'>\<rect x='0' y='0' width='6' height='6' rx='1' ry='1' fill='%23FF6600'/>\</svg>");

            background-repeat: repeat-x;
            background-size: 12px 6px;

        }

        /* Active */
        .nav-link.active {
            color: var(--accent-color) !important;
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 6px;

            background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6'>\<rect x='0' y='0' width='6' height='6' rx='1' ry='1' fill='%23FF6600'/>\</svg>");

            background-repeat: repeat-x;
            background-size: 12px 6px;

        }


        .navbar-toggler {
            border: 1px solid var(--accent-color) !important;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(51,51,51,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }


        /* Desktop-Unternavigation */

        .desktop-subnav {
            position: absolute;
            right: 0;
            bottom: -30px;
            display: flex;
            align-items: center;
            /*background: rgba(255, 255, 255, 1);*/
            background-color: var(--accent-color);
            border-radius: 22px 0 0 22px;
            padding: 12px 22px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
            gap: 0;
            z-index: 1002;
            min-height: 40px;
        }

        .desktop-subnav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 22px;
            font-size: 1.05rem;
            font-weight: 500;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--white-color);
            white-space: nowrap;
            line-height: 1;
            padding-right: 15px;
            padding-left: 15px;
        }

        .desktop-subnav-link:hover {
            color: var(--white-color);
            border-bottom: 4px solid var(--white-color);
            margin-bottom: -4px;
        }

        .desktop-subnav-link.active{
            color: var(--white-color) !important;
            border-bottom: 4px solid var(--white-color);
            margin-bottom: -4px;
        }

        .desktop-subnav-link + .desktop-subnav-link::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 34px;
            background: rgba(0, 0, 0, 0.18);
        }

        .desktop-subnav-brand {
            font-weight: 700;
            letter-spacing: 0.04em;
            color: #0f3f9c;
        }

        @media (min-width: 1400px) {
            .desktop-subnav {
                min-width: 550px;
                justify-content: center;
            }

            .desktop-subnav-link {
                font-size: 1.15rem;
                padding: 5px 28px 5px 28px;
            }
        }

        @media (min-width: 992px) and (max-width: 1199.98px) {
            .desktop-subnav {
                right: 15px;
                bottom: -52px;
                padding: 10px 16px;
                min-height: 52px;
            }

            .desktop-subnav-link {
                font-size: 0.95rem;
                padding: 0 16px;
            }

            .desktop-subnav-link + .desktop-subnav-link::before {
                height: 28px;
            }
        }

        @media (max-width: 1399px) {
            .desktop-subnav {
                display: none !important;
            }
        }

        .desktop-subnav a:hover {
            /*color: var(--white-color) !important;
            border-bottom: 4px solid var(--white-color) !important;
            margin-bottom: -4px !important;*/
            color: var(--white-color) !important;
            border-bottom: 4px solid var(--white-color) !important;
            margin-bottom: -4px !important;
            
        }




        /*.dark-line {
            width: 140px;
            border-bottom: 8px dotted var(--orange-color) !important;
            margin-bottom: -8px !important;
            text-align: center;
            margin-left: -5px;
        }*/

        .dark-line {
            width: 140px;
            height: 8px; /* entspricht deiner Border-Dicke */
            
            /*background: repeating-linear-gradient(
                90deg,
                var(--orange-color) 0 8px,
                transparent 8px 16px
            );*/

            margin-bottom: -8px !important;

            background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6'>\<rect x='0' y='0' width='6' height='6' rx='1' ry='1' fill='%23FF6600'/>\</svg>");

            background-repeat: repeat-x;
            background-size: 12px 6px;

        }



        .accent-line {
            width: 60px;
            border-bottom: 8px dotted var(--orange-color) !important;
            margin-bottom: -8px !important;
            margin-left: -5px;
        }


        .btn-outline-dark {
            background-color: var(--accent-color);
            color: var(--white-color);
            border-color: var(--accent-color);
        }

        .btn-outline-dark:hover {
            background-color: var(--white-color);
            color: var(--accent-color);
            border-color: var(--accent-color);
        }



        h1, .h1 {
            color: var(--dark-color);
            font-size: 1.6rem;
        }

        @media (max-width: 1199px) {
            h1, .h1 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            h1, .h1 {
            font-size: 1.3rem;
            }
        }

        .btn-primary {
            background-color: var(--accent-secondary-color);
            border-color: var(--accent-secondary-color);
            color: #000;
        }

        .btn-primary:hover {
            background-color: var(--primary-color-hover);
        }

        .btn-outline-primary {
            color: var(--primary-color-dark);
            border-color: var(--primary-color-dark);
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .section-bg {
            background-color: var(--section-background-color);
        }

        .card-body {
            color: var(--dark-color);
        }


        .card {
            box-shadow: 0 12px 28px rgba(0,0,0,0.3) !important;
        }



        .card-link-wrapper{
            display:block;
            text-decoration:none;
            color:inherit;
        }

        .card-link-wrapper {
            transition:all .25s ease;
            border-radius:10px;
        }

        .card-link-wrapper:hover {
            transform:translateY(-10px);
            /*box-shadow:0 12px 28px var(--accent-color-rgb);*/
            box-shadow:0 12px 28px var(--orange-color-rgb);
        }


        .contact-links a:hover {
            color: var(--dark-color);
        }

        .shadow-hover {
            transition:all .25s ease;
        }

        .shadow-hover:hover {
            transform:translateY(-4px);
            box-shadow:0 12px 28px var(--accent-color-rgb) !important;
        }





        /* Galerie Carousel volle Breite */
        #GalerieCarousel .carousel-inner,
        #GalerieCarousel .carousel-item {
            width: 100%;
        }

        /* keine Abstände zwischen Bildern */
        #GalerieCarousel .carousel-item .row {
            margin: 0;
        }

        #GalerieCarousel .carousel-item .col {
            padding: 0;
        }

        /* Links blockig, Bilder sauber */
        #GalerieCarousel a.gallery-link {
            display: block;
            width: 100%;
        }

        #GalerieCarousel img {
            display: block;
            width: 100%;
            height: auto;
        }

        #GalerieCarousel .carousel-item {
            transition-duration: 0.8s;
        }
        
        /* weniger Bewegung */
        @media (prefers-reduced-motion: reduce) {
            #GalerieCarousel .carousel-item {
                transition: none !important;
            }
        }

        #GalerieCarousel #galleryModalTitle:empty {
            display: none;
        }



        /* machine cards */

        .machine-card {
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            background: #fff;
        }

        .machine-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08) !important;
        }

        .machine-image {
            object-fit: cover;
            min-height: 220px;
            transition: 0.2s ease;
        }

        @media (max-width: 767.98px) {
            .machine-image {
                min-height: 200px;
                max-height: 240px;
            }
        }

        /* Container für Linie */
        .machine-card .col-md-4 {
            position: relative;
            overflow: hidden;
        }

        /* Hover-Linie */
        .machine-card .col-md-4::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: var(--orange-color);
            transition: width 0.2s ease;
            z-index: 2;
        }

        .machine-card:hover .col-md-4::before {
            width: 10px;
        }


        /* machine detail */

        .image-wrapper {
            position: relative;
        }

        .machine-detail-card {
            background: #fff;
            border-radius: 1.25rem;
        }

        .machine-carousel {
            position: relative;
        }

        .machine-detail-image {
            width: 100%;
            min-height: 380px;
            max-height: 520px;
            object-fit: cover;
            display: block;
        }

        .gallery-trigger {
            display: block;
            width: 100%;
            padding: 0;
            border: 0;
            background: transparent;
            cursor: zoom-in;
        }

        .machine-facts-card {
            background: #f8f9fa;
            border-radius: 1rem;
            padding: 1.5rem;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .machine-kicker {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--accent-color);
        }

        .info-box {
            background: #fff;
            border-radius: 0.9rem;
            padding: 1rem;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .info-label {
            display: block;
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 0.35rem;
        }

        .machine-highlights li,
        .detail-list li {
            position: relative;
            padding-left: 1.25rem;
            margin-bottom: 0.6rem;
        }

        .machine-highlights li::before,
        .detail-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 0.45rem;
            height: 0.45rem;
            border-radius: 1px;
            background: var(--orange-color);
        }

        .detail-section {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.04);
            height: 100%;
        }

        .price-list {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            align-items: center;
            padding: 0.95rem 1rem;
            border-radius: 0.85rem;
            background: #f8f9fa;
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .price-row span {
            color: #212529;
        }

        .price-row small {
            color: var(--accent-color);
        }

        @media (max-width: 991.98px) {
            .machine-detail-image {
                min-height: 280px;
                max-height: 400px;
            }
        }

        @media (max-width: 767.98px) {
            .price-row {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .addon-box {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            transition: 0.2s ease;
        }

        .addon-box:hover {
            background: #f1f3f5;
        }

        .addon-image {
            width: 120px;
            height: 90px;
            object-fit: cover;
        }



        .reveal-up {
            opacity: 0;
            transform: translateY(60px);
            transition:
                opacity 0.7s ease,
                transform 0.7s ease;
            transition-delay: var(--delay, 0ms);
        }

        .reveal-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }








        /* Form input Hintergrund dark */
        form .bg-dark {
            background-color: rgb(20, 20, 20, 0.7) !important;
        }

        .form-control {
            border: 1px solid #898989;
        }



        /* WhatsApp Box */
        .whatsapp-box {
            position: fixed;
            bottom: 50px;
            left: 0;
            background-color: transparent;
            border-top-right-radius: 15px;
            border-bottom-right-radius: 15px;
            /*padding: 15px 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);*/
            text-align: center;
            z-index: 1000;
            width: 100px;
        }
        
        .whatsapp-link {
            color: #25D366; /* WhatsApp-Grün */
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .whatsapp-link:hover {
            color: #128C7E;
        }
        
        .whatsapp-text {
            font-size: 14px;
            margin-top: 5px;
            text-align: center;
            display: none;
        }
        
        /* Animation */
        @keyframes shake {
            0% { transform: rotate(0deg); }
            25% { transform: rotate(-5deg); }
            50% { transform: rotate(0deg); }
            75% { transform: rotate(5deg); }
            100% { transform: rotate(0deg); }
        }
        
        .whatsapp-icon {
            /*animation: shake 0.3s ease-in-out infinite;
            animation-play-state: running;*/
        }
        
        .whatsapp-box:hover .whatsapp-icon {
            animation-play-state: paused;
            text-decoration: none;
        }

        .whatsapp-box:hover a {
            text-decoration: none;
        }
        
        /* Automatische Animation */
        .whatsapp-icon.auto-shake {
          /*  animation: shake 0.3s ease-in-out 2; */
        }
        
        @media (max-width: 576px) {
            /*.whatsapp-text {
                display: none;
                font-size: 0.8rem;
            }
            .whatsapp-box {
                bottom: 20px;
                border-bottom-right-radius: 15px;
                background-color: var(--primary-color-dark);
                padding: 10px 15px;
            }*/

            .whatsapp-icon {
                background-color: var(--primary-color-dark);
                border-radius: 50%;
                width: 58px;
                height: 58px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .whatsapp-link {
                align-items: center;
            }

            .whatsapp-box {
                bottom: 20px;
            }

        }


        /* Kontakt Box */
        .slide-contact-box {
            position: fixed;
            right: -320px;
            bottom: 150px;
            width: 300px;
            /*background: #131313;
            background: linear-gradient(135deg,rgba(0, 0, 0, 1) 0%, rgba(38, 38, 38, 1) 50%, rgba(93, 22, 22, 1) 100%);*/
            
            background: url(../images/bg_01.jpg) no-repeat top center;
            background-size: cover;

            border-radius: 12px 0 0 12px;
            border-top: 1px solid #595959;
            border-left: 1px solid #595959;
            border-bottom: 1px solid #595959;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            padding: 20px;
            z-index: 1050;
            transition: right 0.4s ease;
            overflow: hidden;
        }

        .slide-contact-box::before {
            content: "";
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
            border-radius: 12px 0 0 12px;
        }
        
        /* Inhalt über Overlay */
            .slide-contact-box > * {
            position: relative;
            z-index: 2;
        }

        .slide-contact-box.show {
            right: 0;
        }

        .slide-close {
            position: absolute;
            top: 12px;
            right: 12px;
            border: none;
            background: none;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            z-index: 3;
        }

        @media (max-width: 576px) {
            .slide-contact-box {
                width: calc(100% - 30px);
                right: -100%;
                bottom: 100px;
                border-radius: 12px;
                border-right: 1px solid #595959;
            }

            .slide-contact-box.show {
                right: 15px;
            }

            .slide-contact-box::before {
                border-radius: 12px;
            }
        }


        .map-consent-box{
            position:relative;
            overflow:hidden;
            border-radius:0.375rem;
        }

        .map-consent-box .ratio{
            position:relative;
            z-index:1;
        }

        .map-iframe{
            width:100%;
            height:100%;
            display:block;
        }

        .map-placeholder{
            position:absolute;
            inset:0;
            z-index:2;

            display:flex;
            align-items:center;
            justify-content:center;
            text-align:center;
            padding:2rem;

            background:
                linear-gradient(rgba(32, 56, 42, 0.8), rgba(32, 56, 42, 0.8)),
                url("../images/map_placeholder.jpg") center center / cover no-repeat;
            color:#fff;
        }

        .map-placeholder-inner{
            max-width:560px;
        }

        .map-placeholder p{
            line-height:1.5;
        }

        .map-load-btn{
            min-width:180px;
            font-weight:600;
        }




        .external-consent-box{
            position:relative;
            overflow:hidden;
            border-radius:6px;
        }

        .external-consent-box .ratio{
            z-index:1;
        }

        .external-iframe{
            width:100%;
            height:100%;
        }

        .external-placeholder{
            position:absolute;
            inset:0;
            z-index:2;

            display:flex;
            align-items:center;
            justify-content:center;
            text-align:center;

            padding:40px;

            background:
                linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url("../images/iframe_placeholder.jpg") center/cover no-repeat;

            color:#fff;
        }

        .external-placeholder-inner{
            max-width:560px;
        }

        .external-load-btn{
            min-width:220px;
            font-weight:600;
        }

        iframe {
            overflow-y: auto;
            overflow-x: hidden;
        }





        /* Scroll-to-top Button */
        .scroll-to-top {
            position: fixed;
            right: 30px;
            bottom: 50px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color-dark);
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: var(--primary-color-hover);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 576px) {
            .scroll-to-top {
                bottom: 20px;
            }
        }

        /* Tooltip Anpassungen */
        .tooltip {
            --bs-tooltip-bg: #333; /* Hintergrundfarbe */
            --bs-tooltip-color: white; /* Textfarbe */
            --bs-tooltip-opacity: 1; /* Deckkraft */
            font-size: 0.9rem;
        }

        .tooltip .tooltip-inner {
            background-color: var(--bs-tooltip-bg);
            color: var(--bs-tooltip-color);
            padding: 8px 12px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .tooltip.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
        .tooltip.bs-tooltip-top .tooltip-arrow::before {
            border-top-color: var(--bs-tooltip-bg);
        }

        .tooltip.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,
        .tooltip.bs-tooltip-right .tooltip-arrow::before {
            border-right-color: var(--bs-tooltip-bg);
        }

        .tooltip.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,
        .tooltip.bs-tooltip-bottom .tooltip-arrow::before {
            border-bottom-color: var(--bs-tooltip-bg);
        }

        .tooltip.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,
        .tooltip.bs-tooltip-left .tooltip-arrow::before {
            border-left-color: var(--bs-tooltip-bg);
        }

        /* Größerer Tooltip */
        .tooltip-inner {
            border-radius: 10px;
            padding: 10px 15px;
            font-size: 1.1rem !important;
        }


         /* Date Picker Dark */
        input::placeholder,
        textarea::placeholder {
            color: #fff !important;
            opacity: 1;
        }

        /* Effekte */

        .fade-in {
            opacity: 0;
            animation: fadeIn 5s ease-out forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .pattern {
            --dot-bg: rgb(0, 0, 0);
            --dot-color: rgb(31, 31, 31);
            --dot-size: 2px;
            --dot-space: 22px;
                background:
                    linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
                    linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space),
                    var(--dot-color);
        }



        /* picture clip */
        
        .picture-clip_1 {
            clip-path: polygon(20% 0, 100% 0, 100% 80%, 80% 100%, 0 100%, 0 20%);
        }

        .picture-clip_2 {
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 20%);
        }

        .picture-clip_3 {
            clip-path: polygon(10% 10%, 100% 0, 100% 100%, 0 100%);
        }

        .picture-clip_4 {
            clip-path: polygon(0 0, 90% 10%, 100% 100%, 0 100%);
        }

        .picture-clip_5 {
            clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
        }

        .picture-clip_6 {
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }
        


        /* parallax */

        .segment-bg_01 {
            min-height: 250px;
            background: url(../images/bg_01.jpg) no-repeat center center;
            background-attachment: fixed;
            background-size: cover;
            width: 100%;
            position: relative;
        }

        .segment-bg_02 {
            min-height: 250px;
            background: url(../images/bg_02.jpg) no-repeat center center;
            background-attachment: fixed;
            background-size: cover;
            width: 100%;
            position: relative;
        }

        /* Overlay */
        .segment-bg_01::before,
        .segment-bg_02::before {
            content: "";
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 1;
            pointer-events: none;
        }

        /* Inhalt über Overlay */
            .segment-bg_01 > *,
            .segment-bg_02 > * {
            position: relative;
            z-index: 2;
        }




        /* KF Mail */

        .wdh {
            display:none;
        }


        /* CRI - CopyRightInfo - Bildnachweise ################################################################ Info-Button über den Fotos, Grafiken und Videos */

        .cri-wrapper {
            position: relative;
        }
        
        .cri-responsive {
            width: 100%;
            height: auto;
        }
        
        .cri-overlay {
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 2;
            color: #333 !important;
            background-color: transparent !important;
        }
        
        .cri-overlay a {
            background: rgb(185, 185, 185, 0.8) !important;
            color: rgb(85, 85, 85) !important;
            padding: 2px 3px 1px 3px;
        }
        
        .cri-overlay a:hover {
            background: rgb(185, 185, 185, 1) !important;
            color: rgb(85, 85, 85) !important;
        }
        
        .cri-overlay a:focus, .cri-overlay a:visited, .cri-overlay a:active {
            color: rgb(85, 85, 85) !important;
        }


        .card-img-wrapper{
            position:relative;
        }

        /* Copyright Button */

        .copyright-toggle{
            position:absolute;
            right:10px;
            bottom:10px;

            width:28px;
            height:28px;

            border-radius:50%;
            border:0;

            background:#fff;
            color:#000;

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

            cursor:pointer;
            font-size:14px;

            box-shadow:0 2px 8px rgba(0,0,0,0.25);
        }

        /* Overlay Text */

        .copyright-info,
        .hero-copyright-info{
            position:absolute;
            right:10px;
            bottom:50px;
            background:rgba(0,0,0,0.85);
            color:#fff;
            padding:6px 10px;
            border-radius:6px;
            font-size:0.8rem;
            pointer-events: auto;
            z-index: 10;
            white-space:nowrap;
        }


        .machine-carousel .carousel-control-prev,
        .machine-carousel .carousel-control-next {
            width: 56px;
            height: 56px;
            top: 50%;
            bottom: auto;
            transform: translateY(-50%);
            opacity: 1;
        }

        .machine-carousel .carousel-control-prev {
            left: 10px;
        }

        .machine-carousel .carousel-control-next {
            right: 10px;
        }


        /* form handler */
        .required-label::after {
            content: " *";
            color: #d40419;
        }
        .honeypot {
            position: absolute !important;
            left: -9999px !important;
            top: -9999px !important;
            width: 1px !important;
            height: 1px !important;
            overflow: hidden !important;
        }



        /* IMPRESSUM DATENSCHUTZ ################################################################ IMPRESSUM DATENSCHUTZ */

        .dsgvo h1 {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .dsgvo h2 {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .dsgvo h3 {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .dsgvo h4 {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .dsgvo h5 {
            font-size: 1.1rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }





        /* BFSG */

        #skiplink {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1025;
        }

        #skiplink a {
            position: absolute;
            left: -9999px;
            top: 0;
            padding: 0.75rem 1rem;
            background: #000;
            color: #fff;
            text-decoration: none;
            white-space: nowrap;
        }

        #skiplink a:focus,
        #skiplink a:focus-visible {
            left: 0;
        }

        .text-black {
            color: #000;
        }
        
        .text-danger {
            color: #fc5b5b !important;
        }

        .bg-black {
            background-color: black !important;
        }

        .btn-outline-danger {
            --bs-btn-color: #c00c1e;
            --bs-btn-border-color: #c00c1e;
        }
                    
        .btn-success {
            background-color: #1a732e !important;
        }

        .btn-outline-success {
            color: var(--accent-color);
            border-color: var(--accent-color) !important;
        }

        .btn-outline-success:hover {
            color: var(--white-color);
            border-color: var(--accent-color) !important;
            background-color: var(--accent-color) !important;
        }

        .cri-wrapper {
            position: relative;
        }
        
        .cri-responsive {
            width: 100%;
            height: auto;
        }
        
        .cri-overlay {
            position: absolute;
            bottom: 0;
            right: 0;
            color: #333 !important;
            background-color: transparent !important;
        }
        
        .cri-overlay a {
            background: #fff !important;
            color: #000 !important;
        }
        
        .cri-overlay a:hover {
            background: #fff !important;
            color: #000 !important;
        }

        .cri-overlay .card {
            z-index: 30;
        }
        
        .cri-overlay a:focus, .cri-overlay a:visited, .cri-overlay a:active {
            color: #000 !important;
        }

        .gmod .opt_in_banner {
            background-color: rgba(0,0,0,18);
            color: #fff;
        }

        .gmod .opt_in_banner .show_map_btn {
            border-color: #2e753e !important;
            background-color: #2e753e;
        }

        .carousel-control-next-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
            background-color: var(--accent-color) !important;
            border: 5px solid var(--accent-color);
            border-radius: 4px;
        }

        .carousel-control-prev-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
            background-color: var(--accent-color) !important;
            border: 5px solid var(--accent-color);
            border-radius: 4px;
        }

        .carousel-control-next, .carousel-control-prev {
            opacity: 1;
            z-index: 1;
        }

        :focus-visible,
        *:focus-visible,
        .focus-visible-only:focus-visible {
            outline: 2px dashed #035fff !important;
            outline-offset: 2px !important;
            color: #035fff !important;
            background-color: rgba(255, 255, 255, 1) !important;
        }

        a:focus-visible,
        button:focus-visible,
        .button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible,
        label:focus-visible,
        figure:focus-visible,
        [tabindex]:focus-visible {
            outline: 2px dashed #035fff !important;
            outline-offset: 2px !important;
            color: #035fff !important;
            background-color: rgba(255, 255, 255, 1) !important;
        }

        .focus-visible-logo:focus-visible {
            outline: 2px dashed #035fff !important;
            outline-offset: 2px !important;
            color: #035fff !important;
            background-color: rgba(0, 0, 0, 1) !important;
        }

        .focus-visible-only-footer-button:focus-visible {
            outline: 2px dashed #035fff !important;
            outline-offset: 2px !important;
            color: #035fff !important;
            background-color: rgba(255, 255, 255, 1) !important;
        }

        .using-mouse :focus,
        *:focus:not(:focus-visible) {
            outline: none !important;
        }


        /* BFSG Galerie -> row g-0 */

        #Galerie a:focus-visible img {
            outline: 2px dashed #035fff;
            outline-offset: -4px;
        }

        #Galerie a:focus-visible {
            outline: none;
        }

        #GalerieCarousel a.gallery-link:focus-visible img {
            outline: 2px dashed #035fff;
            outline-offset: -4px;
        }

        #GalerieCarousel a.gallery-link:focus-visible {
            outline: none;
        }

        #Ueber-mich a:focus-visible img {
            outline: 2px dashed #035fff;
            outline-offset: -100px;
        }

        #Ueber-mich a:focus-visible {
            outline: none;
        }