{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/al7tHO15Oyq9AxBfST8y/ppa8d8irr05J7U57xs8P/TextEffectOnScroll_Prod.js", "ssg:https://framerusercontent.com/modules/9xzaRfKv3sQdWOjul6UZ/hLy7iTlywIdNNy3yDP4w/sZWCfonda.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,forwardRef,useRef,useMemo,memo}from\"react\";import{cubicBezier}from\"framer-motion\";const DEFAULT_ANIMATE_PROPS={opacity:1,scale:1,blur:0,rotate:0,rotateX:0,rotateY:0,rotateZ:0,skewX:0,skewY:0,x:0,y:0};const TOP=0;const BOTTOM=1;const CENTER=.5;const VIEWPORT_OFFSETS={bottomToCenter:[BOTTOM,CENTER],bottomToTop:[BOTTOM,TOP],centerToTop:[TOP,CENTER],topToBottom:[TOP,BOTTOM]};const easeInOut=cubicBezier(.44,0,.56,1);/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n */export default function TextEffectOnScroll(props){var _effect_rotate;const{effect}=props;const id=useMemo(generateRandomString,[]);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const ref=useRef(null);const animate={};const initial={};let willChangeOpacity=false;let willChangeTransform=false;let willChangeFilter=false;if(effect.opacity!==1){animate.opacity=1;initial.opacity=effect.opacity;willChangeOpacity=true;}if(effect.scale!==1){animate.scale=1;initial.scale=effect.scale;willChangeTransform=true;}if(effect.blur!==0){animate.blur=0;initial.blur=effect.blur;willChangeFilter=true;}if(effect.rotate){if(effect.rotate.type===\"3d\"){if(effect.rotate.x!==0){animate.rotateX=0;initial.rotateX=effect.rotate.x;willChangeTransform=true;}if(effect.rotate.y!==0){animate.rotateY=0;initial.rotateY=effect.rotate.y;willChangeTransform=true;}if(effect.rotate.z!==0){animate.rotateZ=0;initial.rotateZ=effect.rotate.z;willChangeTransform=true;}}else{if(effect.rotate.rotation!==0){animate.rotate=0;initial.rotate=effect.rotate.rotation;willChangeTransform=true;}}}if(effect.skew){if(effect.skew.x!==0){animate.skewX=0;initial.skewX=effect.skew.x;willChangeTransform=true;}if(effect.skew.y!==0){animate.skewY=0;initial.skewY=effect.skew.y;willChangeTransform=true;}}if(effect.offset){var _effect_offset,_effect_offset1;if(((_effect_offset=effect.offset)===null||_effect_offset===void 0?void 0:_effect_offset.x)!==0){var _effect_offset2;animate.x=0;initial.x=(_effect_offset2=effect.offset)===null||_effect_offset2===void 0?void 0:_effect_offset2.x;willChangeTransform=true;}if(((_effect_offset1=effect.offset)===null||_effect_offset1===void 0?void 0:_effect_offset1.y)!==0){var _effect_offset3;animate.y=0;initial.y=(_effect_offset3=effect.offset)===null||_effect_offset3===void 0?void 0:_effect_offset3.y;willChangeTransform=true;}}let willChangeProps=[];if(willChangeOpacity)willChangeProps.push(\"opacity\");if(willChangeTransform)willChangeProps.push(\"transform\");if(willChangeFilter)willChangeProps.push(\"filter\");const willChange=willChangeProps.join(\", \");return /*#__PURE__*/_jsx(SplitText,{ref:ref,id:id,style:{color:props.color,userSelect:props.userSelect?\"auto\":\"none\",margin:0,perspective:((_effect_rotate=effect.rotate)===null||_effect_rotate===void 0?void 0:_effect_rotate.type)===\"3d\"?`${effect.rotate.perspective}px`:undefined,...props.font,...props.style},text:props.text,animate:isCanvas?{}:animate,initial:isCanvas?{}:initial,animation:props.animation,offset:props.offset,gap:props.lineGap,willChange:willChange,noTransformEffects:!willChangeTransform,splitCharacters:props.per===\"character\",tag:props.tag,origin:effect.origin});}TextEffectOnScroll.displayName=\"Text Effect on Scroll\";addPropertyControls(TextEffectOnScroll,{text:{type:ControlType.String,defaultValue:\"Learn Framer With Framer University\",placeholder:\"Text\",displayTextArea:true},effect:{type:ControlType.Object,icon:\"effect\",controls:{opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01},scale:{type:ControlType.Number,defaultValue:1,min:0,max:10,step:.1},blur:{type:ControlType.Number,defaultValue:0,min:0,step:1},rotate:{type:ControlType.Object,optional:true,controls:{type:{type:ControlType.Enum,options:[\"2d\",\"3d\"],optionTitles:[\"2D\",\"3D\"],displaySegmentedControl:true},rotation:{type:ControlType.Number,defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.type!==\"2d\"},x:{type:ControlType.Number,defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.type!==\"3d\"},y:{type:ControlType.Number,defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.type!==\"3d\"},z:{type:ControlType.Number,defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.type!==\"3d\"},perspective:{type:ControlType.Number,defaultValue:1200,min:1,max:1e4,step:1,hidden:props=>props.type!==\"3d\"}}},skew:{type:ControlType.Object,optional:true,controls:{x:{type:ControlType.Number,defaultValue:0,min:-90,max:90,step:1,unit:\"\\xb0\"},y:{type:ControlType.Number,defaultValue:0,min:-90,max:90,step:1,unit:\"\\xb0\"}}},offset:{type:ControlType.Object,optional:true,controls:{x:{type:ControlType.Number,defaultValue:0,min:-500,max:500,step:1,unit:\"px\"},y:{type:ControlType.Number,defaultValue:0,min:-500,max:500,step:1,unit:\"px\"}}},origin:{type:ControlType.Object,controls:{x:{type:ControlType.Number,defaultValue:50,min:0,max:100,step:1,unit:\"%\"},y:{type:ControlType.Number,defaultValue:50,min:0,max:100,step:1,unit:\"%\"}}}}},animation:{type:ControlType.Enum,options:[\"bottomToCenter\",\"bottomToTop\",\"centerToTop\",\"topToBottom\",\"inAndOutQuick\",\"inAndOutSlow\"],optionTitles:[\"In (Quick)\",\"In (Slow)\",\"Out (Quick)\",\"Out (Slow)\",\"In and Out (Quick)\",\"In and Out (Slow)\"]},per:{type:ControlType.Enum,options:[\"character\",\"word\"],optionTitles:[\"Letter\",\"Word\"],displaySegmentedControl:true},offset:{type:ControlType.Number,defaultValue:10,min:0,max:100,step:.1,unit:\"%\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1}},color:{type:ControlType.Color,defaultValue:\"#000\"},lineGap:{type:ControlType.Number,defaultValue:0,min:0,step:1,displayStepper:true},userSelect:{type:ControlType.Boolean,defaultValue:false},tag:{type:ControlType.Enum,title:\"Tag\",defaultValue:\"p\",displaySegmentedControl:true,options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"],description:\"More components at [Framer University](https://frameruni.link/cc).\"}});const SplitText=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function SplitText({id,text,className,style,animate,initial,animation,offset,gap,willChange,noTransformEffects,splitCharacters=false,tag,origin},ref){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const elementsRef=useRef([]);const Tag=tag;const spanClassName=noTransformEffects?`${id}-span-no`:`${id}-span-yes`;const lines=useMemo(()=>{const textLines=text.split(\"\\n\");const lines=[];for(let i=0;i<textLines.length;i++){lines.push(textLines[i].split(/[ \\t]+/));}return lines;},[text]);useEffect(()=>{if(isCanvas){return;}const updateElements=topPosition=>{const viewportOffset=VIEWPORT_OFFSETS[animation];const viewportHeight=window.innerHeight;const totalElements=elementsRef.current.length;const updates=[];for(let i=0;i<totalElements;i++){const element=elementsRef.current[i];if(!element){continue;}const scrollY=(topPosition+(offset||0)*(i-totalElements/2))/viewportHeight;let progress=1;if(animation===\"inAndOutQuick\"){if(scrollY<=.3){progress=mapRange(scrollY,0,.4,0,1);}else if(scrollY>=.7){progress=mapRange(scrollY,.7,1,1,0);}}else if(animation===\"inAndOutSlow\"){if(scrollY<=.5){progress=mapRange(scrollY,0,.5,0,1);}else{progress=mapRange(scrollY,.5,1,1,0);}}else{progress=mapRange(scrollY,viewportOffset[0],viewportOffset[1],0,1);}progress=Math.max(0,Math.min(1,easeInOut(progress)));const transforms=[];const styles={};const opacity=getValue(animate,initial,\"opacity\",progress);if(opacity!==undefined){styles.opacity=String(opacity);}const scale=getValue(animate,initial,\"scale\",progress);if(scale!==undefined){transforms.push(`scale(${scale})`);}const blur=getValue(animate,initial,\"blur\",progress);if(blur!==undefined){element.style.filter=`blur(${blur}px)`;}const rotate=getValue(animate,initial,\"rotate\",progress);if(rotate!==undefined){transforms.push(`rotate(${rotate}deg)`);}const rotateX=getValue(animate,initial,\"rotateX\",progress);if(rotateX!==undefined){transforms.push(`rotateX(${rotateX}deg)`);}const rotateY=getValue(animate,initial,\"rotateY\",progress);if(rotateY!==undefined){transforms.push(`rotateY(${rotateY}deg)`);}const rotateZ=getValue(animate,initial,\"rotateZ\",progress);if(rotateZ!==undefined){transforms.push(`rotateZ(${rotateZ}deg)`);}const skewX=getValue(animate,initial,\"skewX\",progress);if(skewX!==undefined){transforms.push(`skewX(${skewX}deg)`);}const skewY=getValue(animate,initial,\"skewY\",progress);if(skewY!==undefined){transforms.push(`skewY(${skewY}deg)`);}const offsetX=getValue(animate,initial,\"x\",progress);if(offsetX!==undefined){transforms.push(`translateX(${offsetX}px)`);}const offsetY=getValue(animate,initial,\"y\",progress);if(offsetY!==undefined){transforms.push(`translateY(${offsetY}px)`);}if(transforms.length){styles.transform=transforms.join(\" \");}updates.push({element,styles});}// Batch DOM writes\nrequestAnimationFrame(()=>{updates.forEach(update=>{if(!update)return;const{element,styles}=update;Object.assign(element.style,styles);});});};const cleanup=trackElementPosition(ref,updateElements);return cleanup;},[animate,initial]);let index=0;const createLineChildren=(lineIndex,lineWords)=>{return lineWords.map((word,wordIndex)=>{if(splitCharacters){return /*#__PURE__*/_jsx(\"span\",{className:`${id}-word-wrapper`,children:(word+(wordIndex<lineWords.length-1?\" \":\"\")).split(\"\").map((char,charIndex)=>{const savedIndex=index;index++;return /*#__PURE__*/_jsx(\"span\",{ref:el=>{if(el)elementsRef.current[savedIndex]=el;},className:spanClassName,children:char},`${lineIndex}-${wordIndex}-${charIndex}`);})},`${lineIndex}-${wordIndex}`);}const savedIndex=index;index++;return /*#__PURE__*/_jsx(\"span\",{ref:el=>{if(el)elementsRef.current[savedIndex]=el;},className:spanClassName,children:word+(wordIndex<lineWords.length-1?\" \":\"\")},`${lineIndex}-${wordIndex}`);});};var _origin_x,_origin_y;return /*#__PURE__*/_jsxs(Tag,{className:className,ref:ref,style:{...style,...lines.length===1?{}:{display:\"flex\",flexDirection:\"column\",gap:gap},transformStyle:\"preserve-3d\",whiteSpace:(style===null||style===void 0?void 0:style.width)?undefined:\"nowrap\"},children:[/*#__PURE__*/_jsx(\"style\",{children:`\n\t\t\t\t.${id}-line {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\ttransform-style: preserve-3d;\n\t\t\t\t}\n\t\t\t\t.${id}-word-wrapper {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\ttransform-style: preserve-3d;\n\t\t\t\t\twhite-space: pre;\n\t\t\t\t}\n\t\t\t\t.${id}-span-no {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\ttransform-style: preserve-3d;\n\t\t\t\t\twhite-space: pre;\n\t\t\t\t}\n\t\t\t\t.${id}-span-yes {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\ttransform-style: preserve-3d;\n\t\t\t\t\twhite-space: pre;\n\t\t\t\t}\n\t\t\t\t.${id}-span-no,\n\t\t\t\t.${id}-span-yes {\n\t\t\t\t\twill-change: ${willChange};\n\t\t\t\t\ttransform-origin: ${(_origin_x=origin===null||origin===void 0?void 0:origin.x)!==null&&_origin_x!==void 0?_origin_x:50}% ${(_origin_y=origin===null||origin===void 0?void 0:origin.y)!==null&&_origin_y!==void 0?_origin_y:50}%;\n\t\t\t\t}\n\t\t\t\t`}),lines.length===1?createLineChildren(0,lines[0]):lines.map((lineWords,lineIndex)=>/*#__PURE__*/_jsx(\"span\",{className:`${id}-line`,children:createLineChildren(lineIndex,lineWords)},lineIndex))]});}));function getValue(animate,initial,key,progress){if(!animate||!initial||!animate.hasOwnProperty(key)){return undefined;}const value=animate[key];var _initial_key,_ref;const initialValue=(_ref=(_initial_key=initial===null||initial===void 0?void 0:initial[key])!==null&&_initial_key!==void 0?_initial_key:DEFAULT_ANIMATE_PROPS[key])!==null&&_ref!==void 0?_ref:0;if(progress<=0){return initialValue;}else if(progress>=1){return value;}else{return initialValue+(value-initialValue)*progress;}}const trackElementPosition=(ref,callback)=>{let rafId=null;let lastPosition=null;let throttleTimeout=null;const updatePosition=()=>{if(ref.current){const element=ref.current;const rect=element.getBoundingClientRect();// Add throttling to reduce updates\nif(throttleTimeout===null){throttleTimeout=window.setTimeout(()=>{if(lastPosition!==rect.top){lastPosition=rect.top;callback(rect.top);}throttleTimeout=null;},16)// Approximately 60fps\n;}}rafId=requestAnimationFrame(updatePosition);};// Start the animation frame loop\nrafId=requestAnimationFrame(updatePosition);// Return a cleanup function\nreturn()=>{if(rafId!==null){cancelAnimationFrame(rafId);}};};function mapRange(value,fromLow,fromHigh,toLow,toHigh){if(fromLow===fromHigh){return toLow;}const percentage=(value-fromLow)/(fromHigh-fromLow);return toLow+percentage*(toHigh-toLow);}const CHARACTERS=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\";function generateRandomString(){let result=\"\";for(let i=0;i<8;i++){const randomIndex=Math.floor(Math.random()*CHARACTERS.length);result+=CHARACTERS.charAt(randomIndex);}return result;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextEffectOnScroll\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TextEffectOnScroll_Prod.map", "// Generated by Framer (f4ba5e0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import TextEffectOnScroll from\"https://framerusercontent.com/modules/al7tHO15Oyq9AxBfST8y/ppa8d8irr05J7U57xs8P/TextEffectOnScroll_Prod.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Mailchimp from\"https://framerusercontent.com/modules/tEJqoun4MtBed1OjNwKy/oIG6qvkLwFygGXycIYZs/Input_Mailchimp.js\";import FAQContent from\"#framer/local/canvasComponent/dgIDyHcif/dgIDyHcif.js\";import MenuButton from\"#framer/local/canvasComponent/DvWRO0b4E/DvWRO0b4E.js\";import Button from\"#framer/local/canvasComponent/l6mxxR6Q4/l6mxxR6Q4.js\";import AftermovieHoverButton from\"#framer/local/canvasComponent/MPKg12wDz/MPKg12wDz.js\";import Footer from\"#framer/local/canvasComponent/oRWGixCeP/oRWGixCeP.js\";import HeroImage from\"#framer/local/canvasComponent/Q08gIuSMr/Q08gIuSMr.js\";import NetworkIcon from\"#framer/local/canvasComponent/yBzhe22cu/yBzhe22cu.js\";import SectionLine from\"#framer/local/canvasComponent/zDmGnzzas/zDmGnzzas.js\";import*as sharedStyle1 from\"#framer/local/css/aDWb2zcTc/aDWb2zcTc.js\";import*as sharedStyle3 from\"#framer/local/css/boRPtIVM0/boRPtIVM0.js\";import*as sharedStyle4 from\"#framer/local/css/nzJIQ6kPv/nzJIQ6kPv.js\";import*as sharedStyle2 from\"#framer/local/css/R1QbpyENi/R1QbpyENi.js\";import*as sharedStyle from\"#framer/local/css/ugAGChLdI/ugAGChLdI.js\";import metadataProvider from\"#framer/local/webPageMetadata/sZWCfonda/sZWCfonda.js\";const MotionDivWithFX=withFX(motion.div);const HeroImageFonts=getFonts(HeroImage);const ContainerWithFX=withFX(Container);const ButtonFonts=getFonts(Button);const MenuButtonFonts=getFonts(MenuButton);const NetworkIconFonts=getFonts(NetworkIcon);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SectionLineFonts=getFonts(SectionLine);const RichTextWithFX=withFX(RichText);const VideoFonts=getFonts(Video);const MotionAWithFX=withFX(motion.a);const TextEffectOnScrollFonts=getFonts(TextEffectOnScroll);const Video1Fonts=getFonts(Video1);const MailchimpFonts=getFonts(Mailchimp);const FAQContentFonts=getFonts(FAQContent);const FooterFonts=getFonts(Footer);const AftermovieHoverButtonFonts=getFonts(AftermovieHoverButton);const breakpoints={Occl_Pp7a:\"(max-width: 809px)\",qFKrY1dkA:\"(min-width: 810px) and (max-width: 1199px)\",rDXqt5Pgg:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tUlvI\";const variantClassNames={Occl_Pp7a:\"framer-v-181srz9\",qFKrY1dkA:\"framer-v-14uwlik\",rDXqt5Pgg:\"framer-v-1jv9cub\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition1={delay:1.7,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:500,y:0};const transition2={delay:.1,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:500,y:0};const transition3={delay:1.6,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:500,y:0};const transition4={delay:.2,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:0,delay:1.4,duration:.4,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:0,delay:.7,duration:.4,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition7={bounce:.2,delay:1.3,duration:.2,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:50,y:0};const transition8={delay:.4,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:50,y:0};const transition9={bounce:.2,delay:1.2,duration:.2,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:50,y:0};const transition10={delay:.5,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={bounce:.2,delay:1.1,duration:.2,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:50,y:0};const transition12={delay:.6,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transition13={bounce:.2,delay:1,duration:.2,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:50,y:0};const transition14={delay:.7,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const transition15={bounce:.2,delay:.9,duration:.2,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,x:50,y:0};const transition16={delay:.8,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition16,x:0,y:0};const transition17={bounce:.2,delay:.8,duration:.2,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition17,x:50,y:0};const transition18={delay:.9,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation20={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition18,x:0,y:0};const transition19={bounce:.2,delay:.6,duration:.2,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition19,x:50,y:0};const transition20={delay:1.1,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition20,x:0,y:0};const transition21={bounce:.2,delay:.5,duration:.2,type:\"spring\"};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition21,x:50,y:0};const transition22={delay:1.2,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation24={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition22,x:0,y:0};const transition23={bounce:.2,delay:.4,duration:.2,type:\"spring\"};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition23,x:50,y:0};const transition24={delay:1.3,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation26={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition24,x:0,y:0};const transition25={bounce:.2,delay:.3,duration:.2,type:\"spring\"};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition25,x:50,y:0};const transition26={delay:1.4,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation28={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition26,x:0,y:0};const transition27={bounce:.2,delay:.2,duration:.2,type:\"spring\"};const animation29={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition27,x:50,y:0};const transition28={delay:1.5,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation30={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition28,x:0,y:0};const transition29={bounce:0,delay:1.3,duration:.4,type:\"spring\"};const animation31={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition29,x:0,y:0};const animation32={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition29,x:0,y:0};const animation33={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition30={bounce:0,delay:.2,duration:.4,type:\"spring\"};const animation34={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition30,x:0,y:0};const animation35={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transition31={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation36={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition31,x:0,y:0};const animation37={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:45};const transition32={bounce:0,delay:0,duration:.7,type:\"spring\"};const animation38={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition32,x:0,y:45};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"rDXqt5Pgg\",Phone:\"Occl_Pp7a\",Tablet:\"qFKrY1dkA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rDXqt5Pgg\"};};const transition33={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={alignment:\"center\",component:AftermovieHoverButton,offset:{x:0,y:-15},placement:\"bottom\",transition:transition33,variant:\"uXG0Cezab\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const wByzPmAtI3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Occl_Pp7a\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Occl_Pp7a\")return true;return false;};const elementId=useRouteElementId(\"fWXhEK3u0\");const elementId1=useRouteElementId(\"BiFvGvtRX\");const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId2=useRouteElementId(\"KQ_ldnjL_\");const elementId3=useRouteElementId(\"I7OcchO4_\");const ref4=React.useRef(null);useCustomCursors({\"11k0h9y\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"rDXqt5Pgg\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1jv9cub\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ats2u\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:40,ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-20ods2\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:70,__perspectiveFX:false,__targetOpacity:1,className:\"framer-upi21n-container\",nodeId:\"qI8z8POZY\",rendersWithMotion:true,scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(HeroImage,{height:\"100%\",id:\"qI8z8POZY\",layoutId:\"qI8z8POZY\",style:{height:\"100%\",width:\"100%\"},wFx2ADbTX:addImageAlt({src:\"https://framerusercontent.com/images/WaNO5fY6pkDztNbKJd2o1bZ1Q.jpeg\",srcSet:\"https://framerusercontent.com/images/WaNO5fY6pkDztNbKJd2o1bZ1Q.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/WaNO5fY6pkDztNbKJd2o1bZ1Q.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WaNO5fY6pkDztNbKJd2o1bZ1Q.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WaNO5fY6pkDztNbKJd2o1bZ1Q.jpeg 2700w\"},\"\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6hay0c\",\"data-framer-name\":\"Nav Bar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ly3ko1\",\"data-framer-name\":\"Nav Bar Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1te0gyl\",\"data-framer-name\":\"Logo Wrapper\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"Vq7e1Cjv0\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:139,intrinsicWidth:1080,pixelHeight:278,pixelWidth:2160,sizes:\"271px\",src:\"https://framerusercontent.com/images/wTnYm08jgFcRszJpO702NhEU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wTnYm08jgFcRszJpO702NhEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/wTnYm08jgFcRszJpO702NhEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wTnYm08jgFcRszJpO702NhEU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wTnYm08jgFcRszJpO702NhEU.png 2160w\"},className:\"framer-1kjzfxm hidden-181srz9 framer-1el64ka\",\"data-framer-name\":\"Logo\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"iI5tvP8Rq\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:139,intrinsicWidth:1080,pixelHeight:662,pixelWidth:2160,positionX:\"left\",positionY:\"center\",sizes:\"101.5517px\",src:\"https://framerusercontent.com/images/9Zzg8oRHF47EUs5i90FA4RUt9Y.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/9Zzg8oRHF47EUs5i90FA4RUt9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/9Zzg8oRHF47EUs5i90FA4RUt9Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9Zzg8oRHF47EUs5i90FA4RUt9Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9Zzg8oRHF47EUs5i90FA4RUt9Y.png 2160w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:139,intrinsicWidth:1080,pixelHeight:662,pixelWidth:2160,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/9Zzg8oRHF47EUs5i90FA4RUt9Y.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/9Zzg8oRHF47EUs5i90FA4RUt9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/9Zzg8oRHF47EUs5i90FA4RUt9Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9Zzg8oRHF47EUs5i90FA4RUt9Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9Zzg8oRHF47EUs5i90FA4RUt9Y.png 2160w\"},className:\"framer-1wb6xhh hidden-1jv9cub hidden-14uwlik framer-1el64ka\",\"data-framer-name\":\"Logo\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uhyt7i\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hw6hwc\",\"data-framer-name\":\"Button Wrapper\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b5kVyaYwb\"},motionChild:true,nodeId:\"LkELvtncz\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1e4i1jp framer-1el64ka\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8aux4n-container\",nodeId:\"R2WRxZWqJ\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{variant:\"txRJIv0r6\"}},children:/*#__PURE__*/_jsx(Button,{aXOdNXlYC:\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",dcpmMu2q8:\"var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0))\",height:\"100%\",id:\"R2WRxZWqJ\",kAk0Cfjps:{borderColor:'var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',borderStyle:\"solid\",borderWidth:1},KW_qi_zT9:\"registration\",layoutId:\"R2WRxZWqJ\",OQNjxgHjG:\"rgb(255, 255, 255)\",sxvR8Ys6C:\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",TQJ9kzvKh:\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",variant:\"hr0FXSYfh\",VI0hI1ZIy:true,width:\"100%\",xiVSli18n:{borderColor:'var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',borderStyle:\"solid\",borderWidth:1}})})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1k65fn3-container\",id:\"1k65fn3\",nodeId:\"qGlezo0gv\",scopeId:\"sZWCfonda\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{variant:\"KAA7jdLw0\"}},children:/*#__PURE__*/_jsx(MenuButton,{height:\"100%\",id:\"qGlezo0gv\",layoutId:\"qGlezo0gv\",variant:\"tcZu9FT7s\",wByzPmAtI:wByzPmAtI3bnx0g({overlay}),width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1nuf555\"),\"data-framer-portal-id\":\"1k65fn3\",exit:{opacity:0,transition:{delay:1.6,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"KT1D30LUT\"),/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-1ql5e83\"),\"data-framer-portal-id\":\"1k65fn3\",exit:animation,initial:animation2,children:/*#__PURE__*/_jsx(motion.div,{animate:animation4,className:\"framer-9e8ap2\",\"data-framer-name\":\"Sidebar\",exit:animation3,initial:animation2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iam6aw\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v0gw8d\",\"data-framer-name\":\"Top Buttons\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"b5kVyaYwb\"},motionChild:true,nodeId:\"ZtytmWYOT\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-eow9py framer-1el64ka\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation6,className:\"framer-1ynb5k1-container\",exit:animation5,inComponentSlot:true,initial:animation7,nodeId:\"I7jqIac5a\",rendersWithMotion:true,scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{variant:\"txRJIv0r6\"}},children:/*#__PURE__*/_jsx(Button,{aXOdNXlYC:\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",dcpmMu2q8:\"var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0))\",height:\"100%\",id:\"I7jqIac5a\",kAk0Cfjps:{borderColor:'var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',borderStyle:\"solid\",borderWidth:1},KW_qi_zT9:\"registration\",layoutId:\"I7jqIac5a\",OQNjxgHjG:\"rgb(255, 255, 255)\",sxvR8Ys6C:\"var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0))\",TQJ9kzvKh:\"var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0))\",variant:\"hr0FXSYfh\",VI0hI1ZIy:true,width:\"100%\",xiVSli18n:{borderColor:'var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0)) /* {\"name\":\"Orange\"} */',borderStyle:\"solid\",borderWidth:1}})})})})})}),/*#__PURE__*/_jsx(motion.div,{animate:animation6,className:\"framer-1kpwb2\",exit:animation5,initial:animation7,onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ly3o7z-container\",inComponentSlot:true,nodeId:\"bg1qaK2ny\",rendersWithMotion:true,scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{variant:\"gVXBoht9p\"}},children:/*#__PURE__*/_jsx(MenuButton,{height:\"100%\",id:\"bg1qaK2ny\",layoutId:\"bg1qaK2ny\",variant:\"VLNO8e3Og\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cx4gys\",\"data-framer-name\":\"Navigation\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rjrqcr\",\"data-framer-name\":\"General Nav\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",\"--framer-text-transform\":\"uppercase\"},children:\"General\"})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",\"--framer-text-transform\":\"uppercase\"},children:\"General\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",\"--framer-text-transform\":\"uppercase\"},children:\"General\"})}),className:\"framer-8nmj23\",exit:animation8,fonts:[\"CUSTOM;Industry Demi\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sZWCfonda\"},motionChild:true,nodeId:\"nPvgGEshX\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"About\"})})})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sZWCfonda\"},motionChild:true,nodeId:\"nPvgGEshX\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"About\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation12,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sZWCfonda\"},motionChild:true,nodeId:\"nPvgGEshX\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"About\"})})})}),className:\"framer-ycoth1\",exit:animation11,fonts:[\"CUSTOM;Industry Bold\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JrIFDGfFN\"},motionChild:true,nodeId:\"JI49nD_YK\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"Sponsors\"})})})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JrIFDGfFN\"},motionChild:true,nodeId:\"JI49nD_YK\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"Sponsors\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation14,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JrIFDGfFN\"},motionChild:true,nodeId:\"JI49nD_YK\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"Sponsors\"})})})}),className:\"framer-1mpx24u\",exit:animation13,fonts:[\"CUSTOM;Industry Bold\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mNjDfL2e5\"},motionChild:true,nodeId:\"Z_VKyvLGz\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"ENTERTAINMENT\"})})})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mNjDfL2e5\"},motionChild:true,nodeId:\"Z_VKyvLGz\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"ENTERTAINMENT\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation16,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mNjDfL2e5\"},motionChild:true,nodeId:\"Z_VKyvLGz\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"ENTERTAINMENT\"})})})}),className:\"framer-ea9nec\",exit:animation15,fonts:[\"CUSTOM;Industry Bold\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uCunli8ht\"},motionChild:true,nodeId:\"BPKgJcuGK\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"accommodation\"})})})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uCunli8ht\"},motionChild:true,nodeId:\"BPKgJcuGK\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"accommodation\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation18,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uCunli8ht\"},motionChild:true,nodeId:\"BPKgJcuGK\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"accommodation\"})})})}),className:\"framer-1htck0z\",exit:animation17,fonts:[\"CUSTOM;Industry Bold\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ljws89dDE\"},motionChild:true,nodeId:\"QCldq58Tw\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"Contact\"})})})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ljws89dDE\"},motionChild:true,nodeId:\"QCldq58Tw\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"Contact\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation20,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ljws89dDE\"},motionChild:true,nodeId:\"QCldq58Tw\",openInNewTab:false,scopeId:\"sZWCfonda\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1v8vzvv\",\"data-styles-preset\":\"ugAGChLdI\",children:\"Contact\"})})})}),className:\"framer-sugej9\",\"data-framer-name\":\"Contact\",exit:animation19,fonts:[\"CUSTOM;Industry Bold\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i3lfp8\",\"data-framer-name\":\"Race Nav\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",\"--framer-text-transform\":\"uppercase\"},children:\"race (More details soon)\"})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",\"--framer-text-transform\":\"uppercase\"},children:\"race (More details soon)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation22,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",\"--framer-text-transform\":\"uppercase\"},children:\"race (More details soon)\"})}),className:\"framer-e0frku\",exit:animation21,fonts:[\"CUSTOM;Industry Demi\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"rules\"})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"rules\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation24,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"rules\"})}),className:\"framer-1kxnl3k\",exit:animation23,fonts:[\"CUSTOM;Industry Bold\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"results\"})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"results\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation26,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"results\"})}),className:\"framer-ag67ji\",exit:animation25,fonts:[\"CUSTOM;Industry Bold\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"schedule\"})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"schedule\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation28,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"schedule\"})}),className:\"framer-1anzj78\",exit:animation27,fonts:[\"CUSTOM;Industry Bold\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"categories\"})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"categories\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation30,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"rgb(133, 151, 158)\",\"--framer-text-transform\":\"uppercase\"},children:\"categories\"})}),className:\"framer-65639u\",exit:animation29,fonts:[\"CUSTOM;Industry Bold\"],initial:animation10,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oroaet\",\"data-framer-name\":\"Network\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation32,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1k9l933\",\"data-styles-preset\":\"aDWb2zcTc\",children:\"Network\"})}),className:\"framer-e9hlrb\",exit:animation31,fonts:[\"Inter\"],initial:animation7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{animate:animation33,className:\"framer-ral6s9\",\"data-framer-name\":\"Network Icons\",exit:animation5,initial:animation7,children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=KgtuRHaYFcM\",motionChild:true,nodeId:\"DvukGrBrS\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17mp82w framer-1el64ka\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1te5n8j-container\",inComponentSlot:true,nodeId:\"qZOyqG5eo\",rendersWithMotion:true,scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(NetworkIcon,{height:\"100%\",id:\"qZOyqG5eo\",Kl69uFq3K:\"var(--token-0887655a-0038-4cf6-852d-c5a5b996b094, rgb(26, 117, 159))\",layoutId:\"qZOyqG5eo\",variant:\"Fqgu4KNcH\",width:\"100%\",x5Tn2yONi:\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/arubahiwinds/\",motionChild:true,nodeId:\"lBWk5FE3t\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lnzbzl framer-1el64ka\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-heqiil-container\",inComponentSlot:true,nodeId:\"lj7OD65Rs\",rendersWithMotion:true,scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(NetworkIcon,{height:\"100%\",id:\"lj7OD65Rs\",Kl69uFq3K:\"var(--token-0887655a-0038-4cf6-852d-c5a5b996b094, rgb(26, 117, 159))\",layoutId:\"lj7OD65Rs\",variant:\"CQl1X5eFn\",width:\"100%\",x5Tn2yONi:\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/@arubahiwinds\",motionChild:true,nodeId:\"rhhSgX_ad\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vgfv65 framer-1el64ka\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6ngbxq-container\",inComponentSlot:true,nodeId:\"lynRSy1ZS\",rendersWithMotion:true,scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(NetworkIcon,{height:\"100%\",id:\"lynRSy1ZS\",Kl69uFq3K:\"var(--token-0887655a-0038-4cf6-852d-c5a5b996b094, rgb(26, 117, 159))\",layoutId:\"lynRSy1ZS\",variant:\"bciFE9f9r\",width:\"100%\",x5Tn2yONi:\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\"})})})})})]})]})]})})})]}),getContainer())})})]})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-45edut\",\"data-framer-name\":\"Bottom Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8hdjp\",\"data-framer-name\":\"Title and Countdown\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation34,className:\"framer-jcvwp6\",\"data-framer-appear-id\":\"jcvwp6\",\"data-framer-name\":\"Title\",initial:animation35,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"49px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"About\"})})},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"75px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"About\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IEJvbGQ=\",\"--framer-font-family\":'\"Industry Bold\", \"Industry Bold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"About\"})}),className:\"framer-1o9bpv1\",fonts:[\"CUSTOM;Industry Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uwxdur\",\"data-framer-name\":\"Scroll\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2pf4q\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 8\"><path d=\"M 6.515 4.765 L 4.265 7.015 C 4.195 7.086 4.099 7.126 4 7.126 C 3.9 7.126 3.804 7.086 3.734 7.015 L 1.484 4.765 C 1.337 4.619 1.337 4.381 1.484 4.234 C 1.631 4.087 1.869 4.087 2.015 4.234 L 3.625 5.844 L 3.625 1.25 C 3.625 1.043 3.793 0.875 4 0.875 C 4.207 0.875 4.375 1.043 4.375 1.25 L 4.375 5.844 L 5.985 4.234 C 6.131 4.087 6.369 4.087 6.516 4.234 C 6.663 4.38 6.663 4.618 6.516 4.765 Z\" fill=\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9813962070}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6kz61m\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 11\"><path d=\"M 8.959 6.552 L 5.865 9.646 C 5.768 9.743 5.637 9.798 5.5 9.798 C 5.363 9.798 5.231 9.743 5.134 9.646 L 2.041 6.552 C 1.839 6.351 1.839 6.024 2.041 5.822 C 2.242 5.62 2.569 5.62 2.771 5.822 L 4.984 8.035 L 4.984 1.719 C 4.984 1.434 5.215 1.203 5.5 1.203 C 5.785 1.203 6.016 1.434 6.016 1.719 L 6.016 8.035 L 8.229 5.821 C 8.431 5.62 8.758 5.62 8.959 5.821 C 9.161 6.023 9.161 6.35 8.959 6.552 Z\" fill=\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10984290141,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1azswd4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"scroll\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"scroll\"})}),className:\"framer-pkcr1y\",fonts:[\"CUSTOM;Industry Demi\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"37Th Edition\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"37Th Edition\"})}),className:\"framer-1fv380n\",fonts:[\"CUSTOM;Industry Demi\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ghn2iz\",\"data-framer-name\":\"Our Mission\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5a4r7o\",\"data-framer-name\":\"First Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,width:`calc(${componentViewport?.width||\"100vw\"} - 66px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition31},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation36,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ogf1nq-container\",nodeId:\"K_YBegs2o\",rendersWithMotion:true,scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(SectionLine,{BdeYWVkO6:\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",height:\"100%\",id:\"K_YBegs2o\",layoutId:\"K_YBegs2o\",LvJm3Nx8l:\"Our Mission\",pErSvIvhr:\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",style:{width:\"100%\"},tG6Ox_29V:\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",variant:\"km_xlKfHh\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rlbj2g\",\"data-framer-name\":\"MIssion Statement\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ek6z2t\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation37,__framer__exit:animation38,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1599pt9\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"8.048491761805286px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:\"Aruba Hi-Winds is all about \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:\"bringing people together \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:\"through the excitement of \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:\"watersports. Our goal is to \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:\"create a fun, inclusive event \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:\"that celebrates these sports \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"19.74025365257466px\"},children:\"on the beautiful island of Aruba. \"})]})}),viewBox:\"0 0 350.1974025365258 180\"},qFKrY1dkA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"20.21238368819579px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30.757599266046334px\"},children:\"Aruba Hi-Winds is all about bringing people together  through the \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30.757599266046334px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30.757599266046334px\"},children:\"excitement of watersports. Our goal is to create a fun, inclusive \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30.757599266046334px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30.757599266046334px\"},children:\"event that celebrates these sports on the beautiful island of Aruba. \"})]})}),viewBox:\"0 0 1134.3075759926605 120\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0luZHVzdHJ5IERlbWk=\",\"--framer-font-family\":'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',\"--framer-font-size\":\"20.21238368819579px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, rgb(10, 43, 59))\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30.757599266046334px\"},children:\"Aruba Hi-Winds is all about bringing people together  through the \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30.757599266046334px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30.757599266046334px\"},children:\"excitement of watersports. Our goal is to create a fun, inclusive \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30.757599266046334px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"30.757599266046334px\"},children:\"event that celebrates these sports on the beautiful island of Aruba. \"})]})}),className:\"framer-1hu1eaj\",fonts:[\"CUSTOM;Industry Demi\"],verticalAlignment:\"top\",viewBox:\"0 0 1134.3075759926605 111\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1k9l933\",\"data-styles-preset\":\"aDWb2zcTc\",style:{\"--framer-text-color\":\"var(--token-83443676-a2b9-4f35-9bf7-f21db9bfc0b4, rgb(65, 98, 115))\"},children:\"- Team Aruba Hi-Winds\"})}),className:\"framer-10oajwk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation37,__framer__exit:animation38,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uvtj22\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ndtkd\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1500,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg\",srcSet:\"https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg 1500w\"}},qFKrY1dkA:{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1500,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 66px, 1px) - 20px) / 3, 1px)`,src:\"https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg\",srcSet:\"https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1500,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 66px, 1px) - 40px) / 3, 1px)`,src:\"https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg\",srcSet:\"https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w1oNNXRvShBgVuNEqkALGK5E.jpg 1500w\"},className:\"framer-dquq04\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1500,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg\",srcSet:\"https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg 1500w\"}},qFKrY1dkA:{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1500,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 66px, 1px) - 20px) / 3, 1px)`,src:\"https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg\",srcSet:\"https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1500,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 66px, 1px) - 40px) / 3, 1px)`,src:\"https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg\",srcSet:\"https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JXoemFYDZ2wjOTSEJ0Wm2mz2Yxs.jpg 1500w\"},className:\"framer-apvq79\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1500,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg\",srcSet:\"https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg 1500w\"}},qFKrY1dkA:{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1500,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 66px, 1px) - 20px) / 3, 1px)`,src:\"https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg\",srcSet:\"https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1500,pixelWidth:1500,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 66px, 1px) - 40px) / 3, 1px)`,src:\"https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg\",srcSet:\"https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XQ0w9Ud1U0QFwY5YCsSNynATFE.jpg 1500w\"},className:\"framer-1wfkbym\"})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11zcevm\",\"data-framer-name\":\"Values\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ifohh8\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,width:`calc(${componentViewport?.width||\"100vw\"} - 66px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition31},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dwjcxl-container\",nodeId:\"d3LhgkafH\",rendersWithMotion:true,scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(SectionLine,{BdeYWVkO6:\"var(--token-f54d0ffd-3a78-49b1-b5a1-1b95adbb17b9, rgb(255, 215, 130))\",height:\"100%\",id:\"d3LhgkafH\",layoutId:\"d3LhgkafH\",LvJm3Nx8l:\"Core Values\",pErSvIvhr:\"var(--token-f54d0ffd-3a78-49b1-b5a1-1b95adbb17b9, rgb(255, 215, 130))\",style:{width:\"100%\"},tG6Ox_29V:\"var(--token-f54d0ffd-3a78-49b1-b5a1-1b95adbb17b9, rgb(255, 215, 130))\",variant:\"RFrPoftvj\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kbmii1\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation37,__framer__exit:animation38,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1plxusk\",\"data-framer-name\":\"Text & Description\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ov49pb\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation37,__framer__exit:animation38,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1k9l933\",\"data-styles-preset\":\"aDWb2zcTc\",style:{\"--framer-text-color\":\"var(--token-f54d0ffd-3a78-49b1-b5a1-1b95adbb17b9, rgb(255, 215, 130))\"},children:\"our pillars\"})}),className:\"framer-1arif22\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-76zehl\",\"data-styles-preset\":\"R1QbpyENi\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2c62be86-3d51-4a3d-96ad-327c9d5ac066, rgb(66, 45, 0))\"},children:\"What we stand for\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation37,__framer__exit:animation38,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-76zehl\",\"data-styles-preset\":\"R1QbpyENi\",style:{\"--framer-text-color\":\"var(--token-2c62be86-3d51-4a3d-96ad-327c9d5ac066, rgb(66, 45, 0))\"},children:\"What we stand for\"})}),className:\"framer-1k6d5ed\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j9vi8s\",\"data-styles-preset\":\"boRPtIVM0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fae6a16d-88f0-45ad-a09d-b188c1a9fec0, rgb(89, 79, 57))\"},children:\"At Aruba Hi-Winds, we value community, competition, and inclusivity. These principles guide everything we do, from thrilling competitions to creating unforgettable experiences under the Caribbean sun.\"})}),className:\"framer-2cyiuw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aggta1\",\"data-framer-name\":\"Card Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-146km7q\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation37,__framer__exit:animation38,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xlyk43\",\"data-framer-name\":\"Descriptions\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qs03a2\",\"data-framer-name\":\"Host 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o24ee4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-123xtx9\",\"data-framer-name\":\"Icon\",fill:'var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0)) /* {\"name\":\"Orange\"} */',intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M112 168a32 32 0 1 1-32-32 32 32 0 0 1 32 32ZM80 32a32 32 0 1 0 32 32 32 32 0 0 0-32-32Zm96 104a32 32 0 1 0 32 32 32 32 0 0 0-32-32Zm0-40a32 32 0 1 0-32-32 32 32 0 0 0 32 32Z\" opacity=\".2\"/><path d=\"M27.2 126.4a8 8 0 0 0 11.2-1.6 52 52 0 0 1 83.2 0 8 8 0 0 0 11.2 1.59 7.73 7.73 0 0 0 1.59-1.59 52 52 0 0 1 83.2 0 8 8 0 0 0 12.8-9.61A67.85 67.85 0 0 0 203 93.51a40 40 0 1 0-53.94 0 67.27 67.27 0 0 0-21 14.31 67.27 67.27 0 0 0-21-14.31 40 40 0 1 0-53.94 0A67.88 67.88 0 0 0 25.6 115.2a8 8 0 0 0 1.6 11.2ZM176 40a24 24 0 1 1-24 24 24 24 0 0 1 24-24Zm-96 0a24 24 0 1 1-24 24 24 24 0 0 1 24-24Zm123 157.51a40 40 0 1 0-53.94 0 67.27 67.27 0 0 0-21 14.31 67.27 67.27 0 0 0-21-14.31 40 40 0 1 0-53.94 0A67.88 67.88 0 0 0 25.6 219.2a8 8 0 1 0 12.8 9.6 52 52 0 0 1 83.2 0 8 8 0 0 0 11.2 1.59 7.73 7.73 0 0 0 1.59-1.59 52 52 0 0 1 83.2 0 8 8 0 0 0 12.8-9.61A67.85 67.85 0 0 0 203 197.51ZM80 144a24 24 0 1 1-24 24 24 24 0 0 1 24-24Zm96 0a24 24 0 1 1-24 24 24 24 0 0 1 24-24Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1k9l933\",\"data-styles-preset\":\"aDWb2zcTc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0))\"},children:\"Local & Community\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1k9l933\",\"data-styles-preset\":\"aDWb2zcTc\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0))\"},children:\"Local & Community\"})}),className:\"framer-ll48a7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j9vi8s\",\"data-styles-preset\":\"boRPtIVM0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fae6a16d-88f0-45ad-a09d-b188c1a9fec0, rgb(89, 79, 57))\"},children:\"Establishing a feeling of community that only Hi-Winds is able to create. Using local talent in our event preparations.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j9vi8s\",\"data-styles-preset\":\"boRPtIVM0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fae6a16d-88f0-45ad-a09d-b188c1a9fec0, rgb(89, 79, 57))\"},children:\"Establishing a feeling of community that only Hi-Winds is able to create. Using local talent in our event preparations.\"})}),className:\"framer-1erech4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oskrmo\",\"data-framer-name\":\"Host 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nq2gki\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pld9tm\",\"data-framer-name\":\"Icon\",fill:'var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0)) /* {\"name\":\"Orange\"} */',intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M200 48v63.1c0 39.7-31.75 72.6-71.45 72.9A72 72 0 0 1 56 112V48Z\" opacity=\".2\"/><path d=\"M232 64h-24V48a8 8 0 0 0-8-8H56a8 8 0 0 0-8 8v16H24A16 16 0 0 0 8 80v16a40 40 0 0 0 40 40h3.65A80.13 80.13 0 0 0 120 191.61V216H96a8 8 0 0 0 0 16h64a8 8 0 0 0 0-16h-24v-24.42c31.94-3.23 58.44-25.64 68.08-55.58H208a40 40 0 0 0 40-40V80a16 16 0 0 0-16-16ZM48 120a24 24 0 0 1-24-24V80h24v32q0 4 .39 8Zm144-8.9c0 35.52-29 64.64-64 64.9a64 64 0 0 1-64-64V56h128ZM232 96a24 24 0 0 1-24 24h-.5a81.81 81.81 0 0 0 .5-8.9V80h24Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1k9l933\",\"data-styles-preset\":\"aDWb2zcTc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0))\"},children:\"Competitive & Professional\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1k9l933\",\"data-styles-preset\":\"aDWb2zcTc\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0))\"},children:\"Competitive & Professional\"})}),className:\"framer-of1rw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j9vi8s\",\"data-styles-preset\":\"boRPtIVM0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fae6a16d-88f0-45ad-a09d-b188c1a9fec0, rgb(89, 79, 57))\"},children:\"Creating professional, well-organised, and safe competitions for all of our participants \u2013 both beginner and pro.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j9vi8s\",\"data-styles-preset\":\"boRPtIVM0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fae6a16d-88f0-45ad-a09d-b188c1a9fec0, rgb(89, 79, 57))\"},children:\"Creating professional, well-organised, and safe competitions for all of our participants \u2013 both beginner and pro.\"})}),className:\"framer-1f54z2v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k7smef\",\"data-framer-name\":\"Host 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jwyl24\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-r1vppi\",\"data-framer-name\":\"Icon\",fill:'var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0)) /* {\"name\":\"Orange\"} */',intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m200 152-40 40-64-16-56-40 32.68-65.37L128 56l55.32 14.63.28 1.37H144l-45.66 44.29a8 8 0 0 0 1.38 12.42C117.23 139.9 141 139.13 160 120Z\" opacity=\".2\"/><path d=\"m254.3 107.91-25.52-51.06a16 16 0 0 0-21.47-7.15l-24.87 12.43-52.39-13.86a8.14 8.14 0 0 0-4.1 0L73.56 62.13 48.69 49.7a16 16 0 0 0-21.47 7.15L1.7 107.9a16 16 0 0 0 7.15 21.47l27 13.51 55.49 39.63a8.06 8.06 0 0 0 2.71 1.25l64 16a8 8 0 0 0 7.6-2.1l55.07-55.08 26.42-13.21a16 16 0 0 0 7.15-21.46Zm-54.89 33.37L165 113.72a8 8 0 0 0-10.68.61C136.51 132.27 116.66 130 104 122l43.24-42h31.81l27.21 54.41ZM41.53 64 62 74.22l-25.57 51.05L16 115.06Zm116 119.13-58.11-14.52-49.2-35.14 28-56L128 64.28l9.8 2.59-45 43.68-.08.09a16 16 0 0 0 2.72 24.81c20.56 13.13 45.37 11 64.91-5L188 152.66Zm62-57.87-25.52-51L214.47 64 240 115.06Zm-87.75 92.67a8 8 0 0 1-7.75 6.06 8.13 8.13 0 0 1-1.95-.24l-41.67-10.42a7.89 7.89 0 0 1-2.71-1.25l-26.35-18.82a8 8 0 0 1 9.3-13l25.11 17.94L126 208.24a8 8 0 0 1 5.82 9.7Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1k9l933\",\"data-styles-preset\":\"aDWb2zcTc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0))\"},children:\"Inclusive & Accessabile\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1k9l933\",\"data-styles-preset\":\"aDWb2zcTc\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-92b922c5-abd7-4347-be80-e51aec67bdec, rgb(255, 176, 0))\"},children:\"Inclusive & Accessabile\"})}),className:\"framer-1uckxw2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j9vi8s\",\"data-styles-preset\":\"boRPtIVM0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fae6a16d-88f0-45ad-a09d-b188c1a9fec0, rgb(89, 79, 57))\"},children:\"As a free-to-attend event, we create an easy accessible space where everyone can have a great time with their friends and family.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j9vi8s\",\"data-styles-preset\":\"boRPtIVM0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fae6a16d-88f0-45ad-a09d-b188c1a9fec0, rgb(89, 79, 57))\"},children:\"As a free-to-attend event, we create an easy accessible space where everyone can have a great time with their friends and family.\"})}),className:\"framer-as935w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11wx8lj\",\"data-framer-name\":\"Aftermovie\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/watch?v=KgtuRHaYFcM\",motionChild:true,nodeId:\"Eu5AMQctO\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:.3,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{offset:200,ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vckxfj framer-1el64ka\",\"data-framer-cursor\":\"11k0h9y\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jm9uow-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UluWle838\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"UluWle838\",isMixedBorderRadius:false,layoutId:\"UluWle838\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/1FKlyfwFUGPQw8C2PG67MjzGns.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/yhTB5eSawHisug5BSvcALcyR8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cp0elr hidden-1jv9cub hidden-14uwlik\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ub7szs\",\"data-border\":true,\"data-framer-name\":\"Directions Button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-187k8zf\",\"data-styles-preset\":\"nzJIQ6kPv\",style:{\"--framer-text-color\":\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255))\"},children:\"VIEW AFTERMOVIE 2024\"})}),className:\"framer-1hx048e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-emyg9u\",\"data-framer-name\":\"Icon\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 11.156 3.5 L 11.156 9.188 C 11.156 9.55 10.862 9.844 10.5 9.844 C 10.138 9.844 9.844 9.55 9.844 9.188 L 9.844 5.086 L 3.964 10.964 C 3.708 11.221 3.291 11.221 3.035 10.964 C 2.778 10.708 2.778 10.291 3.035 10.035 L 8.914 4.156 L 4.812 4.156 C 4.45 4.156 4.156 3.862 4.156 3.5 C 4.156 3.138 4.45 2.844 4.812 2.844 L 10.5 2.844 C 10.862 2.844 11.156 3.138 11.156 3.5 Z\" fill=\"var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10918828579,withExternalLayout:true})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dtbdlc\",\"data-framer-name\":\"Our Story\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lajjqk\",\"data-framer-name\":\"First Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,width:`calc(${componentViewport?.width||\"100vw\"} - 66px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition31},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation36,__framer__spring:{bounce:0,damping:60,delay:0,duration:.3,durationBasedSpring:true,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i1sq42-container\",nodeId:\"u6ChQk_GT\",rendersWithMotion:true,scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(SectionLine,{BdeYWVkO6:\"var(--token-f54d0ffd-3a78-49b1-b5a1-1b95adbb17b9, rgb(255, 215, 130))\",height:\"100%\",id:\"u6ChQk_GT\",layoutId:\"u6ChQk_GT\",LvJm3Nx8l:\"OUR STORY\",pErSvIvhr:\"var(--token-f54d0ffd-3a78-49b1-b5a1-1b95adbb17b9, rgb(255, 215, 130))\",style:{width:\"100%\"},tG6Ox_29V:\"var(--token-f54d0ffd-3a78-49b1-b5a1-1b95adbb17b9, rgb(255, 215, 130))\",variant:\"km_xlKfHh\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fqycnf\",\"data-framer-name\":\"Story\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jy4kol\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m8hsap\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ctbt4s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ne8gXtFsF\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}},qFKrY1dkA:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(TextEffectOnScroll,{animation:\"inAndOutQuick\",color:\"var(--token-2c62be86-3d51-4a3d-96ad-327c9d5ac066, rgb(66, 45, 0))\",effect:{blur:6,offset:{x:0,y:0},opacity:0,origin:{x:50,y:50},rotate:{perspective:1200,rotation:0,type:\"3d\",x:45,y:0,z:0},scale:1},font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"30px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"},height:\"100%\",id:\"ne8gXtFsF\",layoutId:\"ne8gXtFsF\",lineGap:20,offset:10,per:\"word\",style:{width:\"100%\"},tag:\"p\",text:\"It was the year 1986. One Sunday afternoon, two friends were having some fun on the water with the wind, the waves and their windsurf equipment.\",userSelect:false,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ste0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZalqklKeT\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}},qFKrY1dkA:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(TextEffectOnScroll,{animation:\"inAndOutQuick\",color:\"var(--token-2c62be86-3d51-4a3d-96ad-327c9d5ac066, rgb(66, 45, 0))\",effect:{blur:6,offset:{x:0,y:0},opacity:0,origin:{x:50,y:50},rotate:{perspective:1200,rotation:0,type:\"3d\",x:45,y:0,z:0},scale:1},font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"30px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"},height:\"100%\",id:\"ZalqklKeT\",layoutId:\"ZalqklKeT\",lineGap:20,offset:10,per:\"word\",style:{width:\"100%\"},tag:\"p\",text:\"After their windsurf session of the day, Anthony Blok and Ruben Croes sat together and decided to go try and put Aruba on the watersports map of the world.\",userSelect:false,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wtn7m7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EYxUiX6M2\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}},qFKrY1dkA:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(TextEffectOnScroll,{animation:\"inAndOutQuick\",color:\"var(--token-2c62be86-3d51-4a3d-96ad-327c9d5ac066, rgb(66, 45, 0))\",effect:{blur:6,offset:{x:0,y:0},opacity:0,origin:{x:50,y:50},rotate:{perspective:1200,rotation:0,type:\"3d\",x:45,y:0,z:0},scale:1},font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"30px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"},height:\"100%\",id:\"EYxUiX6M2\",layoutId:\"EYxUiX6M2\",lineGap:20,offset:10,per:\"word\",style:{width:\"100%\"},tag:\"p\",text:\"And so Aruba Hi-Winds Pro-Am was born.\",userSelect:false,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ei69bf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hyJp1zINC\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}},qFKrY1dkA:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(TextEffectOnScroll,{animation:\"inAndOutQuick\",color:\"var(--token-2c62be86-3d51-4a3d-96ad-327c9d5ac066, rgb(66, 45, 0))\",effect:{blur:6,offset:{x:0,y:0},opacity:0,origin:{x:50,y:50},rotate:{perspective:1200,rotation:0,type:\"3d\",x:45,y:0,z:0},scale:1},font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"30px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"},height:\"100%\",id:\"hyJp1zINC\",layoutId:\"hyJp1zINC\",lineGap:20,offset:10,per:\"word\",style:{width:\"100%\"},tag:\"p\",text:\"The 1st Aruba Hi-Winds was a success from day one. Many windsurf professionals joined in the competition. \",userSelect:false,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cdnmfw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yhjZTIG5C\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}},qFKrY1dkA:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(TextEffectOnScroll,{animation:\"inAndOutQuick\",color:\"var(--token-2c62be86-3d51-4a3d-96ad-327c9d5ac066, rgb(66, 45, 0))\",effect:{blur:6,offset:{x:0,y:0},opacity:0,origin:{x:50,y:50},rotate:{perspective:1200,rotation:0,type:\"3d\",x:45,y:0,z:0},scale:1},font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"30px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"},height:\"100%\",id:\"yhjZTIG5C\",layoutId:\"yhjZTIG5C\",lineGap:20,offset:10,per:\"word\",style:{width:\"100%\"},tag:\"p\",text:\"Big names like Bj\\xf6rn Dunkerbeck, Robby Naish, Anders Bringdal, Stephan van den Berg, Jutta M\\xfcller, Britt Dunkerbeck and Natalie Leli\\xe8vre, just to name a few who have participated over the years.\",userSelect:false,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x1oat-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RabOMqxTR\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}},qFKrY1dkA:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(TextEffectOnScroll,{animation:\"inAndOutQuick\",color:\"var(--token-2c62be86-3d51-4a3d-96ad-327c9d5ac066, rgb(66, 45, 0))\",effect:{blur:6,offset:{x:0,y:0},opacity:0,origin:{x:50,y:50},rotate:{perspective:1200,rotation:0,type:\"3d\",x:45,y:0,z:0},scale:1},font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"30px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"},height:\"100%\",id:\"RabOMqxTR\",layoutId:\"RabOMqxTR\",lineGap:20,offset:10,per:\"word\",style:{width:\"100%\"},tag:\"p\",text:\"Today, Aruba Hi-Winds has grown into a widely loved event by the watersports community across the whole globe, bringing in 200+ participants   annually.\",userSelect:false,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z41rqj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C5dI6Ge9R\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}},qFKrY1dkA:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(TextEffectOnScroll,{animation:\"inAndOutQuick\",color:\"var(--token-2c62be86-3d51-4a3d-96ad-327c9d5ac066, rgb(66, 45, 0))\",effect:{blur:6,offset:{x:0,y:0},opacity:0,origin:{x:50,y:50},rotate:{perspective:1200,rotation:0,type:\"3d\",x:45,y:0,z:0},scale:1},font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"30px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"},height:\"100%\",id:\"C5dI6Ge9R\",layoutId:\"C5dI6Ge9R\",lineGap:20,offset:10,per:\"word\",style:{width:\"100%\"},tag:\"p\",text:\"Expect even more action, fun, and excitement for our 37th edition, May 28th - June 2nd, 2025.\",userSelect:false,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17vv5o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rS16TAwVE\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"24px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}},qFKrY1dkA:{font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(TextEffectOnScroll,{animation:\"inAndOutQuick\",color:\"var(--token-2c62be86-3d51-4a3d-96ad-327c9d5ac066, rgb(66, 45, 0))\",effect:{blur:6,offset:{x:0,y:0},opacity:0,origin:{x:50,y:50},rotate:{perspective:1200,rotation:0,type:\"3d\",x:45,y:0,z:0},scale:1},font:{fontFamily:'\"Industry Medium\", \"Industry Medium Placeholder\", sans-serif',fontSize:\"30px\",letterSpacing:\"0em\",lineHeight:\"1.2em\",textAlign:\"center\"},height:\"100%\",id:\"rS16TAwVE\",layoutId:\"rS16TAwVE\",lineGap:20,offset:10,per:\"word\",style:{width:\"100%\"},tag:\"p\",text:\"See you soon at the Fisherman's Huts, Aruba\",userSelect:false,width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{bounce:.2,damping:60,delay:0,duration:.3,durationBasedSpring:false,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c05li7\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{background:{alt:\"\",fit:\"fill\",pixelHeight:2247,pixelWidth:3e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/4yBBCRHVBxRARETKQQuGjtLzI.jpeg\",srcSet:\"https://framerusercontent.com/images/4yBBCRHVBxRARETKQQuGjtLzI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/4yBBCRHVBxRARETKQQuGjtLzI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4yBBCRHVBxRARETKQQuGjtLzI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4yBBCRHVBxRARETKQQuGjtLzI.jpeg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2247,pixelWidth:3e3,sizes:`max(${componentViewport?.width||\"100vw\"} - 66px, 1px)`,src:\"https://framerusercontent.com/images/4yBBCRHVBxRARETKQQuGjtLzI.jpeg\",srcSet:\"https://framerusercontent.com/images/4yBBCRHVBxRARETKQQuGjtLzI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/4yBBCRHVBxRARETKQQuGjtLzI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4yBBCRHVBxRARETKQQuGjtLzI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4yBBCRHVBxRARETKQQuGjtLzI.jpeg 3000w\"},className:\"framer-1wng603\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xr30ap\",\"data-framer-name\":\"Registration\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ma8tbr-container\",isModuleExternal:true,nodeId:\"tti1e0cx6\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tti1e0cx6\",isMixedBorderRadius:false,layoutId:\"tti1e0cx6\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/8laiboBJbkEmWBZ01GtSzU4FRz8.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/YA8CEzGlnAoof3bx2yPtuVCofs.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:16,intrinsicWidth:1630,pixelHeight:30,pixelWidth:3260,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/tepi5hgSC0bITm0yUkhVDe51Io.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tepi5hgSC0bITm0yUkhVDe51Io.webp?scale-down-to=512 512w,https://framerusercontent.com/images/tepi5hgSC0bITm0yUkhVDe51Io.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/tepi5hgSC0bITm0yUkhVDe51Io.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/tepi5hgSC0bITm0yUkhVDe51Io.webp 3260w\"},className:\"framer-1xc36oh hidden-181srz9\",\"data-framer-name\":\"LogoBar\"}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:16,intrinsicWidth:1630,pixelHeight:30,pixelWidth:3260,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/tepi5hgSC0bITm0yUkhVDe51Io.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/tepi5hgSC0bITm0yUkhVDe51Io.webp?scale-down-to=512 512w,https://framerusercontent.com/images/tepi5hgSC0bITm0yUkhVDe51Io.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/tepi5hgSC0bITm0yUkhVDe51Io.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/tepi5hgSC0bITm0yUkhVDe51Io.webp 3260w\"},className:\"framer-fxojdp hidden-181srz9\",\"data-framer-name\":\"LogoBar\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation37,__framer__exit:animation38,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-me2f57\",\"data-border\":true,\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cmsst8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-f36wk3\",\"data-framer-name\":\"Title + Icon\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nwmxjt\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-76zehl\",\"data-styles-preset\":\"R1QbpyENi\",style:{\"--framer-text-color\":\"var(--token-0887655a-0038-4cf6-852d-c5a5b996b094, rgb(26, 117, 159))\"},children:\"STAY UP TO DATE\"})}),className:\"framer-x5g82v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1k9l933\",\"data-styles-preset\":\"aDWb2zcTc\",style:{\"--framer-text-color\":\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\"},children:\"newsletter\"})}),className:\"framer-1jn81oa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j9vi8s\",\"data-styles-preset\":\"boRPtIVM0\",style:{\"--framer-text-alignment\":\"left\"},children:\"Stay in the loop! Sign up for our newsletter to get the latest AHW2025 news, event updates, and exclusive insights.\"})}),className:\"framer-b7dc3z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pnjyo8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eff2G1KQL\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(Mailchimp,{button:{buttonFont:{fontFamily:'\"Industry Demi\", \"Industry Demi Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"rgb(255, 255, 255)\",fill:\"var(--token-0887655a-0038-4cf6-852d-c5a5b996b094, rgb(26, 117, 159))\",insetWhenDocked:5,isDocked:false,label:\"SUBSCRIBE\",shouldAppear:true,widthWhenDocked:100},font:{fontFamily:'\"Rubik\", \"Rubik Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},gap:10,height:\"100%\",id:\"eff2G1KQL\",input:{borderObject:{borderColor:\"rgba(135, 135, 135, 0.15)\",borderWidth:1},borderRadius:6,color:\"rgb(153, 153, 153)\",fill:\"rgba(186, 186, 186, 0.2)\",fixedHeight:50,focusObject:{focusColor:\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",focusWidthFrom:0,focusWidthTo:1},height:true,padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,placeholder:\"name@email.com\",placeholderColor:\"rgb(153, 153, 153)\"},layout:\"vertical\",layoutId:\"eff2G1KQL\",mailchimpURL:\"https://arubahiwinds.us14.list-manage.com/subscribe/post?u=c176617b07a7bae05f89c2ddf&amp;id=1e8dbf81c6&amp;f_id=00ed97e1f0\",redirectAs:\"overlay\",style:{width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-139wml8\",\"data-framer-name\":\"FAQ Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hv880z\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nhudnj\",\"data-framer-name\":\"Divider\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,width:`calc(${componentViewport?.width||\"100vw\"} - 66px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition31},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation36,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q655du-container\",nodeId:\"VdGcJWDxN\",rendersWithMotion:true,scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(SectionLine,{BdeYWVkO6:\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",height:\"100%\",id:\"VdGcJWDxN\",layoutId:\"VdGcJWDxN\",LvJm3Nx8l:\"Frequently asked questions\",pErSvIvhr:\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",style:{width:\"100%\"},tG6Ox_29V:\"var(--token-fd299289-a904-4398-8243-c29ad8213c22, rgb(120, 192, 224))\",variant:\"km_xlKfHh\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:677,width:`calc(${componentViewport?.width||\"100vw\"} - 66px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-165wb9u-container\",nodeId:\"pcg0OfSwi\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{variant:\"MfCSO8y1y\"}},children:/*#__PURE__*/_jsx(FAQContent,{height:\"100%\",id:\"pcg0OfSwi\",layoutId:\"pcg0OfSwi\",style:{width:\"100%\"},variant:\"fcCJ4RTGP\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:275,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6v9mgj-container\",nodeId:\"sfQSgtB1m\",scopeId:\"sZWCfonda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Occl_Pp7a:{variant:\"bD60H0ZTD\"},qFKrY1dkA:{variant:\"dlHo7qPxZ\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"sfQSgtB1m\",layoutId:\"sfQSgtB1m\",style:{width:\"100%\"},variant:\"tXQUApP3A\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tUlvI.framer-1el64ka, .framer-tUlvI .framer-1el64ka { display: block; }\",\".framer-tUlvI.framer-1jv9cub { align-content: center; align-items: center; background-color: var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-tUlvI .framer-17ats2u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; overflow: hidden; padding: 33px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-20ods2 { -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px); background-color: rgba(65, 98, 115, 0); bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-tUlvI .framer-upi21n-container, .framer-tUlvI .framer-ma8tbr-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-tUlvI .framer-6hay0c, .framer-tUlvI .framer-1o24ee4, .framer-tUlvI .framer-nq2gki, .framer-tUlvI .framer-jwyl24, .framer-tUlvI .framer-f36wk3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-ly3ko1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-tUlvI .framer-1te0gyl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tUlvI .framer-1kjzfxm { align-content: center; align-items: center; aspect-ratio: 7.76978417266187 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 35px); justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 271px; z-index: 0; }\",\".framer-tUlvI .framer-1wb6xhh { align-content: center; align-items: center; aspect-ratio: 3.2758620689655173 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 31px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: var(--framer-aspect-ratio-supported, 102px); z-index: 1; }\",\".framer-tUlvI .framer-uhyt7i { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tUlvI .framer-1hw6hwc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tUlvI .framer-1e4i1jp, .framer-tUlvI .framer-17mp82w, .framer-tUlvI .framer-1lnzbzl, .framer-tUlvI .framer-1vgfv65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-tUlvI .framer-8aux4n-container, .framer-tUlvI .framer-1k65fn3-container, .framer-tUlvI .framer-1te5n8j-container, .framer-tUlvI .framer-heqiil-container, .framer-tUlvI .framer-6ngbxq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tUlvI.framer-1nuf555 { background-color: rgba(0, 0, 0, 0.7); inset: 0px; position: fixed; user-select: none; z-index: 2; }\",\".framer-tUlvI.framer-1ql5e83 { align-content: center; align-items: center; background-color: var(--token-fd299289-a904-4398-8243-c29ad8213c22, #78c0e0); bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: flex-end; overflow: hidden; padding: 0px; position: fixed; right: 0px; top: 0px; width: 38%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-tUlvI .framer-9e8ap2 { align-content: flex-end; align-items: flex-end; background-color: var(--token-b8b8c723-c12c-47bf-a8a5-3fdb9290ce8e, #f0fcff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 33px; position: relative; width: 98%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tUlvI .framer-iam6aw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-v0gw8d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-eow9py { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-tUlvI .framer-1ynb5k1-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tUlvI .framer-1kpwb2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tUlvI .framer-1ly3o7z-container { flex: none; height: auto; pointer-events: none; position: relative; width: auto; }\",\".framer-tUlvI .framer-cx4gys { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-rjrqcr, .framer-tUlvI .framer-i3lfp8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-8nmj23, .framer-tUlvI .framer-e0frku, .framer-tUlvI .framer-1kxnl3k, .framer-tUlvI .framer-ag67ji, .framer-tUlvI .framer-1anzj78, .framer-tUlvI .framer-65639u, .framer-tUlvI .framer-e9hlrb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tUlvI .framer-ycoth1, .framer-tUlvI .framer-1mpx24u, .framer-tUlvI .framer-ea9nec, .framer-tUlvI .framer-1htck0z, .framer-tUlvI .framer-sugej9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tUlvI .framer-1oroaet { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-ral6s9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tUlvI .framer-45edut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-8hdjp { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 250px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-jcvwp6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tUlvI .framer-1o9bpv1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tUlvI .framer-uwxdur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; opacity: 0.51; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-1f2pf4q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-tUlvI .framer-6kz61m { flex: none; height: 11px; position: relative; width: 11px; }\",\".framer-tUlvI .framer-1azswd4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 2px 0px; position: relative; width: min-content; }\",\".framer-tUlvI .framer-pkcr1y, .framer-tUlvI .framer-1fv380n, .framer-tUlvI .framer-10oajwk, .framer-tUlvI .framer-1arif22, .framer-tUlvI .framer-1k6d5ed, .framer-tUlvI .framer-1hx048e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tUlvI .framer-ghn2iz { align-content: flex-start; align-items: flex-start; background-color: var(--token-b8b8c723-c12c-47bf-a8a5-3fdb9290ce8e, #f0fcff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 33px 40px 33px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-tUlvI .framer-5a4r7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-ogf1nq-container, .framer-tUlvI .framer-1q655du-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-tUlvI .framer-1rlbj2g, .framer-tUlvI .framer-fqycnf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-ek6z2t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-1599pt9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-1hu1eaj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",\".framer-tUlvI .framer-1uvtj22 { align-content: center; align-items: center; aspect-ratio: 3.1153846153846154 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 364px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-4ndtkd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-tUlvI .framer-dquq04, .framer-tUlvI .framer-apvq79, .framer-tUlvI .framer-1wfkbym, .framer-tUlvI .framer-1wng603 { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-tUlvI .framer-11zcevm { align-content: flex-start; align-items: flex-start; background-color: var(--token-92b8786e-acf8-4042-a272-1923c5e103be, #fff9eb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 33px 30px 33px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-ifohh8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-tUlvI .framer-dwjcxl-container { flex: none; height: auto; position: relative; width: 100%; z-index: 3; }\",\".framer-tUlvI .framer-1kbmii1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-1plxusk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-tUlvI .framer-1ov49pb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-2cyiuw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 72%; word-break: break-word; word-wrap: break-word; }\",\".framer-tUlvI .framer-1aggta1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-tUlvI .framer-146km7q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 10px 0px 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-xlyk43 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: center; max-width: 1700px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tUlvI .framer-1qs03a2, .framer-tUlvI .framer-1oskrmo, .framer-tUlvI .framer-k7smef { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tUlvI .framer-123xtx9 { aspect-ratio: 1 / 1; flex: none; height: 23px; position: relative; width: var(--framer-aspect-ratio-supported, 23px); }\",\".framer-tUlvI .framer-ll48a7, .framer-tUlvI .framer-of1rw, .framer-tUlvI .framer-1uckxw2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-tUlvI .framer-1erech4, .framer-tUlvI .framer-1f54z2v, .framer-tUlvI .framer-as935w, .framer-tUlvI .framer-x5g82v, .framer-tUlvI .framer-1jn81oa, .framer-tUlvI .framer-b7dc3z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tUlvI .framer-1pld9tm, .framer-tUlvI .framer-r1vppi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 23px; }\",\".framer-tUlvI .framer-11wx8lj { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.9672131147540983 / 1; background-color: var(--token-92b8786e-acf8-4042-a272-1923c5e103be, #fffcf7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: var(--framer-aspect-ratio-supported, 610px); justify-content: flex-start; overflow: visible; padding: 33px; position: relative; scroll-margin-top: 200px; width: 100%; }\",\".framer-tUlvI .framer-vckxfj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-tUlvI .framer-jm9uow-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-tUlvI .framer-cp0elr { align-content: center; align-items: center; background-color: rgba(15, 15, 15, 0.29); bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-tUlvI .framer-1ub7szs { --border-bottom-width: 1px; --border-color: var(--token-bc594f03-fbd6-4dfb-ae2c-5859d88c1381, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(255, 255, 255, 0.08); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 12px 8px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-tUlvI .framer-emyg9u { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-tUlvI .framer-1dtbdlc { align-content: flex-start; align-items: flex-start; background-color: var(--token-92b8786e-acf8-4042-a272-1923c5e103be, #fffcf7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 33px 40px 33px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-lajjqk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-1i1sq42-container { flex: none; height: auto; position: sticky; top: 40px; width: 100%; z-index: 1; }\",\".framer-tUlvI .framer-1jy4kol { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 380px 0px 380px 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-m8hsap { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 400px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-ctbt4s-container, .framer-tUlvI .framer-18ste0-container, .framer-tUlvI .framer-1wtn7m7-container, .framer-tUlvI .framer-ei69bf-container, .framer-tUlvI .framer-1cdnmfw-container, .framer-tUlvI .framer-1x1oat-container, .framer-tUlvI .framer-z41rqj-container, .framer-tUlvI .framer-17vv5o-container, .framer-tUlvI .framer-1pnjyo8-container, .framer-tUlvI .framer-165wb9u-container, .framer-tUlvI .framer-6v9mgj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-tUlvI .framer-c05li7 { align-content: center; align-items: center; aspect-ratio: 2.0655737704918034 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 549px); justify-content: center; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-tUlvI .framer-1xr30ap { align-content: center; align-items: center; background-color: var(--token-783a9caa-b2c1-4705-be51-2e6c2920cd61, #0a2b3b); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 61px; height: 100vh; justify-content: center; overflow: visible; padding: 33px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-1xc36oh { aspect-ratio: 101.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-tUlvI .framer-fxojdp { aspect-ratio: 101.875 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-tUlvI .framer-me2f57 { --border-bottom-width: 2px; --border-color: var(--token-0887655a-0038-4cf6-852d-c5a5b996b094, #1a759f); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: var(--token-b8b8c723-c12c-47bf-a8a5-3fdb9290ce8e, #f0fcff); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 0.3613123810646357px 1.51751200047147px -0.16666666666666666px rgba(33, 139, 196, 0.08), 0px 1.3731199819460742px 5.767103924173512px -0.3333333333333333px rgba(33, 139, 196, 0.15286), 0px 6px 25.2px -0.5px rgba(33, 139, 196, 0.486); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 25px; position: relative; width: 507px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tUlvI .framer-1cmsst8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-1nwmxjt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tUlvI .framer-139wml8 { align-content: flex-start; align-items: flex-start; background-color: var(--token-b8b8c723-c12c-47bf-a8a5-3fdb9290ce8e, #f0fcff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 33px 40px 33px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-1hv880z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tUlvI .framer-nhudnj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tUlvI.framer-1jv9cub, .framer-tUlvI .framer-6hay0c, .framer-tUlvI .framer-ly3ko1, .framer-tUlvI .framer-1te0gyl, .framer-tUlvI .framer-1kjzfxm, .framer-tUlvI .framer-1wb6xhh, .framer-tUlvI .framer-uhyt7i, .framer-tUlvI .framer-1hw6hwc, .framer-tUlvI .framer-1e4i1jp, .framer-tUlvI.framer-1ql5e83, .framer-tUlvI .framer-9e8ap2, .framer-tUlvI .framer-iam6aw, .framer-tUlvI .framer-v0gw8d, .framer-tUlvI .framer-eow9py, .framer-tUlvI .framer-1kpwb2, .framer-tUlvI .framer-cx4gys, .framer-tUlvI .framer-rjrqcr, .framer-tUlvI .framer-i3lfp8, .framer-tUlvI .framer-1oroaet, .framer-tUlvI .framer-ral6s9, .framer-tUlvI .framer-17mp82w, .framer-tUlvI .framer-1lnzbzl, .framer-tUlvI .framer-1vgfv65, .framer-tUlvI .framer-45edut, .framer-tUlvI .framer-8hdjp, .framer-tUlvI .framer-jcvwp6, .framer-tUlvI .framer-1f2pf4q, .framer-tUlvI .framer-1azswd4, .framer-tUlvI .framer-ghn2iz, .framer-tUlvI .framer-5a4r7o, .framer-tUlvI .framer-1rlbj2g, .framer-tUlvI .framer-ek6z2t, .framer-tUlvI .framer-1599pt9, .framer-tUlvI .framer-1uvtj22, .framer-tUlvI .framer-4ndtkd, .framer-tUlvI .framer-11zcevm, .framer-tUlvI .framer-ifohh8, .framer-tUlvI .framer-1kbmii1, .framer-tUlvI .framer-1plxusk, .framer-tUlvI .framer-1ov49pb, .framer-tUlvI .framer-1aggta1, .framer-tUlvI .framer-146km7q, .framer-tUlvI .framer-xlyk43, .framer-tUlvI .framer-1qs03a2, .framer-tUlvI .framer-1o24ee4, .framer-tUlvI .framer-1oskrmo, .framer-tUlvI .framer-nq2gki, .framer-tUlvI .framer-k7smef, .framer-tUlvI .framer-jwyl24, .framer-tUlvI .framer-11wx8lj, .framer-tUlvI .framer-vckxfj, .framer-tUlvI .framer-cp0elr, .framer-tUlvI .framer-1ub7szs, .framer-tUlvI .framer-1dtbdlc, .framer-tUlvI .framer-lajjqk, .framer-tUlvI .framer-fqycnf, .framer-tUlvI .framer-1jy4kol, .framer-tUlvI .framer-m8hsap, .framer-tUlvI .framer-c05li7, .framer-tUlvI .framer-1xr30ap, .framer-tUlvI .framer-me2f57, .framer-tUlvI .framer-1cmsst8, .framer-tUlvI .framer-f36wk3, .framer-tUlvI .framer-1nwmxjt, .framer-tUlvI .framer-139wml8, .framer-tUlvI .framer-1hv880z, .framer-tUlvI .framer-nhudnj { gap: 0px; } .framer-tUlvI.framer-1jv9cub > *, .framer-tUlvI .framer-1aggta1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tUlvI.framer-1jv9cub > :first-child, .framer-tUlvI .framer-1te0gyl > :first-child, .framer-tUlvI .framer-9e8ap2 > :first-child, .framer-tUlvI .framer-iam6aw > :first-child, .framer-tUlvI .framer-cx4gys > :first-child, .framer-tUlvI .framer-rjrqcr > :first-child, .framer-tUlvI .framer-i3lfp8 > :first-child, .framer-tUlvI .framer-1oroaet > :first-child, .framer-tUlvI .framer-45edut > :first-child, .framer-tUlvI .framer-jcvwp6 > :first-child, .framer-tUlvI .framer-ghn2iz > :first-child, .framer-tUlvI .framer-5a4r7o > :first-child, .framer-tUlvI .framer-1rlbj2g > :first-child, .framer-tUlvI .framer-ek6z2t > :first-child, .framer-tUlvI .framer-1599pt9 > :first-child, .framer-tUlvI .framer-11zcevm > :first-child, .framer-tUlvI .framer-ifohh8 > :first-child, .framer-tUlvI .framer-1kbmii1 > :first-child, .framer-tUlvI .framer-1plxusk > :first-child, .framer-tUlvI .framer-1ov49pb > :first-child, .framer-tUlvI .framer-1aggta1 > :first-child, .framer-tUlvI .framer-1qs03a2 > :first-child, .framer-tUlvI .framer-1oskrmo > :first-child, .framer-tUlvI .framer-k7smef > :first-child, .framer-tUlvI .framer-11wx8lj > :first-child, .framer-tUlvI .framer-cp0elr > :first-child, .framer-tUlvI .framer-1dtbdlc > :first-child, .framer-tUlvI .framer-lajjqk > :first-child, .framer-tUlvI .framer-fqycnf > :first-child, .framer-tUlvI .framer-1jy4kol > :first-child, .framer-tUlvI .framer-m8hsap > :first-child, .framer-tUlvI .framer-1xr30ap > :first-child, .framer-tUlvI .framer-me2f57 > :first-child, .framer-tUlvI .framer-1cmsst8 > :first-child, .framer-tUlvI .framer-1nwmxjt > :first-child, .framer-tUlvI .framer-139wml8 > :first-child, .framer-tUlvI .framer-1hv880z > :first-child, .framer-tUlvI .framer-nhudnj > :first-child { margin-top: 0px; } .framer-tUlvI.framer-1jv9cub > :last-child, .framer-tUlvI .framer-1te0gyl > :last-child, .framer-tUlvI .framer-9e8ap2 > :last-child, .framer-tUlvI .framer-iam6aw > :last-child, .framer-tUlvI .framer-cx4gys > :last-child, .framer-tUlvI .framer-rjrqcr > :last-child, .framer-tUlvI .framer-i3lfp8 > :last-child, .framer-tUlvI .framer-1oroaet > :last-child, .framer-tUlvI .framer-45edut > :last-child, .framer-tUlvI .framer-jcvwp6 > :last-child, .framer-tUlvI .framer-ghn2iz > :last-child, .framer-tUlvI .framer-5a4r7o > :last-child, .framer-tUlvI .framer-1rlbj2g > :last-child, .framer-tUlvI .framer-ek6z2t > :last-child, .framer-tUlvI .framer-1599pt9 > :last-child, .framer-tUlvI .framer-11zcevm > :last-child, .framer-tUlvI .framer-ifohh8 > :last-child, .framer-tUlvI .framer-1kbmii1 > :last-child, .framer-tUlvI .framer-1plxusk > :last-child, .framer-tUlvI .framer-1ov49pb > :last-child, .framer-tUlvI .framer-1aggta1 > :last-child, .framer-tUlvI .framer-1qs03a2 > :last-child, .framer-tUlvI .framer-1oskrmo > :last-child, .framer-tUlvI .framer-k7smef > :last-child, .framer-tUlvI .framer-11wx8lj > :last-child, .framer-tUlvI .framer-cp0elr > :last-child, .framer-tUlvI .framer-1dtbdlc > :last-child, .framer-tUlvI .framer-lajjqk > :last-child, .framer-tUlvI .framer-fqycnf > :last-child, .framer-tUlvI .framer-1jy4kol > :last-child, .framer-tUlvI .framer-m8hsap > :last-child, .framer-tUlvI .framer-1xr30ap > :last-child, .framer-tUlvI .framer-me2f57 > :last-child, .framer-tUlvI .framer-1cmsst8 > :last-child, .framer-tUlvI .framer-1nwmxjt > :last-child, .framer-tUlvI .framer-139wml8 > :last-child, .framer-tUlvI .framer-1hv880z > :last-child, .framer-tUlvI .framer-nhudnj > :last-child { margin-bottom: 0px; } .framer-tUlvI .framer-6hay0c > *, .framer-tUlvI .framer-ly3ko1 > *, .framer-tUlvI .framer-1kjzfxm > *, .framer-tUlvI .framer-1wb6xhh > *, .framer-tUlvI .framer-uhyt7i > *, .framer-tUlvI .framer-1e4i1jp > *, .framer-tUlvI.framer-1ql5e83 > *, .framer-tUlvI .framer-eow9py > *, .framer-tUlvI .framer-1kpwb2 > *, .framer-tUlvI .framer-17mp82w > *, .framer-tUlvI .framer-1lnzbzl > *, .framer-tUlvI .framer-1vgfv65 > *, .framer-tUlvI .framer-1f2pf4q > *, .framer-tUlvI .framer-1azswd4 > *, .framer-tUlvI .framer-1uvtj22 > *, .framer-tUlvI .framer-146km7q > *, .framer-tUlvI .framer-1o24ee4 > *, .framer-tUlvI .framer-nq2gki > *, .framer-tUlvI .framer-jwyl24 > *, .framer-tUlvI .framer-vckxfj > *, .framer-tUlvI .framer-1ub7szs > *, .framer-tUlvI .framer-f36wk3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tUlvI .framer-6hay0c > :first-child, .framer-tUlvI .framer-ly3ko1 > :first-child, .framer-tUlvI .framer-1kjzfxm > :first-child, .framer-tUlvI .framer-1wb6xhh > :first-child, .framer-tUlvI .framer-uhyt7i > :first-child, .framer-tUlvI .framer-1hw6hwc > :first-child, .framer-tUlvI .framer-1e4i1jp > :first-child, .framer-tUlvI.framer-1ql5e83 > :first-child, .framer-tUlvI .framer-v0gw8d > :first-child, .framer-tUlvI .framer-eow9py > :first-child, .framer-tUlvI .framer-1kpwb2 > :first-child, .framer-tUlvI .framer-ral6s9 > :first-child, .framer-tUlvI .framer-17mp82w > :first-child, .framer-tUlvI .framer-1lnzbzl > :first-child, .framer-tUlvI .framer-1vgfv65 > :first-child, .framer-tUlvI .framer-8hdjp > :first-child, .framer-tUlvI .framer-1f2pf4q > :first-child, .framer-tUlvI .framer-1azswd4 > :first-child, .framer-tUlvI .framer-1uvtj22 > :first-child, .framer-tUlvI .framer-4ndtkd > :first-child, .framer-tUlvI .framer-146km7q > :first-child, .framer-tUlvI .framer-xlyk43 > :first-child, .framer-tUlvI .framer-1o24ee4 > :first-child, .framer-tUlvI .framer-nq2gki > :first-child, .framer-tUlvI .framer-jwyl24 > :first-child, .framer-tUlvI .framer-vckxfj > :first-child, .framer-tUlvI .framer-1ub7szs > :first-child, .framer-tUlvI .framer-c05li7 > :first-child, .framer-tUlvI .framer-f36wk3 > :first-child { margin-left: 0px; } .framer-tUlvI .framer-6hay0c > :last-child, .framer-tUlvI .framer-ly3ko1 > :last-child, .framer-tUlvI .framer-1kjzfxm > :last-child, .framer-tUlvI .framer-1wb6xhh > :last-child, .framer-tUlvI .framer-uhyt7i > :last-child, .framer-tUlvI .framer-1hw6hwc > :last-child, .framer-tUlvI .framer-1e4i1jp > :last-child, .framer-tUlvI.framer-1ql5e83 > :last-child, .framer-tUlvI .framer-v0gw8d > :last-child, .framer-tUlvI .framer-eow9py > :last-child, .framer-tUlvI .framer-1kpwb2 > :last-child, .framer-tUlvI .framer-ral6s9 > :last-child, .framer-tUlvI .framer-17mp82w > :last-child, .framer-tUlvI .framer-1lnzbzl > :last-child, .framer-tUlvI .framer-1vgfv65 > :last-child, .framer-tUlvI .framer-8hdjp > :last-child, .framer-tUlvI .framer-1f2pf4q > :last-child, .framer-tUlvI .framer-1azswd4 > :last-child, .framer-tUlvI .framer-1uvtj22 > :last-child, .framer-tUlvI .framer-4ndtkd > :last-child, .framer-tUlvI .framer-146km7q > :last-child, .framer-tUlvI .framer-xlyk43 > :last-child, .framer-tUlvI .framer-1o24ee4 > :last-child, .framer-tUlvI .framer-nq2gki > :last-child, .framer-tUlvI .framer-jwyl24 > :last-child, .framer-tUlvI .framer-vckxfj > :last-child, .framer-tUlvI .framer-1ub7szs > :last-child, .framer-tUlvI .framer-c05li7 > :last-child, .framer-tUlvI .framer-f36wk3 > :last-child { margin-right: 0px; } .framer-tUlvI .framer-1te0gyl > *, .framer-tUlvI .framer-9e8ap2 > *, .framer-tUlvI .framer-rjrqcr > *, .framer-tUlvI .framer-i3lfp8 > *, .framer-tUlvI .framer-1oroaet > *, .framer-tUlvI .framer-cp0elr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tUlvI .framer-1hw6hwc > *, .framer-tUlvI .framer-4ndtkd > *, .framer-tUlvI .framer-c05li7 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-tUlvI .framer-iam6aw > *, .framer-tUlvI .framer-me2f57 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-tUlvI .framer-v0gw8d > *, .framer-tUlvI .framer-ral6s9 > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-tUlvI .framer-cx4gys > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-tUlvI .framer-45edut > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-tUlvI .framer-8hdjp > * { margin: 0px; margin-left: calc(250px / 2); margin-right: calc(250px / 2); } .framer-tUlvI .framer-jcvwp6 > *, .framer-tUlvI .framer-1ov49pb > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-tUlvI .framer-ghn2iz > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-tUlvI .framer-5a4r7o > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-tUlvI .framer-1rlbj2g > *, .framer-tUlvI .framer-11wx8lj > *, .framer-tUlvI .framer-fqycnf > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-tUlvI .framer-ek6z2t > *, .framer-tUlvI .framer-1jy4kol > *, .framer-tUlvI .framer-1hv880z > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-tUlvI .framer-1599pt9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-tUlvI .framer-11zcevm > *, .framer-tUlvI .framer-1xr30ap > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-tUlvI .framer-ifohh8 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-tUlvI .framer-1kbmii1 > * { margin: 0px; margin-bottom: calc(66px / 2); margin-top: calc(66px / 2); } .framer-tUlvI .framer-1plxusk > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-tUlvI .framer-xlyk43 > * { margin: 0px; margin-left: calc(84px / 2); margin-right: calc(84px / 2); } .framer-tUlvI .framer-1qs03a2 > *, .framer-tUlvI .framer-1oskrmo > *, .framer-tUlvI .framer-k7smef > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-tUlvI .framer-1dtbdlc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-tUlvI .framer-lajjqk > *, .framer-tUlvI .framer-139wml8 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-tUlvI .framer-m8hsap > * { margin: 0px; margin-bottom: calc(400px / 2); margin-top: calc(400px / 2); } .framer-tUlvI .framer-1cmsst8 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-tUlvI .framer-1nwmxjt > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-tUlvI .framer-nhudnj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-tUlvI[data-border=\"true\"]::after, .framer-tUlvI [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-tUlvI.framer-1jv9cub { width: 810px; } .framer-tUlvI.framer-1ql5e83 { width: 67%; } .framer-tUlvI .framer-9e8ap2 { width: 98%; } .framer-tUlvI .framer-8hdjp { gap: 0px; } .framer-tUlvI .framer-ek6z2t, .framer-tUlvI .framer-1jy4kol { align-content: flex-start; align-items: flex-start; gap: 66px; order: 0; } .framer-tUlvI .framer-1uvtj22 { height: var(--framer-aspect-ratio-supported, 239px); } .framer-tUlvI .framer-4ndtkd { gap: 10px; } .framer-tUlvI .framer-1kbmii1 { gap: 41px; } .framer-tUlvI .framer-11wx8lj { height: var(--framer-aspect-ratio-supported, 412px); } .framer-tUlvI .framer-ctbt4s-container, .framer-tUlvI .framer-18ste0-container, .framer-tUlvI .framer-1wtn7m7-container, .framer-tUlvI .framer-ei69bf-container, .framer-tUlvI .framer-1cdnmfw-container, .framer-tUlvI .framer-1x1oat-container, .framer-tUlvI .framer-z41rqj-container, .framer-tUlvI .framer-17vv5o-container { min-width: 600px; } .framer-tUlvI .framer-c05li7 { gap: 10px; height: var(--framer-aspect-ratio-supported, 360px); } .framer-tUlvI .framer-1xc36oh, .framer-tUlvI .framer-fxojdp { height: var(--framer-aspect-ratio-supported, 8px); } .framer-tUlvI .framer-1hv880z { justify-content: flex-start; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tUlvI .framer-8hdjp, .framer-tUlvI .framer-ek6z2t, .framer-tUlvI .framer-4ndtkd, .framer-tUlvI .framer-1kbmii1, .framer-tUlvI .framer-1jy4kol, .framer-tUlvI .framer-c05li7 { gap: 0px; } .framer-tUlvI .framer-8hdjp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-tUlvI .framer-8hdjp > :first-child, .framer-tUlvI .framer-4ndtkd > :first-child, .framer-tUlvI .framer-c05li7 > :first-child { margin-left: 0px; } .framer-tUlvI .framer-8hdjp > :last-child, .framer-tUlvI .framer-4ndtkd > :last-child, .framer-tUlvI .framer-c05li7 > :last-child { margin-right: 0px; } .framer-tUlvI .framer-ek6z2t > *, .framer-tUlvI .framer-1jy4kol > * { margin: 0px; margin-bottom: calc(66px / 2); margin-top: calc(66px / 2); } .framer-tUlvI .framer-ek6z2t > :first-child, .framer-tUlvI .framer-1kbmii1 > :first-child, .framer-tUlvI .framer-1jy4kol > :first-child { margin-top: 0px; } .framer-tUlvI .framer-ek6z2t > :last-child, .framer-tUlvI .framer-1kbmii1 > :last-child, .framer-tUlvI .framer-1jy4kol > :last-child { margin-bottom: 0px; } .framer-tUlvI .framer-4ndtkd > *, .framer-tUlvI .framer-c05li7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tUlvI .framer-1kbmii1 > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } }}\",\"@media (max-width: 809px) { .framer-tUlvI.framer-1jv9cub { width: 390px; } .framer-tUlvI .framer-17ats2u { padding: 23px 20px 23px 20px; } .framer-tUlvI .framer-1te0gyl { flex-direction: row; } .framer-tUlvI .framer-1hw6hwc, .framer-tUlvI .framer-v0gw8d { gap: 15px; } .framer-tUlvI.framer-1ql5e83 { width: 82%; } .framer-tUlvI .framer-9e8ap2 { padding: 23px 20px 23px 20px; width: 98%; } .framer-tUlvI .framer-cx4gys, .framer-tUlvI .framer-5a4r7o, .framer-tUlvI .framer-ifohh8 { gap: 30px; } .framer-tUlvI .framer-45edut { gap: 75px; } .framer-tUlvI .framer-8hdjp { flex-direction: column; gap: 37px; } .framer-tUlvI .framer-jcvwp6 { flex: none; gap: 4px; width: 100%; } .framer-tUlvI .framer-6kz61m { height: 8px; width: 8px; } .framer-tUlvI .framer-1azswd4 { padding: 0px; } .framer-tUlvI .framer-ghn2iz, .framer-tUlvI .framer-1dtbdlc { gap: 50px; padding: 27px 20px 27px 20px; } .framer-tUlvI .framer-ek6z2t { gap: 50px; } .framer-tUlvI .framer-1uvtj22 { aspect-ratio: unset; flex-direction: column; height: min-content; } .framer-tUlvI .framer-4ndtkd { flex: none; flex-direction: column; gap: 10px; height: 1077px; width: 100%; } .framer-tUlvI .framer-dquq04, .framer-tUlvI .framer-apvq79, .framer-tUlvI .framer-1wfkbym, .framer-tUlvI .framer-1wng603 { height: 1px; width: 100%; } .framer-tUlvI .framer-11zcevm { gap: 86px; padding: 20px 20px 37px 20px; } .framer-tUlvI .framer-1kbmii1 { gap: 39px; } .framer-tUlvI .framer-1k6d5ed { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-tUlvI .framer-2cyiuw { width: 93%; } .framer-tUlvI .framer-xlyk43 { flex-direction: column; gap: 36px; } .framer-tUlvI .framer-1qs03a2 { align-content: center; align-items: center; flex: none; width: 100%; } .framer-tUlvI .framer-ll48a7, .framer-tUlvI .framer-of1rw, .framer-tUlvI .framer-1uckxw2 { flex: none; white-space: pre; width: auto; } .framer-tUlvI .framer-1oskrmo, .framer-tUlvI .framer-k7smef { flex: none; width: 100%; } .framer-tUlvI .framer-11wx8lj { aspect-ratio: unset; gap: 18px; height: 651px; padding: 20px; } .framer-tUlvI .framer-lajjqk { gap: 168px; } .framer-tUlvI .framer-1jy4kol { gap: 50px; padding: 114px 0px 114px 0px; } .framer-tUlvI .framer-ctbt4s-container, .framer-tUlvI .framer-18ste0-container, .framer-tUlvI .framer-1wtn7m7-container, .framer-tUlvI .framer-ei69bf-container, .framer-tUlvI .framer-1cdnmfw-container, .framer-tUlvI .framer-1x1oat-container, .framer-tUlvI .framer-z41rqj-container, .framer-tUlvI .framer-17vv5o-container { min-width: 300px; } .framer-tUlvI .framer-c05li7 { aspect-ratio: 0.6717850287907869 / 1; flex-direction: column; gap: 10px; height: var(--framer-aspect-ratio-supported, 521px); } .framer-tUlvI .framer-1xr30ap { gap: 86px; padding: 80px 20px 80px 20px; } .framer-tUlvI .framer-me2f57 { border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; gap: 35px; width: 86%; } .framer-tUlvI .framer-139wml8 { gap: 61px; padding: 27px 20px 80px 20px; } .framer-tUlvI .framer-1hv880z { gap: 74px; } .framer-tUlvI .framer-nhudnj { gap: 30px; order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tUlvI .framer-1te0gyl, .framer-tUlvI .framer-1hw6hwc, .framer-tUlvI .framer-v0gw8d, .framer-tUlvI .framer-cx4gys, .framer-tUlvI .framer-45edut, .framer-tUlvI .framer-8hdjp, .framer-tUlvI .framer-jcvwp6, .framer-tUlvI .framer-ghn2iz, .framer-tUlvI .framer-5a4r7o, .framer-tUlvI .framer-ek6z2t, .framer-tUlvI .framer-1uvtj22, .framer-tUlvI .framer-4ndtkd, .framer-tUlvI .framer-11zcevm, .framer-tUlvI .framer-ifohh8, .framer-tUlvI .framer-1kbmii1, .framer-tUlvI .framer-xlyk43, .framer-tUlvI .framer-11wx8lj, .framer-tUlvI .framer-1dtbdlc, .framer-tUlvI .framer-lajjqk, .framer-tUlvI .framer-1jy4kol, .framer-tUlvI .framer-c05li7, .framer-tUlvI .framer-1xr30ap, .framer-tUlvI .framer-me2f57, .framer-tUlvI .framer-139wml8, .framer-tUlvI .framer-1hv880z, .framer-tUlvI .framer-nhudnj { gap: 0px; } .framer-tUlvI .framer-1te0gyl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tUlvI .framer-1te0gyl > :first-child, .framer-tUlvI .framer-1hw6hwc > :first-child, .framer-tUlvI .framer-v0gw8d > :first-child { margin-left: 0px; } .framer-tUlvI .framer-1te0gyl > :last-child, .framer-tUlvI .framer-1hw6hwc > :last-child, .framer-tUlvI .framer-v0gw8d > :last-child { margin-right: 0px; } .framer-tUlvI .framer-1hw6hwc > *, .framer-tUlvI .framer-v0gw8d > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-tUlvI .framer-cx4gys > *, .framer-tUlvI .framer-5a4r7o > *, .framer-tUlvI .framer-ifohh8 > *, .framer-tUlvI .framer-nhudnj > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-tUlvI .framer-cx4gys > :first-child, .framer-tUlvI .framer-45edut > :first-child, .framer-tUlvI .framer-8hdjp > :first-child, .framer-tUlvI .framer-jcvwp6 > :first-child, .framer-tUlvI .framer-ghn2iz > :first-child, .framer-tUlvI .framer-5a4r7o > :first-child, .framer-tUlvI .framer-ek6z2t > :first-child, .framer-tUlvI .framer-1uvtj22 > :first-child, .framer-tUlvI .framer-4ndtkd > :first-child, .framer-tUlvI .framer-11zcevm > :first-child, .framer-tUlvI .framer-ifohh8 > :first-child, .framer-tUlvI .framer-1kbmii1 > :first-child, .framer-tUlvI .framer-xlyk43 > :first-child, .framer-tUlvI .framer-11wx8lj > :first-child, .framer-tUlvI .framer-1dtbdlc > :first-child, .framer-tUlvI .framer-lajjqk > :first-child, .framer-tUlvI .framer-1jy4kol > :first-child, .framer-tUlvI .framer-c05li7 > :first-child, .framer-tUlvI .framer-1xr30ap > :first-child, .framer-tUlvI .framer-me2f57 > :first-child, .framer-tUlvI .framer-139wml8 > :first-child, .framer-tUlvI .framer-1hv880z > :first-child, .framer-tUlvI .framer-nhudnj > :first-child { margin-top: 0px; } .framer-tUlvI .framer-cx4gys > :last-child, .framer-tUlvI .framer-45edut > :last-child, .framer-tUlvI .framer-8hdjp > :last-child, .framer-tUlvI .framer-jcvwp6 > :last-child, .framer-tUlvI .framer-ghn2iz > :last-child, .framer-tUlvI .framer-5a4r7o > :last-child, .framer-tUlvI .framer-ek6z2t > :last-child, .framer-tUlvI .framer-1uvtj22 > :last-child, .framer-tUlvI .framer-4ndtkd > :last-child, .framer-tUlvI .framer-11zcevm > :last-child, .framer-tUlvI .framer-ifohh8 > :last-child, .framer-tUlvI .framer-1kbmii1 > :last-child, .framer-tUlvI .framer-xlyk43 > :last-child, .framer-tUlvI .framer-11wx8lj > :last-child, .framer-tUlvI .framer-1dtbdlc > :last-child, .framer-tUlvI .framer-lajjqk > :last-child, .framer-tUlvI .framer-1jy4kol > :last-child, .framer-tUlvI .framer-c05li7 > :last-child, .framer-tUlvI .framer-1xr30ap > :last-child, .framer-tUlvI .framer-me2f57 > :last-child, .framer-tUlvI .framer-139wml8 > :last-child, .framer-tUlvI .framer-1hv880z > :last-child, .framer-tUlvI .framer-nhudnj > :last-child { margin-bottom: 0px; } .framer-tUlvI .framer-45edut > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-tUlvI .framer-8hdjp > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-tUlvI .framer-jcvwp6 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-tUlvI .framer-ghn2iz > *, .framer-tUlvI .framer-ek6z2t > *, .framer-tUlvI .framer-1dtbdlc > *, .framer-tUlvI .framer-1jy4kol > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-tUlvI .framer-1uvtj22 > *, .framer-tUlvI .framer-4ndtkd > *, .framer-tUlvI .framer-c05li7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tUlvI .framer-11zcevm > *, .framer-tUlvI .framer-1xr30ap > * { margin: 0px; margin-bottom: calc(86px / 2); margin-top: calc(86px / 2); } .framer-tUlvI .framer-1kbmii1 > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-tUlvI .framer-xlyk43 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-tUlvI .framer-11wx8lj > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-tUlvI .framer-lajjqk > * { margin: 0px; margin-bottom: calc(168px / 2); margin-top: calc(168px / 2); } .framer-tUlvI .framer-me2f57 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-tUlvI .framer-139wml8 > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-tUlvI .framer-1hv880z > * { margin: 0px; margin-bottom: calc(74px / 2); margin-top: calc(74px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9105\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qFKrY1dkA\":{\"layout\":[\"fixed\",\"auto\"]},\"Occl_Pp7a\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"fWXhEK3u0\":{\"pattern\":\":fWXhEK3u0\",\"name\":\"our-mission\"},\"BiFvGvtRX\":{\"pattern\":\":BiFvGvtRX\",\"name\":\"aftermovie\"},\"KQ_ldnjL_\":{\"pattern\":\":KQ_ldnjL_\",\"name\":\"storyimage\"},\"I7OcchO4_\":{\"pattern\":\":I7OcchO4_\",\"name\":\"registration\"}}\n * @framerResponsiveScreen\n */const FramersZWCfonda=withCSS(Component,css,\"framer-tUlvI\");export default FramersZWCfonda;FramersZWCfonda.displayName=\"Page\";FramersZWCfonda.defaultProps={height:9105,width:1200};addFonts(FramersZWCfonda,[{explicitInter:true,fonts:[{family:\"Industry Demi\",source:\"custom\",url:\"https://framerusercontent.com/assets/rTW11gh7j5i48Fi7QHmsQ8Xguw.woff2\"},{family:\"Industry Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/JeRUdiZhMRRHgcNzNvTakFLMzA.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Industry Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/gZlv9FZACT4qjigwA2ejzPv8kI.woff2\"},{family:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1VU80V4bVkA.woff2\",weight:\"400\"}]},...HeroImageFonts,...ButtonFonts,...MenuButtonFonts,...NetworkIconFonts,...SectionLineFonts,...VideoFonts,...TextEffectOnScrollFonts,...Video1Fonts,...MailchimpFonts,...FAQContentFonts,...FooterFonts,...AftermovieHoverButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersZWCfonda\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"fWXhEK3u0\\\":{\\\"pattern\\\":\\\":fWXhEK3u0\\\",\\\"name\\\":\\\"our-mission\\\"},\\\"BiFvGvtRX\\\":{\\\"pattern\\\":\\\":BiFvGvtRX\\\",\\\"name\\\":\\\"aftermovie\\\"},\\\"KQ_ldnjL_\\\":{\\\"pattern\\\":\\\":KQ_ldnjL_\\\",\\\"name\\\":\\\"storyimage\\\"},\\\"I7OcchO4_\\\":{\\\"pattern\\\":\\\":I7OcchO4_\\\",\\\"name\\\":\\\"registration\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qFKrY1dkA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Occl_Pp7a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"9105\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["DEFAULT_ANIMATE_PROPS", "TOP", "BOTTOM", "CENTER", "VIEWPORT_OFFSETS", "easeInOut", "cubicBezier", "TextEffectOnScroll", "props", "_effect_rotate", "effect", "id", "se", "generateRandomString", "isCanvas", "RenderTarget", "ref", "pe", "animate", "initial", "willChangeOpacity", "willChangeTransform", "willChangeFilter", "_effect_offset", "_effect_offset1", "_effect_offset2", "_effect_offset3", "willChangeProps", "willChange", "p", "SplitText", "addPropertyControls", "ControlType", "X", "Y", "text", "className", "style", "animation", "offset", "gap", "noTransformEffects", "splitCharacters", "tag", "origin", "elementsRef", "Tag", "spanClassName", "lines", "textLines", "i", "trackElementPosition", "topPosition", "viewportOffset", "viewportHeight", "window", "totalElements", "updates", "element", "scrollY", "progress", "mapRange", "transforms", "styles", "opacity", "getValue", "scale", "blur", "rotate", "rotateX", "rotateY", "rotateZ", "skewX", "skewY", "offsetX", "offsetY", "update", "index", "createLineChildren", "lineIndex", "lineWords", "word", "wordIndex", "char", "charIndex", "savedIndex", "el", "_origin_x", "_origin_y", "u", "key", "value", "_initial_key", "_ref", "initialValue", "callback", "rafId", "lastPosition", "throttleTimeout", "updatePosition", "rect", "fromLow", "fromHigh", "toLow", "toHigh", "percentage", "CHARACTERS", "result", "randomIndex", "MotionDivWithFX", "withFX", "motion", "HeroImageFonts", "getFonts", "Q08gIuSMr_default", "ContainerWithFX", "Container", "ButtonFonts", "l6mxxR6Q4_default", "MenuButtonFonts", "DvWRO0b4E_default", "NetworkIconFonts", "yBzhe22cu_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "SectionLineFonts", "zDmGnzzas_default", "RichTextWithFX", "RichText2", "VideoFonts", "Video", "MotionAWithFX", "TextEffectOnScrollFonts", "TextEffectOnScroll", "Video1Fonts", "MailchimpFonts", "Mailchimp", "FAQContentFonts", "dgIDyHcif_default", "FooterFonts", "oRWGixCeP_default", "AftermovieHoverButtonFonts", "MPKg12wDz_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "animation7", "transition7", "animation8", "transition8", "animation9", "animation10", "transition9", "animation11", "transition10", "animation12", "transition11", "animation13", "transition12", "animation14", "transition13", "animation15", "transition14", "animation16", "transition15", "animation17", "transition16", "animation18", "transition17", "animation19", "transition18", "animation20", "transition19", "animation21", "transition20", "animation22", "transition21", "animation23", "transition22", "animation24", "transition23", "animation25", "transition24", "animation26", "transition25", "animation27", "transition26", "animation28", "transition27", "animation29", "transition28", "animation30", "transition29", "animation31", "animation32", "animation33", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition30", "animation34", "animation35", "transition31", "animation36", "animation37", "transition32", "animation38", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition33", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "wByzPmAtI3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "ref1", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "elementId1", "ref2", "ref3", "elementId2", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Link", "Image2", "PropertyOverrides2", "l", "AnimatePresence", "Ga", "x", "SVG", "css", "FramersZWCfonda", "withCSS", "sZWCfonda_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
