{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/zwrN5rwhxZLmfEZlt8f3/eD58EkWx553JuLKtaV8l/CMnQgamup.js", "ssg:https://framerusercontent.com/modules/T9Qam1VGGWbsM6n2N2c4/xIgTYhFkkfnPRMrq0vq7/Z9Kamrsiy.js", "ssg:https://framerusercontent.com/modules/Ozxzr2IwpW1vkbXJBVPQ/D6YCgY0HXZz88vUrEBgE/Scrollhighlight.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}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={}));// 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=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",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 borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",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(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\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!==null&&progress!==void 0?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!==null&&rawProgressValue!==void 0?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!==null&&startTime!==void 0?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//     !isOnCanvas\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!==null&&volume!==void 0?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!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options: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\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"hM9KUkrSJ\",\"up5J0wxvA\"];const serializationHash=\"framer-b6yHL\";const variantClassNames={hM9KUkrSJ:\"framer-v-161qnpv\",up5J0wxvA:\"framer-v-fgwiqf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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={Active:\"up5J0wxvA\",Inactive:\"hM9KUkrSJ\"};const getProps=({height,id,link,smooth,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,PGkyTrycd:(_ref=title!==null&&title!==void 0?title:props.PGkyTrycd)!==null&&_ref!==void 0?_ref:\"Title\",PvnQG2uF_:(_ref1=smooth!==null&&smooth!==void 0?smooth:props.PvnQG2uF_)!==null&&_ref1!==void 0?_ref1:true,S0KhFTFra:link!==null&&link!==void 0?link:props.S0KhFTFra,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"hM9KUkrSJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,PGkyTrycd,S0KhFTFra,PvnQG2uF_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hM9KUkrSJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:S0KhFTFra,openInNewTab:false,smoothScroll:PvnQG2uF_,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-161qnpv\",className,classNames)} framer-1bzbwci`,\"data-framer-name\":\"Inactive\",layoutDependency:layoutDependency,layoutId:\"hM9KUkrSJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({up5J0wxvA:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h0kx7s\",layoutDependency:layoutDependency,layoutId:\"km9voFHhT\",style:{backgroundColor:\"rgb(255, 240, 240)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.4},variants:{up5J0wxvA:{backgroundColor:\"var(--token-ede354f3-e623-4c7b-982a-2c1622e8de1f, rgb(20, 5, 51))\",opacity:1}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-3d779ca5-24a2-4038-90f6-dd60f0327c63, rgb(80, 80, 80)))\"},children:\"Title\"})}),className:\"framer-1ynjvp5\",\"data-framer-name\":\"Title\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"XWQLIdBpS\",style:{\"--extracted-1of0zx5\":\"var(--token-3d779ca5-24a2-4038-90f6-dd60f0327c63, rgb(80, 80, 80))\",opacity:.6},text:PGkyTrycd,variants:{up5J0wxvA:{\"--extracted-1of0zx5\":\"var(--token-ede354f3-e623-4c7b-982a-2c1622e8de1f, rgb(20, 5, 51))\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({up5J0wxvA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-ede354f3-e623-4c7b-982a-2c1622e8de1f, rgb(20, 5, 51)))\"},children:\"Title\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-b6yHL.framer-1bzbwci, .framer-b6yHL .framer-1bzbwci { display: block; }\",\".framer-b6yHL.framer-161qnpv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; text-decoration: none; width: 200px; }\",\".framer-b6yHL .framer-1h0kx7s { flex: none; height: 2px; overflow: visible; position: relative; width: 2px; }\",\".framer-b6yHL .framer-1ynjvp5 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b6yHL.framer-161qnpv { gap: 0px; } .framer-b6yHL.framer-161qnpv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-b6yHL.framer-161qnpv > :first-child { margin-left: 0px; } .framer-b6yHL.framer-161qnpv > :last-child { margin-right: 0px; } }\",\".framer-b6yHL.framer-v-fgwiqf .framer-1h0kx7s { width: 30px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[200,null,null,null]},\"up5J0wxvA\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[200,null,null,null]}}}\n * @framerVariables {\"PGkyTrycd\":\"title\",\"S0KhFTFra\":\"link\",\"PvnQG2uF_\":\"smooth\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCMnQgamup=withCSS(Component,css,\"framer-b6yHL\");export default FramerCMnQgamup;FramerCMnQgamup.displayName=\"Item\";FramerCMnQgamup.defaultProps={height:25,width:200};addPropertyControls(FramerCMnQgamup,{variant:{options:[\"hM9KUkrSJ\",\"up5J0wxvA\"],optionTitles:[\"Inactive\",\"Active\"],title:\"Variant\",type:ControlType.Enum},PGkyTrycd:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String},S0KhFTFra:{title:\"Link\",type:ControlType.Link},PvnQG2uF_:{defaultValue:true,title:\"Smooth\",type:ControlType.Boolean}});addFonts(FramerCMnQgamup,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCMnQgamup\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"200\",\"framerVariables\":\"{\\\"PGkyTrycd\\\":\\\"title\\\",\\\"S0KhFTFra\\\":\\\"link\\\",\\\"PvnQG2uF_\\\":\\\"smooth\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[200,null,null,null]},\\\"up5J0wxvA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[200,null,null,null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"25\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CMnQgamup.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Item from\"https://framerusercontent.com/modules/zwrN5rwhxZLmfEZlt8f3/eD58EkWx553JuLKtaV8l/CMnQgamup.js\";const ItemFonts=getFonts(Item);const ItemWithVariantAppearEffect=withVariantAppearEffect(Item);const cycleOrder=[\"Jd3VbVD4w\",\"aYks0DKEG\",\"hdbSHoYvM\",\"i8HV1kiDw\",\"Ar95ZYdFN\"];const serializationHash=\"framer-10K1V\";const variantClassNames={Ar95ZYdFN:\"framer-v-caqre0\",aYks0DKEG:\"framer-v-16a87wy\",hdbSHoYvM:\"framer-v-1qtb8j1\",i8HV1kiDw:\"framer-v-xun9j2\",Jd3VbVD4w:\"framer-v-138jnld\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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={\"1\":\"Jd3VbVD4w\",\"2\":\"aYks0DKEG\",\"3\":\"hdbSHoYvM\",\"Variant 4\":\"i8HV1kiDw\",\"Variant 5\":\"Ar95ZYdFN\"};const getProps=({height,id,link1,link2,link3,link4,link5,link6,link7,link8,scrollSection1,scrollSection2,scrollSection3,scrollSection4,scrollSection5,scrollSection6,scrollSection7,scrollSection8,title,title1,title2,title3,title4,title5,title6,title7,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_humanReadableVariantMap_props_variant,_ref7,_ref8;return{...props,caf89LIQL:(_ref=title!==null&&title!==void 0?title:props.caf89LIQL)!==null&&_ref!==void 0?_ref:\"Notes\",fEmkwXL3p:scrollSection6!==null&&scrollSection6!==void 0?scrollSection6:props.fEmkwXL3p,Fu0x5zKuX:scrollSection2!==null&&scrollSection2!==void 0?scrollSection2:props.Fu0x5zKuX,GxRA2z83f:(_ref1=title5!==null&&title5!==void 0?title5:props.GxRA2z83f)!==null&&_ref1!==void 0?_ref1:\"Notes\",hHr1v4ypd:scrollSection3!==null&&scrollSection3!==void 0?scrollSection3:props.hHr1v4ypd,Hii1HZeJq:link4!==null&&link4!==void 0?link4:props.Hii1HZeJq,HM_2hDxud:(_ref2=title4!==null&&title4!==void 0?title4:props.HM_2hDxud)!==null&&_ref2!==void 0?_ref2:\"Notes\",IlhW4pvhD:link1!==null&&link1!==void 0?link1:props.IlhW4pvhD,KVbDZDhB_:(_ref3=title7!==null&&title7!==void 0?title7:props.KVbDZDhB_)!==null&&_ref3!==void 0?_ref3:\"Notes\",lex7Ygxqi:link6!==null&&link6!==void 0?link6:props.lex7Ygxqi,NkhaXeeSN:link7!==null&&link7!==void 0?link7:props.NkhaXeeSN,OV6JmRHzl:scrollSection4!==null&&scrollSection4!==void 0?scrollSection4:props.OV6JmRHzl,q4Az6i1CV:scrollSection7!==null&&scrollSection7!==void 0?scrollSection7:props.q4Az6i1CV,qRmrapejB:scrollSection5!==null&&scrollSection5!==void 0?scrollSection5:props.qRmrapejB,RMFgJPoA_:(_ref4=title3!==null&&title3!==void 0?title3:props.RMFgJPoA_)!==null&&_ref4!==void 0?_ref4:\"Examples\",s_jtPZAtI:scrollSection8!==null&&scrollSection8!==void 0?scrollSection8:props.s_jtPZAtI,s8cJfp2Rn:(_ref5=title2!==null&&title2!==void 0?title2:props.s8cJfp2Rn)!==null&&_ref5!==void 0?_ref5:\"Usage\",Sgg0wXvmc:link8!==null&&link8!==void 0?link8:props.Sgg0wXvmc,tn9uIi4q5:(_ref6=title6!==null&&title6!==void 0?title6:props.tn9uIi4q5)!==null&&_ref6!==void 0?_ref6:\"Notes\",variant:(_ref7=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref7!==void 0?_ref7:\"Jd3VbVD4w\",vCxyT6K6U:link5!==null&&link5!==void 0?link5:props.vCxyT6K6U,wIYByEYo_:(_ref8=title1!==null&&title1!==void 0?title1:props.wIYByEYo_)!==null&&_ref8!==void 0?_ref8:\"Getting started\",x2ldsboZm:link3!==null&&link3!==void 0?link3:props.x2ldsboZm,Y6_D1fTIh:link2!==null&&link2!==void 0?link2:props.Y6_D1fTIh,zFBl_EQjk:scrollSection1!==null&&scrollSection1!==void 0?scrollSection1:props.zFBl_EQjk};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,IlhW4pvhD,Y6_D1fTIh,x2ldsboZm,Hii1HZeJq,vCxyT6K6U,lex7Ygxqi,NkhaXeeSN,Sgg0wXvmc,wIYByEYo_,s8cJfp2Rn,RMFgJPoA_,caf89LIQL,HM_2hDxud,GxRA2z83f,tn9uIi4q5,KVbDZDhB_,zFBl_EQjk,Fu0x5zKuX,hHr1v4ypd,OV6JmRHzl,qRmrapejB,fEmkwXL3p,q4Az6i1CV,s_jtPZAtI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Jd3VbVD4w\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-138jnld\",className,classNames),\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"Jd3VbVD4w\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Ar95ZYdFN:{\"data-framer-name\":\"Variant 5\"},aYks0DKEG:{\"data-framer-name\":\"2\"},hdbSHoYvM:{\"data-framer-name\":\"3\"},i8HV1kiDw:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6tiy18\",layoutDependency:layoutDependency,layoutId:\"tWL7hadhS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tjp7z0-container\",layoutDependency:layoutDependency,layoutId:\"Gsu8bv9Dn-container\",children:/*#__PURE__*/_jsx(ItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__exitTarget:true,__framer__targets:[{ref:zFBl_EQjk,target:\"up5J0wxvA\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Gsu8bv9Dn\",layoutId:\"Gsu8bv9Dn\",PGkyTrycd:wIYByEYo_,PvnQG2uF_:true,S0KhFTFra:IlhW4pvhD,variant:\"hM9KUkrSJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:\"NaNpx\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+25,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ew37v-container\",layoutDependency:layoutDependency,layoutId:\"BImrJzPDk-container\",children:/*#__PURE__*/_jsx(ItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__exitTarget:true,__framer__targets:[{ref:Fu0x5zKuX,target:\"up5J0wxvA\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"BImrJzPDk\",layoutId:\"BImrJzPDk\",PGkyTrycd:s8cJfp2Rn,PvnQG2uF_:true,S0KhFTFra:Y6_D1fTIh,style:{width:\"100%\"},variant:\"hM9KUkrSJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:\"NaNpx\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+50,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s9u2gz-container\",layoutDependency:layoutDependency,layoutId:\"IF34dyuBE-container\",children:/*#__PURE__*/_jsx(ItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__exitTarget:true,__framer__targets:[{ref:hHr1v4ypd,target:\"up5J0wxvA\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"IF34dyuBE\",layoutId:\"IF34dyuBE\",PGkyTrycd:RMFgJPoA_,PvnQG2uF_:true,S0KhFTFra:x2ldsboZm,style:{width:\"100%\"},variant:\"hM9KUkrSJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:\"NaNpx\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+75,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ojc9ww-container\",layoutDependency:layoutDependency,layoutId:\"u1W1SDWUA-container\",children:/*#__PURE__*/_jsx(ItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__exitTarget:true,__framer__targets:[{ref:OV6JmRHzl,target:\"up5J0wxvA\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"u1W1SDWUA\",layoutId:\"u1W1SDWUA\",PGkyTrycd:caf89LIQL,PvnQG2uF_:true,S0KhFTFra:Hii1HZeJq,style:{width:\"100%\"},variant:\"hM9KUkrSJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:\"NaNpx\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+100,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7s6li0-container\",layoutDependency:layoutDependency,layoutId:\"COILvCZhd-container\",children:/*#__PURE__*/_jsx(ItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__exitTarget:true,__framer__targets:[{ref:qRmrapejB,target:\"up5J0wxvA\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"COILvCZhd\",layoutId:\"COILvCZhd\",PGkyTrycd:HM_2hDxud,PvnQG2uF_:true,S0KhFTFra:vCxyT6K6U,style:{width:\"100%\"},variant:\"hM9KUkrSJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:\"100px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+125,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15exr20-container\",layoutDependency:layoutDependency,layoutId:\"cbLRnMUXb-container\",children:/*#__PURE__*/_jsx(ItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__exitTarget:true,__framer__targets:[{ref:fEmkwXL3p,target:\"up5J0wxvA\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"cbLRnMUXb\",layoutId:\"cbLRnMUXb\",PGkyTrycd:GxRA2z83f,PvnQG2uF_:true,S0KhFTFra:lex7Ygxqi,style:{width:\"100%\"},variant:\"hM9KUkrSJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:\"100px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+150,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u9lbzv-container\",layoutDependency:layoutDependency,layoutId:\"HpUv8p1gu-container\",children:/*#__PURE__*/_jsx(ItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__exitTarget:true,__framer__targets:[{ref:q4Az6i1CV,target:\"up5J0wxvA\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"HpUv8p1gu\",layoutId:\"HpUv8p1gu\",PGkyTrycd:tn9uIi4q5,PvnQG2uF_:true,S0KhFTFra:NkhaXeeSN,style:{width:\"100%\"},variant:\"hM9KUkrSJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:\"100px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+175,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pofuro-container\",layoutDependency:layoutDependency,layoutId:\"c6DKbOUgm-container\",children:/*#__PURE__*/_jsx(ItemWithVariantAppearEffect,{__framer__animateOnce:false,__framer__exitTarget:true,__framer__targets:[{ref:s_jtPZAtI,target:\"up5J0wxvA\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"c6DKbOUgm\",layoutId:\"c6DKbOUgm\",PGkyTrycd:KVbDZDhB_,PvnQG2uF_:true,S0KhFTFra:Sgg0wXvmc,style:{width:\"100%\"},variant:\"hM9KUkrSJ\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-10K1V.framer-7u0hih, .framer-10K1V .framer-7u0hih { display: block; }\",\".framer-10K1V.framer-138jnld { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 56px; position: relative; width: min-content; }\",\".framer-10K1V .framer-6tiy18 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-10K1V .framer-tjp7z0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-10K1V .framer-ew37v-container, .framer-10K1V .framer-1s9u2gz-container, .framer-10K1V .framer-1ojc9ww-container, .framer-10K1V .framer-7s6li0-container { flex: none; height: auto; position: relative; }\",\".framer-10K1V .framer-15exr20-container, .framer-10K1V .framer-1u9lbzv-container, .framer-10K1V .framer-1pofuro-container { flex: none; height: auto; position: relative; width: 100px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-10K1V.framer-138jnld, .framer-10K1V .framer-6tiy18 { gap: 0px; } .framer-10K1V.framer-138jnld > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-10K1V.framer-138jnld > :first-child { margin-left: 0px; } .framer-10K1V.framer-138jnld > :last-child { margin-right: 0px; } .framer-10K1V .framer-6tiy18 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-10K1V .framer-6tiy18 > :first-child { margin-top: 0px; } .framer-10K1V .framer-6tiy18 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 202\n * @framerIntrinsicWidth 256\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"aYks0DKEG\":{\"layout\":[\"auto\",\"auto\"]},\"hdbSHoYvM\":{\"layout\":[\"auto\",\"auto\"]},\"i8HV1kiDw\":{\"layout\":[\"auto\",\"auto\"]},\"Ar95ZYdFN\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"IlhW4pvhD\":\"link1\",\"Y6_D1fTIh\":\"link2\",\"x2ldsboZm\":\"link3\",\"Hii1HZeJq\":\"link4\",\"vCxyT6K6U\":\"link5\",\"lex7Ygxqi\":\"link6\",\"NkhaXeeSN\":\"link7\",\"Sgg0wXvmc\":\"link8\",\"wIYByEYo_\":\"title1\",\"s8cJfp2Rn\":\"title2\",\"RMFgJPoA_\":\"title3\",\"caf89LIQL\":\"title\",\"HM_2hDxud\":\"title4\",\"GxRA2z83f\":\"title5\",\"tn9uIi4q5\":\"title6\",\"KVbDZDhB_\":\"title7\",\"zFBl_EQjk\":\"scrollSection1\",\"Fu0x5zKuX\":\"scrollSection2\",\"hHr1v4ypd\":\"scrollSection3\",\"OV6JmRHzl\":\"scrollSection4\",\"qRmrapejB\":\"scrollSection5\",\"fEmkwXL3p\":\"scrollSection6\",\"q4Az6i1CV\":\"scrollSection7\",\"s_jtPZAtI\":\"scrollSection8\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ9Kamrsiy=withCSS(Component,css,\"framer-10K1V\");export default FramerZ9Kamrsiy;FramerZ9Kamrsiy.displayName=\"Scroll navigation I\";FramerZ9Kamrsiy.defaultProps={height:202,width:256};addPropertyControls(FramerZ9Kamrsiy,{variant:{options:[\"Jd3VbVD4w\",\"aYks0DKEG\",\"hdbSHoYvM\",\"i8HV1kiDw\",\"Ar95ZYdFN\"],optionTitles:[\"1\",\"2\",\"3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum},IlhW4pvhD:{title:\"Link 1\",type:ControlType.Link},Y6_D1fTIh:{title:\"Link 2\",type:ControlType.Link},x2ldsboZm:{title:\"Link 3\",type:ControlType.Link},Hii1HZeJq:{title:\"Link 4\",type:ControlType.Link},vCxyT6K6U:{title:\"Link 5\",type:ControlType.Link},lex7Ygxqi:{title:\"Link 6\",type:ControlType.Link},NkhaXeeSN:{title:\"Link 7\",type:ControlType.Link},Sgg0wXvmc:{title:\"Link 8\",type:ControlType.Link},wIYByEYo_:{defaultValue:\"Getting started\",displayTextArea:false,title:\"Title 1\",type:ControlType.String},s8cJfp2Rn:{defaultValue:\"Usage\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},RMFgJPoA_:{defaultValue:\"Examples\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},caf89LIQL:{defaultValue:\"Notes\",displayTextArea:false,title:\"Title\",type:ControlType.String},HM_2hDxud:{defaultValue:\"Notes\",displayTextArea:false,title:\"Title 4\",type:ControlType.String},GxRA2z83f:{defaultValue:\"Notes\",displayTextArea:false,title:\"Title 5\",type:ControlType.String},tn9uIi4q5:{defaultValue:\"Notes\",title:\"Title 6\",type:ControlType.String},KVbDZDhB_:{defaultValue:\"Notes\",title:\"Title 7\",type:ControlType.String},zFBl_EQjk:{description:\"\",title:\"Scroll Section 1\",type:ControlType.ScrollSectionRef},Fu0x5zKuX:{title:\"Scroll Section 2\",type:ControlType.ScrollSectionRef},hHr1v4ypd:{title:\"Scroll Section 3\",type:ControlType.ScrollSectionRef},OV6JmRHzl:{title:\"Scroll Section 4\",type:ControlType.ScrollSectionRef},qRmrapejB:{title:\"Scroll Section 5\",type:ControlType.ScrollSectionRef},fEmkwXL3p:{title:\"Scroll Section 6\",type:ControlType.ScrollSectionRef},q4Az6i1CV:{title:\"Scroll Section 7\",type:ControlType.ScrollSectionRef},s_jtPZAtI:{title:\"Scroll Section 8\",type:ControlType.ScrollSectionRef}});addFonts(FramerZ9Kamrsiy,[{explicitInter:true,fonts:[]},...ItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ9Kamrsiy\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"IlhW4pvhD\\\":\\\"link1\\\",\\\"Y6_D1fTIh\\\":\\\"link2\\\",\\\"x2ldsboZm\\\":\\\"link3\\\",\\\"Hii1HZeJq\\\":\\\"link4\\\",\\\"vCxyT6K6U\\\":\\\"link5\\\",\\\"lex7Ygxqi\\\":\\\"link6\\\",\\\"NkhaXeeSN\\\":\\\"link7\\\",\\\"Sgg0wXvmc\\\":\\\"link8\\\",\\\"wIYByEYo_\\\":\\\"title1\\\",\\\"s8cJfp2Rn\\\":\\\"title2\\\",\\\"RMFgJPoA_\\\":\\\"title3\\\",\\\"caf89LIQL\\\":\\\"title\\\",\\\"HM_2hDxud\\\":\\\"title4\\\",\\\"GxRA2z83f\\\":\\\"title5\\\",\\\"tn9uIi4q5\\\":\\\"title6\\\",\\\"KVbDZDhB_\\\":\\\"title7\\\",\\\"zFBl_EQjk\\\":\\\"scrollSection1\\\",\\\"Fu0x5zKuX\\\":\\\"scrollSection2\\\",\\\"hHr1v4ypd\\\":\\\"scrollSection3\\\",\\\"OV6JmRHzl\\\":\\\"scrollSection4\\\",\\\"qRmrapejB\\\":\\\"scrollSection5\\\",\\\"fEmkwXL3p\\\":\\\"scrollSection6\\\",\\\"q4Az6i1CV\\\":\\\"scrollSection7\\\",\\\"s_jtPZAtI\\\":\\\"scrollSection8\\\"}\",\"framerIntrinsicHeight\":\"202\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aYks0DKEG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hdbSHoYvM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"i8HV1kiDw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ar95ZYdFN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"256\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z9Kamrsiy.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";export function withHighlightColor1(Component){return props=>{const[isVisible,setIsVisible]=useState(false);useEffect(()=>{const elements=document.querySelectorAll(`.${props.className} [style*=\"--framer-text-decoration\"]`);// Now, let's add a parent <mark> tag to the selected elements\nelements.forEach(element=>{element.style.removeProperty(\"--framer-text-decoration\");const markElement=document.createElement(\"mark\");const spanElement=document.createElement(\"span\");// Wrap the element with mark\nelement.parentNode.insertBefore(markElement,element);markElement.appendChild(element);// Wrap the content of the element with span\nwhile(element.firstChild){spanElement.appendChild(element.firstChild);}element.appendChild(spanElement);setIsVisible(true);});const handle=entries=>{entries.forEach(entry=>{const highlightedValue=entry.target.style.getPropertyValue(\"--highlighted\");console.log(\"handle\");if(!highlightedValue||parseInt(highlightedValue)===0){entry.target.style.setProperty(\"--highlighted\",entry.isIntersecting?\"1\":\"0\");}});};const observer=new IntersectionObserver(handle,{threshold:1});elements.forEach(M=>observer.observe(M));},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n.${props.className} mark {\n--highlighted: 0;\n--highlight: rgba(0, 128, 255, 0.5);\nbackground: transparent;\n}\n\n.${props.className} mark span {\nbackground: linear-gradient(120deg, var(--highlight) 50%, transparent 50%) 110% 0 / 200% 100% no-repeat;\nbackground-position: calc((1 - var(--highlighted)) * 110%) 0;\ntransition: background-position 1s;\ncolor: white;\n}\n`}),/*#__PURE__*/_jsx(Component,{...props,style:!isVisible?{opacity:0}:{}})]});};}export function withHighlightColor2(Component){return props=>{const[isVisible,setIsVisible]=useState(false);useEffect(()=>{const elements=document.querySelectorAll(`.${props.className} [style*=\"--framer-font-family-bold\"]`);// Now, let's add a parent <mark> tag to the selected elements\nelements.forEach(element=>{element.style.removeProperty(\"--framer-font-family-bold\");const markElement=document.createElement(\"mark\");const spanElement=document.createElement(\"span\");// Wrap the element with mark\nelement.parentNode.insertBefore(markElement,element);markElement.appendChild(element);// Wrap the content of the element with span\nwhile(element.firstChild){spanElement.appendChild(element.firstChild);}element.appendChild(spanElement);setIsVisible(true);});const handle=entries=>{entries.forEach(entry=>{const highlightedValue=entry.target.style.getPropertyValue(\"--highlighted\");if(!highlightedValue||parseInt(highlightedValue)===0){entry.target.style.setProperty(\"--highlighted\",entry.isIntersecting?\"1\":\"0\");}});};const observer=new IntersectionObserver(handle,{threshold:1});elements.forEach(M=>observer.observe(M));},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n.${props.className} mark {\n--highlighted: 0;\n--highlight: rgba(255, 195, 0, 0.8);\nbackground: transparent;\n}\n\n.${props.className} mark span {\nbackground: linear-gradient(120deg, var(--highlight) 50%, transparent 50%) 110% 0 / 200% 100% no-repeat;\nbackground-position: calc((1 - var(--highlighted)) * 110%) 0;\ntransition: background-position 1s;\ncolor: black;\n}\n`}),/*#__PURE__*/_jsx(Component,{...props,style:!isVisible?{opacity:0}:{}})]});};}export function withHighlightColor3(Component){return props=>{const[isVisible,setIsVisible]=useState(false);useEffect(()=>{const elements=document.querySelectorAll(`.${props.className} [style*=\"--framer-text-decoration\"]`);// Now, let's add a parent <mark> tag to the selected elements\nelements.forEach(element=>{element.style.removeProperty(\"--framer-text-decoration\");const markElement=document.createElement(\"mark\");const spanElement=document.createElement(\"span\");// Wrap the element with mark\nelement.parentNode.insertBefore(markElement,element);markElement.appendChild(element);// Wrap the content of the element with span\nwhile(element.firstChild){spanElement.appendChild(element.firstChild);}element.appendChild(spanElement);setIsVisible(true);});const handle=entries=>{entries.forEach(entry=>{const highlightedValue=entry.target.style.getPropertyValue(\"--highlighted\");if(!highlightedValue||parseInt(highlightedValue)===0){entry.target.style.setProperty(\"--highlighted\",entry.isIntersecting?\"1\":\"0\");}});};const observer=new IntersectionObserver(handle,{threshold:1});elements.forEach(M=>observer.observe(M));},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n.${props.className} mark {\n--highlighted: 0;\n--highlight: rgba(140, 0, 255, 0.5);\nbackground: transparent;\n}\n\n.${props.className} mark span {\nbackground: linear-gradient(120deg, var(--highlight) 50%, transparent 50%) 110% 0 / 200% 100% no-repeat;\nbackground-position: calc((1 - var(--highlighted)) * 110%) 0;\ntransition: background-position 1s;\ncolor: white;\n}\n`}),/*#__PURE__*/_jsx(Component,{...props,style:!isVisible?{opacity:0}:{}})]});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHighlightColor2\":{\"type\":\"reactHoc\",\"name\":\"withHighlightColor2\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHighlightColor3\":{\"type\":\"reactHoc\",\"name\":\"withHighlightColor3\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHighlightColor1\":{\"type\":\"reactHoc\",\"name\":\"withHighlightColor1\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scrollhighlight.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "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", "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", "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", "link", "smooth", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PGkyTrycd", "S0KhFTFra", "PvnQG2uF_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "css", "FramerCMnQgamup", "withCSS", "CMnQgamup_default", "addPropertyControls", "ControlType", "addFonts", "ItemFonts", "getFonts", "CMnQgamup_default", "ItemWithVariantAppearEffect", "withVariantAppearEffect", "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", "link1", "link2", "link3", "link4", "link5", "link6", "link7", "link8", "scrollSection1", "scrollSection2", "scrollSection3", "scrollSection4", "scrollSection5", "scrollSection6", "scrollSection7", "scrollSection8", "title", "title1", "title2", "title3", "title4", "title5", "title6", "title7", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_humanReadableVariantMap_props_variant", "_ref7", "_ref8", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "IlhW4pvhD", "Y6_D1fTIh", "x2ldsboZm", "Hii1HZeJq", "vCxyT6K6U", "lex7Ygxqi", "NkhaXeeSN", "Sgg0wXvmc", "wIYByEYo_", "s8cJfp2Rn", "RMFgJPoA_", "caf89LIQL", "HM_2hDxud", "GxRA2z83f", "tn9uIi4q5", "KVbDZDhB_", "zFBl_EQjk", "Fu0x5zKuX", "hHr1v4ypd", "OV6JmRHzl", "qRmrapejB", "fEmkwXL3p", "q4Az6i1CV", "s_jtPZAtI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "css", "FramerZ9Kamrsiy", "withCSS", "Z9Kamrsiy_default", "addPropertyControls", "ControlType", "addFonts", "withHighlightColor1", "Component", "props", "isVisible", "setIsVisible", "ye", "ue", "elements", "element", "markElement", "spanElement", "handle", "entries", "entry", "highlightedValue", "observer", "M", "u", "l", "p"]
}
