{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js", "ssg:https://framerusercontent.com/modules/PxebWAC4gqCErD7JiP49/7I4xkLrMTqCmr4JgzB2Q/RzGRorJU0.js"],
  "sourcesContent": ["import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTimeProp,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{if(srcType===SrcType.Url)return srcUrl;if(srcType===SrcType.Video)return srcFile;},[srcType,srcFile,srcUrl]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SupportedBy from\"https://framerusercontent.com/modules/3UKienvDryV3tj4TV6jT/dEEs6FBwgY0VcnDVQqOD/tWRfPivak.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jcU3ZxjtR7k7aXRM1azZ/Video.js\";import FooterDark2 from\"#framer/local/canvasComponent/Emul9CRD_/Emul9CRD_.js\";import NavbarDark3 from\"#framer/local/canvasComponent/f503XXGjd/f503XXGjd.js\";import Press2 from\"#framer/local/canvasComponent/O_1bnfCWB/O_1bnfCWB.js\";import*as sharedStyle1 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/yqMZ7KU0J/yqMZ7KU0J.js\";import metadataProvider from\"#framer/local/webPageMetadata/RzGRorJU0/RzGRorJU0.js\";const NavbarDark3Fonts=getFonts(NavbarDark3);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const SupportedByFonts=getFonts(SupportedBy);const HeroFonts=getFonts(Hero);const Press2Fonts=getFonts(Press2);const FooterDark2Fonts=getFonts(FooterDark2);const breakpoints={A3Ec2wxhJ:\"(min-width: 810px) and (max-width: 1199px)\",a8QAXUIxO:\"(min-width: 1200px) and (max-width: 1677px)\",J6VNmhAOq:\"(max-width: 809px)\",T5kTOxAmA:\"(min-width: 1678px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Lrd8S\";const variantClassNames={A3Ec2wxhJ:\"framer-v-awgev9\",a8QAXUIxO:\"framer-v-1oksbjq\",J6VNmhAOq:\"framer-v-1v57p5x\",T5kTOxAmA:\"framer-v-emtpdc\"};const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:.2,mass:1,stiffness:100,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition3={damping:30,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation5={backgroundColor:\"var(--token-2edf0011-436d-4166-a24c-d88a1f45bf31, rgb(136, 240, 254))\",boxShadow:\"0px 2px 4px 0px rgba(0, 0, 0, 0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const animation6={boxShadow:\"0px 2px 4px 0px rgba(0, 0, 0, 0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const animation7={backgroundColor:\"rgb(36, 36, 36)\",boxShadow:\"0px 2px 4px 0px rgba(0, 0, 0, 0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Phone Small\":\"J6VNmhAOq\",Desktop:\"a8QAXUIxO\",Large:\"T5kTOxAmA\",Tablet:\"A3Ec2wxhJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"a8QAXUIxO\"};};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"J6VNmhAOq\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"T5kTOxAmA\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"a8QAXUIxO\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-e94222f5-93dd-4d1c-8eb8-d8df2872bcfe, rgb(0, 3, 22)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1oksbjq\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-fb8e09-container\",\"data-framer-appear-id\":\"fb8e09\",id:\"fb8e09\",initial:animation1,nodeId:\"xUQd6PQwA\",optimized:true,rendersWithMotion:true,scopeId:\"RzGRorJU0\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{variant:\"ws9IAXybg\"},J6VNmhAOq:{variant:\"uGJX8vpHa\"}},children:/*#__PURE__*/_jsx(NavbarDark3,{height:\"100%\",id:\"xUQd6PQwA\",IL1IGpAdw:\"var(--token-3f453041-0a31-4d7b-8655-42b83c0f5bdb, rgb(5, 19, 36))\",layoutId:\"xUQd6PQwA\",MOqf8UWEo:\"var(--token-3f453041-0a31-4d7b-8655-42b83c0f5bdb, rgb(5, 19, 36))\",style:{width:\"100%\"},variant:\"ceFR6DTu7\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-7uh70d\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-fvbkit\",\"data-framer-appear-id\":\"fvbkit\",\"data-framer-name\":\"H1\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-3.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(99deg, rgb(255, 255, 255) 0%, var(--token-689314f4-eaa2-425d-adcc-6d2f1b744e46, rgb(126, 238, 255)) 100%)\"},children:\"The Fastest Way to Understand Video\"})})})},J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1hx96um\",\"data-styles-preset\":\"yqMZ7KU0J\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(99deg, rgb(255, 255, 255) 0%, var(--token-689314f4-eaa2-425d-adcc-6d2f1b744e46, rgb(126, 238, 255)) 100%)\"},children:\"The Fastest Way to Understand Video\"})})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-3.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(99deg, rgb(255, 255, 255) 0%, var(--token-689314f4-eaa2-425d-adcc-6d2f1b744e46, rgb(126, 238, 255)) 100%)\"},children:\"The Fastest Way to Understand Video\"})})}),className:\"framer-1cd56kp\",\"data-framer-appear-id\":\"1cd56kp\",fonts:[\"GF;Inter-regular\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get information from video for smarter, faster monitoring.\"})})},J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get information from video for smarter, faster monitoring.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get information from video for smarter, faster monitoring.\"})}),className:\"framer-1nwlq8e\",\"data-framer-appear-id\":\"1nwlq8e\",fonts:[\"GF;Inter-regular\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1imy7ug hidden-1v57p5x\",\"data-framer-name\":\"Spacer\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-blilgq hidden-1oksbjq hidden-1v57p5x hidden-awgev9\",\"data-framer-name\":\"Spacer\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-njwok5 hidden-1oksbjq hidden-1v57p5x hidden-awgev9\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{__framer__transformTargets:[{target:{opacity:.9,rotate:0,rotateX:20,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:0}}]},J6VNmhAOq:{__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:5,rotateY:0,scale:.6,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:0}}]},T5kTOxAmA:{__framer__transformTargets:[{target:{opacity:.7,rotate:0,rotateX:30,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:42,delay:0,duration:.3,ease:[.44,0,.56,1],mass:.1,stiffness:252,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.9,rotate:0,rotateX:10,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-15rwlug\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-36ivrc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"F672TmX_s\",scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{T5kTOxAmA:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,canvasPlay:true,controls:false,height:\"100%\",id:\"F672TmX_s\",isMixedBorderRadius:false,layoutId:\"F672TmX_s\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/8GsgJuIvGQzgKpaagh1enGPyO2w.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2edf0011-436d-4166-a24c-d88a1f45bf31, rgb(136, 240, 254))\"},children:\"SUPPORTED BY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2edf0011-436d-4166-a24c-d88a1f45bf31, rgb(136, 240, 254))\"},children:\"SUPPORTED BY\"})}),className:\"framer-xt1ih1\",\"data-framer-name\":\"SUPPORTED BY\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kf7bgx-container\",isModuleExternal:true,nodeId:\"tiWzeEnJ8\",scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsx(SupportedBy,{height:\"100%\",id:\"tiWzeEnJ8\",layoutId:\"tiWzeEnJ8\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dlh3x6\",\"data-framer-name\":\"Products Title\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17260ux\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1es8qan\",\"data-framer-name\":\"Product List\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qgfan9\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oc17j2\",\"data-framer-name\":\"SeaFA\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ogfu4m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:\"Search for Anything\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:\"Search for Anything\"})}),className:\"framer-1hfenxi\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Unseen objects, specific events, species, anything.\",/*#__PURE__*/_jsx(\"br\",{}),\"If you can describe it, you can find it. \",/*#__PURE__*/_jsx(\"br\",{}),\"No labelled data required.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Unseen objects, specific events, species, anything.\",/*#__PURE__*/_jsx(\"br\",{}),\"If you can describe it, you can find it. \",/*#__PURE__*/_jsx(\"br\",{}),\"No labelled data required.\"]})}),className:\"framer-130eyxo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-177c9hi\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(Link,{href:\"video-search.ondeck.fish\",motionChild:true,nodeId:\"hi4yhCyS0\",openInNewTab:true,scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lp0rnb framer-4dl80m\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Try it Yourself\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Try it Yourself\"})}),className:\"framer-1agp8r3\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11t20zy-container\",isModuleExternal:true,nodeId:\"uPhOzRMhw\",scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-e94222f5-93dd-4d1c-8eb8-d8df2872bcfe, rgb(0, 3, 22))\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowUpRight\",id:\"uPhOzRMhw\",layoutId:\"uPhOzRMhw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:941,pixelWidth:1313,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992 - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=512 512w,https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png 1313w\"}},J6VNmhAOq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:941,pixelWidth:1313,sizes:`calc((min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px) - 32px) * 0.8)`,src:\"https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=512 512w,https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png 1313w\"}},T5kTOxAmA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:941,pixelWidth:1313,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=512 512w,https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png 1313w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:941,pixelWidth:1313,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px)`,src:\"https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=512 512w,https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n2YitRiNyjDgAZ2ffc8V55879hU.png 1313w\"},className:\"framer-7d2p1f\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13pnil9\",\"data-framer-name\":\"Species ID\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1758,pixelWidth:3600,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992 - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg 3600w\"}},J6VNmhAOq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1758,pixelWidth:3600,sizes:`calc((min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px) - 32px) * 0.8)`,src:\"https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg 3600w\"}},T5kTOxAmA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1758,pixelWidth:3600,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg 3600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1758,pixelWidth:3600,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px)`,src:\"https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pNKd0va5yZBp0kJb4I81IKpeYM.jpg 3600w\"},className:\"framer-7rxb6y\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-35lit4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:\"Across Any Video + Imagery\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:\"Across Any Video + Imagery\"})}),className:\"framer-1c47mbl\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get instant understanding across cameras and conditions, above or below water.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get instant understanding across cameras and conditions, above or below water.\"})}),className:\"framer-1tqe4mn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QAJb4nyFh\"},motionChild:true,nodeId:\"MUMiFjAbO\",openInNewTab:false,scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r7xlxa framer-4dl80m\",\"data-framer-name\":\"Button\",whileHover:animation6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9cf9873f-753a-4a14-8a55-5e1a0cf7a672, rgb(255, 255, 255))\"},children:\"Learn More\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9cf9873f-753a-4a14-8a55-5e1a0cf7a672, rgb(255, 255, 255))\"},children:\"Learn More\"})}),className:\"framer-9ao5og\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ku9luf\",\"data-framer-name\":\"Species ID\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p0trlt\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:\"Pioneering Frontiers in Vision\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:\"Pioneering Frontiers in Vision\"})}),className:\"framer-ys0082\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Generalize across cameras, conditions, above or below water.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Generalize across cameras, conditions, above or below water.\"})}),className:\"framer-evwfwz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jx2pcu\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(Link,{href:\"https://nips.cc/virtual/2024/100591\",motionChild:true,nodeId:\"FDdGU7mTo\",openInNewTab:true,scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1esz38v framer-4dl80m\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation7,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our NeurIPS Paper\"})}),className:\"framer-n6zmyt\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1atnly1-container\",isModuleExternal:true,nodeId:\"Aftbj6mGd\",scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"\",iconSelection:\"AcademicCap\",id:\"Aftbj6mGd\",layoutId:\"Aftbj6mGd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:361,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992 - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png\",srcSet:\"https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png?scale-down-to=512 512w,https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png 800w\"}},J6VNmhAOq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:361,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px) - 32px) * 0.8)`,src:\"https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png\",srcSet:\"https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png?scale-down-to=512 512w,https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png 800w\"}},T5kTOxAmA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:361,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png\",srcSet:\"https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png?scale-down-to=512 512w,https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:361,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px)`,src:\"https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png\",srcSet:\"https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png?scale-down-to=512 512w,https://framerusercontent.com/images/6vNyYEYqxPx4D5Ao9T5KcNlp0ag.png 800w\"},className:\"framer-1mi6f9s\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19nmx1p\",\"data-framer-name\":\"AI for EM\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y9a4qt\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"48px\"},children:\"Success Stories:\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"48px\"},children:\"AI for Conservation\"})]})})},J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"48px\"},children:\"Success Stories:\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"48px\"},children:\"AI for Conservation\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:[\"Success Stories:\",/*#__PURE__*/_jsx(\"br\",{}),\"AI for Conservation\"]})}),className:\"framer-thpv5q\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We're delivering more affordable, accessible and faster fisheries data for governments, Indigenous nations, and commercial fishers around the world.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We're delivering more affordable, accessible and faster fisheries data for governments, Indigenous nations, and commercial fishers around the world.\"})}),className:\"framer-1h5sugs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pakwg3\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GXGAVNABi\"},motionChild:true,nodeId:\"fLBdkY5uO\",openInNewTab:false,scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-g3draw framer-4dl80m\",\"data-framer-name\":\"Button\",whileHover:animation6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Fisheries Monitoring Tools\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Fisheries Monitoring Tools\"})}),className:\"framer-15c0k7n\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ola017-container\",isModuleExternal:true,nodeId:\"h9WsZKM5k\",scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-e94222f5-93dd-4d1c-8eb8-d8df2872bcfe, rgb(0, 3, 22))\",height:\"100%\",iconSearch:\"\",iconSelection:\"ArrowUpRight\",id:\"h9WsZKM5k\",layoutId:\"h9WsZKM5k\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1125,pixelWidth:1584,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992 - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png 1584w\"}},J6VNmhAOq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1125,pixelWidth:1584,sizes:`calc((min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px) - 32px) * 0.8)`,src:\"https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png 1584w\"}},T5kTOxAmA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1125,pixelWidth:1584,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png 1584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1125,pixelWidth:1584,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.9992, 1px), 1000px)`,src:\"https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9XWee1lbZIKdszR7zlYJOaZXM.png 1584w\"},className:\"framer-2mvvso\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jug7fg\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:\"Testimonials\"})})},J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:\"Testimonials\"})})},T5kTOxAmA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:\"Testimonials\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 238, 255)\"},children:\"Testimonials\"})}),className:\"framer-edgb6m\",\"data-framer-appear-id\":\"edgb6m\",fonts:[\"GF;Inter-regular\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-end767\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3mvcll\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ylov8b\",\"data-framer-name\":\"Stream Ocean\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:800,pixelHeight:250,pixelWidth:800,sizes:\"163.2px\",src:\"https://framerusercontent.com/images/ktkNkXy8tfPBkAWl9BhKbLNfBd8.png\",srcSet:\"https://framerusercontent.com/images/ktkNkXy8tfPBkAWl9BhKbLNfBd8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ktkNkXy8tfPBkAWl9BhKbLNfBd8.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:800,pixelHeight:250,pixelWidth:800,sizes:\"182px\",src:\"https://framerusercontent.com/images/ktkNkXy8tfPBkAWl9BhKbLNfBd8.png\",srcSet:\"https://framerusercontent.com/images/ktkNkXy8tfPBkAWl9BhKbLNfBd8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ktkNkXy8tfPBkAWl9BhKbLNfBd8.png 800w\"},className:\"framer-fk6pb4\",\"data-framer-name\":\"Streamocean\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\"},children:'\"OnDeck\u2019s technology has such an incredible potential impact for nature conservation & restoration.\"'})})},J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\"},children:'\"OnDeck\u2019s technology has such an incredible potential impact for nature conservation & restoration.\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\"},children:'\"OnDeck\u2019s technology has such an incredible potential impact for nature conservation & restoration.\"'})}),className:\"framer-cgso73\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Chief Executive Officer\"})}),className:\"framer-1fz3z15\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ja1hea\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sekfc1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1m0rblj\",\"data-framer-name\":\"PO logo_horz_blk.a5827e2f\",fill:\"black\",intrinsicHeight:210,intrinsicWidth:938,svg:'<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 938.1 209.8\" style=\"enable-background:new 0 0 938.1 209.8\" xml:space=\"preserve\"><style>.st0{fill:#3b3c3c}</style><path d=\"M610.7 102.5c-21.6 0-39 17.5-39.1 39.1v68.2h11.8v-68.2c0-15.1 12.2-27.3 27.3-27.3s27.3 12.2 27.3 27.3-12.2 27.3-27.3 27.3v11.8c21.6.3 39.3-16.9 39.7-38.4S633.5 103 612 102.6c-.5-.1-.9-.1-1.3-.1m-83.4 0c-21.6 0-39.1 17.5-39.1 39.1s17.5 39.1 39.1 39.1 39.1-17.5 39.1-39.1c-.1-21.6-17.6-39.1-39.1-39.1m2.8 11.9c15 1.6 25.9 15 24.4 30-1.3 12.9-11.5 23-24.4 24.4-.9.1-1.8.1-2.8.1-15.1 0-27.3-12.2-27.3-27.3 0-15.1 12.2-27.3 27.3-27.3 1-.1 1.9-.1 2.8.1m156.8 21.4c-.8-.1-1.5-.1-2.3-.1h-8.8c-4.7 0-8.8-3-10.2-7.5-.6-2.1-.6-4.3 0-6.4 1.4-4.5 5.5-7.5 10.2-7.5h25.3v-11.8h-25.3c-12.4 0-22.5 10-22.5 22.4s10 22.5 22.4 22.5h8.8c5.9-.2 10.9 4.5 11 10.4.2 5.9-4.5 10.9-10.4 11h-26v11.8h25.3c.8 0 1.5 0 2.3-.1 12.3-1.3 21.3-12.3 20.1-24.6-.9-10.6-9.3-19-19.9-20.1m-580-19.2c4.6-2.8 9.8-4.3 15.2-4.3v-7.8c-11.4 0-22.2 5.3-29.2 14.3v-10.4H85v70.3h7.8V141c.2-10 5.5-19.3 14.1-24.4m-68.1-12.2c-20.5 0-37.1 16.6-37.1 37.1v68.2h7.8v-68.2c0-16.2 13.1-29.3 29.3-29.3s29.3 13.1 29.3 29.3c0 16.2-13.1 29.3-29.3 29.3v7.8c20.5 0 37.1-16.6 37.1-37.1s-16.6-37.1-37.1-37.1m119.7 0c-20.5 0-37.2 16.6-37.2 37.1s16.6 37.2 37.1 37.2 37.2-16.6 37.2-37.1v-.1c0-2.5-.2-5-.8-7.5-3.5-17.2-18.7-29.5-36.3-29.6m0 66.4c-16.2 0-29.3-13.1-29.3-29.3 0-16.2 13.1-29.3 29.3-29.3 13.9 0 25.9 9.8 28.7 23.4.8 3.9.8 7.9 0 11.8-2.9 13.6-14.8 23.4-28.7 23.4m110.6-29.2c0 16.2-13.1 29.3-29.3 29.3s-29.3-13.1-29.3-29.3 13.1-29.3 29.3-29.3v-7.8c-20.5 0-37.1 16.6-37.1 37.1s16.6 37.1 37.1 37.1 37.1-16.6 37.1-37.1V73.3h-7.8v68.3zm85.4 0c-.3 16.2-13.6 29-29.8 28.7-15.7-.3-28.4-13-28.7-28.7v-33.1h-7.8v33.1c0 1.3.1 2.5.2 3.8 2 18.9 17.9 33.3 36.9 33.3 20.5 0 37.1-16.6 37.1-37.1v-33.1h-7.8l-.1 33.1zm51.6 29.3c-16.2 0-29.3-13.1-29.3-29.3s13.1-29.3 29.3-29.3h20.6v-7.8h-20.6c-20.5-.3-37.4 16-37.7 36.5s16 37.4 36.5 37.7h21.8v-7.8h-20.6zm75.1-66.4h-19V73.3h-7.8v31.2h-19v7.8h19v66.4h7.8v-66.4h19zM790.9 172c.3.1.6.1.8.1l.8-.2c26.2-6.6 49.9-14.9 70.5-24.6.2-.1.3-.2.5-.4 51.6-24.6 69.6-51.4 73.4-58.1.8-1.5 1.2-2.3 1.2-2.3.1-.2.1-.5.1-.7v-.1c0-.2-.2-.5-.3-.6l-.3-.3c-2.5-2.6-5-5.1-7.4-7.6l-1.5-1.5c-2-2-4-3.9-6.1-5.8-.7-.7-1.5-1.4-2.3-2.1-1.7-1.6-3.4-3.2-5.1-4.7-1-.9-1.9-1.7-2.9-2.6-1.4-1.3-2.8-2.5-4.2-3.7-1.2-1-2.4-2.1-3.6-3.1-1.2-1-2.3-1.9-3.4-2.8-1.5-1.2-2.9-2.4-4.4-3.5-.8-.6-1.7-1.3-2.5-2-1.8-1.4-3.5-2.7-5.3-4l-1.4-1.1c-2.2-1.6-4.4-3.2-6.6-4.7C826.6-2 792.4.9 790.6 1.1c-.1 0-.2.1-.3.1-.1 0-.1 0-.2.1-.2.1-.4.3-.5.5-.1.1-.1.2-.2.3l-.1.1c-1 3.5-2 7-2.9 10.5l-.5 1.8-2.1 8.4c-.3 1-.4 1.9-.6 2.9-.5 2.3-1.1 4.6-1.5 6.9l-.8 3.7c-.4 1.9-.8 3.7-1.1 5.6l-.8 4.6c-.3 1.5-.5 2.9-.7 4.3-.3 1.9-.6 3.7-.9 5.5l-.4 3.1c-.3 2.3-.6 4.5-.8 6.7l-.2 1.6c-8 71.6 13.2 102 14.3 103.5h.1c0 .4.2.6.5.7zm-5.5-143.9c.6-2.9 1.3-5.8 2.1-8.7l.5-1.9c.6-2.4 1.2-4.7 1.8-7.1l.4-1.4c3.3 19.9 8.6 39.3 15.9 58.1-9.5 1.6-18.9 4-28 7.3 1.4-15.6 3.9-31.1 7.3-46.3zm24.4 41c20.8-3.1 41.4-2.4 59.6.1-3.5 8.7-7.6 17.2-12.3 25.4-5.3 9.2-11.2 17.9-17.7 26.3-12.9-16.2-22.5-34.5-29.6-51.8zm121.5 13.2c-1.1-.4-2.4-.9-3.9-1.5l-.2-2.6c1 1 2.1 2 3.1 3 .3.4.6.8 1 1.1zm-7-6.8.3 4.4c-2.2-.8-4.6-1.6-7.2-2.4l-.7-9.1c2.3 2.1 4.5 4.2 6.8 6.4l.8.7zM842.8 121c2.2-2.8 4.3-5.8 6.4-8.8l1.6 21.7c-2.7-2.7-5.2-5.6-7.7-8.5l-.3-4.4zM858 98.6l3.4 44.9c-2.6-2.2-5.1-4.5-7.6-6.9l-2.2-28c2.2-3.2 4.3-6.6 6.4-10zm-6.8 39.3.9 11.4c-2.2 1-4.5 1.9-6.9 2.9l-1.7-22.3c2.5 2.7 5.1 5.3 7.7 8zm3.5 10.2-.6-7.6c1.9 1.7 3.8 3.5 5.7 5.1-1.7.9-3.3 1.6-5.1 2.5zm5.6-53.6c2.2-3.9 4.3-7.9 6.2-11.8l4.4 57.6c-2.2 1.1-4.5 2.3-6.8 3.4l-3.8-49.2zm8.5-16.8c1.2-2.7 2.3-5.4 3.4-8.1 1.1.2 2.1.3 3.1.5l4.9 65.1c-2.2 1.2-4.4 2.5-6.8 3.7l-4.6-61.2zm9.2-7.2c2.4.4 4.8.9 7.2 1.3l4.4 57.8c-2.2 1.4-4.4 2.7-6.8 4.1L878 70.5zm9.8 1.9c2.5.5 4.9 1 7.2 1.6l3.8 49.4c-2.1 1.5-4.4 3-6.7 4.6l-4.3-55.6zm17.1 1.3c-2.4-.6-4.8-1.3-7.3-1.9L896 50.4c2.5 2 5.1 4.1 7.7 6.3l1.2 17zm1.6-14.5c2.5 2.1 5 4.3 7.5 6.6l.8 10.8c-2.3-.7-4.7-1.4-7.2-2.1l-1.1-15.3zm-11.7 12c-2.3-.5-4.7-1.1-7.2-1.6l-2-27.1c2.4 1.8 5 3.7 7.5 5.7l1.7 23zm2.9 3.4c2.5.6 5 1.3 7.3 1.9l2.9 39.9c-2.1 1.7-4.3 3.4-6.7 5.2l-3.5-47zm10 2.6c2.5.7 4.9 1.4 7.2 2.2l2.2 29c-2 1.9-4.2 3.9-6.6 5.9l-2.8-37.1zm9.9 3.1c2.7.9 5.1 1.7 7.2 2.5L926 99c-1.8 2.1-4 4.5-6.5 7l-1.9-25.7zm-34.8-39.7 2.2 28.5c-2.3-.5-4.7-.9-7.2-1.3l-.9-12.1c1.6-5.4 3-10.9 4-16.4.6.4 1.2.8 1.9 1.3zm-7.7 26.7c-.6-.1-1.3-.2-1.9-.3.5-1.5 1.1-3.1 1.6-4.6l.3 4.9zm-34.5 59.1 2 26.7c-2.2.9-4.5 1.8-6.8 2.6L834 132c1.9-2.2 3.7-4.5 5.6-6.8.3.3.7.7 1 1.2zm-7.3 30.2c-2.2.8-4.6 1.6-6.9 2.4l-1.4-17c2.1-2.3 4.3-4.7 6.5-7.2l1.8 21.8zm-9.5 3.3c-2.2.8-4.5 1.5-6.9 2.2L816 151c2.1-2.1 4.3-4.3 6.5-6.6l1.3 15.5zm-9.5 3.1c-2.2.7-4.5 1.4-6.8 2l-.4-5.6c2-1.8 4.2-3.8 6.4-5.9l.8 9.5zm-9.3 2.7c-2.1.6-4.1 1.2-6.3 1.8-.4.1-.9.2-1.4.4 2-1.6 4.5-3.7 7.3-6.2l.4 4zm123.5-69.6-.9-12.3c3.5 1.3 6 2.3 7.3 2.9l-.5.8c-1.7 3-3.7 5.9-5.9 8.6zm-50.1-58.6c-1.8 9.9-4.5 19.7-8 29.1-18.8-2.6-40.1-3.4-61.6-.1-7.9-20.3-13.5-41.3-16.7-62.9 6.8-.1 38.8 1.2 86.3 33.9zM777.8 77.2c9.5-3.5 19.3-6 29.3-7.7 7.2 17.9 17.1 36.8 30.7 53.5-13.5 17.1-29 32.5-46.1 45.8-3.5-5.7-18.4-34.1-13.9-91.6z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\"},children:'\"Reliable, innovative, and tenacious partner - we rely on them to deliver creative and quick solutions to difficult challenges.\"'})})},J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\"},children:'\"Reliable, innovative, and tenacious partner - we rely on them to deliver creative and quick solutions to difficult challenges.\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\"},children:'\"Reliable, innovative, and tenacious partner - we rely on them to deliver creative and quick solutions to difficult challenges.\"'})}),className:\"framer-8jliw0\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:[\"Executive Director, \",/*#__PURE__*/_jsx(\"br\",{}),\"Data Strategy\"]})}),className:\"framer-zt5n9x\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8xkuj8\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/YqZAb7dNt3ZPTL5Lf6JVLkRw.jpg\"},className:\"framer-purkm0\",\"data-framer-name\":\"Teem fish_monitoring_inc_logo\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\"},children:'\"OnDeck is laser-focused on solving real fisheries challenges, not just AI hype.\"'})})},J6VNmhAOq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\"},children:'\"OnDeck is laser-focused on solving real fisheries challenges, not just AI hype.\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\"},children:'\"OnDeck is laser-focused on solving real fisheries challenges, not just AI hype.\"'})}),className:\"framer-1faziie\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Chief Executive Officer\"})}),className:\"framer-ly6zwu\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ofdqc2\",\"data-framer-name\":\"Press Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:801,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3l54ap-container\",nodeId:\"rY30m1fd4\",scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{variant:\"rnneUBgan\"},J6VNmhAOq:{variant:\"p5euVrC_8\"}},children:/*#__PURE__*/_jsx(Press2,{height:\"100%\",id:\"rY30m1fd4\",layoutId:\"rY30m1fd4\",style:{width:\"100%\"},variant:\"PhTZOWVY2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:257,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qi6gzf-container\",nodeId:\"cB7HfFild\",scopeId:\"RzGRorJU0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A3Ec2wxhJ:{variant:\"Hssm1l5fX\"},J6VNmhAOq:{variant:\"jL5zpoF2b\"}},children:/*#__PURE__*/_jsx(FooterDark2,{h4DZdWBX4:\"var(--token-3f453041-0a31-4d7b-8655-42b83c0f5bdb, rgb(5, 19, 36))\",height:\"100%\",id:\"cB7HfFild\",layoutId:\"cB7HfFild\",style:{width:\"100%\"},variant:\"FLheTBdJq\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Lrd8S.framer-4dl80m, .framer-Lrd8S .framer-4dl80m { display: block; }\",\".framer-Lrd8S.framer-1oksbjq { align-content: center; align-items: center; background-color: var(--token-e94222f5-93dd-4d1c-8eb8-d8df2872bcfe, #000316); 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-Lrd8S .framer-fb8e09-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-Lrd8S .framer-7uh70d { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-5a15a19e-10ed-4736-b6e6-5ac3fc69b18e, #113846) 0%, var(--token-e94222f5-93dd-4d1c-8eb8-d8df2872bcfe, rgb(0, 3, 22)) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 645px; justify-content: center; overflow: hidden; padding: 100px 50px 20px 50px; position: relative; width: 100%; }\",\".framer-Lrd8S .framer-fvbkit { 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: visible; padding: 0px; position: relative; width: 50%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Lrd8S .framer-1cd56kp, .framer-Lrd8S .framer-edgb6m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-Lrd8S .framer-1nwlq8e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-Lrd8S .framer-1imy7ug { flex: none; height: 308px; overflow: hidden; position: relative; width: 35px; }\",\".framer-Lrd8S .framer-blilgq { flex: none; height: 308px; overflow: hidden; position: relative; width: 10%; }\",\".framer-Lrd8S .framer-njwok5 { flex: none; height: 308px; overflow: hidden; position: relative; width: 10px; }\",\".framer-Lrd8S .framer-15rwlug { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 39%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Lrd8S .framer-36ivrc-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 9; }\",\".framer-Lrd8S .framer-xt1ih1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Lrd8S .framer-kf7bgx-container, .framer-Lrd8S .framer-1qi6gzf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Lrd8S .framer-dlh3x6 { align-content: center; align-items: center; background: linear-gradient(180deg, #000316 0%, rgb(14, 55, 69) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 99px; overflow: hidden; padding: 129px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Lrd8S .framer-17260ux { align-content: center; align-items: center; background: radial-gradient(109.00000000000001% 66% at 50% 0%, var(--token-5a15a19e-10ed-4736-b6e6-5ac3fc69b18e, #113846) 61.509360923423415%, var(--token-3f453041-0a31-4d7b-8655-42b83c0f5bdb, rgb(5, 19, 36)) 100%); 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-Lrd8S .framer-1es8qan { 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 100px 0px; position: relative; width: 100%; }\",\".framer-Lrd8S .framer-1qgfan9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Lrd8S .framer-oc17j2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-Lrd8S .framer-1ogfu4m, .framer-Lrd8S .framer-1p0trlt { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-Lrd8S .framer-1hfenxi, .framer-Lrd8S .framer-1c47mbl, .framer-Lrd8S .framer-ys0082, .framer-Lrd8S .framer-thpv5q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Lrd8S .framer-130eyxo, .framer-Lrd8S .framer-1tqe4mn, .framer-Lrd8S .framer-evwfwz, .framer-Lrd8S .framer-1h5sugs, .framer-Lrd8S .framer-cgso73, .framer-Lrd8S .framer-8jliw0, .framer-Lrd8S .framer-1faziie { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Lrd8S .framer-177c9hi, .framer-Lrd8S .framer-jx2pcu, .framer-Lrd8S .framer-1pakwg3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Lrd8S .framer-1lp0rnb { align-content: center; align-items: center; background-color: var(--token-7bfb0e00-2494-48d2-8801-c952decbca0a, #e3e3e3); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Lrd8S .framer-1agp8r3, .framer-Lrd8S .framer-9ao5og, .framer-Lrd8S .framer-n6zmyt, .framer-Lrd8S .framer-15c0k7n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Lrd8S .framer-11t20zy-container, .framer-Lrd8S .framer-1atnly1-container, .framer-Lrd8S .framer-ola017-container { flex: none; height: 15px; position: relative; width: 15px; }\",\".framer-Lrd8S .framer-7d2p1f { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 9; }\",\".framer-Lrd8S .framer-13pnil9, .framer-Lrd8S .framer-1ku9luf, .framer-Lrd8S .framer-19nmx1p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Lrd8S .framer-7rxb6y { align-content: center; align-items: center; aspect-ratio: 1.2000009795926363 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Lrd8S .framer-35lit4, .framer-Lrd8S .framer-1y9a4qt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-Lrd8S .framer-r7xlxa { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Lrd8S .framer-1esz38v { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Lrd8S .framer-1mi6f9s { align-content: center; align-items: center; aspect-ratio: 1.2000009795926363 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Lrd8S .framer-g3draw { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Lrd8S .framer-2mvvso { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 400px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Lrd8S .framer-jug7fg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-Lrd8S .framer-end767 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-Lrd8S .framer-3mvcll, .framer-Lrd8S .framer-8xkuj8 { align-content: center; align-items: center; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; padding: 30px; position: relative; width: 320px; }\",\".framer-Lrd8S .framer-ylov8b, .framer-Lrd8S .framer-1sekfc1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Lrd8S .framer-fk6pb4 { aspect-ratio: 3.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); overflow: visible; position: relative; width: 182px; }\",\".framer-Lrd8S .framer-1fz3z15 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-Lrd8S .framer-1ja1hea { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-Lrd8S .framer-1m0rblj { aspect-ratio: 4.466666666666667 / 1; flex: none; height: 47px; position: relative; width: var(--framer-aspect-ratio-supported, 209px); }\",\".framer-Lrd8S .framer-zt5n9x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 117%; word-break: break-word; word-wrap: break-word; }\",\".framer-Lrd8S .framer-purkm0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 56px; }\",\".framer-Lrd8S .framer-ly6zwu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 82%; word-break: break-word; word-wrap: break-word; }\",\".framer-Lrd8S .framer-1ofdqc2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Lrd8S .framer-3l54ap-container { flex: none; height: auto; pointer-events: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lrd8S.framer-1oksbjq, .framer-Lrd8S .framer-7uh70d, .framer-Lrd8S .framer-fvbkit, .framer-Lrd8S .framer-15rwlug, .framer-Lrd8S .framer-dlh3x6, .framer-Lrd8S .framer-17260ux, .framer-Lrd8S .framer-1es8qan, .framer-Lrd8S .framer-1qgfan9, .framer-Lrd8S .framer-oc17j2, .framer-Lrd8S .framer-1ogfu4m, .framer-Lrd8S .framer-177c9hi, .framer-Lrd8S .framer-1lp0rnb, .framer-Lrd8S .framer-7d2p1f, .framer-Lrd8S .framer-13pnil9, .framer-Lrd8S .framer-7rxb6y, .framer-Lrd8S .framer-35lit4, .framer-Lrd8S .framer-r7xlxa, .framer-Lrd8S .framer-1ku9luf, .framer-Lrd8S .framer-1p0trlt, .framer-Lrd8S .framer-jx2pcu, .framer-Lrd8S .framer-1esz38v, .framer-Lrd8S .framer-1mi6f9s, .framer-Lrd8S .framer-19nmx1p, .framer-Lrd8S .framer-1y9a4qt, .framer-Lrd8S .framer-1pakwg3, .framer-Lrd8S .framer-g3draw, .framer-Lrd8S .framer-2mvvso, .framer-Lrd8S .framer-jug7fg, .framer-Lrd8S .framer-end767, .framer-Lrd8S .framer-ylov8b, .framer-Lrd8S .framer-1ja1hea, .framer-Lrd8S .framer-1sekfc1, .framer-Lrd8S .framer-1ofdqc2 { gap: 0px; } .framer-Lrd8S.framer-1oksbjq > *, .framer-Lrd8S .framer-1ofdqc2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Lrd8S.framer-1oksbjq > :first-child, .framer-Lrd8S .framer-fvbkit > :first-child, .framer-Lrd8S .framer-17260ux > :first-child, .framer-Lrd8S .framer-1qgfan9 > :first-child, .framer-Lrd8S .framer-1ogfu4m > :first-child, .framer-Lrd8S .framer-7d2p1f > :first-child, .framer-Lrd8S .framer-7rxb6y > :first-child, .framer-Lrd8S .framer-35lit4 > :first-child, .framer-Lrd8S .framer-1p0trlt > :first-child, .framer-Lrd8S .framer-1mi6f9s > :first-child, .framer-Lrd8S .framer-1y9a4qt > :first-child, .framer-Lrd8S .framer-2mvvso > :first-child, .framer-Lrd8S .framer-jug7fg > :first-child, .framer-Lrd8S .framer-ylov8b > :first-child, .framer-Lrd8S .framer-1ja1hea > :first-child, .framer-Lrd8S .framer-1sekfc1 > :first-child, .framer-Lrd8S .framer-1ofdqc2 > :first-child { margin-top: 0px; } .framer-Lrd8S.framer-1oksbjq > :last-child, .framer-Lrd8S .framer-fvbkit > :last-child, .framer-Lrd8S .framer-17260ux > :last-child, .framer-Lrd8S .framer-1qgfan9 > :last-child, .framer-Lrd8S .framer-1ogfu4m > :last-child, .framer-Lrd8S .framer-7d2p1f > :last-child, .framer-Lrd8S .framer-7rxb6y > :last-child, .framer-Lrd8S .framer-35lit4 > :last-child, .framer-Lrd8S .framer-1p0trlt > :last-child, .framer-Lrd8S .framer-1mi6f9s > :last-child, .framer-Lrd8S .framer-1y9a4qt > :last-child, .framer-Lrd8S .framer-2mvvso > :last-child, .framer-Lrd8S .framer-jug7fg > :last-child, .framer-Lrd8S .framer-ylov8b > :last-child, .framer-Lrd8S .framer-1ja1hea > :last-child, .framer-Lrd8S .framer-1sekfc1 > :last-child, .framer-Lrd8S .framer-1ofdqc2 > :last-child { margin-bottom: 0px; } .framer-Lrd8S .framer-7uh70d > *, .framer-Lrd8S .framer-1es8qan > *, .framer-Lrd8S .framer-1lp0rnb > *, .framer-Lrd8S .framer-r7xlxa > *, .framer-Lrd8S .framer-1esz38v > *, .framer-Lrd8S .framer-g3draw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Lrd8S .framer-7uh70d > :first-child, .framer-Lrd8S .framer-15rwlug > :first-child, .framer-Lrd8S .framer-dlh3x6 > :first-child, .framer-Lrd8S .framer-1es8qan > :first-child, .framer-Lrd8S .framer-oc17j2 > :first-child, .framer-Lrd8S .framer-177c9hi > :first-child, .framer-Lrd8S .framer-1lp0rnb > :first-child, .framer-Lrd8S .framer-13pnil9 > :first-child, .framer-Lrd8S .framer-r7xlxa > :first-child, .framer-Lrd8S .framer-1ku9luf > :first-child, .framer-Lrd8S .framer-jx2pcu > :first-child, .framer-Lrd8S .framer-1esz38v > :first-child, .framer-Lrd8S .framer-19nmx1p > :first-child, .framer-Lrd8S .framer-1pakwg3 > :first-child, .framer-Lrd8S .framer-g3draw > :first-child, .framer-Lrd8S .framer-end767 > :first-child { margin-left: 0px; } .framer-Lrd8S .framer-7uh70d > :last-child, .framer-Lrd8S .framer-15rwlug > :last-child, .framer-Lrd8S .framer-dlh3x6 > :last-child, .framer-Lrd8S .framer-1es8qan > :last-child, .framer-Lrd8S .framer-oc17j2 > :last-child, .framer-Lrd8S .framer-177c9hi > :last-child, .framer-Lrd8S .framer-1lp0rnb > :last-child, .framer-Lrd8S .framer-13pnil9 > :last-child, .framer-Lrd8S .framer-r7xlxa > :last-child, .framer-Lrd8S .framer-1ku9luf > :last-child, .framer-Lrd8S .framer-jx2pcu > :last-child, .framer-Lrd8S .framer-1esz38v > :last-child, .framer-Lrd8S .framer-19nmx1p > :last-child, .framer-Lrd8S .framer-1pakwg3 > :last-child, .framer-Lrd8S .framer-g3draw > :last-child, .framer-Lrd8S .framer-end767 > :last-child { margin-right: 0px; } .framer-Lrd8S .framer-fvbkit > *, .framer-Lrd8S .framer-1ogfu4m > *, .framer-Lrd8S .framer-7d2p1f > *, .framer-Lrd8S .framer-7rxb6y > *, .framer-Lrd8S .framer-35lit4 > *, .framer-Lrd8S .framer-1p0trlt > *, .framer-Lrd8S .framer-1mi6f9s > *, .framer-Lrd8S .framer-1y9a4qt > *, .framer-Lrd8S .framer-2mvvso > *, .framer-Lrd8S .framer-jug7fg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Lrd8S .framer-15rwlug > *, .framer-Lrd8S .framer-dlh3x6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Lrd8S .framer-17260ux > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Lrd8S .framer-1qgfan9 > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-Lrd8S .framer-oc17j2 > *, .framer-Lrd8S .framer-13pnil9 > *, .framer-Lrd8S .framer-1ku9luf > *, .framer-Lrd8S .framer-19nmx1p > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Lrd8S .framer-177c9hi > *, .framer-Lrd8S .framer-jx2pcu > *, .framer-Lrd8S .framer-1pakwg3 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Lrd8S .framer-end767 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Lrd8S .framer-ylov8b > *, .framer-Lrd8S .framer-1sekfc1 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-Lrd8S .framer-1ja1hea > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (max-width: 809px) { .framer-Lrd8S.framer-1oksbjq { width: 320px; } .framer-Lrd8S .framer-7uh70d { flex-direction: column; height: min-content; padding: 100px 24px 50px 24px; } .framer-Lrd8S .framer-fvbkit { align-content: center; align-items: center; padding: 0px 0px 20px 0px; width: 100%; } .framer-Lrd8S .framer-1nwlq8e, .framer-Lrd8S .framer-end767, .framer-Lrd8S .framer-3mvcll, .framer-Lrd8S .framer-1ja1hea, .framer-Lrd8S .framer-8xkuj8 { width: 100%; } .framer-Lrd8S .framer-15rwlug { padding: 10px; width: 100%; } .framer-Lrd8S .framer-36ivrc-container { flex: none; width: 90%; } .framer-Lrd8S .framer-dlh3x6 { padding: 50px 0px 25px 0px; } .framer-Lrd8S .framer-1es8qan { gap: 0px; } .framer-Lrd8S .framer-1qgfan9 { gap: 27px; } .framer-Lrd8S .framer-oc17j2, .framer-Lrd8S .framer-13pnil9, .framer-Lrd8S .framer-1ku9luf, .framer-Lrd8S .framer-19nmx1p { flex-direction: column; gap: 20px; padding: 16px; } .framer-Lrd8S .framer-1ogfu4m { align-content: center; align-items: center; flex: none; gap: 10px; order: 1; width: 100%; } .framer-Lrd8S .framer-177c9hi { flex-direction: column; } .framer-Lrd8S .framer-1lp0rnb, .framer-Lrd8S .framer-g3draw { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; gap: 5px; height: min-content; padding: 5px 7px 5px 7px; } .framer-Lrd8S .framer-11t20zy-container, .framer-Lrd8S .framer-1atnly1-container, .framer-Lrd8S .framer-ola017-container { height: 12px; width: 12px; } .framer-Lrd8S .framer-7d2p1f { flex: none; height: var(--framer-aspect-ratio-supported, 192px); order: 0; width: 80%; } .framer-Lrd8S .framer-7rxb6y, .framer-Lrd8S .framer-1mi6f9s { aspect-ratio: 1.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 192px); width: 80%; } .framer-Lrd8S .framer-35lit4, .framer-Lrd8S .framer-1p0trlt { align-content: center; align-items: center; flex: none; gap: 10px; width: 100%; } .framer-Lrd8S .framer-1c47mbl, .framer-Lrd8S .framer-ys0082, .framer-Lrd8S .framer-3l54ap-container { order: 0; } .framer-Lrd8S .framer-1tqe4mn, .framer-Lrd8S .framer-evwfwz, .framer-Lrd8S .framer-1qi6gzf-container { order: 1; } .framer-Lrd8S .framer-r7xlxa { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; gap: 5px; height: min-content; order: 2; padding: 5px 7px 5px 7px; } .framer-Lrd8S .framer-jx2pcu { flex-direction: column; order: 2; width: 250px; } .framer-Lrd8S .framer-1esz38v { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; gap: 5px; height: min-content; order: 1; padding: 5px 7px 5px 7px; } .framer-Lrd8S .framer-1y9a4qt { flex: none; width: 100%; } .framer-Lrd8S .framer-1pakwg3 { gap: 0px; width: 100%; } .framer-Lrd8S .framer-2mvvso { flex: none; height: var(--framer-aspect-ratio-supported, 192px); width: 80%; } .framer-Lrd8S .framer-jug7fg { padding: 10px 20px 50px 20px; } .framer-Lrd8S .framer-edgb6m { max-width: 320px; width: 271px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lrd8S .framer-7uh70d, .framer-Lrd8S .framer-1es8qan, .framer-Lrd8S .framer-1qgfan9, .framer-Lrd8S .framer-oc17j2, .framer-Lrd8S .framer-1ogfu4m, .framer-Lrd8S .framer-177c9hi, .framer-Lrd8S .framer-1lp0rnb, .framer-Lrd8S .framer-13pnil9, .framer-Lrd8S .framer-35lit4, .framer-Lrd8S .framer-r7xlxa, .framer-Lrd8S .framer-1ku9luf, .framer-Lrd8S .framer-1p0trlt, .framer-Lrd8S .framer-jx2pcu, .framer-Lrd8S .framer-1esz38v, .framer-Lrd8S .framer-19nmx1p, .framer-Lrd8S .framer-1pakwg3, .framer-Lrd8S .framer-g3draw { gap: 0px; } .framer-Lrd8S .framer-7uh70d > *, .framer-Lrd8S .framer-1ogfu4m > *, .framer-Lrd8S .framer-35lit4 > *, .framer-Lrd8S .framer-1p0trlt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Lrd8S .framer-7uh70d > :first-child, .framer-Lrd8S .framer-1qgfan9 > :first-child, .framer-Lrd8S .framer-oc17j2 > :first-child, .framer-Lrd8S .framer-1ogfu4m > :first-child, .framer-Lrd8S .framer-177c9hi > :first-child, .framer-Lrd8S .framer-13pnil9 > :first-child, .framer-Lrd8S .framer-35lit4 > :first-child, .framer-Lrd8S .framer-1ku9luf > :first-child, .framer-Lrd8S .framer-1p0trlt > :first-child, .framer-Lrd8S .framer-jx2pcu > :first-child, .framer-Lrd8S .framer-19nmx1p > :first-child { margin-top: 0px; } .framer-Lrd8S .framer-7uh70d > :last-child, .framer-Lrd8S .framer-1qgfan9 > :last-child, .framer-Lrd8S .framer-oc17j2 > :last-child, .framer-Lrd8S .framer-1ogfu4m > :last-child, .framer-Lrd8S .framer-177c9hi > :last-child, .framer-Lrd8S .framer-13pnil9 > :last-child, .framer-Lrd8S .framer-35lit4 > :last-child, .framer-Lrd8S .framer-1ku9luf > :last-child, .framer-Lrd8S .framer-1p0trlt > :last-child, .framer-Lrd8S .framer-jx2pcu > :last-child, .framer-Lrd8S .framer-19nmx1p > :last-child { margin-bottom: 0px; } .framer-Lrd8S .framer-1es8qan > *, .framer-Lrd8S .framer-1pakwg3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Lrd8S .framer-1es8qan > :first-child, .framer-Lrd8S .framer-1lp0rnb > :first-child, .framer-Lrd8S .framer-r7xlxa > :first-child, .framer-Lrd8S .framer-1esz38v > :first-child, .framer-Lrd8S .framer-1pakwg3 > :first-child, .framer-Lrd8S .framer-g3draw > :first-child { margin-left: 0px; } .framer-Lrd8S .framer-1es8qan > :last-child, .framer-Lrd8S .framer-1lp0rnb > :last-child, .framer-Lrd8S .framer-r7xlxa > :last-child, .framer-Lrd8S .framer-1esz38v > :last-child, .framer-Lrd8S .framer-1pakwg3 > :last-child, .framer-Lrd8S .framer-g3draw > :last-child { margin-right: 0px; } .framer-Lrd8S .framer-1qgfan9 > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-Lrd8S .framer-oc17j2 > *, .framer-Lrd8S .framer-13pnil9 > *, .framer-Lrd8S .framer-1ku9luf > *, .framer-Lrd8S .framer-19nmx1p > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Lrd8S .framer-177c9hi > *, .framer-Lrd8S .framer-jx2pcu > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-Lrd8S .framer-1lp0rnb > *, .framer-Lrd8S .framer-r7xlxa > *, .framer-Lrd8S .framer-1esz38v > *, .framer-Lrd8S .framer-g3draw > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }}\",\"@media (min-width: 1678px) { .framer-Lrd8S.framer-1oksbjq { width: 1678px; } .framer-Lrd8S .framer-7uh70d { padding: 100px 200px 20px 200px; } .framer-Lrd8S .framer-fvbkit { order: 1; padding: 154px 0px 154px 0px; } .framer-Lrd8S .framer-1imy7ug { order: 2; } .framer-Lrd8S .framer-blilgq { order: 0; } .framer-Lrd8S .framer-njwok5 { order: 4; } .framer-Lrd8S .framer-15rwlug { flex: 1 0 0px; order: 3; width: 1px; } .framer-Lrd8S .framer-36ivrc-container { height: 385px; order: 0; } .framer-Lrd8S .framer-17260ux { background: radial-gradient(86% 56.99999999999999% at 50% 0%, var(--token-5a15a19e-10ed-4736-b6e6-5ac3fc69b18e, #113846) 61.509360923423415%, var(--token-3f453041-0a31-4d7b-8655-42b83c0f5bdb, rgb(5, 19, 36)) 100%); gap: 0px; } .framer-Lrd8S .framer-1es8qan, .framer-Lrd8S .framer-jug7fg { width: 100%; } .framer-Lrd8S .framer-1esz38v { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lrd8S .framer-17260ux { gap: 0px; } .framer-Lrd8S .framer-17260ux > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Lrd8S .framer-17260ux > :first-child { margin-top: 0px; } .framer-Lrd8S .framer-17260ux > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Lrd8S.framer-1oksbjq { width: 810px; } .framer-Lrd8S .framer-7uh70d { flex-direction: column; height: min-content; padding: 100px 24px 36px 24px; } .framer-Lrd8S .framer-fvbkit { align-content: center; align-items: center; width: 100%; } .framer-Lrd8S .framer-1cd56kp { order: 1; } .framer-Lrd8S .framer-1nwlq8e { order: 2; } .framer-Lrd8S .framer-1imy7ug { height: 35px; width: 100%; } .framer-Lrd8S .framer-15rwlug { padding: 20px; width: 100%; } .framer-Lrd8S .framer-36ivrc-container { flex: none; width: 75%; } .framer-Lrd8S .framer-1es8qan { padding: 0px 40px 60px 40px; } .framer-Lrd8S .framer-7d2p1f, .framer-Lrd8S .framer-7rxb6y, .framer-Lrd8S .framer-1mi6f9s, .framer-Lrd8S .framer-2mvvso { height: var(--framer-aspect-ratio-supported, 287px); } .framer-Lrd8S .framer-end767 { width: 100%; } .framer-Lrd8S .framer-3mvcll, .framer-Lrd8S .framer-1ja1hea, .framer-Lrd8S .framer-8xkuj8 { flex: 1 0 0px; width: 1px; } .framer-Lrd8S .framer-fk6pb4 { height: 51px; width: var(--framer-aspect-ratio-supported, 163px); } .framer-Lrd8S .framer-ly6zwu { width: 95%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lrd8S .framer-7uh70d { gap: 0px; } .framer-Lrd8S .framer-7uh70d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Lrd8S .framer-7uh70d > :first-child { margin-top: 0px; } .framer-Lrd8S .framer-7uh70d > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4479.12\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"J6VNmhAOq\":{\"layout\":[\"fixed\",\"auto\"]},\"T5kTOxAmA\":{\"layout\":[\"fixed\",\"auto\"]},\"A3Ec2wxhJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerRzGRorJU0=withCSS(Component,css,\"framer-Lrd8S\");export default FramerRzGRorJU0;FramerRzGRorJU0.displayName=\"Page\";FramerRzGRorJU0.defaultProps={height:4479.12,width:1200};addFonts(FramerRzGRorJU0,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{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:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavbarDark3Fonts,...VideoFonts,...SupportedByFonts,...HeroFonts,...Press2Fonts,...FooterDark2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRzGRorJU0\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J6VNmhAOq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T5kTOxAmA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A3Ec2wxhJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"4479.12\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "shouldPlay", "autoPlay", "se", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavbarDark3Fonts", "getFonts", "f503XXGjd_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "SupportedByFonts", "tWRfPivak_default", "HeroFonts", "Icon", "Press2Fonts", "O_1bnfCWB_default", "FooterDark2Fonts", "Emul9CRD_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "animation7", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "Link", "Image2", "SVG", "css", "FramerRzGRorJU0", "withCSS", "RzGRorJU0_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
