.elementor-kit-6{--e-global-color-primary:#2EB2FF;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#2EB2FF;--e-global-color-6f21d91:#2EB2FF;--e-global-color-f11102d:#FD7C18;--e-global-color-a69fc12:#1AAF77;--e-global-typography-primary-font-family:"Oswald";--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:1.1em;--e-global-typography-secondary-font-family:"Oswald";--e-global-typography-secondary-font-weight:600;--e-global-typography-secondary-line-height:1.1em;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{background-color:var( --e-global-color-primary );font-family:"Inter", Sans-serif;font-size:14px;font-weight:600;text-transform:uppercase;color:#FFFFFF;border-style:none;border-radius:50px 50px 50px 50px;padding:16px 25px 16px 25px;}.elementor-kit-6 button:hover,.elementor-kit-6 button:focus,.elementor-kit-6 input[type="button"]:hover,.elementor-kit-6 input[type="button"]:focus,.elementor-kit-6 input[type="submit"]:hover,.elementor-kit-6 input[type="submit"]:focus,.elementor-kit-6 .elementor-button:hover,.elementor-kit-6 .elementor-button:focus{background-color:var( --e-global-color-f11102d );color:#FFFFFF;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* 1. Define the animation property ONCE for the whole site */
@property --border-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

/* 2. The reusable class */
.neon-glow-container {
    --border-angle: 0turn; 
    position: relative;
    padding: 10px !important; 
    border-radius: 10px !important; 
    box-shadow: 
        inset 0 0 0 2px #0b3d6e, 
        0 0 15px rgba(0, 132, 255, 0.2); 
    border: none !important; 
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* 3. The moving spark */
.neon-glow-container::before,
.neon-glow-container::after {
    content: "";
    position: absolute;
    inset: 0px; 
    z-index: 10;
    border-radius: inherit;
    padding: 3px; 
    background: conic-gradient(
        from var(--border-angle),
        transparent 65%, 
        rgba(0, 195, 255, 0.5) 85%, 
        rgba(0, 132, 255, 0.9) 97%, 
        #ffffff 100% 
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: glowSpin 6s linear infinite; 
}

/* 4. The outer glow */
.neon-glow-container::after {
    filter: blur(8px); 
    z-index: 9;
}

/* 5. The continuous rotation animation */
@keyframes glowSpin {
    to {
        --border-angle: 1turn;
    }
}/* End custom CSS */