{
  "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/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framerusercontent.com/modules/HGlhtMojsM7QngRDxQwy/QTPkq4KtMi9PI7BqZ2qP/eSMLSyAvK.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=useMemo(()=>startTimeProp===100?99.9:startTimeProp,[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;},[startTime,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(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// 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:{cursor:!!onClick?\"pointer\":\"auto\",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\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (3e30e79)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";import NavbarDark from\"#framer/local/canvasComponent/l7u581cwd/l7u581cwd.js\";import FooterDark from\"#framer/local/canvasComponent/u9Xsq4Rz6/u9Xsq4Rz6.js\";import*as sharedStyle from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import metadataProvider from\"#framer/local/webPageMetadata/eSMLSyAvK/eSMLSyAvK.js\";const NavbarDarkFonts=getFonts(NavbarDark);const VideoFonts=getFonts(Video);const RichTextWithFX=withFX(RichText);const FooterDarkFonts=getFonts(FooterDark);const cycleOrder=[\"g8q8TSdvm\",\"BBeBM6Yga\",\"rQAOVyB6X\"];const breakpoints={BBeBM6Yga:\"(min-width: 810px) and (max-width: 1199px)\",g8q8TSdvm:\"(min-width: 1200px)\",rQAOVyB6X:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-SseU8\";const variantClassNames={BBeBM6Yga:\"framer-v-obyl0n\",g8q8TSdvm:\"framer-v-wl7l07\",rQAOVyB6X:\"framer-v-kowpxm\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition1={damping:40,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:80};const transition2={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:80};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"g8q8TSdvm\",Phone:\"rQAOVyB6X\",Tablet:\"BBeBM6Yga\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"g8q8TSdvm\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-SseU8`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-SseU8`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"BBeBM6Yga\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"rQAOVyB6X\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"g8q8TSdvm\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wl7l07\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bemefj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{variant:\"AHROeCzAk\"},rQAOVyB6X:{variant:\"UGgr85Xp0\"}},children:/*#__PURE__*/_jsx(NavbarDark,{height:\"100%\",id:\"yh_Y20PiO\",layoutId:\"yh_Y20PiO\",style:{width:\"100%\"},variant:\"iwev0oavE\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7uu8p\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rQAOVyB6X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-769d5b26-fa71-4e6d-8875-ba83b1eeb267, rgb(30, 48, 63))\"},children:\"Currently, I am\u2026\"})})}},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\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-769d5b26-fa71-4e6d-8875-ba83b1eeb267, rgb(30, 48, 63))\"},children:\"Currently, I am\u2026\"})}),className:\"framer-1jow36b\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yog2ry\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8tun49\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15iuynj\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:321,intrinsicWidth:343,pixelHeight:321,pixelWidth:343,src:\"https://framerusercontent.com/images/q8ZZdYsWf90Fmnz1lZgJBDeNWFQ.png\"},className:\"framer-x9wb78 hidden-obyl0n\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7yd8mi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"10px\"},children:\"Sportech \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"10px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"10px\"},children:\"Ventures\"})]})})}},children:/*#__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-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Sportech\"})}),className:\"framer-1j0yux\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Venture \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Partner\"})]})}},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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Venture Partner\"})}),className:\"framer-j6otbm\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Built on a 100-year legacy of innovation, Sportech Ventures identifies global trends that drive innovation and change, and invests in founders who are shaping the future.  \"})})}},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-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Built on a 100-year legacy of innovation, Sportech Ventures identifies global trends that drive innovation and change, and invests in founders who are shaping the future.  \"})}),className:\"framer-1g1ozzo\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mfyj3o\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dd5cix\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:\"50px\",src:\"https://framerusercontent.com/images/k8yDkmVBYtZut1xM0SrcbG8Wl20.png\",srcSet:\"https://framerusercontent.com/images/k8yDkmVBYtZut1xM0SrcbG8Wl20.png?scale-down-to=512 512w,https://framerusercontent.com/images/k8yDkmVBYtZut1xM0SrcbG8Wl20.png 1024w\"},className:\"framer-y4d6hv hidden-obyl0n\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h45s2q\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Spond\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Spond\"})}),className:\"framer-1uxbbd\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"NED\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Non-Executive Director\"})}),className:\"framer-10994iu\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Within the last 3 years, we have become the world's top sports team management app, with 11m+ installs and 3m MAU's. I led the GTM and scaled the biz after a \\xa314m PE investment.\"})})}},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-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Within the 4 years, Spond has become the world's #1 sports team management app. 11m+ installs, 3m MAU's and significant growth in ARR. Cool D2C biz, growing fast in Europe and the US. \"})}),className:\"framer-1ng95dz\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ezdd7b\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ilhcbt\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:130,intrinsicWidth:130,pixelHeight:130,pixelWidth:130,src:\"https://framerusercontent.com/images/4lMagNpaq8mB5Zw6mhtb0lPjMPc.jpeg\"},className:\"framer-l8pilq hidden-obyl0n\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gugkcx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Wellchild\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Wellchild\"})}),className:\"framer-176wy17\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"NED\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Non-Executive Director\"})}),className:\"framer-157vlmj\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"The incredible national charity for sick children, I support the WellChild as they provide crucial nurses for children and families with serious medical conditions. Amazing charity.\"})})}},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-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"The incredible national charity for sick children, I support the WellChild as they provide crucial nurses for children and families with serious medical conditions. Amazing charity.\"})}),className:\"framer-1yhagkq\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nvpde\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t9p6yc\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:460,intrinsicWidth:460,loading:\"lazy\",pixelHeight:460,pixelWidth:460,src:\"https://framerusercontent.com/images/WIq8Jnsd2OLO5B2e3pDXNhOpJ0.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:460,intrinsicWidth:460,pixelHeight:460,pixelWidth:460,src:\"https://framerusercontent.com/images/WIq8Jnsd2OLO5B2e3pDXNhOpJ0.webp\"},className:\"framer-77wura hidden-obyl0n\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cozyb5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Brace\"})})}},children:/*#__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-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Brace\"})}),className:\"framer-d5lenl\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Board \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Advisor \"})]})}},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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Board Advisor & Investor\"})}),className:\"framer-abl8d\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Finally, an app (B2B2C) that brings together a community to support injury rehab, recovery and boost wellbeing. I play a strategic role on the board and mentor two wonderful founders. \"})})}},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-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Finally, an app (B2B2C) that brings together a community to support injury rehab, recovery and boost wellbeing. I play a strategic role on the board and mentor two wonderful founders. \"})}),className:\"framer-1348mp7\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1btiln7\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mpeue0\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:158,intrinsicWidth:144,loading:\"lazy\",pixelHeight:158,pixelWidth:144,src:\"https://framerusercontent.com/images/YpDlU5rAmyxA8vxRRxOMVvZAwk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:158,intrinsicWidth:144,pixelHeight:158,pixelWidth:144,src:\"https://framerusercontent.com/images/YpDlU5rAmyxA8vxRRxOMVvZAwk.png\"},className:\"framer-zeyg8 hidden-obyl0n\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13rr90e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Daymade\"})})}},children:/*#__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-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Daymade\"})}),className:\"framer-1gyjqgu\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Investor\"})})}},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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Investor\"})}),className:\"framer-ulnocj\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"D2C millennial & Gen Z oriented gaming reward platform, dedicated to providing cool prizes and unique travel experiences, whilst fundraising for eco-friendly initiatives. Good vibes only!\"})})}},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-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"D2C millennial & Gen Z oriented gaming reward platform, dedicated to providing cool prizes and unique travel experiences, whilst fundraising for eco-friendly initiatives. Good vibes only!\"})}),className:\"framer-fc3ih9\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gwcoqx\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lahac2\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:\"lazy\",pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/UOJi8WCsaraxsv5p5Lk83S9gg.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/UOJi8WCsaraxsv5p5Lk83S9gg.jpeg\"},className:\"framer-18ecze2 hidden-obyl0n\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15e996j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:[\"Fitfolio\",/*#__PURE__*/_jsx(\"br\",{}),\"Health\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Fitfolio Health\"})}),className:\"framer-32ob3g\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Mentor\"})})}},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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Mentor\"})}),className:\"framer-1yos9q9\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"US healthcare systems are broken. People are getting sicker and are more inactive and overweight than ever before. Fitfolio's app incentivises people to start moving. Movement is medicine!\"})})}},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-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"US healthcare systems are broken. People are getting sicker and are more inactive and overweight than ever before. Fitfolio's app incentivises people to start moving. Movement is medicine!\"})}),className:\"framer-11sg136\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15d0asc\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12hal87\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66nu0z\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Work together?\"})}),className:\"framer-foe9rb\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Need a speaker, strategist or corporate advisor\u2026\"})}),className:\"framer-cj3zm5\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p2my57\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-115d7fj\",\"data-framer-name\":\"Button\",name:\"Button\",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:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JceGKv1JM\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Get in touch\"})})})}),className:\"framer-1kdgo2p\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,pixelHeight:2e3,pixelWidth:3e3,sizes:\"max(50vw, 1px)\",src:\"https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg\",srcSet:\"https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg 3000w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2e3,pixelWidth:3e3,sizes:\"100vw\",src:\"https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg\",srcSet:\"https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2e3,pixelWidth:3e3,sizes:\"max(50vw, 1px)\",src:\"https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg\",srcSet:\"https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/k0rAypubfXguR8G4NZkaHREkZNw.jpg 3000w\"},className:\"framer-10eyudv\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19nxpob\",\"data-framer-name\":\"Templates\",name:\"Templates\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1819es3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-38uq6q\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1728,intrinsicWidth:3456,loading:\"lazy\",pixelHeight:2e3,pixelWidth:3e3,sizes:\"max(min(100vw - 80px, 1000px), 1px)\",src:\"https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg\",srcSet:\"https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg 3000w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1728,intrinsicWidth:3456,loading:\"lazy\",pixelHeight:2e3,pixelWidth:3e3,sizes:\"min(100vw - 40px, 1000px)\",src:\"https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg\",srcSet:\"https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1728,intrinsicWidth:3456,loading:\"lazy\",pixelHeight:2e3,pixelWidth:3e3,sizes:\"max(min(100vw - 160px, 1000px), 1px)\",src:\"https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg\",srcSet:\"https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OINt9HUOFvW9YAk5Zsycgxe0gXw.jpg 3000w\"},className:\"framer-eo65gq\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wg11qa\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Woldpack, Cheltenham\"})}),className:\"framer-11f4ub7\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"We set out to celebrate entrepreneurship in the Cotswolds. My gosh, did the startup community deliver. There was such a buzz and energy in the room, it was unreal. Massive thanks to our speakers \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/richardbenc/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Richard Benc\"})}),\" founder of \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/studio-underd0g/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Studio Underd0g\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/markstewart-stewartgolf/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Mark Stewart\"})}),\" CEO of \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/stewartgolf/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Stewart Golf\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/johnny-palmer-autonomous/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Johnny Palmer\"})}),\" serial entrepreneur and founder of \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/pytchuk/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"PYTCH | B Corp\"})}),\" (and many more!), \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/abby-guilding-1743229a/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Abby Guilding\"})}),\" from \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/wellchild/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"WellChild\"})}),\", and \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/anthonyrowe/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"Anthony Rowe\"})}),\" founder of \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/squidsoup/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"squidsoup\"})}),\".\"]})}),className:\"framer-1pl0h94\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1728,intrinsicWidth:3456,loading:\"lazy\",pixelHeight:1728,pixelWidth:3456,sizes:\"max(min(100vw - 80px, 1000px), 1px)\",src:\"https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png\",srcSet:\"https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png 3456w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1728,intrinsicWidth:3456,loading:\"lazy\",pixelHeight:1728,pixelWidth:3456,sizes:\"min(100vw - 40px, 1000px)\",src:\"https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png\",srcSet:\"https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png 3456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1728,intrinsicWidth:3456,loading:\"lazy\",pixelHeight:1728,pixelWidth:3456,sizes:\"max(min(100vw - 160px, 1000px), 1px)\",src:\"https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png\",srcSet:\"https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KmMeBhoXVdTZmMKWNcfe9pEeh3Y.png 3456w\"},className:\"framer-yxdt7u\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q49j50\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Ready. Steady. Fundraise.\"})}),className:\"framer-16t4lol\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"What fun speaking at CyNam's fundraising event for startups, accelerators, investors and industry experts in the cyber security space. \"})}),className:\"framer-1g85moo\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b2104d\",\"data-framer-name\":\"Grid 2\",name:\"Grid 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tdp26d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lag8bn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:1548,pixelWidth:4096,sizes:\"max((min(100vw - 80px, 1000px) - 60px) / 2, 200px)\",src:\"https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg\",srcSet:\"https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg 4096w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:1548,pixelWidth:4096,sizes:\"max(min(100vw - 40px, 1000px), 200px)\",src:\"https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg\",srcSet:\"https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:1548,pixelWidth:4096,sizes:\"calc(max((min(100vw - 60px, 1000px) - 120px) / 3, 200px) * 2 + 60px)\",src:\"https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg\",srcSet:\"https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/H0pSTHr9vuiCn1rjUZ6sX1G51c.jpeg 4096w\"},className:\"framer-1aon7ge\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l8ciyo\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"HLTH Las Vegas\"})}),className:\"framer-2yv1q3\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Never let a good crisis go to waste. It's an opportunity to do things you once thought were impossible. The \",/*#__PURE__*/_jsx(Link,{href:\"https://www.hlth.com/2023event\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"HLTH conference\"})}),\" in Las Vegas was awesome (and scary). As broken as the US healthcare system is, the tipping point might have been reached. There\u2019s light at the end of the tunnel and it\u2019s being powered by an explosion of innovation happening right now.\"]})}),className:\"framer-l35zqh\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hu03a5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:1548,pixelWidth:4096,sizes:\"max((min(100vw - 80px, 1000px) - 60px) / 2, 200px)\",src:\"https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg\",srcSet:\"https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg 4096w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:1548,pixelWidth:4096,sizes:\"max(min(100vw - 40px, 1000px), 200px)\",src:\"https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg\",srcSet:\"https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:1548,pixelWidth:4096,sizes:\"max((min(100vw - 60px, 1000px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg\",srcSet:\"https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/W8Z1RkjxgTGn74b6yvuI9CuYqTU.jpeg 4096w\"},className:\"framer-yd6y9g\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xdnlgw\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Movement is medicine\"})}),className:\"framer-12tam1o\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"The UK has an \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/nhs/\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"NHS\"})}),\" that\u2019s bursting at the seams, a nation that\u2019s getting sicker, huge health inequalities (thanks austerity!) and a population more inactive and overweight than ever. It's time to move!\"]})}),className:\"framer-1gz79u1\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4xctd5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2094,intrinsicWidth:3308,loading:\"lazy\",pixelHeight:2094,pixelWidth:3308,sizes:\"max((min(100vw - 80px, 1000px) - 60px) / 2, 200px)\",src:\"https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg\",srcSet:\"https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg 3308w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2094,intrinsicWidth:3308,loading:\"lazy\",pixelHeight:2094,pixelWidth:3308,sizes:\"max(min(100vw - 40px, 1000px), 200px)\",src:\"https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg\",srcSet:\"https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg 3308w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2094,intrinsicWidth:3308,loading:\"lazy\",pixelHeight:2094,pixelWidth:3308,sizes:\"calc(max((min(100vw - 60px, 1000px) - 120px) / 3, 200px) * 2 + 60px)\",src:\"https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg\",srcSet:\"https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8G1sENRufyK2uKEpZvhYfCfToo.jpg 3308w\"},className:\"framer-1g8oxmv\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1em7c1d\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Ireland Sports Innovation & Technology Summit 2023\"})}),className:\"framer-3928qs\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Thanks to Sport Ireland for inviting me as a guest contributor to their inaugural Innovation Summit. A joy to share the stage with companies like Whoop, STATSports, Stats Perform, Ireland Rugby the golfer Padraig Harrington, and many more. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1mdftl3\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r527fg\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3464,intrinsicWidth:3464,loading:\"lazy\",pixelHeight:3464,pixelWidth:3464,sizes:\"max((min(100vw - 80px, 1000px) - 60px) / 2, 200px)\",src:\"https://framerusercontent.com/images/s6Ikdx3dQtm593FpACEgMek2xk.jpg\",srcSet:\"https://framerusercontent.com/images/s6Ikdx3dQtm593FpACEgMek2xk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s6Ikdx3dQtm593FpACEgMek2xk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s6Ikdx3dQtm593FpACEgMek2xk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/s6Ikdx3dQtm593FpACEgMek2xk.jpg 3464w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3464,intrinsicWidth:3464,loading:\"lazy\",pixelHeight:3464,pixelWidth:3464,sizes:\"max((min(100vw - 60px, 1000px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/s6Ikdx3dQtm593FpACEgMek2xk.jpg\",srcSet:\"https://framerusercontent.com/images/s6Ikdx3dQtm593FpACEgMek2xk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s6Ikdx3dQtm593FpACEgMek2xk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s6Ikdx3dQtm593FpACEgMek2xk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/s6Ikdx3dQtm593FpACEgMek2xk.jpg 3464w\"},className:\"framer-k5u9j4 hidden-kowpxm\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t9g1a9\",\"data-framer-name\":\"Content\",name:\"Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Sports Tech Ireland\"})}),className:\"framer-1enlb6y hidden-kowpxm\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"The Irish Sports Tech scene is flourishing. Looking forward to seeing what this year brings.\"})}),className:\"framer-1v9yszg hidden-kowpxm\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9lwnjs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rkx0a5\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:\"lazy\",pixelHeight:1200,pixelWidth:1200,sizes:\"max((min(100vw - 80px, 1000px) - 38px) / 2, 200px)\",src:\"https://framerusercontent.com/images/SaKXKqZuaER6886OBY3X28wQ1zc.jpg\",srcSet:\"https://framerusercontent.com/images/SaKXKqZuaER6886OBY3X28wQ1zc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SaKXKqZuaER6886OBY3X28wQ1zc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SaKXKqZuaER6886OBY3X28wQ1zc.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:\"lazy\",pixelHeight:1200,pixelWidth:1200,sizes:\"max((min(100vw - 60px, 1000px) - 76px) / 3, 200px)\",src:\"https://framerusercontent.com/images/SaKXKqZuaER6886OBY3X28wQ1zc.jpg\",srcSet:\"https://framerusercontent.com/images/SaKXKqZuaER6886OBY3X28wQ1zc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SaKXKqZuaER6886OBY3X28wQ1zc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SaKXKqZuaER6886OBY3X28wQ1zc.jpg 1200w\"},className:\"framer-pqx27l hidden-kowpxm\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-40veu8\",\"data-framer-name\":\"Content\",name:\"Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Sporting Showcase\"})}),className:\"framer-1nax4ua hidden-kowpxm\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Swansea University's vision for transforming the sport, health and wellness in the region at their \",/*#__PURE__*/_jsx(Link,{href:\"https://www.swansea.ac.uk/sport/showcase/\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"2023 showcase\"})}),\". \"]})}),className:\"framer-o5mf0h hidden-kowpxm\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z6z2c4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:669,intrinsicWidth:1179,loading:\"lazy\",pixelHeight:669,pixelWidth:1179,sizes:\"max((min(100vw - 80px, 1000px) - 38px) / 2, 200px)\",src:\"https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png\",srcSet:\"https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png 1179w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:669,intrinsicWidth:1179,loading:\"lazy\",pixelHeight:669,pixelWidth:1179,sizes:\"max(min(100vw - 40px, 1000px), 200px)\",src:\"https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png\",srcSet:\"https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png 1179w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:669,intrinsicWidth:1179,loading:\"lazy\",pixelHeight:669,pixelWidth:1179,sizes:\"calc(max((min(100vw - 60px, 1000px) - 76px) / 3, 200px) * 2 + 38px)\",src:\"https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png\",srcSet:\"https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9FizAKrhWfDuz0DcO3oRXjT8zsg.png 1179w\"},className:\"framer-syam6s\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cgbw9z\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Speaking at the Swansea University Sporting Showcase\"})}),className:\"framer-izgxh4\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Wonderful to share the stage with Matt Parker PhD, Director of Performance Innovation at English Institute of Sport, and Dr Scott Drawer, Director of Sport at Millfield School.  \"})}),className:\"framer-1yny4hz\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s0x3fh\",\"data-framer-name\":\"Templates\",name:\"Templates\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-81g37m\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-skbtcb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1365,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1365,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1000px) - 60px) / 2, 1px)\",src:\"https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png\",srcSet:\"https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png 2048w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1365,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1365,pixelWidth:2048,sizes:\"min(100vw - 40px, 1000px)\",src:\"https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png\",srcSet:\"https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1365,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1365,pixelWidth:2048,sizes:\"max((min(100vw - 40px, 1000px) - 60px) / 2, 1px)\",src:\"https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png\",srcSet:\"https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NyiZEwpUkbWhFbiaXLerfJClhFQ.png 2048w\"},className:\"framer-1uc04e\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sq09ay\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"WellChild Awards \"})}),className:\"framer-cfrsyn\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Inspirational. Always a pleasure to be involved, along with the brilliant Ed Chamberlin and Charlotte Hawkins. \"})}),className:\"framer-1k362hh\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9v284w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:788,intrinsicWidth:940,loading:\"lazy\",pixelHeight:788,pixelWidth:940,sizes:\"max((min(100vw - 80px, 1000px) - 60px) / 2, 1px)\",src:\"https://framerusercontent.com/images/V2TF6YoicxwAfQrb6m17w1adlDo.png\",srcSet:\"https://framerusercontent.com/images/V2TF6YoicxwAfQrb6m17w1adlDo.png?scale-down-to=512 512w,https://framerusercontent.com/images/V2TF6YoicxwAfQrb6m17w1adlDo.png 940w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:788,intrinsicWidth:940,loading:\"lazy\",pixelHeight:788,pixelWidth:940,sizes:\"min(100vw - 40px, 1000px)\",src:\"https://framerusercontent.com/images/V2TF6YoicxwAfQrb6m17w1adlDo.png\",srcSet:\"https://framerusercontent.com/images/V2TF6YoicxwAfQrb6m17w1adlDo.png?scale-down-to=512 512w,https://framerusercontent.com/images/V2TF6YoicxwAfQrb6m17w1adlDo.png 940w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:788,intrinsicWidth:940,loading:\"lazy\",pixelHeight:788,pixelWidth:940,sizes:\"max((min(100vw - 40px, 1000px) - 60px) / 2, 1px)\",src:\"https://framerusercontent.com/images/V2TF6YoicxwAfQrb6m17w1adlDo.png\",srcSet:\"https://framerusercontent.com/images/V2TF6YoicxwAfQrb6m17w1adlDo.png?scale-down-to=512 512w,https://framerusercontent.com/images/V2TF6YoicxwAfQrb6m17w1adlDo.png 940w\"},className:\"framer-16o2ps0\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lhbp5k\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Meeting the Award Winners \"})}),className:\"framer-1tycmo6\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Congratulations to all of the award nominees and winners. Good to catch up with WellChild's Patron, Prince Harry. \"})}),className:\"framer-1fuar57\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b5lcit\",\"data-framer-name\":\"Grid 2\",name:\"Grid 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vluwjd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wij4ad\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:4096,pixelWidth:4096,sizes:\"max((min(100vw - 80px, 1000px) - 60px) / 2, 200px)\",src:\"https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg\",srcSet:\"https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg 4096w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:4096,pixelWidth:4096,sizes:\"max(min(100vw - 40px, 1000px), 200px)\",src:\"https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg\",srcSet:\"https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg 4096w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:4096,loading:\"lazy\",pixelHeight:4096,pixelWidth:4096,sizes:\"max((min(100vw - 100px, 1000px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg\",srcSet:\"https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NC6Q2d1DEeaPoGABiYCiAdQBsM.jpeg 4096w\"},className:\"framer-16oy139\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dpnqfe\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"The London AI Summit \"})}),className:\"framer-4bma3w\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"The good , the bad and the ugly at the AI Accelerator.\"})}),className:\"framer-1x2c3j3\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sayd27\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:4095,loading:\"lazy\",pixelHeight:1548,pixelWidth:4095,sizes:\"max((min(100vw - 80px, 1000px) - 60px) / 2, 200px)\",src:\"https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg\",srcSet:\"https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg 4095w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:4095,loading:\"lazy\",pixelHeight:1548,pixelWidth:4095,sizes:\"max(min(100vw - 40px, 1000px), 200px)\",src:\"https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg\",srcSet:\"https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg 4095w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1548,intrinsicWidth:4095,loading:\"lazy\",pixelHeight:1548,pixelWidth:4095,sizes:\"calc(max((min(100vw - 100px, 1000px) - 120px) / 3, 200px) * 2 + 60px)\",src:\"https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg\",srcSet:\"https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ek5QH7wtxYhLAyWP4ctjgEQA2k.jpeg 4095w\"},className:\"framer-14dcy9l\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bfsfs5\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Elevate 2023\"})}),className:\"framer-1hm1aun\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Panelist at the UK's leading health and wellness tech show. Activity is the heart beat of the community and tech can drive a lot of good. \"})}),className:\"framer-b16h7s\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kjqtl3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2e3,pixelWidth:3e3,sizes:\"max((min(100vw - 80px, 1000px) - 60px) / 2, 200px)\",src:\"https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg\",srcSet:\"https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg 3000w\"}},rQAOVyB6X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2e3,pixelWidth:3e3,sizes:\"max(min(100vw - 40px, 1000px), 200px)\",src:\"https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg\",srcSet:\"https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:\"lazy\",pixelHeight:2e3,pixelWidth:3e3,sizes:\"calc(max((min(100vw - 100px, 1000px) - 120px) / 3, 200px) * 2 + 60px)\",src:\"https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg\",srcSet:\"https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/oxPQnQY0rRfBNVEWt6tyqV1vow.jpg 3000w\"},className:\"framer-180x1mb\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18hqqwa\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Product Launch\"})}),className:\"framer-3a9rcc\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Live feature launches with our most active users - a great way to create momentum and generate feedback to support a product led growth strategy.\"})}),className:\"framer-3cy5f4\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wa5cad\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1365,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1365,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1000px) - 60px) / 2, 200px)\",src:\"https://framerusercontent.com/images/2w10Qibk0fK8WfETl5zHYzSEjfE.jpg\",srcSet:\"https://framerusercontent.com/images/2w10Qibk0fK8WfETl5zHYzSEjfE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2w10Qibk0fK8WfETl5zHYzSEjfE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2w10Qibk0fK8WfETl5zHYzSEjfE.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1365,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1365,pixelWidth:2048,sizes:\"max((min(100vw - 100px, 1000px) - 120px) / 3, 200px)\",src:\"https://framerusercontent.com/images/2w10Qibk0fK8WfETl5zHYzSEjfE.jpg\",srcSet:\"https://framerusercontent.com/images/2w10Qibk0fK8WfETl5zHYzSEjfE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2w10Qibk0fK8WfETl5zHYzSEjfE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2w10Qibk0fK8WfETl5zHYzSEjfE.jpg 2048w\"},className:\"framer-1wjafna hidden-kowpxm\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dev64v\",\"data-framer-name\":\"Content\",name:\"Content\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"The Oval Sports Awards\"})}),className:\"framer-1jwwh60 hidden-kowpxm\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Honouring the heroes of grassroots sport who make it happen.\"})}),className:\"framer-raly60 hidden-kowpxm\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lfawgh\",\"data-framer-name\":\"Testimonials 2\",name:\"Testimonials 2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w4omkr-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"WRJuOcRya\",isMixedBorderRadius:false,layoutId:\"WRJuOcRya\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/pko8IUKOGoHo3rf9c7aQgXeNvI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aoa50k\",\"data-framer-name\":\"Testimonials 2\",name:\"Testimonials 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mls0dr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\"},children:\"Let's get to know each other.\"})})},rQAOVyB6X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\"},children:\"Let's get to know each other.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\"},children:\"Let's get to know each other.\"})}),className:\"framer-9zvon3\",fonts:[\"GF;Inter-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BBeBM6Yga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JceGKv1JM\"},openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Get in touch.\"})})})})},rQAOVyB6X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JceGKv1JM\"},openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Get in touch.\"})})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JceGKv1JM\"},openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Get in touch.\"})})})}),className:\"framer-btk4y0\",fonts:[\"GF;Inter-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19jgj5u-container\",children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"V_U4yWLVy\",layoutId:\"V_U4yWLVy\",style:{width:\"100%\"},variant:\"S28a_IF1W\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-SseU8 { background: hsl(0, 0%, 100%); }`,\".framer-SseU8.framer-123acaq, .framer-SseU8 .framer-123acaq { display: block; }\",\".framer-SseU8.framer-wl7l07 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-SseU8 .framer-bemefj-container, .framer-SseU8 .framer-19jgj5u-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-SseU8 .framer-7uu8p { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1jow36b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 68px; position: relative; white-space: pre-wrap; width: 745px; word-break: break-word; word-wrap: break-word; }\",\".framer-SseU8 .framer-yog2ry { 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-SseU8 .framer-8tun49, .framer-SseU8 .framer-1mfyj3o { 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: 360px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-SseU8 .framer-15iuynj, .framer-SseU8 .framer-1dd5cix, .framer-SseU8 .framer-ilhcbt, .framer-SseU8 .framer-t9p6yc, .framer-SseU8 .framer-mpeue0, .framer-SseU8 .framer-lahac2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-x9wb78, .framer-SseU8 .framer-y4d6hv, .framer-SseU8 .framer-l8pilq, .framer-SseU8 .framer-77wura, .framer-SseU8 .framer-zeyg8, .framer-SseU8 .framer-18ecze2 { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SseU8 .framer-7yd8mi, .framer-SseU8 .framer-1h45s2q, .framer-SseU8 .framer-gugkcx, .framer-SseU8 .framer-1cozyb5, .framer-SseU8 .framer-13rr90e, .framer-SseU8 .framer-15e996j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-SseU8 .framer-1j0yux, .framer-SseU8 .framer-j6otbm, .framer-SseU8 .framer-1uxbbd, .framer-SseU8 .framer-10994iu, .framer-SseU8 .framer-176wy17, .framer-SseU8 .framer-157vlmj, .framer-SseU8 .framer-d5lenl, .framer-SseU8 .framer-abl8d, .framer-SseU8 .framer-1gyjqgu, .framer-SseU8 .framer-ulnocj, .framer-SseU8 .framer-32ob3g, .framer-SseU8 .framer-1yos9q9, .framer-SseU8 .framer-11f4ub7, .framer-SseU8 .framer-16t4lol, .framer-SseU8 .framer-cfrsyn, .framer-SseU8 .framer-1tycmo6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-SseU8 .framer-1g1ozzo, .framer-SseU8 .framer-1ng95dz, .framer-SseU8 .framer-1yhagkq, .framer-SseU8 .framer-1348mp7, .framer-SseU8 .framer-fc3ih9, .framer-SseU8 .framer-11sg136, .framer-SseU8 .framer-cj3zm5, .framer-SseU8 .framer-l35zqh, .framer-SseU8 .framer-1gz79u1, .framer-SseU8 .framer-1mdftl3, .framer-SseU8 .framer-1v9yszg, .framer-SseU8 .framer-o5mf0h, .framer-SseU8 .framer-1yny4hz, .framer-SseU8 .framer-1x2c3j3, .framer-SseU8 .framer-b16h7s, .framer-SseU8 .framer-3cy5f4, .framer-SseU8 .framer-raly60 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SseU8 .framer-ezdd7b, .framer-SseU8 .framer-nvpde, .framer-SseU8 .framer-1btiln7, .framer-SseU8 .framer-1gwcoqx { 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: 20px; height: 360px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-SseU8 .framer-15d0asc { align-content: center; align-items: center; background-color: #ffffff; 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: 100%; }\",\".framer-SseU8 .framer-12hal87 { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-9034de85-5a74-4867-9530-7c2a6f85984c, #fafafa); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SseU8 .framer-66nu0z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-SseU8 .framer-foe9rb, .framer-SseU8 .framer-2yv1q3, .framer-SseU8 .framer-12tam1o, .framer-SseU8 .framer-3928qs, .framer-SseU8 .framer-1enlb6y, .framer-SseU8 .framer-1nax4ua, .framer-SseU8 .framer-izgxh4, .framer-SseU8 .framer-4bma3w, .framer-SseU8 .framer-1hm1aun, .framer-SseU8 .framer-3a9rcc, .framer-SseU8 .framer-1jwwh60 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SseU8 .framer-1p2my57 { 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-SseU8 .framer-115d7fj { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: auto; }\",\".framer-SseU8 .framer-1kdgo2p { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-SseU8 .framer-10eyudv { -webkit-filter: drop-shadow(0px 1px 1px var(--token-482c19e1-d0eb-4fd1-b1cb-8d9742d7de51, #999999) /* {\"name\":\"3\"} */); align-content: center; align-items: center; display: flex; filter: drop-shadow(0px 1px 1px var(--token-482c19e1-d0eb-4fd1-b1cb-8d9742d7de51, #999999) /* {\"name\":\"3\"} */); flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 360px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }',\".framer-SseU8 .framer-19nxpob { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1819es3, .framer-SseU8 .framer-81g37m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-38uq6q, .framer-SseU8 .framer-skbtcb, .framer-SseU8 .framer-9v284w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SseU8 .framer-eo65gq, .framer-SseU8 .framer-yxdt7u { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 252px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SseU8 .framer-1wg11qa, .framer-SseU8 .framer-q49j50, .framer-SseU8 .framer-1sq09ay, .framer-SseU8 .framer-1lhbp5k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1pl0h94, .framer-SseU8 .framer-1g85moo { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 998px; word-break: break-word; word-wrap: break-word; }\",\".framer-SseU8 .framer-1b2104d { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1tdp26d, .framer-SseU8 .framer-1vluwjd { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1lag8bn, .framer-SseU8 .framer-4xctd5, .framer-SseU8 .framer-z6z2c4, .framer-SseU8 .framer-sayd27, .framer-SseU8 .framer-kjqtl3 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; grid-column: auto / span 2; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1aon7ge, .framer-SseU8 .framer-yd6y9g, .framer-SseU8 .framer-1g8oxmv, .framer-SseU8 .framer-k5u9j4, .framer-SseU8 .framer-pqx27l, .framer-SseU8 .framer-syam6s, .framer-SseU8 .framer-16oy139, .framer-SseU8 .framer-14dcy9l, .framer-SseU8 .framer-180x1mb, .framer-SseU8 .framer-1wjafna { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SseU8 .framer-1l8ciyo, .framer-SseU8 .framer-1xdnlgw, .framer-SseU8 .framer-1em7c1d, .framer-SseU8 .framer-t9g1a9, .framer-SseU8 .framer-40veu8, .framer-SseU8 .framer-1cgbw9z, .framer-SseU8 .framer-dpnqfe, .framer-SseU8 .framer-bfsfs5, .framer-SseU8 .framer-18hqqwa, .framer-SseU8 .framer-dev64v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1hu03a5, .framer-SseU8 .framer-1r527fg, .framer-SseU8 .framer-rkx0a5, .framer-SseU8 .framer-1wij4ad, .framer-SseU8 .framer-wa5cad { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-9lwnjs { display: grid; flex: none; gap: 38px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1s0x3fh { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1uc04e, .framer-SseU8 .framer-16o2ps0 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 250px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-SseU8 .framer-1k362hh, .framer-SseU8 .framer-1fuar57 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; }\",\".framer-SseU8 .framer-1b5lcit { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-lfawgh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1w4omkr-container { flex: none; height: 633px; position: relative; width: 1202px; }\",\".framer-SseU8 .framer-1aoa50k { align-content: center; align-items: center; background-color: var(--token-9034de85-5a74-4867-9530-7c2a6f85984c, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-SseU8 .framer-1mls0dr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 21px 50px 21px 50px; position: relative; width: 1200px; }\",\".framer-SseU8 .framer-9zvon3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 660px; min-width: 300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SseU8 .framer-btk4y0 { flex: none; height: auto; max-width: 660px; min-width: 300px; opacity: 0.5; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SseU8.framer-wl7l07, .framer-SseU8 .framer-7uu8p, .framer-SseU8 .framer-yog2ry, .framer-SseU8 .framer-8tun49, .framer-SseU8 .framer-15iuynj, .framer-SseU8 .framer-7yd8mi, .framer-SseU8 .framer-1mfyj3o, .framer-SseU8 .framer-1dd5cix, .framer-SseU8 .framer-1h45s2q, .framer-SseU8 .framer-ezdd7b, .framer-SseU8 .framer-ilhcbt, .framer-SseU8 .framer-gugkcx, .framer-SseU8 .framer-nvpde, .framer-SseU8 .framer-t9p6yc, .framer-SseU8 .framer-1cozyb5, .framer-SseU8 .framer-1btiln7, .framer-SseU8 .framer-mpeue0, .framer-SseU8 .framer-13rr90e, .framer-SseU8 .framer-1gwcoqx, .framer-SseU8 .framer-lahac2, .framer-SseU8 .framer-15e996j, .framer-SseU8 .framer-15d0asc, .framer-SseU8 .framer-12hal87, .framer-SseU8 .framer-66nu0z, .framer-SseU8 .framer-1p2my57, .framer-SseU8 .framer-115d7fj, .framer-SseU8 .framer-10eyudv, .framer-SseU8 .framer-19nxpob, .framer-SseU8 .framer-1819es3, .framer-SseU8 .framer-38uq6q, .framer-SseU8 .framer-1wg11qa, .framer-SseU8 .framer-q49j50, .framer-SseU8 .framer-1b2104d, .framer-SseU8 .framer-1lag8bn, .framer-SseU8 .framer-1aon7ge, .framer-SseU8 .framer-1l8ciyo, .framer-SseU8 .framer-1hu03a5, .framer-SseU8 .framer-yd6y9g, .framer-SseU8 .framer-1xdnlgw, .framer-SseU8 .framer-4xctd5, .framer-SseU8 .framer-1g8oxmv, .framer-SseU8 .framer-1em7c1d, .framer-SseU8 .framer-1r527fg, .framer-SseU8 .framer-k5u9j4, .framer-SseU8 .framer-t9g1a9, .framer-SseU8 .framer-rkx0a5, .framer-SseU8 .framer-pqx27l, .framer-SseU8 .framer-40veu8, .framer-SseU8 .framer-z6z2c4, .framer-SseU8 .framer-syam6s, .framer-SseU8 .framer-1cgbw9z, .framer-SseU8 .framer-1s0x3fh, .framer-SseU8 .framer-81g37m, .framer-SseU8 .framer-skbtcb, .framer-SseU8 .framer-1sq09ay, .framer-SseU8 .framer-9v284w, .framer-SseU8 .framer-1lhbp5k, .framer-SseU8 .framer-1b5lcit, .framer-SseU8 .framer-1wij4ad, .framer-SseU8 .framer-16oy139, .framer-SseU8 .framer-dpnqfe, .framer-SseU8 .framer-sayd27, .framer-SseU8 .framer-14dcy9l, .framer-SseU8 .framer-bfsfs5, .framer-SseU8 .framer-kjqtl3, .framer-SseU8 .framer-180x1mb, .framer-SseU8 .framer-18hqqwa, .framer-SseU8 .framer-wa5cad, .framer-SseU8 .framer-1wjafna, .framer-SseU8 .framer-dev64v, .framer-SseU8 .framer-lfawgh, .framer-SseU8 .framer-1aoa50k, .framer-SseU8 .framer-1mls0dr { gap: 0px; } .framer-SseU8.framer-wl7l07 > *, .framer-SseU8 .framer-7yd8mi > *, .framer-SseU8 .framer-1h45s2q > *, .framer-SseU8 .framer-gugkcx > *, .framer-SseU8 .framer-1cozyb5 > *, .framer-SseU8 .framer-13rr90e > *, .framer-SseU8 .framer-15e996j > *, .framer-SseU8 .framer-1b2104d > *, .framer-SseU8 .framer-1b5lcit > *, .framer-SseU8 .framer-1mls0dr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SseU8.framer-wl7l07 > :first-child, .framer-SseU8 .framer-7uu8p > :first-child, .framer-SseU8 .framer-8tun49 > :first-child, .framer-SseU8 .framer-7yd8mi > :first-child, .framer-SseU8 .framer-1mfyj3o > :first-child, .framer-SseU8 .framer-1h45s2q > :first-child, .framer-SseU8 .framer-ezdd7b > :first-child, .framer-SseU8 .framer-gugkcx > :first-child, .framer-SseU8 .framer-nvpde > :first-child, .framer-SseU8 .framer-1cozyb5 > :first-child, .framer-SseU8 .framer-1btiln7 > :first-child, .framer-SseU8 .framer-13rr90e > :first-child, .framer-SseU8 .framer-1gwcoqx > :first-child, .framer-SseU8 .framer-15e996j > :first-child, .framer-SseU8 .framer-66nu0z > :first-child, .framer-SseU8 .framer-10eyudv > :first-child, .framer-SseU8 .framer-19nxpob > :first-child, .framer-SseU8 .framer-38uq6q > :first-child, .framer-SseU8 .framer-1wg11qa > :first-child, .framer-SseU8 .framer-q49j50 > :first-child, .framer-SseU8 .framer-1b2104d > :first-child, .framer-SseU8 .framer-1lag8bn > :first-child, .framer-SseU8 .framer-1aon7ge > :first-child, .framer-SseU8 .framer-1l8ciyo > :first-child, .framer-SseU8 .framer-1hu03a5 > :first-child, .framer-SseU8 .framer-yd6y9g > :first-child, .framer-SseU8 .framer-1xdnlgw > :first-child, .framer-SseU8 .framer-4xctd5 > :first-child, .framer-SseU8 .framer-1g8oxmv > :first-child, .framer-SseU8 .framer-1em7c1d > :first-child, .framer-SseU8 .framer-1r527fg > :first-child, .framer-SseU8 .framer-k5u9j4 > :first-child, .framer-SseU8 .framer-t9g1a9 > :first-child, .framer-SseU8 .framer-rkx0a5 > :first-child, .framer-SseU8 .framer-pqx27l > :first-child, .framer-SseU8 .framer-40veu8 > :first-child, .framer-SseU8 .framer-z6z2c4 > :first-child, .framer-SseU8 .framer-syam6s > :first-child, .framer-SseU8 .framer-1cgbw9z > :first-child, .framer-SseU8 .framer-1s0x3fh > :first-child, .framer-SseU8 .framer-skbtcb > :first-child, .framer-SseU8 .framer-1sq09ay > :first-child, .framer-SseU8 .framer-9v284w > :first-child, .framer-SseU8 .framer-1lhbp5k > :first-child, .framer-SseU8 .framer-1b5lcit > :first-child, .framer-SseU8 .framer-1wij4ad > :first-child, .framer-SseU8 .framer-16oy139 > :first-child, .framer-SseU8 .framer-dpnqfe > :first-child, .framer-SseU8 .framer-sayd27 > :first-child, .framer-SseU8 .framer-14dcy9l > :first-child, .framer-SseU8 .framer-bfsfs5 > :first-child, .framer-SseU8 .framer-kjqtl3 > :first-child, .framer-SseU8 .framer-180x1mb > :first-child, .framer-SseU8 .framer-18hqqwa > :first-child, .framer-SseU8 .framer-wa5cad > :first-child, .framer-SseU8 .framer-1wjafna > :first-child, .framer-SseU8 .framer-dev64v > :first-child, .framer-SseU8 .framer-lfawgh > :first-child, .framer-SseU8 .framer-1aoa50k > :first-child, .framer-SseU8 .framer-1mls0dr > :first-child { margin-top: 0px; } .framer-SseU8.framer-wl7l07 > :last-child, .framer-SseU8 .framer-7uu8p > :last-child, .framer-SseU8 .framer-8tun49 > :last-child, .framer-SseU8 .framer-7yd8mi > :last-child, .framer-SseU8 .framer-1mfyj3o > :last-child, .framer-SseU8 .framer-1h45s2q > :last-child, .framer-SseU8 .framer-ezdd7b > :last-child, .framer-SseU8 .framer-gugkcx > :last-child, .framer-SseU8 .framer-nvpde > :last-child, .framer-SseU8 .framer-1cozyb5 > :last-child, .framer-SseU8 .framer-1btiln7 > :last-child, .framer-SseU8 .framer-13rr90e > :last-child, .framer-SseU8 .framer-1gwcoqx > :last-child, .framer-SseU8 .framer-15e996j > :last-child, .framer-SseU8 .framer-66nu0z > :last-child, .framer-SseU8 .framer-10eyudv > :last-child, .framer-SseU8 .framer-19nxpob > :last-child, .framer-SseU8 .framer-38uq6q > :last-child, .framer-SseU8 .framer-1wg11qa > :last-child, .framer-SseU8 .framer-q49j50 > :last-child, .framer-SseU8 .framer-1b2104d > :last-child, .framer-SseU8 .framer-1lag8bn > :last-child, .framer-SseU8 .framer-1aon7ge > :last-child, .framer-SseU8 .framer-1l8ciyo > :last-child, .framer-SseU8 .framer-1hu03a5 > :last-child, .framer-SseU8 .framer-yd6y9g > :last-child, .framer-SseU8 .framer-1xdnlgw > :last-child, .framer-SseU8 .framer-4xctd5 > :last-child, .framer-SseU8 .framer-1g8oxmv > :last-child, .framer-SseU8 .framer-1em7c1d > :last-child, .framer-SseU8 .framer-1r527fg > :last-child, .framer-SseU8 .framer-k5u9j4 > :last-child, .framer-SseU8 .framer-t9g1a9 > :last-child, .framer-SseU8 .framer-rkx0a5 > :last-child, .framer-SseU8 .framer-pqx27l > :last-child, .framer-SseU8 .framer-40veu8 > :last-child, .framer-SseU8 .framer-z6z2c4 > :last-child, .framer-SseU8 .framer-syam6s > :last-child, .framer-SseU8 .framer-1cgbw9z > :last-child, .framer-SseU8 .framer-1s0x3fh > :last-child, .framer-SseU8 .framer-skbtcb > :last-child, .framer-SseU8 .framer-1sq09ay > :last-child, .framer-SseU8 .framer-9v284w > :last-child, .framer-SseU8 .framer-1lhbp5k > :last-child, .framer-SseU8 .framer-1b5lcit > :last-child, .framer-SseU8 .framer-1wij4ad > :last-child, .framer-SseU8 .framer-16oy139 > :last-child, .framer-SseU8 .framer-dpnqfe > :last-child, .framer-SseU8 .framer-sayd27 > :last-child, .framer-SseU8 .framer-14dcy9l > :last-child, .framer-SseU8 .framer-bfsfs5 > :last-child, .framer-SseU8 .framer-kjqtl3 > :last-child, .framer-SseU8 .framer-180x1mb > :last-child, .framer-SseU8 .framer-18hqqwa > :last-child, .framer-SseU8 .framer-wa5cad > :last-child, .framer-SseU8 .framer-1wjafna > :last-child, .framer-SseU8 .framer-dev64v > :last-child, .framer-SseU8 .framer-lfawgh > :last-child, .framer-SseU8 .framer-1aoa50k > :last-child, .framer-SseU8 .framer-1mls0dr > :last-child { margin-bottom: 0px; } .framer-SseU8 .framer-7uu8p > *, .framer-SseU8 .framer-19nxpob > *, .framer-SseU8 .framer-1s0x3fh > *, .framer-SseU8 .framer-lfawgh > *, .framer-SseU8 .framer-1aoa50k > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-SseU8 .framer-yog2ry > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-SseU8 .framer-yog2ry > :first-child, .framer-SseU8 .framer-15iuynj > :first-child, .framer-SseU8 .framer-1dd5cix > :first-child, .framer-SseU8 .framer-ilhcbt > :first-child, .framer-SseU8 .framer-t9p6yc > :first-child, .framer-SseU8 .framer-mpeue0 > :first-child, .framer-SseU8 .framer-lahac2 > :first-child, .framer-SseU8 .framer-15d0asc > :first-child, .framer-SseU8 .framer-12hal87 > :first-child, .framer-SseU8 .framer-1p2my57 > :first-child, .framer-SseU8 .framer-115d7fj > :first-child, .framer-SseU8 .framer-1819es3 > :first-child, .framer-SseU8 .framer-81g37m > :first-child { margin-left: 0px; } .framer-SseU8 .framer-yog2ry > :last-child, .framer-SseU8 .framer-15iuynj > :last-child, .framer-SseU8 .framer-1dd5cix > :last-child, .framer-SseU8 .framer-ilhcbt > :last-child, .framer-SseU8 .framer-t9p6yc > :last-child, .framer-SseU8 .framer-mpeue0 > :last-child, .framer-SseU8 .framer-lahac2 > :last-child, .framer-SseU8 .framer-15d0asc > :last-child, .framer-SseU8 .framer-12hal87 > :last-child, .framer-SseU8 .framer-1p2my57 > :last-child, .framer-SseU8 .framer-115d7fj > :last-child, .framer-SseU8 .framer-1819es3 > :last-child, .framer-SseU8 .framer-81g37m > :last-child { margin-right: 0px; } .framer-SseU8 .framer-8tun49 > *, .framer-SseU8 .framer-1mfyj3o > *, .framer-SseU8 .framer-38uq6q > *, .framer-SseU8 .framer-1lag8bn > *, .framer-SseU8 .framer-1hu03a5 > *, .framer-SseU8 .framer-4xctd5 > *, .framer-SseU8 .framer-1r527fg > *, .framer-SseU8 .framer-rkx0a5 > *, .framer-SseU8 .framer-z6z2c4 > *, .framer-SseU8 .framer-skbtcb > *, .framer-SseU8 .framer-9v284w > *, .framer-SseU8 .framer-1wij4ad > *, .framer-SseU8 .framer-sayd27 > *, .framer-SseU8 .framer-kjqtl3 > *, .framer-SseU8 .framer-wa5cad > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-SseU8 .framer-15iuynj > *, .framer-SseU8 .framer-1dd5cix > *, .framer-SseU8 .framer-ilhcbt > *, .framer-SseU8 .framer-t9p6yc > *, .framer-SseU8 .framer-mpeue0 > *, .framer-SseU8 .framer-lahac2 > *, .framer-SseU8 .framer-1p2my57 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-SseU8 .framer-ezdd7b > *, .framer-SseU8 .framer-nvpde > *, .framer-SseU8 .framer-1btiln7 > *, .framer-SseU8 .framer-1gwcoqx > *, .framer-SseU8 .framer-66nu0z > *, .framer-SseU8 .framer-10eyudv > *, .framer-SseU8 .framer-1wg11qa > *, .framer-SseU8 .framer-q49j50 > *, .framer-SseU8 .framer-1aon7ge > *, .framer-SseU8 .framer-yd6y9g > *, .framer-SseU8 .framer-1g8oxmv > *, .framer-SseU8 .framer-k5u9j4 > *, .framer-SseU8 .framer-pqx27l > *, .framer-SseU8 .framer-syam6s > *, .framer-SseU8 .framer-1sq09ay > *, .framer-SseU8 .framer-1lhbp5k > *, .framer-SseU8 .framer-16oy139 > *, .framer-SseU8 .framer-14dcy9l > *, .framer-SseU8 .framer-180x1mb > *, .framer-SseU8 .framer-1wjafna > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-SseU8 .framer-15d0asc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-SseU8 .framer-12hal87 > *, .framer-SseU8 .framer-115d7fj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SseU8 .framer-1819es3 > *, .framer-SseU8 .framer-81g37m > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-SseU8 .framer-1l8ciyo > *, .framer-SseU8 .framer-1xdnlgw > *, .framer-SseU8 .framer-1em7c1d > *, .framer-SseU8 .framer-t9g1a9 > *, .framer-SseU8 .framer-40veu8 > *, .framer-SseU8 .framer-1cgbw9z > *, .framer-SseU8 .framer-dpnqfe > *, .framer-SseU8 .framer-bfsfs5 > *, .framer-SseU8 .framer-18hqqwa > *, .framer-SseU8 .framer-dev64v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@media (min-width: 1200px) { .framer-SseU8 .hidden-wl7l07 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-SseU8 .hidden-obyl0n { display: none !important; } .${metadata.bodyClassName}-framer-SseU8 { background: hsl(0, 0%, 100%); } .framer-SseU8.framer-wl7l07 { width: 810px; } .framer-SseU8 .framer-7uu8p { gap: 64px; padding: 80px 40px 80px 40px; } .framer-SseU8 .framer-1jow36b, .framer-SseU8 .framer-15e996j { order: 0; } .framer-SseU8 .framer-yog2ry { order: 1; } .framer-SseU8 .framer-8tun49 { flex: 1 0 0px; height: 457px; order: 0; width: 1px; } .framer-SseU8 .framer-15iuynj, .framer-SseU8 .framer-1g1ozzo { width: 45px; } .framer-SseU8 .framer-1mfyj3o { flex: 1 0 0px; height: 455px; order: 1; width: 1px; } .framer-SseU8 .framer-ezdd7b { flex: 1 0 0px; height: 454px; order: 2; width: 1px; } .framer-SseU8 .framer-nvpde { flex: 1 0 0px; height: 470px; order: 3; width: 1px; } .framer-SseU8 .framer-1btiln7 { flex: 1 0 0px; height: 472px; order: 4; width: 1px; } .framer-SseU8 .framer-1gwcoqx { flex: 1 0 0px; height: 472px; order: 5; width: 1px; } .framer-SseU8 .framer-32ob3g { white-space: pre-wrap; width: 50px; word-break: break-word; word-wrap: break-word; } .framer-SseU8 .framer-66nu0z { flex: 1 0 0px; padding: 40px; width: 1px; } .framer-SseU8 .framer-10eyudv { height: 366px; } .framer-SseU8 .framer-19nxpob, .framer-SseU8 .framer-1s0x3fh { padding: 40px; } .framer-SseU8 .framer-1pl0h94, .framer-SseU8 .framer-1g85moo, .framer-SseU8 .framer-1k362hh, .framer-SseU8 .framer-1fuar57 { width: 100%; } .framer-SseU8 .framer-1b2104d { padding: 40px 40px 20px 40px; } .framer-SseU8 .framer-1tdp26d, .framer-SseU8 .framer-9lwnjs, .framer-SseU8 .framer-1vluwjd { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-SseU8 .framer-1lag8bn, .framer-SseU8 .framer-4xctd5, .framer-SseU8 .framer-z6z2c4, .framer-SseU8 .framer-sayd27, .framer-SseU8 .framer-kjqtl3 { grid-column: unset; } .framer-SseU8 .framer-1b5lcit { padding: 100px 40px 100px 40px; } .framer-SseU8 .framer-lfawgh, .framer-SseU8 .framer-1aoa50k { padding: 20px 40px 80px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SseU8 .framer-7uu8p { gap: 0px; } .framer-SseU8 .framer-7uu8p > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-SseU8 .framer-7uu8p > :first-child { margin-top: 0px; } .framer-SseU8 .framer-7uu8p > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .framer-SseU8 .hidden-kowpxm { display: none !important; } .${metadata.bodyClassName}-framer-SseU8 { background: hsl(0, 0%, 100%); } .framer-SseU8.framer-wl7l07 { gap: 50px; width: 390px; } .framer-SseU8 .framer-7uu8p { padding: 100px 20px 100px 20px; } .framer-SseU8 .framer-yog2ry, .framer-SseU8 .framer-15d0asc, .framer-SseU8 .framer-1819es3, .framer-SseU8 .framer-81g37m { flex-direction: column; } .framer-SseU8 .framer-8tun49, .framer-SseU8 .framer-1mfyj3o, .framer-SseU8 .framer-ezdd7b, .framer-SseU8 .framer-nvpde, .framer-SseU8 .framer-1btiln7, .framer-SseU8 .framer-1gwcoqx { height: auto; width: 100%; } .framer-SseU8 .framer-12hal87 { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-SseU8 .framer-66nu0z { flex: 1 0 0px; padding: 20px; width: 1px; } .framer-SseU8 .framer-10eyudv { flex: none; height: 318px; order: 0; width: 100%; } .framer-SseU8 .framer-19nxpob, .framer-SseU8 .framer-1b2104d, .framer-SseU8 .framer-1b5lcit { padding: 20px; } .framer-SseU8 .framer-38uq6q, .framer-SseU8 .framer-skbtcb, .framer-SseU8 .framer-9v284w { flex: none; width: 100%; } .framer-SseU8 .framer-1pl0h94, .framer-SseU8 .framer-1g85moo, .framer-SseU8 .framer-1k362hh, .framer-SseU8 .framer-1fuar57 { width: 100%; } .framer-SseU8 .framer-1tdp26d, .framer-SseU8 .framer-9lwnjs, .framer-SseU8 .framer-1vluwjd { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-SseU8 .framer-1lag8bn, .framer-SseU8 .framer-4xctd5, .framer-SseU8 .framer-z6z2c4, .framer-SseU8 .framer-sayd27, .framer-SseU8 .framer-kjqtl3 { grid-column: auto / span 1; } .framer-SseU8 .framer-lfawgh, .framer-SseU8 .framer-1aoa50k { padding: 60px 20px 60px 20px; } .framer-SseU8 .framer-1w4omkr-container { height: 354px; width: 419px; } .framer-SseU8 .framer-1mls0dr { padding: 30px; } .framer-SseU8 .framer-9zvon3 { max-width: 250px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SseU8.framer-wl7l07, .framer-SseU8 .framer-yog2ry, .framer-SseU8 .framer-15d0asc, .framer-SseU8 .framer-1819es3, .framer-SseU8 .framer-81g37m { gap: 0px; } .framer-SseU8.framer-wl7l07 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-SseU8.framer-wl7l07 > :first-child, .framer-SseU8 .framer-yog2ry > :first-child, .framer-SseU8 .framer-15d0asc > :first-child, .framer-SseU8 .framer-1819es3 > :first-child, .framer-SseU8 .framer-81g37m > :first-child { margin-top: 0px; } .framer-SseU8.framer-wl7l07 > :last-child, .framer-SseU8 .framer-yog2ry > :last-child, .framer-SseU8 .framer-15d0asc > :last-child, .framer-SseU8 .framer-1819es3 > :last-child, .framer-SseU8 .framer-81g37m > :last-child { margin-bottom: 0px; } .framer-SseU8 .framer-yog2ry > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-SseU8 .framer-15d0asc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SseU8 .framer-1819es3 > *, .framer-SseU8 .framer-81g37m > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6741\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BBeBM6Yga\":{\"layout\":[\"fixed\",\"auto\"]},\"rQAOVyB6X\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramereSMLSyAvK=withCSS(Component,css,\"framer-SseU8\");export default FramereSMLSyAvK;FramereSMLSyAvK.displayName=\"Now\";FramereSMLSyAvK.defaultProps={height:6741,width:1200};addFonts(FramereSMLSyAvK,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavbarDarkFonts,...VideoFonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereSMLSyAvK\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BBeBM6Yga\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rQAOVyB6X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6741\"}},\"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", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavbarDarkFonts", "getFonts", "l7u581cwd_default", "VideoFonts", "Video", "RichTextWithFX", "withFX", "RichText2", "FooterDarkFonts", "u9Xsq4Rz6_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "robotsTag", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "l7u581cwd_default", "x", "RichText2", "Image2", "Link", "Video", "RichTextWithFX", "u9Xsq4Rz6_default", "css", "FramereSMLSyAvK", "withCSS", "eSMLSyAvK_default", "addFonts", "NavbarDarkFonts", "VideoFonts", "FooterDarkFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
