{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js", "ssg:https://framerusercontent.com/modules/PlkxQmXMWMvtg3DJnaEm/VkSf53LwUibHSONnBRQV/DQ36wl1d5.js", "ssg:https://framerusercontent.com/modules/VhgCUIqheVCGebn2hLQv/Nknxnw2Bdym3WyNlYyju/dKxE4KvPC.js", "ssg:https://framerusercontent.com/modules/xPdoF6M74JH8yCIALd2F/s4qlvf6fbRkGReAgRXZQ/lls2bmpKB.js", "ssg:https://framerusercontent.com/modules/zmkER0MQsSR3lXTvpM2c/piSZ89PveupNB3nfe0zg/eW6Xi2tIm.js", "ssg:https://framerusercontent.com/modules/NzO0XfbMhQYYizqVMlB1/2Rpf3zX17pUnduETP3Lu/PJ3MefWzZ.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// 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});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.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();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (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//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// 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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},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\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{defaultEvents,localeOptions,fontControls,fontSizeOptions,emptyStateStyle,containerStyles,fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";import{useOnEnter,useOnExit}from\"https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";import{colorTokentoValue,colorFromToken}from\"https://framerusercontent.com/modules/D2Lz5CmnNVPZFFiZXalt/QaCzPbriZBfXWZIIycFI/colorFromToken.js\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/5fbRLvOpxZC0JOXugvwm/isMotionValue.js\";import{useUniqueClassName,randomID}from\"https://framerusercontent.com/modules/xDiQsqBGXzmMsv7AlEVy/uhunpMiNsbXxzjlXsg1y/useUniqueClassName.js\";import{getVariantControls}from\"https://framerusercontent.com/modules/ETACN5BJyFTSo0VVDJfu/NHRqowOiXkF9UwOzczF7/variantUtils.js\";import{useIsBrowserSafari}from\"https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js\";import{useMultiOnChange,useOnChange}from\"https://framerusercontent.com/modules/v9AWX2URmiYsHf7GbctE/XxKAZ9KlhWqf5x1JMyyF/useOnChange.js\";import{mstoMinAndSec,secondsToMinutes}from\"https://framerusercontent.com/modules/4zHZnO5JojN1PrIbu2jm/revv9QCWpkh8lPzi2jje/time.js\";import{useAutoMotionValue}from\"https://framerusercontent.com/modules/kNDwabfjDEb3vUxkQlZS/fSIr3AOAYbGlfSPgXpYu/useAutoMotionValue.js\";import{useFontControls}from\"https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js\";import{useRenderTarget,useIsInPreview,useIsOnCanvas}from\"https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js\";import{useControlledState}from\"https://framerusercontent.com/modules/zGkoP8tPDCkoBzMdt5uq/0zFSjxIYliHxrQQnryFX/useControlledState.js\";import{usePadding,useRadius,paddingControl,borderRadiusControl}from\"https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js\";import{detectAutoSizingAxis}from\"https://framerusercontent.com/modules/8CkHAZatUz1UR8jNTcfD/HwbnIAZlUmQ2oTpcLkaH/detectAutoSizingAxis.js\";export{useOnEnter,useOnExit,defaultEvents,isMotionValue,colorFromToken,colorTokentoValue,localeOptions,fontControls,fontSizeOptions,emptyStateStyle,containerStyles,fontStack,useUniqueClassName,getVariantControls,useIsBrowserSafari,randomID,useConstant,useMultiOnChange,useOnChange,usePadding,useRadius,paddingControl,borderRadiusControl,mstoMinAndSec,useFontControls,secondsToMinutes,useAutoMotionValue,useRenderTarget,useIsInPreview,useControlledState,detectAutoSizingAxis,useIsOnCanvas,};\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useUniqueClassName\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiOnChange\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnChange\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"colorTokentoValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getVariantControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"colorFromToken\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useControlledState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useFontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useAutoMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsInPreview\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"detectAutoSizingAxis\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"mstoMinAndSec\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnEnter\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"secondsToMinutes\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/SHjV9hOFUX3YfyJtfv9C/cYqxozhv4sJ1wlf4IAT1/JHBniK2XP.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/MMaKjPfvBQqe6F6hZG7i/OOowU6Bdsv6pgU2TQQMf/v9Xu8TQLi.js\";import SpotlightCard from\"https://framerusercontent.com/modules/VhgCUIqheVCGebn2hLQv/Nknxnw2Bdym3WyNlYyju/dKxE4KvPC.js\";const SpotlightCardFonts=getFonts(SpotlightCard);const cycleOrder=[\"h0OegAQEo\",\"JYlGmhfwR\",\"AvJ8Sw_lA\",\"x78Yl8Apc\"];const serializationHash=\"framer-3nIgz\";const variantClassNames={AvJ8Sw_lA:\"framer-v-1aytbxs\",h0OegAQEo:\"framer-v-o66sf7\",JYlGmhfwR:\"framer-v-6cje06\",x78Yl8Apc:\"framer-v-28qjfe\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"h0OegAQEo\",Laptop:\"JYlGmhfwR\",Phone:\"x78Yl8Apc\",Tablet:\"AvJ8Sw_lA\"};const getProps=({_1ChessVisibility,_2CodingVisibility,_3MSPVisibility,header,height,id,width,...props})=>{return{...props,amg0R00ZB:_2CodingVisibility??props.amg0R00ZB??true,AufTcsidc:_1ChessVisibility??props.AufTcsidc??true,MhWgWku_y:header??props.MhWgWku_y??\"Explore More Programmes\",nurCuPmws:_3MSPVisibility??props.nurCuPmws??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"h0OegAQEo\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,MhWgWku_y,AufTcsidc,amg0R00ZB,nurCuPmws,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"h0OegAQEo\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-o66sf7\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"h0OegAQEo\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({AvJ8Sw_lA:{\"data-framer-name\":\"Tablet\"},JYlGmhfwR:{\"data-framer-name\":\"Laptop\"},x78Yl8Apc:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-iaxeyu\",\"data-styles-preset\":\"JHBniK2XP\",children:\"Explore More Programmes\"})}),className:\"framer-1fkzp4b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uRAHqsJLu\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:MhWgWku_y,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({x78Yl8Apc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1gatfl4\",\"data-styles-preset\":\"v9Xu8TQLi\",children:\"Explore More Programmes\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-57rnad\",\"data-framer-name\":\"Grid\",layoutDependency:layoutDependency,layoutId:\"zpGMRaJ3P\",children:[AufTcsidc&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OwkYSEEPq\"},implicitPathVariables:undefined},{href:{webPageId:\"OwkYSEEPq\"},implicitPathVariables:undefined},{href:{webPageId:\"OwkYSEEPq\"},implicitPathVariables:undefined},{href:{webPageId:\"OwkYSEEPq\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(Math.max(0,((componentViewport?.height||865)-100-98)/1)*1-0-0)/1*1+0,width:\"393.3333px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||865)-100-(48+Math.max(0,((componentViewport?.height||865)-100-98)/1)*1+50))/2+48+50)+0+(0*((Math.max(0,((componentViewport?.height||865)-100-98)/1)*1-0-0)/1)+0),...addPropertyOverrides({AvJ8Sw_lA:{height:666,width:\"340px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||1459)-100-1460)/2+48+50)+0+0},JYlGmhfwR:{height:(Math.max(0,((componentViewport?.height||835)-100-98)/1)*1-0-0)/1*1+0,width:\"288px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||835)-100-(48+Math.max(0,((componentViewport?.height||835)-100-98)/1)*1+50))/2+48+50)+0+(0*((Math.max(0,((componentViewport?.height||835)-100-98)/1)*1-0-0)/1)+0)},x78Yl8Apc:{height:666,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-2151)/2+43+50)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ermhnw-container\",\"data-framer-name\":\"1 Chess\",layoutDependency:layoutDependency,layoutId:\"X1PT9n0qT-container\",name:\"1 Chess\",nodeId:\"X1PT9n0qT\",rendersWithMotion:true,scopeId:\"DQ36wl1d5\",children:/*#__PURE__*/_jsx(SpotlightCard,{bLi1xse8F:\"rgb(0, 105, 137)\",DB9ZpbVN7:false,Ek69G57Cg:\"Embark on a chess adventure where strategy meets fun on the chessboard! Chess competition is available!\",EuTyvG_TM:\"rgb(230, 245, 251)\",fB9QFW0K6:resolvedLinks[0],height:\"100%\",id:\"X1PT9n0qT\",IxWFzSHZc:\"Tag 3\",j4B6wgTtL:\"P1 - S4\",KVzr5IvLV:\"Mind Sports: International Chess Camps\",LAUvQJv8l:\"rgb(127, 214, 241)\",layoutId:\"X1PT9n0qT\",name:\"1 Chess\",nu5fMhuix:\"Register Now\",OANgxnxIm:\"https://framerusercontent.com/assets/uRitTWuR0lDpE2YrFNMxa7aJCpo.mp4\",PUx9un8OO:false,qkq82Gnif:\"Tag 2\",QsOZ7Leff:true,R_Qqs0hsk:\"Explore More\",sB4wQbnLI:false,style:{height:\"100%\",width:\"100%\"},taCcrFLNL:\"Jun 2 - 4, 6\",TUzbDt4UC:\"https://mindstretcher.surveysparrow.com/s/Mind-Stretcher-June-Holiday-Camps-2025/tt-p1DfU\",width:\"100%\",...addPropertyOverrides({AvJ8Sw_lA:{fB9QFW0K6:resolvedLinks[2]},JYlGmhfwR:{fB9QFW0K6:resolvedLinks[1]},x78Yl8Apc:{fB9QFW0K6:resolvedLinks[3],style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})}),amg0R00ZB&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"V5_tTeP2J\"},implicitPathVariables:undefined},{href:{webPageId:\"V5_tTeP2J\"},implicitPathVariables:undefined},{href:{webPageId:\"V5_tTeP2J\"},implicitPathVariables:undefined},{href:{webPageId:\"V5_tTeP2J\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(Math.max(0,((componentViewport?.height||865)-100-98)/1)*1-0-0)/1*1+0,width:\"393.3333px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||865)-100-(48+Math.max(0,((componentViewport?.height||865)-100-98)/1)*1+50))/2+48+50)+0+(0*((Math.max(0,((componentViewport?.height||865)-100-98)/1)*1-0-0)/1)+0),...addPropertyOverrides({AvJ8Sw_lA:{height:666,width:\"340px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||1459)-100-1460)/2+48+50)+0+0},JYlGmhfwR:{height:(Math.max(0,((componentViewport?.height||835)-100-98)/1)*1-0-0)/1*1+0,width:\"288px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||835)-100-(48+Math.max(0,((componentViewport?.height||835)-100-98)/1)*1+50))/2+48+50)+0+(0*((Math.max(0,((componentViewport?.height||835)-100-98)/1)*1-0-0)/1)+0)},x78Yl8Apc:{height:666,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-2151)/2+43+50)+0+696}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14nlr23-container\",\"data-framer-name\":\"2 Coding\",layoutDependency:layoutDependency,layoutId:\"WPxGFokHv-container\",name:\"2 Coding\",nodeId:\"WPxGFokHv\",rendersWithMotion:true,scopeId:\"DQ36wl1d5\",children:/*#__PURE__*/_jsx(SpotlightCard,{bLi1xse8F:\"rgb(64, 56, 0)\",DB9ZpbVN7:false,Ek69G57Cg:\"Build your very own AI-powered game with Scratch. The future is in your hands!\",EuTyvG_TM:\"rgb(253, 251, 230)\",fB9QFW0K6:resolvedLinks1[0],height:\"100%\",id:\"WPxGFokHv\",IxWFzSHZc:\"Tag 3\",j4B6wgTtL:\"P3 - P6\",KVzr5IvLV:\"Coding Camp\",LAUvQJv8l:\"rgb(254, 238, 127)\",layoutId:\"WPxGFokHv\",name:\"2 Coding\",nu5fMhuix:\"Register Now\",OANgxnxIm:\"https://framerusercontent.com/assets/dD8PDDYok7ZDdMisayImVvPU3fQ.mp4\",PUx9un8OO:false,qkq82Gnif:\"S1 - S4\",QsOZ7Leff:true,R_Qqs0hsk:\"Explore More\",sB4wQbnLI:false,style:{height:\"100%\",width:\"100%\"},taCcrFLNL:\"Jun 9  - 11\",TUzbDt4UC:\"https://mindstretcher.surveysparrow.com/s/Mind-Stretcher-June-Holiday-Camps-2025/tt-p1DfU\",width:\"100%\",...addPropertyOverrides({AvJ8Sw_lA:{fB9QFW0K6:resolvedLinks1[2]},JYlGmhfwR:{fB9QFW0K6:resolvedLinks1[1]},x78Yl8Apc:{fB9QFW0K6:resolvedLinks1[3],style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})}),nurCuPmws&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"q8eiLVRDp\"},implicitPathVariables:undefined},{href:{webPageId:\"q8eiLVRDp\"},implicitPathVariables:undefined},{href:{webPageId:\"q8eiLVRDp\"},implicitPathVariables:undefined},{href:{webPageId:\"q8eiLVRDp\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(Math.max(0,((componentViewport?.height||865)-100-98)/1)*1-0-0)/1*1+0,width:\"393.3333px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||865)-100-(48+Math.max(0,((componentViewport?.height||865)-100-98)/1)*1+50))/2+48+50)+0+(0*((Math.max(0,((componentViewport?.height||865)-100-98)/1)*1-0-0)/1)+0),...addPropertyOverrides({AvJ8Sw_lA:{height:666,width:\"340px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||1459)-100-1460)/2+48+50)+0+696},JYlGmhfwR:{height:(Math.max(0,((componentViewport?.height||835)-100-98)/1)*1-0-0)/1*1+0,width:\"288px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||835)-100-(48+Math.max(0,((componentViewport?.height||835)-100-98)/1)*1+50))/2+48+50)+0+(0*((Math.max(0,((componentViewport?.height||835)-100-98)/1)*1-0-0)/1)+0)},x78Yl8Apc:{height:666,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-2151)/2+43+50)+0+1392}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ootrca-container\",\"data-framer-name\":\"3 MSP\",layoutDependency:layoutDependency,layoutId:\"A5rF82Ha4-container\",name:\"3 MSP\",nodeId:\"A5rF82Ha4\",rendersWithMotion:true,scopeId:\"DQ36wl1d5\",children:/*#__PURE__*/_jsx(SpotlightCard,{bLi1xse8F:\"rgb(86, 55, 112)\",DB9ZpbVN7:true,Ek69G57Cg:\"Master the art of public speaking and overcome stage fright. Shine in our Speak & Shine showcase.\",EuTyvG_TM:\"rgb(243, 238, 246)\",fB9QFW0K6:resolvedLinks2[0],height:\"100%\",id:\"A5rF82Ha4\",IxWFzSHZc:\"S1 - JC2\",j4B6wgTtL:\"P1 - P3\",KVzr5IvLV:\"Speak and Shine\",LAUvQJv8l:\"rgb(199, 172, 220)\",layoutId:\"A5rF82Ha4\",name:\"3 MSP\",nu5fMhuix:\"Register Now\",OANgxnxIm:\"https://framerusercontent.com/assets/k2BHp9GWxjdJDWVL3uyESMN8Yk.mp4\",PUx9un8OO:true,qkq82Gnif:\"P4 - P6\",QsOZ7Leff:true,R_Qqs0hsk:\"Explore More\",sB4wQbnLI:false,style:{height:\"100%\",width:\"100%\"},taCcrFLNL:\"Jun 16 - 21, 26\",TUzbDt4UC:\"https://mindstretcher.surveysparrow.com/s/Mind-Stretcher-June-Holiday-Camps-2025/tt-p1DfU\",width:\"100%\",...addPropertyOverrides({AvJ8Sw_lA:{fB9QFW0K6:resolvedLinks2[2],style:{width:\"100%\"}},JYlGmhfwR:{fB9QFW0K6:resolvedLinks2[1]},x78Yl8Apc:{fB9QFW0K6:resolvedLinks2[3],style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3nIgz.framer-1idv08m, .framer-3nIgz .framer-1idv08m { display: block; }\",\".framer-3nIgz.framer-o66sf7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 865px; justify-content: center; overflow: hidden; padding: 50px 100px 50px 100px; position: relative; width: 1440px; }\",\".framer-3nIgz .framer-1fkzp4b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3nIgz .framer-57rnad { display: grid; flex: 1 0 0px; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1240px; }\",\".framer-3nIgz .framer-1ermhnw-container, .framer-3nIgz .framer-14nlr23-container, .framer-3nIgz .framer-1ootrca-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-3nIgz.framer-v-6cje06.framer-o66sf7 { height: 835px; padding: 50px; width: 1024px; }\",\".framer-3nIgz.framer-v-6cje06 .framer-57rnad { width: 924px; }\",\".framer-3nIgz.framer-v-1aytbxs.framer-o66sf7 { height: min-content; padding: 50px; width: 810px; }\",\".framer-3nIgz.framer-v-1aytbxs .framer-57rnad { flex: none; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; width: 710px; }\",\".framer-3nIgz.framer-v-1aytbxs .framer-1ootrca-container { height: auto; }\",\".framer-3nIgz.framer-v-28qjfe.framer-o66sf7 { height: min-content; padding: 24px; width: 390px; }\",\".framer-3nIgz.framer-v-28qjfe .framer-57rnad { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; height: min-content; width: 100%; }\",\".framer-3nIgz.framer-v-28qjfe .framer-1ermhnw-container, .framer-3nIgz.framer-v-28qjfe .framer-14nlr23-container, .framer-3nIgz.framer-v-28qjfe .framer-1ootrca-container { align-self: unset; height: auto; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 865\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JYlGmhfwR\":{\"layout\":[\"fixed\",\"fixed\"]},\"AvJ8Sw_lA\":{\"layout\":[\"fixed\",\"auto\"]},\"x78Yl8Apc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"MhWgWku_y\":\"header\",\"AufTcsidc\":\"_1ChessVisibility\",\"amg0R00ZB\":\"_2CodingVisibility\",\"nurCuPmws\":\"_3MSPVisibility\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDQ36wl1d5=withCSS(Component,css,\"framer-3nIgz\");export default FramerDQ36wl1d5;FramerDQ36wl1d5.displayName=\"Other Programmes\";FramerDQ36wl1d5.defaultProps={height:865,width:1440};addPropertyControls(FramerDQ36wl1d5,{variant:{options:[\"h0OegAQEo\",\"JYlGmhfwR\",\"AvJ8Sw_lA\",\"x78Yl8Apc\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},MhWgWku_y:{defaultValue:\"Explore More Programmes\",displayTextArea:false,title:\"Header\",type:ControlType.String},AufTcsidc:{defaultValue:true,title:\"1 Chess Visibility\",type:ControlType.Boolean},amg0R00ZB:{defaultValue:true,title:\"2 Coding Visibility\",type:ControlType.Boolean},nurCuPmws:{defaultValue:true,title:\"3 MSP Visibility\",type:ControlType.Boolean}});addFonts(FramerDQ36wl1d5,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SpotlightCardFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDQ36wl1d5\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JYlGmhfwR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AvJ8Sw_lA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x78Yl8Apc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"865\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"MhWgWku_y\\\":\\\"header\\\",\\\"AufTcsidc\\\":\\\"_1ChessVisibility\\\",\\\"amg0R00ZB\\\":\\\"_2CodingVisibility\\\",\\\"nurCuPmws\\\":\\\"_3MSPVisibility\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/XCr6niABISB2gDf9SFne/EZqQI1qn52kwPtzLVu73/hqMwWjMd1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/xPdoF6M74JH8yCIALd2F/s4qlvf6fbRkGReAgRXZQ/lls2bmpKB.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/f6TPP8Xg8uBQxvZP3IeK/FdfRcEgWel3q5k6jWTkk/oOAOLYvO0.js\";import Tags from\"https://framerusercontent.com/modules/fJl3ogOqItvPFppZE3E7/1WK9X0oFUrlbAhThRWMh/IKCFobsEQ.js\";import SolidButton from\"https://framerusercontent.com/modules/Y2QEIcypAHwcIadLpMfS/teDvgAnCqmDUarmxr2i2/tv6kCjWfr.js\";const VideoFonts=getFonts(Video);const TagsFonts=getFonts(Tags);const SolidButtonFonts=getFonts(SolidButton);const VideoControls=getPropertyControls(Video);const serializationHash=\"framer-g1zDW\";const variantClassNames={NtCwwE_He:\"framer-v-131mdvn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({buttonText1,buttonText2,cardBG,dates,description,height,id,link1,link2,mSPVisibility,tag1Visibility,tag2Visibility,tag3Visibility,tagBG,tagTextColor,tagWord1,tagWord2,tagWord3,title,videoUpload,width,...props})=>{return{...props,bLi1xse8F:tagTextColor??props.bLi1xse8F??\"var(--token-69e84fe6-81aa-4811-b898-d057c33ba92e, rgb(0, 57, 110))\",DB9ZpbVN7:mSPVisibility??props.DB9ZpbVN7,Ek69G57Cg:description??props.Ek69G57Cg??\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",EuTyvG_TM:cardBG??props.EuTyvG_TM??\"var(--token-87f4f34d-61af-464a-9f91-7b9f4c5b3148, rgb(248, 248, 248))\",fB9QFW0K6:link1??props.fB9QFW0K6,IxWFzSHZc:tagWord3??props.IxWFzSHZc??\"Tag 3\",j4B6wgTtL:tagWord1??props.j4B6wgTtL??\"Tag 1\",KVzr5IvLV:title??props.KVzr5IvLV??\"Mind Sports: International Chess Camps\",LAUvQJv8l:tagBG??props.LAUvQJv8l??\"rgb(209, 233, 255)\",nu5fMhuix:buttonText2??props.nu5fMhuix??\"Register Now\",OANgxnxIm:videoUpload??props.OANgxnxIm??\"https://framerusercontent.com/assets/Vys6h4Ql3KUIE8M6CjalHimg9Zo.mp4\",PUx9un8OO:tag2Visibility??props.PUx9un8OO??true,qkq82Gnif:tagWord2??props.qkq82Gnif??\"Tag 2\",QsOZ7Leff:tag1Visibility??props.QsOZ7Leff??true,R_Qqs0hsk:buttonText1??props.R_Qqs0hsk??\"Explore More\",sB4wQbnLI:tag3Visibility??props.sB4wQbnLI??true,taCcrFLNL:dates??props.taCcrFLNL??\"MMM DD - DD\",TUzbDt4UC:link2??props.TUzbDt4UC};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,OANgxnxIm,EuTyvG_TM,LAUvQJv8l,bLi1xse8F,QsOZ7Leff,j4B6wgTtL,PUx9un8OO,qkq82Gnif,sB4wQbnLI,IxWFzSHZc,DB9ZpbVN7,KVzr5IvLV,taCcrFLNL,Ek69G57Cg,R_Qqs0hsk,fB9QFW0K6,nu5fMhuix,TUzbDt4UC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"NtCwwE_He\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-131mdvn\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"NtCwwE_He\",ref:refBinding,style:{backgroundColor:EuTyvG_TM,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z24m7b-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Yqm28wDJk-container\",nodeId:\"Yqm28wDJk\",rendersWithMotion:true,scopeId:\"dKxE4KvPC\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"Yqm28wDJk\",isMixedBorderRadius:false,layoutId:\"Yqm28wDJk\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:OANgxnxIm,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l5yqsk\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"bX3OA2qbk\",style:{borderBottomLeftRadius:30,borderBottomRightRadius:30},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qu5mqi\",\"data-framer-name\":\"Title & Tag\",layoutDependency:layoutDependency,layoutId:\"hEycQx5eg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p025xj\",layoutDependency:layoutDependency,layoutId:\"w81dhBrjj\",children:[QsOZ7Leff&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b3e7u3-container\",layoutDependency:layoutDependency,layoutId:\"g_z5iDogN-container\",nodeId:\"g_z5iDogN\",rendersWithMotion:true,scopeId:\"dKxE4KvPC\",children:/*#__PURE__*/_jsx(Tags,{height:\"100%\",id:\"g_z5iDogN\",KQkrEYVRG:LAUvQJv8l,layoutId:\"g_z5iDogN\",Q1leHfInp:j4B6wgTtL,width:\"100%\",YAXZkCMj2:bLi1xse8F})})}),PUx9un8OO&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1le5hbm-container\",layoutDependency:layoutDependency,layoutId:\"V9G0U4k8o-container\",nodeId:\"V9G0U4k8o\",rendersWithMotion:true,scopeId:\"dKxE4KvPC\",children:/*#__PURE__*/_jsx(Tags,{height:\"100%\",id:\"V9G0U4k8o\",KQkrEYVRG:LAUvQJv8l,layoutId:\"V9G0U4k8o\",Q1leHfInp:qkq82Gnif,width:\"100%\",YAXZkCMj2:bLi1xse8F})})}),sB4wQbnLI&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y4h6s3-container\",layoutDependency:layoutDependency,layoutId:\"fmMFEUcov-container\",nodeId:\"fmMFEUcov\",rendersWithMotion:true,scopeId:\"dKxE4KvPC\",children:/*#__PURE__*/_jsx(Tags,{height:\"100%\",id:\"fmMFEUcov\",KQkrEYVRG:LAUvQJv8l,layoutId:\"fmMFEUcov\",Q1leHfInp:IxWFzSHZc,width:\"100%\",YAXZkCMj2:bLi1xse8F})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v11p09\",\"data-framer-name\":\"Title & Date\",layoutDependency:layoutDependency,layoutId:\"K3kqpUMs7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u7ndjn\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"SIV4aCIoI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1d52wi3\",\"data-styles-preset\":\"lls2bmpKB\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-69e84fe6-81aa-4811-b898-d057c33ba92e, rgb(0, 57, 110)))\"},children:\"Mind Sports: International Chess Camps\"})}),className:\"framer-14l2myd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o_TH27Ddf\",style:{\"--extracted-a0htzi\":\"var(--token-69e84fe6-81aa-4811-b898-d057c33ba92e, rgb(0, 57, 110))\",\"--framer-paragraph-spacing\":\"0px\"},text:KVzr5IvLV,verticalAlignment:\"top\",withExternalLayout:true}),DB9ZpbVN7&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ngakyh\",\"data-framer-name\":\"by MSP\",layoutDependency:layoutDependency,layoutId:\"Zjas6AX19\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-893a2231-c83b-498b-a23c-b3dca4234d6d, rgb(96, 96, 96)))\"},children:\"by\"})}),className:\"framer-x106yx\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],layoutDependency:layoutDependency,layoutId:\"oWS4jB6hY\",style:{\"--extracted-a0htzi\":\"var(--token-893a2231-c83b-498b-a23c-b3dca4234d6d, rgb(96, 96, 96))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:437,pixelWidth:1080,sizes:\"75px\",src:\"https://framerusercontent.com/images/WQBpzVFRGWDJDoiAcsnbcdXyg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/WQBpzVFRGWDJDoiAcsnbcdXyg.png?scale-down-to=512 512w,https://framerusercontent.com/images/WQBpzVFRGWDJDoiAcsnbcdXyg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WQBpzVFRGWDJDoiAcsnbcdXyg.png 1080w\"},className:\"framer-j1lbir\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IpHsnz6ei\"})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g9v0bd\",\"data-styles-preset\":\"oOAOLYvO0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f79037a9-e6c2-4f57-9b30-ea2cb7341da6, rgb(219, 27, 6)))\"},children:\"MMM DD - DD\"})}),className:\"framer-5utpmu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QQ7Ux6U8v\",style:{\"--extracted-r6o4lv\":\"var(--token-f79037a9-e6c2-4f57-9b30-ea2cb7341da6, rgb(219, 27, 6))\",\"--framer-paragraph-spacing\":\"0px\"},text:taCcrFLNL,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gl99t5\",\"data-styles-preset\":\"hqMwWjMd1\",children:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\"})}),className:\"framer-12wfwti\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ANN7LbOKF\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Ek69G57Cg,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lh7lm7\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"XicEMp4ty\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lfg38t-container\",layoutDependency:layoutDependency,layoutId:\"JuREHUAjo-container\",nodeId:\"JuREHUAjo\",rendersWithMotion:true,scopeId:\"dKxE4KvPC\",children:/*#__PURE__*/_jsx(SolidButton,{GzwV6oRns:false,height:\"100%\",id:\"JuREHUAjo\",layoutId:\"JuREHUAjo\",QXWIf9jec:R_Qqs0hsk,variant:\"KBjSEHkBE\",width:\"100%\",ZZq2CjsZ5:fB9QFW0K6})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11ae7gq-container\",layoutDependency:layoutDependency,layoutId:\"AH2zMNa05-container\",nodeId:\"AH2zMNa05\",rendersWithMotion:true,scopeId:\"dKxE4KvPC\",children:/*#__PURE__*/_jsx(SolidButton,{GzwV6oRns:true,height:\"100%\",id:\"AH2zMNa05\",layoutId:\"AH2zMNa05\",QXWIf9jec:nu5fMhuix,variant:\"O9f7A5OEl\",width:\"100%\",ZZq2CjsZ5:TUzbDt4UC})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g1zDW.framer-esjg3w, .framer-g1zDW .framer-esjg3w { display: block; }\",\".framer-g1zDW.framer-131mdvn { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 393px; will-change: var(--framer-will-change-override, transform); }\",\".framer-g1zDW .framer-z24m7b-container { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 221px); position: relative; width: 100%; }\",\".framer-g1zDW .framer-1l5yqsk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 20px 20px 30px 20px; position: relative; width: 100%; }\",\".framer-g1zDW .framer-qu5mqi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-g1zDW .framer-1p025xj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1zDW .framer-1b3e7u3-container, .framer-g1zDW .framer-1le5hbm-container, .framer-g1zDW .framer-1y4h6s3-container, .framer-g1zDW .framer-lfg38t-container, .framer-g1zDW .framer-11ae7gq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-g1zDW .framer-v11p09 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-g1zDW .framer-1u7ndjn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1zDW .framer-14l2myd, .framer-g1zDW .framer-5utpmu, .framer-g1zDW .framer-12wfwti { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-g1zDW .framer-ngakyh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-g1zDW .framer-x106yx { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-g1zDW .framer-j1lbir { aspect-ratio: 2.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: hidden; position: relative; width: 75px; }\",\".framer-g1zDW .framer-lh7lm7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: min-content; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 666\n * @framerIntrinsicWidth 393\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"OANgxnxIm\":\"videoUpload\",\"EuTyvG_TM\":\"cardBG\",\"LAUvQJv8l\":\"tagBG\",\"bLi1xse8F\":\"tagTextColor\",\"QsOZ7Leff\":\"tag1Visibility\",\"j4B6wgTtL\":\"tagWord1\",\"PUx9un8OO\":\"tag2Visibility\",\"qkq82Gnif\":\"tagWord2\",\"sB4wQbnLI\":\"tag3Visibility\",\"IxWFzSHZc\":\"tagWord3\",\"DB9ZpbVN7\":\"mSPVisibility\",\"KVzr5IvLV\":\"title\",\"taCcrFLNL\":\"dates\",\"Ek69G57Cg\":\"description\",\"R_Qqs0hsk\":\"buttonText1\",\"fB9QFW0K6\":\"link1\",\"nu5fMhuix\":\"buttonText2\",\"TUzbDt4UC\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdKxE4KvPC=withCSS(Component,css,\"framer-g1zDW\");export default FramerdKxE4KvPC;FramerdKxE4KvPC.displayName=\"Spotlight Card\";FramerdKxE4KvPC.defaultProps={height:666,width:393};addPropertyControls(FramerdKxE4KvPC,{OANgxnxIm:VideoControls?.[\"srcFile\"]&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,Vys6h4Ql3KUIE8M6CjalHimg9Zo.mp4?originalFilename=video+placeholder.mp4\",description:undefined,hidden:undefined,title:\"Video upload\"},EuTyvG_TM:{defaultValue:'var(--token-87f4f34d-61af-464a-9f91-7b9f4c5b3148, rgb(248, 248, 248)) /* {\"name\":\"Grey BG\"} */',title:\"Card BG\",type:ControlType.Color},LAUvQJv8l:{defaultValue:\"rgb(209, 233, 255)\",title:\"Tag BG\",type:ControlType.Color},bLi1xse8F:{defaultValue:\"var(--token-69e84fe6-81aa-4811-b898-d057c33ba92e, rgb(0, 57, 110))\",title:\"Tag text color\",type:ControlType.Color},QsOZ7Leff:{defaultValue:true,title:\"Tag 1 Visibility\",type:ControlType.Boolean},j4B6wgTtL:{defaultValue:\"Tag 1\",displayTextArea:false,title:\"Tag Word 1\",type:ControlType.String},PUx9un8OO:{defaultValue:true,title:\"Tag 2 Visibility\",type:ControlType.Boolean},qkq82Gnif:{defaultValue:\"Tag 2\",displayTextArea:false,title:\"Tag Word 2\",type:ControlType.String},sB4wQbnLI:{defaultValue:true,title:\"Tag 3 Visibility\",type:ControlType.Boolean},IxWFzSHZc:{defaultValue:\"Tag 3\",displayTextArea:false,title:\"Tag Word 3\",type:ControlType.String},DB9ZpbVN7:{defaultValue:false,title:\"MSP Visibility\",type:ControlType.Boolean},KVzr5IvLV:{defaultValue:\"Mind Sports: International Chess Camps\",displayTextArea:false,title:\"Title\",type:ControlType.String},taCcrFLNL:{defaultValue:\"MMM DD - DD\",displayTextArea:false,title:\"Dates\",type:ControlType.String},Ek69G57Cg:{defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\",displayTextArea:false,title:\"Description\",type:ControlType.String},R_Qqs0hsk:{defaultValue:\"Explore More\",displayTextArea:false,title:\"Button Text 1\",type:ControlType.String},fB9QFW0K6:{title:\"Link 1\",type:ControlType.Link},nu5fMhuix:{defaultValue:\"Register Now\",displayTextArea:false,title:\"Button Text 2\",type:ControlType.String},TUzbDt4UC:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramerdKxE4KvPC,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Euclid Circular A Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/lckLNXmav5SRnkpI7xh7SvgI.woff2\"}]},...VideoFonts,...TagsFonts,...SolidButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdKxE4KvPC\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"666\",\"framerVariables\":\"{\\\"OANgxnxIm\\\":\\\"videoUpload\\\",\\\"EuTyvG_TM\\\":\\\"cardBG\\\",\\\"LAUvQJv8l\\\":\\\"tagBG\\\",\\\"bLi1xse8F\\\":\\\"tagTextColor\\\",\\\"QsOZ7Leff\\\":\\\"tag1Visibility\\\",\\\"j4B6wgTtL\\\":\\\"tagWord1\\\",\\\"PUx9un8OO\\\":\\\"tag2Visibility\\\",\\\"qkq82Gnif\\\":\\\"tagWord2\\\",\\\"sB4wQbnLI\\\":\\\"tag3Visibility\\\",\\\"IxWFzSHZc\\\":\\\"tagWord3\\\",\\\"DB9ZpbVN7\\\":\\\"mSPVisibility\\\",\\\"KVzr5IvLV\\\":\\\"title\\\",\\\"taCcrFLNL\\\":\\\"dates\\\",\\\"Ek69G57Cg\\\":\\\"description\\\",\\\"R_Qqs0hsk\\\":\\\"buttonText1\\\",\\\"fB9QFW0K6\\\":\\\"link1\\\",\\\"nu5fMhuix\\\":\\\"buttonText2\\\",\\\"TUzbDt4UC\\\":\\\"link2\\\"}\",\"framerIntrinsicWidth\":\"393\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7918caa)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Euclid Circular A Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Euclid Circular A Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/wmFlo8Ds1lA3SqktqmV7lYFHPk.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-0PgKY .framer-styles-preset-1d52wi3:not(.rich-text-wrapper), .framer-0PgKY .framer-styles-preset-1d52wi3.rich-text-wrapper h3 { --framer-font-family: \"Euclid Circular A Bold\", \"Euclid Circular A Bold Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-69e84fe6-81aa-4811-b898-d057c33ba92e, #00396e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1023px) and (min-width: 810px) { .framer-0PgKY .framer-styles-preset-1d52wi3:not(.rich-text-wrapper), .framer-0PgKY .framer-styles-preset-1d52wi3.rich-text-wrapper h3 { --framer-font-family: \"Euclid Circular A Bold\", \"Euclid Circular A Bold Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 32px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-69e84fe6-81aa-4811-b898-d057c33ba92e, #00396e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-0PgKY .framer-styles-preset-1d52wi3:not(.rich-text-wrapper), .framer-0PgKY .framer-styles-preset-1d52wi3.rich-text-wrapper h3 { --framer-font-family: \"Euclid Circular A Bold\", \"Euclid Circular A Bold Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.02em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-69e84fe6-81aa-4811-b898-d057c33ba92e, #00396e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-0PgKY\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/SHjV9hOFUX3YfyJtfv9C/cYqxozhv4sJ1wlf4IAT1/JHBniK2XP.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/MMaKjPfvBQqe6F6hZG7i/OOowU6Bdsv6pgU2TQQMf/v9Xu8TQLi.js\";import SolidButton from\"https://framerusercontent.com/modules/Y2QEIcypAHwcIadLpMfS/teDvgAnCqmDUarmxr2i2/tv6kCjWfr.js\";const SolidButtonFonts=getFonts(SolidButton);const cycleOrder=[\"B9NDvXAET\",\"RmMJizEnx\",\"JGhctkQaS\",\"RmieH7iIM\"];const serializationHash=\"framer-uJ003\";const variantClassNames={B9NDvXAET:\"framer-v-n6lveu\",JGhctkQaS:\"framer-v-bfc4n9\",RmieH7iIM:\"framer-v-1imywev\",RmMJizEnx:\"framer-v-1f1bqw2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"B9NDvXAET\",Laptop:\"RmMJizEnx\",Phone:\"RmieH7iIM\",Tablet:\"JGhctkQaS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"B9NDvXAET\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"B9NDvXAET\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-n6lveu\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"B9NDvXAET\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({JGhctkQaS:{\"data-framer-name\":\"Tablet\"},RmieH7iIM:{\"data-framer-name\":\"Phone\"},RmMJizEnx:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jdcvfl\",\"data-framer-name\":\"fixed-width\",layoutDependency:layoutDependency,layoutId:\"scHbwCS4q\",style:{backgroundColor:\"rgb(255, 237, 191)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p2vyn2\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"iTxS32Lp9\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{RmieH7iIM:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y1smf5\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"lYn2VzkO6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ux6pfb\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"Zmbxxf_aT\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-iaxeyu\",\"data-styles-preset\":\"JHBniK2XP\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(137, 31, 10))\"},children:\"More programmes, more discounts\"})}),className:\"framer-29rue2\",\"data-framer-name\":\"A learning programme for every student\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cfSUvFWR7\",style:{\"--extracted-1of0zx5\":\"rgb(137, 31, 10)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({RmieH7iIM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1gatfl4\",\"data-styles-preset\":\"v9Xu8TQLi\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(137, 31, 10))\"},children:\"More programmes, more discounts\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-893a2231-c83b-498b-a23c-b3dca4234d6d, rgb(96, 96, 96)))\"},children:\"Up to 20% OFF\"})}),className:\"framer-3n9667\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],layoutDependency:layoutDependency,layoutId:\"fIkhBxapL\",style:{\"--extracted-1of0zx5\":\"var(--token-893a2231-c83b-498b-a23c-b3dca4234d6d, rgb(96, 96, 96))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({RmieH7iIM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-893a2231-c83b-498b-a23c-b3dca4234d6d, rgb(96, 96, 96)))\"},children:\"Up to 20% OFF\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qpzgyz\",\"data-framer-name\":\"Discounts\",layoutDependency:layoutDependency,layoutId:\"eykZDWgyD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ni16jn\",\"data-border\":true,\"data-framer-name\":\"10%\",layoutDependency:layoutDependency,layoutId:\"KB4Lg_v_4\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-893a2231-c83b-498b-a23c-b3dca4234d6d, rgb(96, 96, 96))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{RmieH7iIM:{\"--border-bottom-width\":\"1px\",\"--border-right-width\":\"0px\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIEJvbGQ=\",\"--framer-font-family\":'\"Euclid Circular A Bold\", \"Euclid Circular A Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(137, 31, 10))\"},children:\"10% off\"})}),className:\"framer-1boia3l\",fonts:[\"CUSTOM;Euclid Circular A Bold\"],layoutDependency:layoutDependency,layoutId:\"augwiLDIs\",style:{\"--extracted-a0htzi\":\"rgb(137, 31, 10)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-893a2231-c83b-498b-a23c-b3dca4234d6d, rgb(96, 96, 96)))\"},children:\"for 2nd programme\"})}),className:\"framer-1uj28g1\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],layoutDependency:layoutDependency,layoutId:\"AMngR7D4U\",style:{\"--extracted-1eung3n\":\"var(--token-893a2231-c83b-498b-a23c-b3dca4234d6d, rgb(96, 96, 96))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16p0jvn\",\"data-framer-name\":\"20%\",layoutDependency:layoutDependency,layoutId:\"wwxwgEr7u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIEJvbGQ=\",\"--framer-font-family\":'\"Euclid Circular A Bold\", \"Euclid Circular A Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(137, 31, 10))\"},children:\"20% off\"})}),className:\"framer-lxjdc0\",fonts:[\"CUSTOM;Euclid Circular A Bold\"],layoutDependency:layoutDependency,layoutId:\"OlyW0sSXs\",style:{\"--extracted-a0htzi\":\"rgb(137, 31, 10)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBBIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular A Regular\", \"Euclid Circular A Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-893a2231-c83b-498b-a23c-b3dca4234d6d, rgb(96, 96, 96)))\"},children:\"for 3rd programme\"})}),className:\"framer-xaf8ud\",fonts:[\"CUSTOM;Euclid Circular A Regular\"],layoutDependency:layoutDependency,layoutId:\"ggS1dLWce\",style:{\"--extracted-1eung3n\":\"var(--token-893a2231-c83b-498b-a23c-b3dca4234d6d, rgb(96, 96, 96))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+(50+((componentViewport?.height||500)-100-400)/2)+20+0+281.7,...addPropertyOverrides({JGhctkQaS:{y:(componentViewport?.y||0)+(50+((componentViewport?.height||200)-100-315.4)/2)+20+0+229.4},RmieH7iIM:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-623.8)/2)+20+0+0+317.8},RmMJizEnx:{y:(componentViewport?.y||0)+(50+((componentViewport?.height||490)-100-390)/2)+30+0+250.7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fa0k2r-container\",layoutDependency:layoutDependency,layoutId:\"o9zxDzOEC-container\",nodeId:\"o9zxDzOEC\",rendersWithMotion:true,scopeId:\"eW6Xi2tIm\",children:/*#__PURE__*/_jsx(SolidButton,{GzwV6oRns:true,height:\"100%\",id:\"o9zxDzOEC\",layoutId:\"o9zxDzOEC\",QXWIf9jec:\"Register Now\",variant:\"KBjSEHkBE\",width:\"100%\",ZZq2CjsZ5:\"https://mindstretcher.surveysparrow.com/s/Mind-Stretcher-June-Holiday-Camps-2025/tt-p1DfU\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h5y8n2\",\"data-framer-name\":\"Desktop IMG\",layoutDependency:layoutDependency,layoutId:\"cFWQY4IBK\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:340,intrinsicWidth:384,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(50+((componentViewport?.height||500)-100-400)/2)+20+0),pixelHeight:855,pixelWidth:855,sizes:\"360px\",src:\"https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png?scale-down-to=512 512w,https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png 855w\"},className:\"framer-vkpxk3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"LuK06g7JE\",...addPropertyOverrides({JGhctkQaS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:340,intrinsicWidth:384,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(50+((componentViewport?.height||200)-100-315.4)/2)+20+0+45.4),pixelHeight:855,pixelWidth:855,sizes:\"220px\",src:\"https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png?scale-down-to=512 512w,https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png 855w\"}},RmieH7iIM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:340,intrinsicWidth:384,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-623.8)/2)+20+383.8+0),pixelHeight:855,pixelWidth:855,sizes:\"200px\",src:\"https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png?scale-down-to=512 512w,https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png 855w\"}},RmMJizEnx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:340,intrinsicWidth:384,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(50+((componentViewport?.height||490)-100-390)/2)+30+0+80),pixelHeight:855,pixelWidth:855,sizes:\"250px\",src:\"https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png?scale-down-to=512 512w,https://framerusercontent.com/images/OMzx9RmfNGANHh15atjxq4e8u9o.png 855w\"}}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uJ003.framer-o5oro, .framer-uJ003 .framer-o5oro { display: block; }\",\".framer-uJ003.framer-n6lveu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 100px 50px 100px; position: relative; width: 1440px; }\",\".framer-uJ003 .framer-jdcvfl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 60px 20px 40px; position: relative; width: 1240px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uJ003 .framer-p2vyn2 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-uJ003 .framer-1y1smf5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-uJ003 .framer-1ux6pfb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uJ003 .framer-29rue2 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uJ003 .framer-3n9667 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-uJ003 .framer-1qpzgyz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uJ003 .framer-1ni16jn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 0px; position: relative; width: min-content; }\",\".framer-uJ003 .framer-1boia3l, .framer-uJ003 .framer-1uj28g1, .framer-uJ003 .framer-lxjdc0, .framer-uJ003 .framer-xaf8ud { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-uJ003 .framer-16p0jvn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: min-content; }\",\".framer-uJ003 .framer-1fa0k2r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uJ003 .framer-h5y8n2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uJ003 .framer-vkpxk3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 360px); overflow: visible; position: relative; width: 360px; }\",\".framer-uJ003.framer-v-1f1bqw2.framer-n6lveu { padding: 50px; width: 1024px; }\",\".framer-uJ003.framer-v-1f1bqw2 .framer-jdcvfl { flex: 1 0 0px; height: 390px; padding: 30px; width: 1px; }\",\".framer-uJ003.framer-v-1f1bqw2 .framer-p2vyn2 { align-self: unset; height: 333px; padding: 0px 0px 25px 0px; }\",\".framer-uJ003.framer-v-1f1bqw2 .framer-1y1smf5, .framer-uJ003.framer-v-1imywev .framer-1y1smf5 { align-content: flex-start; align-items: flex-start; padding: 0px; }\",\".framer-uJ003.framer-v-1f1bqw2 .framer-1ux6pfb { width: 685px; }\",\".framer-uJ003.framer-v-1f1bqw2 .framer-h5y8n2 { align-content: flex-end; align-items: flex-end; height: 100%; }\",\".framer-uJ003.framer-v-1f1bqw2 .framer-vkpxk3 { height: var(--framer-aspect-ratio-supported, 250px); width: 250px; }\",\".framer-uJ003.framer-v-bfc4n9.framer-n6lveu { padding: 50px; width: 810px; }\",\".framer-uJ003.framer-v-bfc4n9 .framer-jdcvfl { align-content: center; align-items: center; flex: 1 0 0px; padding: 20px 20px 20px 30px; width: 1px; }\",\".framer-uJ003.framer-v-bfc4n9 .framer-p2vyn2 { align-self: unset; gap: 30px; height: min-content; }\",\".framer-uJ003.framer-v-bfc4n9 .framer-1y1smf5 { padding: 0px; }\",\".framer-uJ003.framer-v-bfc4n9 .framer-1ni16jn { padding: 0px 20px 0px 0px; }\",\".framer-uJ003.framer-v-bfc4n9 .framer-16p0jvn { padding: 0px 40px 0px 20px; }\",\".framer-uJ003.framer-v-bfc4n9 .framer-h5y8n2 { align-content: flex-end; align-items: flex-end; align-self: stretch; height: auto; }\",\".framer-uJ003.framer-v-bfc4n9 .framer-vkpxk3 { height: var(--framer-aspect-ratio-supported, 230px); width: 220px; }\",\".framer-uJ003.framer-v-1imywev.framer-n6lveu { padding: 24px; width: 390px; }\",\".framer-uJ003.framer-v-1imywev .framer-jdcvfl { align-content: center; align-items: center; flex: 1 0 0px; flex-direction: column; padding: 20px; width: 1px; }\",\".framer-uJ003.framer-v-1imywev .framer-p2vyn2 { align-self: unset; flex: none; gap: 20px; height: min-content; padding: 0px 0px 20px 0px; width: 100%; }\",\".framer-uJ003.framer-v-1imywev .framer-1qpzgyz { align-content: flex-start; align-items: flex-start; flex-direction: column; width: min-content; }\",\".framer-uJ003.framer-v-1imywev .framer-1ni16jn { padding: 0px 0px 15px 0px; }\",\".framer-uJ003.framer-v-1imywev .framer-16p0jvn { padding: 15px 0px 0px 0px; }\",\".framer-uJ003.framer-v-1imywev .framer-h5y8n2 { width: 100%; }\",\".framer-uJ003.framer-v-1imywev .framer-vkpxk3 { height: var(--framer-aspect-ratio-supported, 200px); width: 200px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-uJ003[data-border=\"true\"]::after, .framer-uJ003 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RmMJizEnx\":{\"layout\":[\"fixed\",\"auto\"]},\"JGhctkQaS\":{\"layout\":[\"fixed\",\"auto\"]},\"RmieH7iIM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramereW6Xi2tIm=withCSS(Component,css,\"framer-uJ003\");export default FramereW6Xi2tIm;FramereW6Xi2tIm.displayName=\"Holiday Programme CTA Banner\";FramereW6Xi2tIm.defaultProps={height:500,width:1440};addPropertyControls(FramereW6Xi2tIm,{variant:{options:[\"B9NDvXAET\",\"RmMJizEnx\",\"JGhctkQaS\",\"RmieH7iIM\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereW6Xi2tIm,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Euclid Circular A Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/lckLNXmav5SRnkpI7xh7SvgI.woff2\"},{family:\"Euclid Circular A Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/wmFlo8Ds1lA3SqktqmV7lYFHPk.woff2\"}]},...SolidButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereW6Xi2tIm\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"500\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RmMJizEnx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JGhctkQaS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RmieH7iIM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/SHjV9hOFUX3YfyJtfv9C/cYqxozhv4sJ1wlf4IAT1/JHBniK2XP.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/MMaKjPfvBQqe6F6hZG7i/OOowU6Bdsv6pgU2TQQMf/v9Xu8TQLi.js\";import DropdownComponents from\"https://framerusercontent.com/modules/S6cT6BYvsqMyYzlmIWnb/yRvQ9i4WpCZ5a48wQort/GKY6umKaa.js\";const DropdownComponentsFonts=getFonts(DropdownComponents);const cycleOrder=[\"Vp9mwrkOt\",\"c0C3GSPWu\",\"hRmYe5ry3\",\"qdZOJlwMy\"];const serializationHash=\"framer-qQWCY\";const variantClassNames={c0C3GSPWu:\"framer-v-mfewzu\",hRmYe5ry3:\"framer-v-164x9al\",qdZOJlwMy:\"framer-v-qbvagw\",Vp9mwrkOt:\"framer-v-g5pl74\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"Vp9mwrkOt\",Laptop:\"c0C3GSPWu\",Mobile:\"qdZOJlwMy\",Tablet:\"hRmYe5ry3\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Vp9mwrkOt\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Vp9mwrkOt\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-g5pl74\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Vp9mwrkOt\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({c0C3GSPWu:{\"data-framer-name\":\"Laptop\"},hRmYe5ry3:{\"data-framer-name\":\"Tablet\"},qdZOJlwMy:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-iaxeyu\",\"data-styles-preset\":\"JHBniK2XP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-69e84fe6-81aa-4811-b898-d057c33ba92e, rgb(0, 57, 110)))\"},children:\"FAQs\"})}),className:\"framer-1nsdrpb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rsd9ozfqC\",style:{\"--extracted-1of0zx5\":\"var(--token-69e84fe6-81aa-4811-b898-d057c33ba92e, rgb(0, 57, 110))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qdZOJlwMy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1gatfl4\",\"data-styles-preset\":\"v9Xu8TQLi\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-69e84fe6-81aa-4811-b898-d057c33ba92e, rgb(0, 57, 110)))\"},children:\"FAQs\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e93l11\",\"data-framer-name\":\"Dropdowns\",layoutDependency:layoutDependency,layoutId:\"QbM0Qn6NM\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"1240px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||438)-100-337)/2+48+25)+0+0,...addPropertyOverrides({c0C3GSPWu:{width:\"924px\"},hRmYe5ry3:{width:\"710px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||200)-100-337)/2+48+25)+0+0},qdZOJlwMy:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-332)/2+43+25)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kz9nw5-container\",layoutDependency:layoutDependency,layoutId:\"CMCG_QxHm-container\",nodeId:\"CMCG_QxHm\",rendersWithMotion:true,scopeId:\"PJ3MefWzZ\",children:/*#__PURE__*/_jsx(DropdownComponents,{height:\"100%\",id:\"CMCG_QxHm\",layoutId:\"CMCG_QxHm\",style:{width:\"100%\"},T8rQFvSBR:\"We understand that unforeseen circumstances may arise. However, please note that our programme fees are non-refundable, as materials and resources have already been allocated in advance. We appreciate your understanding.\",variant:\"s4l0aZFqF\",W88zB8mIG:\"What if my child is unable to attend one of the days in the programme?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m9duy8\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"zBuK4K2hU\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"1240px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||438)-100-337)/2+48+25)+0+66,...addPropertyOverrides({c0C3GSPWu:{width:\"924px\"},hRmYe5ry3:{width:\"710px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||200)-100-337)/2+48+25)+0+66},qdZOJlwMy:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-332)/2+43+25)+0+66}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qbddgx-container\",layoutDependency:layoutDependency,layoutId:\"oCyMo4TES-container\",nodeId:\"oCyMo4TES\",rendersWithMotion:true,scopeId:\"PJ3MefWzZ\",children:/*#__PURE__*/_jsx(DropdownComponents,{height:\"100%\",id:\"oCyMo4TES\",layoutId:\"oCyMo4TES\",style:{width:\"100%\"},T8rQFvSBR:\"You're entitled to 10% off the second programme and 20% off the third programme. Discounts apply to the lower-priced programmes and do not apply to the Battle of the Minds Competition or Master Speakers Oratory Olympics.\",variant:\"s4l0aZFqF\",W88zB8mIG:\"How are the bundle discounts calculated?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w0t977\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"mdBa1gJY8\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"1240px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||438)-100-337)/2+48+25)+0+132,...addPropertyOverrides({c0C3GSPWu:{width:\"924px\"},hRmYe5ry3:{width:\"710px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||200)-100-337)/2+48+25)+0+132},qdZOJlwMy:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-332)/2+43+25)+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10gradh-container\",layoutDependency:layoutDependency,layoutId:\"e9xjNtzCv-container\",nodeId:\"e9xjNtzCv\",rendersWithMotion:true,scopeId:\"PJ3MefWzZ\",children:/*#__PURE__*/_jsx(DropdownComponents,{height:\"100%\",id:\"e9xjNtzCv\",layoutId:\"e9xjNtzCv\",style:{width:\"100%\"},T8rQFvSBR:\"If you plan to register siblings, please send us a WhatsApp message at +65 8883 8004 or visit our centre to enjoy sibling benefits.\\n\\nFor group discounts (5 students or more), please email events@mindstretcher.com to find out more.\",variant:\"s4l0aZFqF\",W88zB8mIG:\"Can I enjoy sibling discounts?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ehdu24\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"xeM4qVoGR\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"1240px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||438)-100-337)/2+48+25)+0+198,...addPropertyOverrides({c0C3GSPWu:{width:\"924px\"},hRmYe5ry3:{width:\"710px\",y:(componentViewport?.y||0)+50+(((componentViewport?.height||200)-100-337)/2+48+25)+0+198},qdZOJlwMy:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-332)/2+43+25)+0+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13fb93i-container\",layoutDependency:layoutDependency,layoutId:\"sF28CNna6-container\",nodeId:\"sF28CNna6\",rendersWithMotion:true,scopeId:\"PJ3MefWzZ\",children:/*#__PURE__*/_jsx(DropdownComponents,{height:\"100%\",id:\"sF28CNna6\",layoutId:\"sF28CNna6\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, you may sign up for the 2025 Battle of the Minds Chess Competition (Chess) and/or the 2025 Master Speakers Oratory Olympics without attending the workshop.\",variant:\"s4l0aZFqF\",W88zB8mIG:\"Can my child attend the tournament or competition without attending the workshop?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q253px\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"A03mOQRGP\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qQWCY.framer-1rhjumi, .framer-qQWCY .framer-1rhjumi { display: block; }\",\".framer-qQWCY.framer-g5pl74 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 100px 50px 100px; position: relative; width: 1440px; }\",\".framer-qQWCY .framer-1nsdrpb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1240px; word-break: break-word; word-wrap: break-word; }\",\".framer-qQWCY .framer-e93l11 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1240px; }\",\".framer-qQWCY .framer-kz9nw5-container, .framer-qQWCY .framer-qbddgx-container, .framer-qQWCY .framer-10gradh-container, .framer-qQWCY .framer-13fb93i-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-qQWCY .framer-m9duy8, .framer-qQWCY .framer-1w0t977, .framer-qQWCY .framer-1ehdu24, .framer-qQWCY .framer-q253px { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-qQWCY.framer-v-mfewzu.framer-g5pl74 { padding: 50px; width: 1024px; }\",\".framer-qQWCY.framer-v-mfewzu .framer-1nsdrpb, .framer-qQWCY.framer-v-mfewzu .framer-e93l11 { width: 924px; }\",\".framer-qQWCY.framer-v-164x9al.framer-g5pl74 { padding: 50px; width: 810px; }\",\".framer-qQWCY.framer-v-164x9al .framer-1nsdrpb, .framer-qQWCY.framer-v-164x9al .framer-e93l11 { width: 710px; }\",\".framer-qQWCY.framer-v-qbvagw.framer-g5pl74 { padding: 24px; width: 390px; }\",\".framer-qQWCY.framer-v-qbvagw .framer-1nsdrpb, .framer-qQWCY.framer-v-qbvagw .framer-e93l11 { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 438\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"c0C3GSPWu\":{\"layout\":[\"fixed\",\"auto\"]},\"hRmYe5ry3\":{\"layout\":[\"fixed\",\"auto\"]},\"qdZOJlwMy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerPJ3MefWzZ=withCSS(Component,css,\"framer-qQWCY\");export default FramerPJ3MefWzZ;FramerPJ3MefWzZ.displayName=\"Holiday Programmes FAQ\";FramerPJ3MefWzZ.defaultProps={height:438,width:1440};addPropertyControls(FramerPJ3MefWzZ,{variant:{options:[\"Vp9mwrkOt\",\"c0C3GSPWu\",\"hRmYe5ry3\",\"qdZOJlwMy\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPJ3MefWzZ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...DropdownComponentsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPJ3MefWzZ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"438\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c0C3GSPWu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hRmYe5ry3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qdZOJlwMy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "fontStore", "fonts", "css", "className", "VideoFonts", "getFonts", "Video", "TagsFonts", "IKCFobsEQ_default", "SolidButtonFonts", "tv6kCjWfr_default", "VideoControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "buttonText1", "buttonText2", "cardBG", "dates", "description", "height", "id", "link1", "link2", "mSPVisibility", "tag1Visibility", "tag2Visibility", "tag3Visibility", "tagBG", "tagTextColor", "tagWord1", "tagWord2", "tagWord3", "title", "videoUpload", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "OANgxnxIm", "EuTyvG_TM", "LAUvQJv8l", "bLi1xse8F", "QsOZ7Leff", "j4B6wgTtL", "PUx9un8OO", "qkq82Gnif", "sB4wQbnLI", "IxWFzSHZc", "DB9ZpbVN7", "KVzr5IvLV", "taCcrFLNL", "Ek69G57Cg", "R_Qqs0hsk", "fB9QFW0K6", "nu5fMhuix", "TUzbDt4UC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Video", "IKCFobsEQ_default", "RichText", "Image2", "tv6kCjWfr_default", "css", "FramerdKxE4KvPC", "withCSS", "dKxE4KvPC_default", "addPropertyControls", "VideoControls", "ControlType", "addFonts", "VideoFonts", "TagsFonts", "SolidButtonFonts", "getFontsFromSharedStyle", "fonts", "SpotlightCardFonts", "getFonts", "dKxE4KvPC_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "_1ChessVisibility", "_2CodingVisibility", "_3MSPVisibility", "header", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "MhWgWku_y", "AufTcsidc", "amg0R00ZB", "nurCuPmws", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "RichText", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "css", "FramerDQ36wl1d5", "withCSS", "DQ36wl1d5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "init_ssg_sandbox_shims", "SolidButtonFonts", "getFonts", "tv6kCjWfr_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramereW6Xi2tIm", "withCSS", "eW6Xi2tIm_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "init_ssg_sandbox_shims", "DropdownComponentsFonts", "getFonts", "GKY6umKaa_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerPJ3MefWzZ", "withCSS", "PJ3MefWzZ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
