.elementor-3063 .elementor-element.elementor-element-84d2a80{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:767px){.elementor-3063 .elementor-element.elementor-element-84d2a80{--justify-content:center;}}/* Start custom CSS for html, class: .elementor-element-93e344d */body {
            /* Removed font-family from body to prevent global impact */
            margin: 0;
            padding: 0;
            overflow-x: hidden; /* Prevent horizontal scroll */
        }

        /* --- Parallax Specific CSS --- */
        /* The main wrapper for the parallax section */
        .parallax-wrapper {
            position: relative;
            overflow: hidden; /* Ensures content doesn't spill out */
            height: 60vh; /* Set a height for the parallax section */
            display: flex; /* Use flex to center content */
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            /* Temporary: Add a border to see the wrapper's boundaries */
            /* border: 2px solid red; */
        }

        /* The background element that will move */
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(https://az-auslandsakademie.de/wp-content/uploads/2025/07/globebg-1-2-e1753976547295.jpg);
            background-size: cover;
            background-position: center center;
            transform: translateY(0); /* Initial position */
            will-change: transform; /* Optimize for smooth animation */
            z-index: -1; /* Place it behind the content */
            /* Temporary: Add a background color to see if this element is visible */
            /* background-color: rgba(0, 0, 255, 0.3); */
            /* Temporary: Add a border to see its boundaries */
            /* border: 2px dashed blue; */
        }

        /* --- Elementor Specific Overrides for Mobile --- */
        /* This media query targets mobile devices as per your original CSS */
        @media (max-width: 767px) {
            /* Hide the original background image on the Elementor element */
            /* This is crucial to prevent double backgrounds or conflicts */
            .elementor-1183 .elementor-element.elementor-element-28d0641:not(.elementor-motion-effects-element-type-background),
            .elementor-1183 .elementor-element.elementor-element-28d0641 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
                background-image: none !important; /* Force override Elementor's background */
                background-attachment: scroll !important; /* Ensure it's not fixed if Elementor applies it */
            }

            /* Ensure the Elementor section itself is visible and positioned correctly */
            .elementor-1183.elementor-element.elementor-element-28d0641 {
                position: relative; /* Ensure it respects z-index */
                z-index: 1; /* Place it above the parallax background */
                width: 100%; /* Ensure it takes full width */
                height: auto; /* Allow content to define height */
            }
        }

        /* General styling for Elementor-like content for demonstration */
        /* If these elements exist and you want them to use Inter, you'd apply font-family here */
/*        .elementor-widget-container h1,
        .elementor-widget-container p {
            color: white;
            text-align: center;
            padding: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add some shadow for readability */
            /* font-family: 'Inter', sans-serif; /* Uncomment if you want these specific elements to use Inter */
        }*/

        /* Styles for content sections below the parallax for scrolling */
        .scroll-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #333;
            border-top: 1px solid #ccc;
        }
        
                                                /* All CSS moved inside the container for Elementor compatibility */
                                        .svg-container {
                                            font-family: 'Inter', sans-serif; /* Apply font here */
                                            display: flex; /* Re-added flex for centering within the container */
                                            justify-content: center;
                                            align-items: center;
                                            flex-direction: column; /* Stack content vertically if needed */
                                        }

                                        .node-group {
                                            cursor: pointer;
                                        }

                                        .circle-node {
                                            fill: #D2E3F0;
                                            stroke: #ffffff;
                                            stroke-width: 2px;
                                            transition: fill 0.3s ease;
                                        }

                                        .node-group:hover .circle-node {
                                            fill: #0069B5;
                                        }

                                        .circle-text {
                                            font-size: 0.7rem;
                                            fill: #0069B5;
                                            text-anchor: middle;
                                            dominant-baseline: middle;
                                            pointer-events: none;
                                            transition: fill 0.3s ease;
                                            font-weight: bold;
                                        }

                                        .node-group:hover .circle-text {
                                            fill: #ffffff;
                                        }

                                        .main-text {
                                            font-size: 1.3rem;
                                            fill: white;
                                            text-anchor: middle;
                                            dominant-baseline: middle;
                                            font-weight: 600;
                                        }

                                        @media (min-width: 480px) {
                                            .circle-text {
                                                font-size: 0.75rem;
                                            }
                                            .main-text {
                                                font-size: 1.4rem;
                                            }
                                        }

                                        @media (min-width: 640px) {
                                            .circle-text {
                                                font-size: 0.8rem;
                                            }
                                            .main-text {
                                                font-size: 1.5rem;
                                            }
                                        }

                                        @media (min-width: 768px) {
                                            .circle-text {
                                                font-size: 0.85rem;
                                            }
                                            .main-text {
                                                font-size: 1.6rem;
                                            }
                                        }

                                        @media (min-width: 1024px) {
                                            .circle-text {
                                                font-size: 0.9rem;
                                            }
                                            .main-text {
                                                font-size: 1.7rem;
                                            }
                                        }/* End custom CSS */