        /*
        @font-face {
            font-family: "bootstrap-icons";
            src: url("../vendor/bootstrap/fonts/bootstrap-icons.woff2") format("woff2"),
                url("../vendor/bootstrap/fonts/bootstrap-icons.woff") format("woff");
        }
        */

        @font-face {
            font-family: "Allura";
            src: url("../fonts/Allura-Regular.ttf") format("truetype");
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        .font-allura {
            font-family: "Allura", cursive;
        }

        @font-face {
            font-family: "Swis721";
            src: url("../fonts/swiss-721-black-condensed-bt.ttf") format("truetype");
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }

        .font-swis721-blkcn {
            font-family: "Swis721", sans-serif;
            font-weight: 900;
        }


        /* Custom Styles */
        :root {

            --bs-link-color: #fc5b5b;
            --bs-link-hover-color: #fff;

            --primary-color: rgb(168, 25, 25);
            --primary-color-dark: #333;
            --primary-color-hover: #333;
            --secondary-color: #fd3f00;

            --section-background-color: #131313;
            
            --white-color: #fff;
            --white-background-color: #fff;
            --dark-color: #000;
            --dark-color_trans: rgba(0, 0, 0, 0.85);
            --dark-background-color: #000;

            --accent-color: rgb(168, 25, 25);
            --accent-secondary-color: rgb(255, 255, 255);
            --accent-secondary-color-light: rgba(255, 255, 255, 0.9);

        
            --bg-color-nav: rgba(0, 0, 0, 0.6);

            --accent-bg-color-section: rgb(75, 110, 76);
            --nav-h: 50px;
        }

        /* Offset für feste Navigation */
        html {
            scroll-margin-top: 10px; /* Höhe der Navbar */
        }

        @media (max-width: 991.98px) {
            html {
                scroll-margin-top: 10px; /* Geringere Höhe auf mobilen Geräten */
            }
        }
        
        body {
            scroll-behavior: smooth;
            background-color: var(--dark-background-color) !important;
            color: var(--white-color) !important;
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
        }

        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; }
        }*/

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

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

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

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

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

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

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


        /* Active navigation highlighting */
        .nav-link.active {
            font-weight: bold;
            color: var(--white-color);
            border-bottom: 4px solid var(--primary-color);
        }
        
        /* 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: 1199px) {
        .navbar-collapse {
            position: fixed;
            top: 70px;
            right: 0;
            padding-left: 15px;
            padding-right: 15px;
            padding-bottom: 15px;
            width: 35%;
            height: 100%;
            background-color: var(--dark-color_trans);
            color: var(--white-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: 70px;
                width: 50%;
            }
        }


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

        /* Hero Section Styles */

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

        .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);
        }

        /* Responsive Anpassungen */

        @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 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(--white-color);
            font-size: 6rem;
            font-family: "Swis721", sans-serif;
            font-weight: 900;

            /*letter-spacing: -0.02em;
            font-family: "Allura", cursive;*/
        }

        .hero-video__content h2 {
            color: var(--white-color);
            font-size: 3rem;
            font-family: "Allura", cursive;
            letter-spacing: -0.02em;
        }

        @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;
        }



        /* Symbol */
        .feuerkunst-symbol {
            max-width: 150px;
        }

        @media (max-width: 767.98px) {
            .feuerkunst-symbol {
                max-width: 100px;
            }
        }



        /* Logo */
        .logo {

        }

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

            }
        }




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

        .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.3s Verzögerung */
            opacity: 0;
            transform: translateY(20px);
        }

        .animate-btn-1 {
            animation: fadeInUp 0.8s ease-out 0.6s forwards; /* 0.6s 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);
            }
        }


        /* 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 {
            color: var(--white-color) !important;
            font-weight: 500;
            margin: 0 10px;
            /*font-size: 1.1rem;*/

            font-family: "Allura", cursive;
            letter-spacing: -0.02em;
        }

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

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

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

        @media (max-width: 1024px) {
            .nav-link {
                margin: 0 5px;
            }
        }
        
        .nav-link:hover {
            color: var(--white-color) !important;
            border-bottom: 4px solid var(--primary-color) !important;
            margin-bottom: -4px !important;
        }


        .navbar-toggler {
            border: 1px solid var(--white-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(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }


        h1, .h1 {
            color: var(--white-color);
            font-size: 3.8rem;
            font-family: "Allura", cursive;
        }

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

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

        .fire-text {
            /*color: var(--white-color);*/
            color: #ffca00;
            text-shadow: 0 0 5px #ff005e, 0 0 10px #ff0000, 0 0 20px #ff005e, 0 0 40px #ff0000, 0 0 80px #ff005e;
            animation: glow 1.5s infinite alternate;
        }

        @keyframes glow {
            0% {
                text-shadow: 0 0 5px #ff005e, 0 0 10px #ff0000, 0 0 20px #ff005e, 0 0 40px #ff0000, 0 0 80px #ff005e;
            }
            100% {
                text-shadow: 0 0 10px #ff7700, 0 0 20px #ff9d00, 0 0 40px #ff7700, 0 0 80px #ff9d00, 0 0 160px #ff7700;
            }
        }

        /* weniger Bewegung */
        @media (prefers-reduced-motion: reduce) {
            .fire-text {
                animation: none !important;
            }
        }

        .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(--white-color);
        }





        /* 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;
        }





        /* 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;
            }
        }


        /* 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;
        }




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

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

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

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

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

        .dsgvo h5 {
            font-size: 1.1rem;
            font-weight: bold;
            color: #fff;
            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-success {
            background-color: #1a732e !important;
        }

        .btn-outline-success {
            color: #2e753e;
            border-color: #2e753e !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: black !important;
            border: 2px solid black;
        }

        .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: black !important;
            border: 2px solid black;
        }

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

        :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, 0.8) !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, 0.8) !important;
        }

        .focus-visible-logo:focus-visible {
            outline: 2px dashed #035fff !important;
            outline-offset: 2px !important;
            color: #035fff !important;
            background-color: rgba(0, 0, 0, 0.8) !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, 0.8) !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;
        }