{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/kBxZBxXoioYeWTKA0Fyj/vbh1nmhLYgQKNtA7NWdW/RBtaY2ZZ1.js", "ssg:https://framerusercontent.com/modules/PAli3QZlSINsqb18WIz3/MvK9269BaJNkhBwS9l8C/U5_lCfKxj.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", "// Generated by Framer (99288e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,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{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/UocNZUFAkCMUy4yLJtxd/vL7MoGC3QZSHZTAQqfVb/Wym3YqPPP.js\";const FeatherFonts=getFonts(Feather);const serializationHash=\"framer-k1tzo\";const variantClassNames={tNn6KgwE2:\"framer-v-xebzyh\"};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=({height,id,link,width,...props})=>{return{...props,YmVHDGbEK:link??props.YmVHDGbEK};};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,YmVHDGbEK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"tNn6KgwE2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.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(Link,{href:YmVHDGbEK,motionChild:true,nodeId:\"tNn6KgwE2\",openInNewTab:true,scopeId:\"RBtaY2ZZ1\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-xebzyh\",className,classNames)} framer-vl6ax9`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tNn6KgwE2\",ref:refBinding,style:{backgroundColor:\"var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, rgb(17, 17, 17))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7zezg7\",\"data-styles-preset\":\"Wym3YqPPP\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2fb34a9d-abaa-4fb3-a6f3-70496ba06176, rgb(255, 255, 255)))\"},children:\"Try now\"})}),className:\"framer-au1ytc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EmuphwtS2\",style:{\"--extracted-r6o4lv\":\"var(--token-2fb34a9d-abaa-4fb3-a6f3-70496ba06176, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d6egps-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"q7Ivo4OfR-container\",nodeId:\"q7Ivo4OfR\",rendersWithMotion:true,scopeId:\"RBtaY2ZZ1\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"external-link\",id:\"q7Ivo4OfR\",layoutId:\"q7Ivo4OfR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-k1tzo.framer-vl6ax9, .framer-k1tzo .framer-vl6ax9 { display: block; }\",\".framer-k1tzo.framer-xebzyh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-k1tzo .framer-au1ytc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-k1tzo .framer-1d6egps-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-k1tzo.framer-xebzyh { gap: 0px; } .framer-k1tzo.framer-xebzyh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-k1tzo.framer-xebzyh > :first-child { margin-left: 0px; } .framer-k1tzo.framer-xebzyh > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 121\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"YmVHDGbEK\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerRBtaY2ZZ1=withCSS(Component,css,\"framer-k1tzo\");export default FramerRBtaY2ZZ1;FramerRBtaY2ZZ1.displayName=\"Tool CTA\";FramerRBtaY2ZZ1.defaultProps={height:40,width:121};addPropertyControls(FramerRBtaY2ZZ1,{YmVHDGbEK:{title:\"Link\",type:ControlType.Link}});addFonts(FramerRBtaY2ZZ1,[{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\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRBtaY2ZZ1\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"121\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"YmVHDGbEK\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RBtaY2ZZ1.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Footer from\"#framer/local/canvasComponent/fjlfs1e21/fjlfs1e21.js\";import ToolCTA from\"#framer/local/canvasComponent/RBtaY2ZZ1/RBtaY2ZZ1.js\";import NavBar from\"#framer/local/canvasComponent/tW5xb9zBj/tW5xb9zBj.js\";import CTASection from\"#framer/local/canvasComponent/z_cOlMNeG/z_cOlMNeG.js\";import Tools from\"#framer/local/collection/yrkQjfryr/yrkQjfryr.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle7 from\"#framer/local/css/AS4PcgcTr/AS4PcgcTr.js\";import*as sharedStyle10 from\"#framer/local/css/FbNjpsdxp/FbNjpsdxp.js\";import*as sharedStyle2 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle9 from\"#framer/local/css/hVrDSaI0i/hVrDSaI0i.js\";import*as sharedStyle3 from\"#framer/local/css/iSrOYCLQl/iSrOYCLQl.js\";import*as sharedStyle8 from\"#framer/local/css/osphDDazU/osphDDazU.js\";import*as sharedStyle5 from\"#framer/local/css/VtL3h8T6O/VtL3h8T6O.js\";import*as sharedStyle11 from\"#framer/local/css/Wym3YqPPP/Wym3YqPPP.js\";import*as sharedStyle6 from\"#framer/local/css/XN_6Zwes0/XN_6Zwes0.js\";import*as sharedStyle1 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle4 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/U5_lCfKxj/U5_lCfKxj.js\";const NavBarFonts=getFonts(NavBar);const NavBarWithVariantAppearEffect=withVariantAppearEffect(NavBar);const ToolCTAFonts=getFonts(ToolCTA);const VideoFonts=getFonts(Video);const CTASectionFonts=getFonts(CTASection);const FooterFonts=getFonts(Footer);const breakpoints={dqGpCD_Q_:\"(min-width: 1200px)\",i9QyiDfSG:\"(min-width: 810px) and (max-width: 1199px)\",lnS3WNw0Z:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Sz8H8\";const variantClassNames={dqGpCD_Q_:\"framer-v-1rvkeix\",i9QyiDfSG:\"framer-v-sun1kd\",lnS3WNw0Z:\"framer-v-u84xt5\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={backgroundColor:\"var(--token-5b7ae43a-5a22-4f7f-8f16-35b6a29cc8ba, rgb(235, 241, 254))\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"dqGpCD_Q_\",Phone:\"lnS3WNw0Z\",Tablet:\"i9QyiDfSG\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"dqGpCD_Q_\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"U5_lCfKxj\",name:\"Koqis9GNQ\",type:\"Identifier\"},operator:\"==\",right:{collection:\"Koqis9GNQ\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"U5_lCfKxj\",name:\"l8T44lpms\",type:\"Identifier\"},operator:\"==\",right:{collection:\"l8T44lpms\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"U5_lCfKxj\",name:\"t8LlZEKNH\",type:\"Identifier\"},operator:\"==\",right:{collection:\"t8LlZEKNH\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"U5_lCfKxj\",data:Tools,type:\"Collection\"},right:{alias:\"t8LlZEKNH\",data:Tools,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"l8T44lpms\",data:Tools,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"Koqis9GNQ\",data:Tools,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"U5_lCfKxj\",name:\"rum3Y_ahQ\",type:\"Identifier\"},{collection:\"U5_lCfKxj\",name:\"XTBNmf9OO\",type:\"Identifier\"},{collection:\"U5_lCfKxj\",name:\"uKFXLwIyi\",type:\"Identifier\"},{collection:\"U5_lCfKxj\",name:\"bH2BbzChT\",type:\"Identifier\"},{collection:\"U5_lCfKxj\",name:\"XcMUjRbGW\",type:\"Identifier\"},{collection:\"U5_lCfKxj\",name:\"dguzyvb46\",type:\"Identifier\"},{collection:\"U5_lCfKxj\",name:\"KDtVbK763\",type:\"Identifier\"},{collection:\"U5_lCfKxj\",name:\"ti5VtsAEN\",type:\"Identifier\"},{collection:\"U5_lCfKxj\",name:\"PseVR8p47\",type:\"Identifier\"},{collection:\"U5_lCfKxj\",name:\"RChy655Dn\",type:\"Identifier\"},{collection:\"U5_lCfKxj\",name:\"I_lblx_AD\",type:\"Identifier\"},{alias:\"t8LlZEKNH.rum3Y_ahQ\",collection:\"t8LlZEKNH\",name:\"rum3Y_ahQ\",type:\"Identifier\"},{alias:\"t8LlZEKNH.XTBNmf9OO\",collection:\"t8LlZEKNH\",name:\"XTBNmf9OO\",type:\"Identifier\"},{alias:\"t8LlZEKNH.o011VdLd7\",collection:\"t8LlZEKNH\",name:\"o011VdLd7\",type:\"Identifier\"},{alias:\"t8LlZEKNH.bH2BbzChT\",collection:\"t8LlZEKNH\",name:\"bH2BbzChT\",type:\"Identifier\"},{alias:\"l8T44lpms.rum3Y_ahQ\",collection:\"l8T44lpms\",name:\"rum3Y_ahQ\",type:\"Identifier\"},{alias:\"l8T44lpms.XTBNmf9OO\",collection:\"l8T44lpms\",name:\"XTBNmf9OO\",type:\"Identifier\"},{alias:\"l8T44lpms.o011VdLd7\",collection:\"l8T44lpms\",name:\"o011VdLd7\",type:\"Identifier\"},{alias:\"l8T44lpms.bH2BbzChT\",collection:\"l8T44lpms\",name:\"bH2BbzChT\",type:\"Identifier\"},{alias:\"Koqis9GNQ.rum3Y_ahQ\",collection:\"Koqis9GNQ\",name:\"rum3Y_ahQ\",type:\"Identifier\"},{alias:\"Koqis9GNQ.XTBNmf9OO\",collection:\"Koqis9GNQ\",name:\"XTBNmf9OO\",type:\"Identifier\"},{alias:\"Koqis9GNQ.o011VdLd7\",collection:\"Koqis9GNQ\",name:\"o011VdLd7\",type:\"Identifier\"},{alias:\"Koqis9GNQ.bH2BbzChT\",collection:\"Koqis9GNQ\",name:\"bH2BbzChT\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"U5_lCfKxj\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,XTBNmf9OO=getFromCurrentRouteData(\"XTBNmf9OO\"),rum3Y_ahQ=getFromCurrentRouteData(\"rum3Y_ahQ\")??\"\",bH2BbzChT=getFromCurrentRouteData(\"bH2BbzChT\")??\"\",XcMUjRbGW=getFromCurrentRouteData(\"XcMUjRbGW\")??\"\",uKFXLwIyi=getFromCurrentRouteData(\"uKFXLwIyi\"),dguzyvb46=getFromCurrentRouteData(\"dguzyvb46\")??\"\",KDtVbK763=getFromCurrentRouteData(\"KDtVbK763\")??\"\",ti5VtsAEN=getFromCurrentRouteData(\"ti5VtsAEN\")??\"\",PseVR8p47=getFromCurrentRouteData(\"PseVR8p47\")??\"\",RChy655Dn=getFromCurrentRouteData(\"RChy655Dn\")??\"\",I_lblx_AD=getFromCurrentRouteData(\"I_lblx_AD\")??\"\",t8LlZEKNH_o011VdLd7=getFromCurrentRouteData(\"t8LlZEKNH.o011VdLd7\")??\"\",t8LlZEKNH_XTBNmf9OO=getFromCurrentRouteData(\"t8LlZEKNH.XTBNmf9OO\"),t8LlZEKNH_rum3Y_ahQ=getFromCurrentRouteData(\"t8LlZEKNH.rum3Y_ahQ\")??\"\",t8LlZEKNH_bH2BbzChT=getFromCurrentRouteData(\"t8LlZEKNH.bH2BbzChT\")??\"\",l8T44lpms_o011VdLd7=getFromCurrentRouteData(\"l8T44lpms.o011VdLd7\")??\"\",l8T44lpms_XTBNmf9OO=getFromCurrentRouteData(\"l8T44lpms.XTBNmf9OO\"),l8T44lpms_rum3Y_ahQ=getFromCurrentRouteData(\"l8T44lpms.rum3Y_ahQ\")??\"\",l8T44lpms_bH2BbzChT=getFromCurrentRouteData(\"l8T44lpms.bH2BbzChT\")??\"\",Koqis9GNQ_o011VdLd7=getFromCurrentRouteData(\"Koqis9GNQ.o011VdLd7\")??\"\",Koqis9GNQ_XTBNmf9OO=getFromCurrentRouteData(\"Koqis9GNQ.XTBNmf9OO\"),Koqis9GNQ_rum3Y_ahQ=getFromCurrentRouteData(\"Koqis9GNQ.rum3Y_ahQ\")??\"\",Koqis9GNQ_bH2BbzChT=getFromCurrentRouteData(\"Koqis9GNQ.bH2BbzChT\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"i3hc0aJXd\");const router=useRouter();const elementId1=useRouteElementId(\"mF8PSUe5w\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"Gpx6uqUIb\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"ZTpYaXXph\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"dqGpCD_Q_\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-5b7ae43a-5a22-4f7f-8f16-35b6a29cc8ba, rgb(235, 241, 254)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1rvkeix\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15ts5n3-container\",nodeId:\"qTyWWsBpc\",rendersWithMotion:true,scopeId:\"U5_lCfKxj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9QyiDfSG:{__framer__targets:[{offset:40,ref:ref1,target:\"yyebuMzNS\"}],variant:\"e5dFl3QAu\"},lnS3WNw0Z:{__framer__targets:[{offset:40,ref:ref1,target:\"V48Y4cj01\"}],variant:\"aepVDNkFE\"}},children:/*#__PURE__*/_jsx(NavBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:40,ref:ref1,target:\"dqjGV9yCg\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"qTyWWsBpc\",layoutId:\"qTyWWsBpc\",style:{height:\"100%\",width:\"100%\"},variant:\"JaYzoF261\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:428,pixelWidth:842,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/91UkGSctvn1raOQ4ArQ0IBczZk.svg\",srcSet:\"https://framerusercontent.com/images/91UkGSctvn1raOQ4ArQ0IBczZk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/91UkGSctvn1raOQ4ArQ0IBczZk.svg 842w\"},className:\"framer-pqv7u8\",\"data-border\":true,\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-98mj95\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14e88jr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e94xnx\",\"data-framer-name\":\"Content and video\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18bpjz1\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lnS3WNw0Z:{background:{alt:\"\",fit:\"fit\",sizes:`calc(min(600px, min(${componentViewport?.width||\"100vw\"}, 1000px)) - 48px)`,...toResponsiveImage(XTBNmf9OO),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:`min(600px, min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px))`,...toResponsiveImage(XTBNmf9OO),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-147bjiw\",\"data-framer-name\":\"Banner\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"AI College Application Helper \"})}),className:\"framer-oy7qf9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:rum3Y_ahQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Our AI College Application Helper can help you know college application deadlines, find scholarships, edit your Common App personal statement, and more. \"})}),className:\"framer-1aqnq47\",\"data-framer-name\":\"Meta Description  \",fonts:[\"Inter\"],text:bH2BbzChT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:XcMUjRbGW,implicitPathVariables:undefined},{href:XcMUjRbGW,implicitPathVariables:undefined},{href:XcMUjRbGW,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16lrm2x-container\",nodeId:\"qB_9OvNp2\",scopeId:\"U5_lCfKxj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9QyiDfSG:{YmVHDGbEK:resolvedLinks[1]},lnS3WNw0Z:{YmVHDGbEK:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ToolCTA,{height:\"100%\",id:\"qB_9OvNp2\",layoutId:\"qB_9OvNp2\",style:{height:\"100%\"},width:\"100%\",YmVHDGbEK:resolvedLinks[0]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rmzmu2\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12sx0qn-container\",isModuleExternal:true,nodeId:\"wcgSOsBPJ\",scopeId:\"U5_lCfKxj\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:false,height:\"100%\",id:\"wcgSOsBPJ\",isMixedBorderRadius:false,layoutId:\"wcgSOsBPJ\",loop:true,muted:false,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:uKFXLwIyi,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,volume:50,width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mcf703\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bli4st\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tpg3ix\",\"data-framer-name\":\"Title Div \",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:\"About Our AI College Application Helper \"})}),className:\"framer-ag17ox\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],text:dguzyvb46,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1smj90y\",\"data-framer-name\":\"Text Div \",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"H_H8DB_j4\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"S3MyFsfSs\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:KDtVbK763,className:\"framer-310wt8\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-fsrzda\",blockquote:\"framer-styles-preset-fmfct2\",code:\"framer-styles-preset-67r0l0\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1su4pmu\",h3:\"framer-styles-preset-12lj5ox\",h4:\"framer-styles-preset-24mdhx\",h5:\"framer-styles-preset-1g5ruwz\",img:\"framer-styles-preset-1ul35sw\",p:\"framer-styles-preset-21ogod\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1absp69\",\"data-framer-name\":\"Section\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5on97\",\"data-framer-name\":\"Title Div \",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:\"Key Features\"})}),className:\"framer-hf5wpq\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],text:ti5VtsAEN,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1i8fsnp\",\"data-framer-name\":\"Text Div \",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"H_H8DB_j4\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"S3MyFsfSs\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:PseVR8p47,className:\"framer-3jabf6\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-fsrzda\",blockquote:\"framer-styles-preset-fmfct2\",code:\"framer-styles-preset-67r0l0\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1su4pmu\",h3:\"framer-styles-preset-12lj5ox\",h4:\"framer-styles-preset-24mdhx\",h5:\"framer-styles-preset-1g5ruwz\",img:\"framer-styles-preset-1ul35sw\",p:\"framer-styles-preset-21ogod\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ph4a49\",\"data-framer-name\":\"Section\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1auzi0b\",\"data-framer-name\":\"Title Div \",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:\"Ways to Use Our AI College Application Helper \"})}),className:\"framer-1yn0qes\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],text:RChy655Dn,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-14jfny0\",\"data-framer-name\":\"Text Div \",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"H_H8DB_j4\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"S3MyFsfSs\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:I_lblx_AD,className:\"framer-17cjmu5\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-fsrzda\",blockquote:\"framer-styles-preset-fmfct2\",code:\"framer-styles-preset-67r0l0\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1su4pmu\",h3:\"framer-styles-preset-12lj5ox\",h4:\"framer-styles-preset-24mdhx\",h5:\"framer-styles-preset-1g5ruwz\",img:\"framer-styles-preset-1ul35sw\",p:\"framer-styles-preset-21ogod\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e4x9jc\",\"data-framer-name\":\"Related Tools\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ro39b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hs8mpc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Explore more tools\"})}),className:\"framer-1j4anha\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iDxecpa4W\"},motionChild:true,nodeId:\"h2eXjs7ne\",openInNewTab:false,scopeId:\"U5_lCfKxj\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12ih1c8 framer-1l74bnq\",\"data-framer-name\":\"CTA Button Copy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7zezg7\",\"data-styles-preset\":\"Wym3YqPPP\",children:\"See all tools ->\"})}),className:\"framer-mp6362\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ai9yv\",children:[/*#__PURE__*/_jsx(Link,{href:t8LlZEKNH_o011VdLd7,motionChild:true,nodeId:\"P9dfVzowQ\",openInNewTab:false,scopeId:\"U5_lCfKxj\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1r8wuaw framer-1l74bnq\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tda9lb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ixcxl9\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"48px\",...toResponsiveImage(t8LlZEKNH_XTBNmf9OO),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-w832bw\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-phf3xl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Scaling Your Site\"})}),className:\"framer-kekxj5\",fonts:[\"GF;Inter-600\"],text:t8LlZEKNH_rum3Y_ahQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Learn about hosting built for scale and reliability.\"})}),className:\"framer-pr45yr\",fonts:[\"GF;Inter-500\"],text:t8LlZEKNH_bH2BbzChT,verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:l8T44lpms_o011VdLd7,motionChild:true,nodeId:\"DqQtxUbKa\",scopeId:\"U5_lCfKxj\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lvuog2 framer-1l74bnq\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3z5x7w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yk9udj\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"48px\",...toResponsiveImage(l8T44lpms_XTBNmf9OO),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-onlyf2\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ozso3i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Scaling Your Site\"})}),className:\"framer-1xskxw4\",fonts:[\"GF;Inter-600\"],text:l8T44lpms_rum3Y_ahQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Learn about hosting built for scale and reliability.\"})}),className:\"framer-1vdfr9y\",fonts:[\"GF;Inter-500\"],text:l8T44lpms_bH2BbzChT,verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(Link,{href:Koqis9GNQ_o011VdLd7,motionChild:true,nodeId:\"gDkLiQmwK\",openInNewTab:false,scopeId:\"U5_lCfKxj\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-2hpcow framer-1l74bnq\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1krr9m2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qq4qga\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,sizes:\"48px\",...toResponsiveImage(Koqis9GNQ_XTBNmf9OO),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1wtz6gl\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2wv5pm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Scaling Your Site\"})}),className:\"framer-19i6diy\",fonts:[\"GF;Inter-600\"],text:Koqis9GNQ_rum3Y_ahQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Learn about hosting built for scale and reliability.\"})}),className:\"framer-1k9nr9r\",fonts:[\"GF;Inter-500\"],text:Koqis9GNQ_bH2BbzChT,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9QyiDfSG:{width:componentViewport?.width||\"100vw\"},lnS3WNw0Z:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:387,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h9plm2-container\",nodeId:\"CeDYIUCpQ\",scopeId:\"U5_lCfKxj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9QyiDfSG:{variant:\"c0WiklisZ\"},lnS3WNw0Z:{variant:\"tm6B1YBL4\"}},children:/*#__PURE__*/_jsx(CTASection,{aRhRorHa8:\"var(--token-5b7ae43a-5a22-4f7f-8f16-35b6a29cc8ba, rgb(235, 241, 254))\",AvSS7ZlEM:\"Sign up to start using Flint, free for up to 80 users.\",height:\"100%\",id:\"CeDYIUCpQ\",layoutId:\"CeDYIUCpQ\",mdrGBd4IG:\"Spark AI-powered learning at your school.\",style:{height:\"100%\",width:\"100%\"},variant:\"ME1R1alts\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:530,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bh07i8-container\",nodeId:\"dFK0gv4BB\",scopeId:\"U5_lCfKxj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i9QyiDfSG:{variant:\"FdQCOAOf2\"},lnS3WNw0Z:{variant:\"BMn1ukW6C\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"dFK0gv4BB\",layoutId:\"dFK0gv4BB\",style:{width:\"100%\"},variant:\"kHkPcJI06\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Sz8H8.framer-1l74bnq, .framer-Sz8H8 .framer-1l74bnq { display: block; }\",\".framer-Sz8H8.framer-1rvkeix { align-content: center; align-items: center; background-color: var(--token-5b7ae43a-5a22-4f7f-8f16-35b6a29cc8ba, #ebf1fe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Sz8H8 .framer-15ts5n3-container { flex: none; height: 80px; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-Sz8H8 .framer-pqv7u8 { --border-bottom-width: 4px; --border-color: var(--token-2fb34a9d-abaa-4fb3-a6f3-70496ba06176, #ffffff); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 70px 0px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-Sz8H8 .framer-98mj95 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Sz8H8 .framer-14e88jr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sz8H8 .framer-e94xnx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-Sz8H8 .framer-18bpjz1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 600px; }\",\".framer-Sz8H8 .framer-147bjiw { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 48px; position: relative; width: 100%; }\",\".framer-Sz8H8 .framer-oy7qf9, .framer-Sz8H8 .framer-1aqnq47, .framer-Sz8H8 .framer-ag17ox, .framer-Sz8H8 .framer-hf5wpq, .framer-Sz8H8 .framer-1yn0qes { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Sz8H8 .framer-16lrm2x-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-Sz8H8 .framer-rmzmu2 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 620px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sz8H8 .framer-12sx0qn-container { aspect-ratio: 1.300420168067227 / 1; flex: none; height: 474px; position: relative; width: var(--framer-aspect-ratio-supported, 616px); }\",\".framer-Sz8H8 .framer-mcf703 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 140px 0px 140px; position: relative; width: 100%; }\",\".framer-Sz8H8 .framer-bli4st { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-Sz8H8 .framer-1tpg3ix, .framer-Sz8H8 .framer-5on97, .framer-Sz8H8 .framer-1auzi0b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 40%; }\",\".framer-Sz8H8 .framer-1smj90y, .framer-Sz8H8 .framer-1i8fsnp, .framer-Sz8H8 .framer-14jfny0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Sz8H8 .framer-310wt8, .framer-Sz8H8 .framer-3jabf6, .framer-Sz8H8 .framer-17cjmu5 { --framer-paragraph-spacing: 32px; flex: 1 0 0px; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Sz8H8 .framer-1absp69, .framer-Sz8H8 .framer-1ph4a49 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 60px 0px 60px 0px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-Sz8H8 .framer-1e4x9jc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 60px 140px 100px 140px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-Sz8H8 .framer-5ro39b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Sz8H8 .framer-hs8mpc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Sz8H8 .framer-1j4anha { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Sz8H8 .framer-12ih1c8 { align-content: center; align-items: center; background-color: var(--token-fb01ee2d-b779-41ca-9daa-444b4c6c6c1e, #111111); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Sz8H8 .framer-mp6362 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Sz8H8 .framer-11ai9yv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: 332px; justify-content: space-between; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-Sz8H8 .framer-1r8wuaw, .framer-Sz8H8 .framer-lvuog2, .framer-Sz8H8 .framer-2hpcow { --border-bottom-width: 1px; --border-color: rgba(212, 212, 212, 0.51); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; min-width: 100px; overflow: hidden; padding: 20px; position: relative; text-decoration: none; width: 292px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Sz8H8 .framer-tda9lb, .framer-Sz8H8 .framer-3z5x7w, .framer-Sz8H8 .framer-1krr9m2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; padding: 5px; position: relative; width: 1px; }\",\".framer-Sz8H8 .framer-1ixcxl9 { 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: 5px; position: relative; width: min-content; }\",\".framer-Sz8H8 .framer-w832bw, .framer-Sz8H8 .framer-onlyf2, .framer-Sz8H8 .framer-1wtz6gl { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: hidden; position: relative; width: 48px; }\",\".framer-Sz8H8 .framer-phf3xl, .framer-Sz8H8 .framer-2wv5pm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 100%; }\",\".framer-Sz8H8 .framer-kekxj5, .framer-Sz8H8 .framer-1xskxw4, .framer-Sz8H8 .framer-19i6diy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Sz8H8 .framer-pr45yr, .framer-Sz8H8 .framer-1vdfr9y, .framer-Sz8H8 .framer-1k9nr9r { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Sz8H8 .framer-yk9udj, .framer-Sz8H8 .framer-1qq4qga { 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: 5px; position: relative; width: min-content; }\",\".framer-Sz8H8 .framer-1ozso3i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 100%; }\",\".framer-Sz8H8 .framer-1h9plm2-container { flex: none; height: 387px; position: relative; width: 1200px; }\",\".framer-Sz8H8 .framer-bh07i8-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Sz8H8.framer-1rvkeix, .framer-Sz8H8 .framer-pqv7u8, .framer-Sz8H8 .framer-98mj95, .framer-Sz8H8 .framer-14e88jr, .framer-Sz8H8 .framer-e94xnx, .framer-Sz8H8 .framer-18bpjz1, .framer-Sz8H8 .framer-rmzmu2, .framer-Sz8H8 .framer-mcf703, .framer-Sz8H8 .framer-bli4st, .framer-Sz8H8 .framer-1tpg3ix, .framer-Sz8H8 .framer-1smj90y, .framer-Sz8H8 .framer-1absp69, .framer-Sz8H8 .framer-5on97, .framer-Sz8H8 .framer-1i8fsnp, .framer-Sz8H8 .framer-1ph4a49, .framer-Sz8H8 .framer-1auzi0b, .framer-Sz8H8 .framer-14jfny0, .framer-Sz8H8 .framer-1e4x9jc, .framer-Sz8H8 .framer-5ro39b, .framer-Sz8H8 .framer-hs8mpc, .framer-Sz8H8 .framer-12ih1c8, .framer-Sz8H8 .framer-1r8wuaw, .framer-Sz8H8 .framer-tda9lb, .framer-Sz8H8 .framer-1ixcxl9, .framer-Sz8H8 .framer-phf3xl, .framer-Sz8H8 .framer-lvuog2, .framer-Sz8H8 .framer-3z5x7w, .framer-Sz8H8 .framer-yk9udj, .framer-Sz8H8 .framer-1ozso3i, .framer-Sz8H8 .framer-2hpcow, .framer-Sz8H8 .framer-1krr9m2, .framer-Sz8H8 .framer-1qq4qga, .framer-Sz8H8 .framer-2wv5pm { gap: 0px; } .framer-Sz8H8.framer-1rvkeix > *, .framer-Sz8H8 .framer-mcf703 > *, .framer-Sz8H8 .framer-1ixcxl9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Sz8H8.framer-1rvkeix > :first-child, .framer-Sz8H8 .framer-98mj95 > :first-child, .framer-Sz8H8 .framer-e94xnx > :first-child, .framer-Sz8H8 .framer-18bpjz1 > :first-child, .framer-Sz8H8 .framer-mcf703 > :first-child, .framer-Sz8H8 .framer-1e4x9jc > :first-child, .framer-Sz8H8 .framer-5ro39b > :first-child, .framer-Sz8H8 .framer-tda9lb > :first-child, .framer-Sz8H8 .framer-1ixcxl9 > :first-child, .framer-Sz8H8 .framer-phf3xl > :first-child, .framer-Sz8H8 .framer-3z5x7w > :first-child, .framer-Sz8H8 .framer-yk9udj > :first-child, .framer-Sz8H8 .framer-1ozso3i > :first-child, .framer-Sz8H8 .framer-1krr9m2 > :first-child, .framer-Sz8H8 .framer-1qq4qga > :first-child, .framer-Sz8H8 .framer-2wv5pm > :first-child { margin-top: 0px; } .framer-Sz8H8.framer-1rvkeix > :last-child, .framer-Sz8H8 .framer-98mj95 > :last-child, .framer-Sz8H8 .framer-e94xnx > :last-child, .framer-Sz8H8 .framer-18bpjz1 > :last-child, .framer-Sz8H8 .framer-mcf703 > :last-child, .framer-Sz8H8 .framer-1e4x9jc > :last-child, .framer-Sz8H8 .framer-5ro39b > :last-child, .framer-Sz8H8 .framer-tda9lb > :last-child, .framer-Sz8H8 .framer-1ixcxl9 > :last-child, .framer-Sz8H8 .framer-phf3xl > :last-child, .framer-Sz8H8 .framer-3z5x7w > :last-child, .framer-Sz8H8 .framer-yk9udj > :last-child, .framer-Sz8H8 .framer-1ozso3i > :last-child, .framer-Sz8H8 .framer-1krr9m2 > :last-child, .framer-Sz8H8 .framer-1qq4qga > :last-child, .framer-Sz8H8 .framer-2wv5pm > :last-child { margin-bottom: 0px; } .framer-Sz8H8 .framer-pqv7u8 > *, .framer-Sz8H8 .framer-rmzmu2 > *, .framer-Sz8H8 .framer-hs8mpc > *, .framer-Sz8H8 .framer-12ih1c8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Sz8H8 .framer-pqv7u8 > :first-child, .framer-Sz8H8 .framer-14e88jr > :first-child, .framer-Sz8H8 .framer-rmzmu2 > :first-child, .framer-Sz8H8 .framer-bli4st > :first-child, .framer-Sz8H8 .framer-1tpg3ix > :first-child, .framer-Sz8H8 .framer-1smj90y > :first-child, .framer-Sz8H8 .framer-1absp69 > :first-child, .framer-Sz8H8 .framer-5on97 > :first-child, .framer-Sz8H8 .framer-1i8fsnp > :first-child, .framer-Sz8H8 .framer-1ph4a49 > :first-child, .framer-Sz8H8 .framer-1auzi0b > :first-child, .framer-Sz8H8 .framer-14jfny0 > :first-child, .framer-Sz8H8 .framer-hs8mpc > :first-child, .framer-Sz8H8 .framer-12ih1c8 > :first-child, .framer-Sz8H8 .framer-1r8wuaw > :first-child, .framer-Sz8H8 .framer-lvuog2 > :first-child, .framer-Sz8H8 .framer-2hpcow > :first-child { margin-left: 0px; } .framer-Sz8H8 .framer-pqv7u8 > :last-child, .framer-Sz8H8 .framer-14e88jr > :last-child, .framer-Sz8H8 .framer-rmzmu2 > :last-child, .framer-Sz8H8 .framer-bli4st > :last-child, .framer-Sz8H8 .framer-1tpg3ix > :last-child, .framer-Sz8H8 .framer-1smj90y > :last-child, .framer-Sz8H8 .framer-1absp69 > :last-child, .framer-Sz8H8 .framer-5on97 > :last-child, .framer-Sz8H8 .framer-1i8fsnp > :last-child, .framer-Sz8H8 .framer-1ph4a49 > :last-child, .framer-Sz8H8 .framer-1auzi0b > :last-child, .framer-Sz8H8 .framer-14jfny0 > :last-child, .framer-Sz8H8 .framer-hs8mpc > :last-child, .framer-Sz8H8 .framer-12ih1c8 > :last-child, .framer-Sz8H8 .framer-1r8wuaw > :last-child, .framer-Sz8H8 .framer-lvuog2 > :last-child, .framer-Sz8H8 .framer-2hpcow > :last-child { margin-right: 0px; } .framer-Sz8H8 .framer-98mj95 > *, .framer-Sz8H8 .framer-e94xnx > *, .framer-Sz8H8 .framer-1e4x9jc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Sz8H8 .framer-14e88jr > *, .framer-Sz8H8 .framer-1tpg3ix > *, .framer-Sz8H8 .framer-5on97 > *, .framer-Sz8H8 .framer-1auzi0b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Sz8H8 .framer-18bpjz1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Sz8H8 .framer-bli4st > *, .framer-Sz8H8 .framer-1absp69 > *, .framer-Sz8H8 .framer-1ph4a49 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-Sz8H8 .framer-1smj90y > *, .framer-Sz8H8 .framer-1i8fsnp > *, .framer-Sz8H8 .framer-14jfny0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Sz8H8 .framer-5ro39b > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Sz8H8 .framer-1r8wuaw > *, .framer-Sz8H8 .framer-lvuog2 > *, .framer-Sz8H8 .framer-2hpcow > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Sz8H8 .framer-tda9lb > *, .framer-Sz8H8 .framer-phf3xl > *, .framer-Sz8H8 .framer-3z5x7w > *, .framer-Sz8H8 .framer-1ozso3i > *, .framer-Sz8H8 .framer-1krr9m2 > *, .framer-Sz8H8 .framer-2wv5pm > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Sz8H8 .framer-yk9udj > *, .framer-Sz8H8 .framer-1qq4qga > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-Sz8H8[data-border=\"true\"]::after, .framer-Sz8H8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Sz8H8.framer-1rvkeix { width: 810px; } .framer-Sz8H8 .framer-mcf703 { padding: 0px 100px 0px 100px; } .framer-Sz8H8 .framer-1e4x9jc { overflow: hidden; padding: 60px 100px 100px 100px; } .framer-Sz8H8 .framer-1h9plm2-container { width: 100%; }}\",\"@media (max-width: 809px) { .framer-Sz8H8.framer-1rvkeix { width: 390px; } .framer-Sz8H8 .framer-pqv7u8 { flex-direction: column; padding: 40px 0px 70px 0px; } .framer-Sz8H8 .framer-98mj95, .framer-Sz8H8 .framer-1smj90y, .framer-Sz8H8 .framer-1i8fsnp, .framer-Sz8H8 .framer-14jfny0, .framer-Sz8H8 .framer-1j4anha { flex: none; width: 100%; } .framer-Sz8H8 .framer-18bpjz1 { gap: 30px; padding: 24px; } .framer-Sz8H8 .framer-147bjiw { height: 24px; } .framer-Sz8H8 .framer-12sx0qn-container { height: var(--framer-aspect-ratio-supported, 277px); width: 360px; } .framer-Sz8H8 .framer-mcf703 { padding: 0px 50px 0px 50px; } .framer-Sz8H8 .framer-bli4st { align-content: center; align-items: center; flex-direction: column; gap: 30px; padding: 30px 0px 30px 0px; } .framer-Sz8H8 .framer-1tpg3ix, .framer-Sz8H8 .framer-5on97, .framer-Sz8H8 .framer-1auzi0b, .framer-Sz8H8 .framer-1h9plm2-container { width: 100%; } .framer-Sz8H8 .framer-1absp69, .framer-Sz8H8 .framer-1ph4a49 { flex-direction: column; gap: 30px; padding: 30px 0px 30px 0px; } .framer-Sz8H8 .framer-1e4x9jc { padding: 50px 30px 50px 30px; } .framer-Sz8H8 .framer-hs8mpc { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; } .framer-Sz8H8 .framer-11ai9yv { align-content: unset; align-items: unset; display: grid; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; } .framer-Sz8H8 .framer-1r8wuaw, .framer-Sz8H8 .framer-lvuog2, .framer-Sz8H8 .framer-2hpcow { align-self: start; height: 332px; justify-self: start; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Sz8H8 .framer-pqv7u8, .framer-Sz8H8 .framer-18bpjz1, .framer-Sz8H8 .framer-bli4st, .framer-Sz8H8 .framer-1absp69, .framer-Sz8H8 .framer-1ph4a49, .framer-Sz8H8 .framer-hs8mpc, .framer-Sz8H8 .framer-11ai9yv { gap: 0px; } .framer-Sz8H8 .framer-pqv7u8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Sz8H8 .framer-pqv7u8 > :first-child, .framer-Sz8H8 .framer-18bpjz1 > :first-child, .framer-Sz8H8 .framer-bli4st > :first-child, .framer-Sz8H8 .framer-1absp69 > :first-child, .framer-Sz8H8 .framer-1ph4a49 > :first-child, .framer-Sz8H8 .framer-hs8mpc > :first-child { margin-top: 0px; } .framer-Sz8H8 .framer-pqv7u8 > :last-child, .framer-Sz8H8 .framer-18bpjz1 > :last-child, .framer-Sz8H8 .framer-bli4st > :last-child, .framer-Sz8H8 .framer-1absp69 > :last-child, .framer-Sz8H8 .framer-1ph4a49 > :last-child, .framer-Sz8H8 .framer-hs8mpc > :last-child { margin-bottom: 0px; } .framer-Sz8H8 .framer-18bpjz1 > *, .framer-Sz8H8 .framer-bli4st > *, .framer-Sz8H8 .framer-1absp69 > *, .framer-Sz8H8 .framer-1ph4a49 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Sz8H8 .framer-hs8mpc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Sz8H8 .framer-11ai9yv > *, .framer-Sz8H8 .framer-11ai9yv > :first-child, .framer-Sz8H8 .framer-11ai9yv > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4087\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"i9QyiDfSG\":{\"layout\":[\"fixed\",\"auto\"]},\"lnS3WNw0Z\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"i3hc0aJXd\":{\"pattern\":\":i3hc0aJXd\",\"name\":\"home\"},\"mF8PSUe5w\":{\"pattern\":\":mF8PSUe5w\",\"name\":\"section-2 \"},\"Gpx6uqUIb\":{\"pattern\":\":Gpx6uqUIb\",\"name\":\"section3\"},\"ZTpYaXXph\":{\"pattern\":\":ZTpYaXXph\",\"name\":\"related-tools\"}}\n * @framerResponsiveScreen\n */const FramerU5_lCfKxj=withCSS(Component,css,\"framer-Sz8H8\");export default FramerU5_lCfKxj;FramerU5_lCfKxj.displayName=\"Tools\";FramerU5_lCfKxj.defaultProps={height:4087,width:1200};addFonts(FramerU5_lCfKxj,[{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:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavBarFonts,...ToolCTAFonts,...VideoFonts,...CTASectionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...componentPresets.fonts?.[\"S3MyFsfSs\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"S3MyFsfSs\"]):[],...componentPresets.fonts?.[\"H_H8DB_j4\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"H_H8DB_j4\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerU5_lCfKxj\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"i3hc0aJXd\\\":{\\\"pattern\\\":\\\":i3hc0aJXd\\\",\\\"name\\\":\\\"home\\\"},\\\"mF8PSUe5w\\\":{\\\"pattern\\\":\\\":mF8PSUe5w\\\",\\\"name\\\":\\\"section-2 \\\"},\\\"Gpx6uqUIb\\\":{\\\"pattern\\\":\\\":Gpx6uqUIb\\\",\\\"name\\\":\\\"section3\\\"},\\\"ZTpYaXXph\\\":{\\\"pattern\\\":\\\":ZTpYaXXph\\\",\\\"name\\\":\\\"related-tools\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"4087\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i9QyiDfSG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lnS3WNw0Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "FeatherFonts", "getFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "YmVHDGbEK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "css", "FramerRBtaY2ZZ1", "withCSS", "RBtaY2ZZ1_default", "addPropertyControls", "ControlType", "addFonts", "FeatherFonts", "getFontsFromSharedStyle", "fonts", "NavBarFonts", "getFonts", "tW5xb9zBj_default", "NavBarWithVariantAppearEffect", "withVariantAppearEffect", "ToolCTAFonts", "RBtaY2ZZ1_default", "VideoFonts", "Video", "CTASectionFonts", "z_cOlMNeG_default", "FooterFonts", "fjlfs1e21_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "yrkQjfryr_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "XTBNmf9OO", "rum3Y_ahQ", "bH2BbzChT", "XcMUjRbGW", "uKFXLwIyi", "dguzyvb46", "KDtVbK763", "ti5VtsAEN", "PseVR8p47", "RChy655Dn", "I_lblx_AD", "t8LlZEKNH_o011VdLd7", "t8LlZEKNH_XTBNmf9OO", "t8LlZEKNH_rum3Y_ahQ", "t8LlZEKNH_bH2BbzChT", "l8T44lpms_o011VdLd7", "l8T44lpms_XTBNmf9OO", "l8T44lpms_rum3Y_ahQ", "l8T44lpms_bH2BbzChT", "Koqis9GNQ_o011VdLd7", "Koqis9GNQ_XTBNmf9OO", "Koqis9GNQ_rum3Y_ahQ", "Koqis9GNQ_bH2BbzChT", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "router", "useRouter", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "NavBarWithVariantAppearEffect", "Image2", "RichText2", "x", "ResolveLinks", "resolvedLinks", "RBtaY2ZZ1_default", "Video", "ComponentPresetsProvider", "Link", "z_cOlMNeG_default", "fjlfs1e21_default", "css", "FramerU5_lCfKxj", "withCSS", "U5_lCfKxj_default", "addFonts", "NavBarFonts", "ToolCTAFonts", "VideoFonts", "CTASectionFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
