.elementor-4206 .elementor-element.elementor-element-9c2aebb{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:stretch;--gap:0px 10px;--row-gap:0px;--column-gap:10px;--overlay-opacity:1;--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4206 .elementor-element.elementor-element-9c2aebb .elementor-repeater-item-cb32aaf.jet-parallax-section__layout .jet-parallax-section__image{background-size:auto;}.elementor-4206 .elementor-element.elementor-element-f064c64{--display:flex;--min-height:0px;--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;--justify-content:flex-start;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--z-index:0;}.elementor-4206 .elementor-element.elementor-element-f064c64.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-4206 .elementor-element.elementor-element-3860357 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-4206 .elementor-element.elementor-element-3860357.elementor-element{--order:-99999 /* order start hack */;}.elementor-4206 .elementor-element.elementor-element-9c2aebb::before, .elementor-4206 .elementor-element.elementor-element-9c2aebb > .elementor-background-video-container::before, .elementor-4206 .elementor-element.elementor-element-9c2aebb > .e-con-inner > .elementor-background-video-container::before, .elementor-4206 .elementor-element.elementor-element-9c2aebb > .elementor-background-slideshow::before, .elementor-4206 .elementor-element.elementor-element-9c2aebb > .e-con-inner > .elementor-background-slideshow::before, .elementor-4206 .elementor-element.elementor-element-9c2aebb > .elementor-motion-effects-container > .elementor-motion-effects-layer::before{--background-overlay:'';}.elementor-4206 .elementor-element.elementor-element-0d06857{--display:flex;--justify-content:flex-end;--flex-wrap:nowrap;--margin-top:150px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-4206 .elementor-element.elementor-element-ebbb750{--display:flex;--justify-content:flex-end;--flex-wrap:nowrap;--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-4206 .elementor-element.elementor-element-91360fb{--display:flex;--justify-content:flex-end;--flex-wrap:nowrap;--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}@media(max-width:1024px){.elementor-4206 .elementor-element.elementor-element-9c2aebb{--padding-top:0px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}}@media(max-width:767px){.elementor-4206 .elementor-element.elementor-element-3860357 > .elementor-widget-container{margin:-11px -11px -11px -11px;}.elementor-4206 .elementor-element.elementor-element-9c2aebb{--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for container, class: .elementor-element-9c2aebb */body {
            margin: 0;
           
            text-align: center;
            background-color: #000531; /* Static base background color */
            position: relative; /* Needed for positioning the pseudo-element */
            height: 100vh;
        }

        /* Create a pseudo-element to hold the animated aurora glow */
        body::before {
            content: '';
            position: absolute;
           top: -10vh;
            left: 0;
            width: 100%;
            height: 35vh; /* Set the height of the glow area */
            z-index: 0; /* Place it behind the main content */

            /* A linear gradient with repeating colors for a seamless loop. */
            background: linear-gradient(to right, 
                #0534bb, 
                #46fffc,
                #fdebfe, 
                #0534bb,
                #0534bb);
            
            /* The blur filter is key to creating the soft, aurora-like glow */
            filter: blur(150px);
            
            /* Make the background much wider than the screen for scrolling */
            background-size: 200% 100%;
            
            /* A slow, continuous linear animation for a subtle drift */
            animation: auroraDrift 30s linear infinite;
        }

        /* The @keyframes rule defines a simple, continuous horizontal scroll */
        @keyframes auroraDrift {
            from {
                background-position: 0% 0%;
            }
            to {
                background-position: -200% 0%;
            }
        }/* End custom CSS */