{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/al0rcDaXQbUG4TCmN1TG/N6yajNRjd1R4kvsnsoIM/nqG0q1NJM.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/4DudLpSWh6mpGsUWD29F/3SGZ5gxxF01ECj3oajMB/UU2T2e91p.js", "ssg:https://framerusercontent.com/modules/zubTdklpptye25rC9AF2/moWVM7ybkSQkMWhz0YGT/augiA20Il.js", "ssg:https://framerusercontent.com/modules/xW1cu3X3lJ9w04XD4rdJ/nheNnCJYhxzlMLMkJfv8/augiA20Il.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://framer.com/m/framer/default-utils.js@^0.45.0\";import{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 setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=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);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=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]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=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=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)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:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options: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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (bd0055f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={q5ZfVk1l7:{hover:true}};const serializationHash=\"framer-bqP7q\";const variantClassNames={q5ZfVk1l7:\"framer-v-94i030\"};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 transition2={delay:0,duration:10,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"q5ZfVk1l7\",enabledGestures,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-94i030\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"q5ZfVk1l7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d559605d-d2a3-4776-a2c1-0436ceda3b18, rgba(255, 255, 255, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(3px)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",WebkitBackdropFilter:\"blur(3px)\",...style},...addPropertyOverrides({\"q5ZfVk1l7-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uh003l\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"UYlpTCpDz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d559605d-d2a3-4776-a2c1-0436ceda3b18, rgba(255, 255, 255, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.05)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ift0ng\",layoutDependency:layoutDependency,layoutId:\"vgYXgGzkx\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0.25) 0deg, rgba(255, 255, 255, 0) 72deg, rgba(140, 69, 255, 0.35) 171.8918918918919deg, rgba(255, 255, 255, 0) 270deg, rgba(255, 255, 255, 0.25) 360deg)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1745gwf\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rdm1ZOp1X\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 0 0 L 28 0 L 28 28 L 0 28 Z\" fill=\"transparent\"></path><path d=\"M 26.25 14 C 26.251 14.604 25.936 15.165 25.419 15.478 L 9.66 25.118 C 9.119 25.449 8.441 25.462 7.888 25.151 C 7.341 24.845 7.001 24.267 7 23.639 L 7 4.361 C 7.001 3.733 7.341 3.155 7.888 2.849 C 8.441 2.538 9.119 2.551 9.66 2.882 L 25.419 12.522 C 25.936 12.835 26.251 13.396 26.25 14 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10912419666,variants:{\"q5ZfVk1l7-hover\":{opacity:.8}},withExternalLayout:true,...addPropertyOverrides({\"q5ZfVk1l7-hover\":{opacity:.8,svgContentId:11550337085}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bqP7q.framer-1evwuab, .framer-bqP7q .framer-1evwuab { display: block; }\",\".framer-bqP7q.framer-94i030 { cursor: pointer; height: 110px; overflow: visible; position: relative; width: 110px; }\",\".framer-bqP7q .framer-uh003l { bottom: 10px; flex: none; left: 10px; overflow: hidden; position: absolute; right: 10px; top: 10px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bqP7q .framer-ift0ng { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bqP7q .framer-1745gwf { flex: none; height: 28px; left: calc(49.450549450549474% - 28px / 2); position: absolute; top: calc(49.450549450549474% - 28px / 2); width: 28px; }\",\".framer-bqP7q.framer-v-94i030.hover.framer-94i030 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 110px); }\",\".framer-bqP7q.framer-v-94i030.hover .framer-uh003l { bottom: 15px; left: 15px; right: 15px; top: 15px; }\",'.framer-bqP7q[data-border=\"true\"]::after, .framer-bqP7q [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 110\n * @framerIntrinsicWidth 110\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"G72vOLKep\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernqG0q1NJM=withCSS(Component,css,\"framer-bqP7q\");export default FramernqG0q1NJM;FramernqG0q1NJM.displayName=\"AI Kit/Play Button\";FramernqG0q1NJM.defaultProps={height:110,width:110};addFonts(FramernqG0q1NJM,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernqG0q1NJM\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"110\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G72vOLKep\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"110\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nqG0q1NJM.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (01933e6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"mV_cqCna6\",\"eQpG58zvD\"];const serializationHash=\"framer-eF72F\";const variantClassNames={eQpG58zvD:\"framer-v-17g4je3\",mV_cqCna6:\"framer-v-1fm6gl9\"};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 transition2={delay:.4,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:.5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};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={\"Variant 1\":\"mV_cqCna6\",\"Variant 2\":\"eQpG58zvD\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"mV_cqCna6\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mV_cqCna6\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4320,intrinsicWidth:6480,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:4320,pixelWidth:6480,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/NUZc8Hm7MESJYFIv5Hu0PgPd0s.jpg\",srcSet:\"https://framerusercontent.com/images/NUZc8Hm7MESJYFIv5Hu0PgPd0s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NUZc8Hm7MESJYFIv5Hu0PgPd0s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NUZc8Hm7MESJYFIv5Hu0PgPd0s.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NUZc8Hm7MESJYFIv5Hu0PgPd0s.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/NUZc8Hm7MESJYFIv5Hu0PgPd0s.jpg 6480w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fm6gl9\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mV_cqCna6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({eQpG58zvD:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-ndlgqm-container\",\"data-framer-appear-id\":\"ndlgqm\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"kHLLxmZup-container\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-end\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:15,height:\"100%\",hoverFactor:1,id:\"kHLLxmZup\",layoutId:\"kHLLxmZup\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4016,intrinsicWidth:4991,pixelHeight:4016,pixelWidth:4991,src:\"https://framerusercontent.com/images/pDynE5qiJcGHCSqpdUsgCtF9coc.jpg?scale-down-to=1024\"},className:\"framer-1f3krli\",\"data-framer-name\":\"Ticker Image\",layoutDependency:layoutDependency,layoutId:\"Bvy7gLrbF\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6240,intrinsicWidth:4160,pixelHeight:6240,pixelWidth:4160,src:\"https://framerusercontent.com/images/dNIRUVrxn9EdpOEtjb7WkjsKUc8.jpg?scale-down-to=1024\"},className:\"framer-lemfwh\",\"data-framer-name\":\"Ticker Image\",layoutDependency:layoutDependency,layoutId:\"EaiFNr0T1\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6535,intrinsicWidth:4360,pixelHeight:6535,pixelWidth:4360,src:\"https://framerusercontent.com/images/4E2GMUmR9VGHGxsVuahWNozitIQ.jpg?scale-down-to=1024\"},className:\"framer-1f0weo5\",\"data-framer-name\":\"Ticker Image\",layoutDependency:layoutDependency,layoutId:\"xIfeFyOx8\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4800,intrinsicWidth:3840,pixelHeight:4800,pixelWidth:3840,src:\"https://framerusercontent.com/images/7qpJ1z2rCJCMpVxA3HrigThOk.jpg?scale-down-to=1024\"},className:\"framer-1sr37ru\",\"data-framer-name\":\"Ticker Image\",layoutDependency:layoutDependency,layoutId:\"tdE5eJf1V\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({eQpG58zvD:{direction:\"right\",sizingOptions:{heightType:false,widthType:true}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1k0ne98-container\",\"data-framer-appear-id\":\"1k0ne98\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Whterg4kN-container\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-end\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:15,height:\"100%\",hoverFactor:1,id:\"Whterg4kN\",layoutId:\"Whterg4kN\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5822,intrinsicWidth:3881,pixelHeight:5822,pixelWidth:3881,src:\"https://framerusercontent.com/images/xZP6SNgv179FKBZ3pzoYXxVkXos.jpg?scale-down-to=1024\"},className:\"framer-r0g1c0\",\"data-framer-name\":\"Ticker Image\",layoutDependency:layoutDependency,layoutId:\"KonO6PPUD\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5579,intrinsicWidth:3719,pixelHeight:5579,pixelWidth:3719,src:\"https://framerusercontent.com/images/2IOYOd1ulPArAumH5FEe6hOzE0.jpg?scale-down-to=1024\"},className:\"framer-1m8i736\",\"data-framer-name\":\"Ticker Image\",layoutDependency:layoutDependency,layoutId:\"f6YPTQUPg\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5039,intrinsicWidth:3780,pixelHeight:5760,pixelWidth:3840,sizes:\"230px\",src:\"https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg\",srcSet:\"https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg 3840w\"},className:\"framer-1dk4dil\",\"data-framer-name\":\"Ticker Image\",layoutDependency:layoutDependency,layoutId:\"iNzjduic6\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5184,intrinsicWidth:3456,pixelHeight:3840,pixelWidth:5760,src:\"https://framerusercontent.com/images/LkVs6m8J7IRfGUcsxZd8TOthBCo.jpg?scale-down-to=1024\"},className:\"framer-1ws24t\",\"data-framer-name\":\"Ticker Image\",layoutDependency:layoutDependency,layoutId:\"rD7oShQIk\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({eQpG58zvD:{direction:\"left\",sizingOptions:{heightType:false,widthType:true}}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eF72F.framer-kfvfn6, .framer-eF72F .framer-kfvfn6 { display: block; }\",\".framer-eF72F.framer-1fm6gl9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 736px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 574px; }\",\".framer-eF72F .framer-ndlgqm-container, .framer-eF72F .framer-1k0ne98-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-eF72F .framer-1f3krli, .framer-eF72F .framer-lemfwh, .framer-eF72F .framer-1f0weo5, .framer-eF72F .framer-1sr37ru, .framer-eF72F .framer-r0g1c0, .framer-eF72F .framer-1m8i736, .framer-eF72F .framer-1dk4dil, .framer-eF72F .framer-1ws24t { height: 305px; overflow: hidden; position: relative; width: 230px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eF72F.framer-1fm6gl9 { gap: 0px; } .framer-eF72F.framer-1fm6gl9 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-eF72F.framer-1fm6gl9 > :first-child { margin-left: 0px; } .framer-eF72F.framer-1fm6gl9 > :last-child { margin-right: 0px; } }\",\".framer-eF72F.framer-v-17g4je3.framer-1fm6gl9 { flex-direction: column; height: 540px; }\",\".framer-eF72F.framer-v-17g4je3 .framer-ndlgqm-container, .framer-eF72F.framer-v-17g4je3 .framer-1k0ne98-container { height: 1px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eF72F.framer-v-17g4je3.framer-1fm6gl9 { gap: 0px; } .framer-eF72F.framer-v-17g4je3.framer-1fm6gl9 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-eF72F.framer-v-17g4je3.framer-1fm6gl9 > :first-child { margin-top: 0px; } .framer-eF72F.framer-v-17g4je3.framer-1fm6gl9 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 736\n * @framerIntrinsicWidth 574\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"eQpG58zvD\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUU2T2e91p=withCSS(Component,css,\"framer-eF72F\");export default FramerUU2T2e91p;FramerUU2T2e91p.displayName=\"Images Slieshow\";FramerUU2T2e91p.defaultProps={height:736,width:574};addPropertyControls(FramerUU2T2e91p,{variant:{options:[\"mV_cqCna6\",\"eQpG58zvD\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUU2T2e91p,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUU2T2e91p\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"574\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eQpG58zvD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"736\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UU2T2e91p.map", "// Generated by Framer (32e10d4)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={apBasMnaO:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (32e10d4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Pattern from\"https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Globe from\"https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/d9ZONLqTB9uCj5kbWKll/Globe.js\";import Footer from\"#framer/local/canvasComponent/BLNlMI3RI/BLNlMI3RI.js\";import ButtonsMainGreenButton from\"#framer/local/canvasComponent/e2GbS75_6/e2GbS75_6.js\";import Particles from\"#framer/local/canvasComponent/e4qiH016o/e4qiH016o.js\";import BenefitsCards from\"#framer/local/canvasComponent/e5o4n9_Ho/e5o4n9_Ho.js\";import NavMainNavBar from\"#framer/local/canvasComponent/EDme_opHj/EDme_opHj.js\";import AIKitPlayButton from\"#framer/local/canvasComponent/nqG0q1NJM/nqG0q1NJM.js\";import Meteor from\"#framer/local/canvasComponent/NQPEk3NPy/NQPEk3NPy.js\";import CourseCategories from\"#framer/local/canvasComponent/tBp0PDZLO/tBp0PDZLO.js\";import ImagesSlieshow from\"#framer/local/canvasComponent/UU2T2e91p/UU2T2e91p.js\";import TestimonialsCardsTestimonialCarouselCustom from\"#framer/local/canvasComponent/ZrRC6Bd5H/ZrRC6Bd5H.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavMainNavBarFonts=getFonts(NavMainNavBar);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonsMainGreenButtonFonts=getFonts(ButtonsMainGreenButton);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ImagesSlieshowFonts=getFonts(ImagesSlieshow);const MeteorFonts=getFonts(Meteor);const ParticlesFonts=getFonts(Particles);const PhosphorFonts=getFonts(Phosphor);const BenefitsCardsFonts=getFonts(BenefitsCards);const AIKitPlayButtonFonts=getFonts(AIKitPlayButton);const VideoFonts=getFonts(Video);const CourseCategoriesFonts=getFonts(CourseCategories);const TestimonialsCardsTestimonialCarouselCustomFonts=getFonts(TestimonialsCardsTestimonialCarouselCustom);const ImageWithFX=withFX(Image);const PatternFonts=getFonts(Pattern);const GlobeFonts=getFonts(Globe);const FooterFonts=getFonts(Footer);const breakpoints={fx8zUb3jh:\"(max-width: 689px)\",jyqUeP3Ls:\"(min-width: 690px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-htJtb\";const variantClassNames={fx8zUb3jh:\"framer-v-1s7ss1\",jyqUeP3Ls:\"framer-v-15jk4uj\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:9,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-106,y:0};const transition1={delay:.3,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:9,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:-106,y:0};const transition2={delay:.5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:9,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:-106,y:0};const transition3={damping:32,delay:.2,mass:1,stiffness:496,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition5={damping:32,delay:.25,mass:1,stiffness:496,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={damping:32,delay:.3,mass:1,stiffness:496,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={damping:32,delay:.35,mass:1,stiffness:496,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition8={damping:32,delay:.4,mass:1,stiffness:496,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={delay:18,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:780,y:325};const transition10={delay:16,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition11={delay:14,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition12={delay:8,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition13={delay:12,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition14={delay:10,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition15={delay:6,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition16={delay:4,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition17={delay:2,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition18={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,transformPerspective:1200,transition:transition18,x:0,y:0};const inertia={bounceDamping:27,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const animation15={cursor:\"grabbing\"};const transition19={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,transformPerspective:1200,transition:transition19,x:0,y:0};const transition20={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,transformPerspective:1200,transition:transition20,x:0,y:0};const transition21={delay:13,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition22={delay:11,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition23={delay:9,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition24={delay:7,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition25={delay:5,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const transition26={delay:54,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"fx8zUb3jh\",Tablet:\"jyqUeP3Ls\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTaptxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const DiwmQUii_txyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);usePreloadLocalizedValues(activeLocale);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const ref11=React.useRef(null);const ref12=React.useRef(null);const ref13=React.useRef(null);const ref14=React.useRef(null);const ref15=React.useRef(null);const ref16=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"jyqUeP3Ls\",\"fx8zUb3jh\"].includes(baseVariant))return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"jUv2ci9PL\");const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{y:undefined},jyqUeP3Ls:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-75}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-80yqix-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{variant:\"HX4DLHdxh\"},jyqUeP3Ls:{rTZb2emms:2,variant:\"HX4DLHdxh\"}},children:/*#__PURE__*/_jsx(NavMainNavBar,{height:\"100%\",id:\"qCUAnmsfB\",layoutId:\"qCUAnmsfB\",rTZb2emms:1,style:{width:\"100%\"},udcbOUE3L:\"AofxLnKDF\",variant:\"b0tYgtrqT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m7ropz\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vgzaa9\",\"data-border\":true,\"data-framer-name\":\"Light Beam 1\",style:{rotate:22,transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15ee7mg\",\"data-border\":true,\"data-framer-name\":\"Light Beam 2\",style:{rotate:25,transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4mcz1\",\"data-framer-name\":\"Hero Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-je3gr3\",\"data-framer-name\":\"Left Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zta6ir\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-txj5sz\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1e1kap3\",\"data-border\":true,\"data-framer-appear-id\":\"1e1kap3\",\"data-framer-name\":\"Badge\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\",\"--framer-text-transform\":\"capitalize\"},children:\"Land Your Dreamjob\"})}),className:\"framer-i2tad6\",fonts:[\"FS;General Sans-semibold\"],id:\"i2tad6\",onTap:onTaptxyyif({overlay}),ref:ref3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{offsetX:-.7500393018126488,offsetY:151.4999803956598},jyqUeP3Ls:{offsetX:-.25002181623131037,offsetY:154.00001983717084}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref3,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"i2tad6\",offsetX:-.2500430289655924,offsetY:-14.453108867703122,onDismiss:overlay.hide,placement:\"top\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/aZEDzT1D2HBDkkD8W4JdrJK8AVo.gif\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/aZEDzT1D2HBDkkD8W4JdrJK8AVo.gif\"}}},children:/*#__PURE__*/_jsx(Image,{animate:animation6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+71+0+0+262.55+0+0+0+0+0+0+6.000000000000002+-54.5),pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/aZEDzT1D2HBDkkD8W4JdrJK8AVo.gif\"},className:\"framer-1m05ar5\",exit:animation5,initial:animation7,ref:ref4,role:\"dialog\"})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:\"Get Your Job Docs Ready Faster with TaqoAI\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:\"Get Your Job Docs Ready Faster with TaqoAI\"})})}),className:\"framer-15pwfn3\",\"data-framer-appear-id\":\"15pwfn3\",fonts:[\"FS;General Sans-semibold\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Be good at everything you do, but you don't have to be good at writing applications.\"})}),className:\"framer-1rqaqgo\",\"data-framer-appear-id\":\"1rqaqgo\",fonts:[\"FS;General Sans-regular\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{y:undefined},jyqUeP3Ls:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+0+71+0+0+262.55+0+0+0+286.9,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-1gdbj8r-container\",\"data-framer-appear-id\":\"1gdbj8r\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ButtonsMainGreenButton,{Bf2Bblc5O:\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\",height:\"100%\",HHXsvsz54:\"rgb(255, 255, 255)\",id:\"ZcToxbNSa\",layoutId:\"ZcToxbNSa\",m2Y8rrB3N:15,o6KASNBil:false,TeDM4RjBF:getLocalizedValue(\"v4\",activeLocale)??\"Get Started Now\",TwUpWc_3Q:\"app.taqo.ai\",va1T5B74v:false,variant:\"QGRqHUCbp\",W2FqRPI6z:\"ArrowRight\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation11,className:\"framer-dwr3jm\",\"data-framer-appear-id\":\"dwr3jm\",\"data-framer-name\":\"Happy Students\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-757rac\",\"data-framer-name\":\"Image stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6220,intrinsicWidth:6220,pixelHeight:6220,pixelWidth:6220,src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6220,intrinsicWidth:6220,pixelHeight:6220,pixelWidth:6220,src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6220,intrinsicWidth:6220,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+71+0+0+262.55+0+364.9+0+0),pixelHeight:6220,pixelWidth:6220,src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512\"},className:\"framer-1q1d3fl\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:9504,intrinsicWidth:6336,pixelHeight:9504,pixelWidth:6336,src:\"https://framerusercontent.com/images/Z7AxzYZVOy5HtdCKWZh3YlF3mE.jpg?scale-down-to=512\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:9504,intrinsicWidth:6336,pixelHeight:9504,pixelWidth:6336,src:\"https://framerusercontent.com/images/Z7AxzYZVOy5HtdCKWZh3YlF3mE.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:9504,intrinsicWidth:6336,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+71+0+0+262.55+0+364.9+0+0),pixelHeight:9504,pixelWidth:6336,src:\"https://framerusercontent.com/images/Z7AxzYZVOy5HtdCKWZh3YlF3mE.jpg?scale-down-to=512\"},className:\"framer-1i15cl7\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:4928,pixelHeight:3264,pixelWidth:4928,src:\"https://framerusercontent.com/images/hCsV8dkBKP9VEaaIlJr8Bk89bX4.jpg?scale-down-to=512\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:4928,pixelHeight:3264,pixelWidth:4928,src:\"https://framerusercontent.com/images/hCsV8dkBKP9VEaaIlJr8Bk89bX4.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:4928,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+71+0+0+262.55+0+364.9+0+0),pixelHeight:3264,pixelWidth:4928,src:\"https://framerusercontent.com/images/hCsV8dkBKP9VEaaIlJr8Bk89bX4.jpg?scale-down-to=512\"},className:\"framer-oarlui\",\"data-border\":true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"121+ Happy Beta Users\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"121+ Happy Beta Users\"})}),className:\"framer-1jmibj8\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{height:547,width:`min(${componentViewport?.width||\"100vw\"}, 1100px)`,y:undefined},jyqUeP3Ls:{height:547,width:`min(${componentViewport?.width||\"100vw\"}, 1100px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:920,width:`max(min(${componentViewport?.width||\"100vw\"}, 1100px) * 0.54 - 20px, 1px)`,y:(componentViewport?.y||0)+0+71+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bdsigw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{variant:\"eQpG58zvD\"},jyqUeP3Ls:{variant:\"eQpG58zvD\"}},children:/*#__PURE__*/_jsx(ImagesSlieshow,{height:\"100%\",id:\"mOtS8urZc\",layoutId:\"mOtS8urZc\",style:{height:\"100%\",width:\"100%\"},variant:\"mV_cqCna6\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16xnnzo\",\"data-framer-name\":\"Starsfall\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:10,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:1,className:\"framer-z4m76l-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"syOn7wERM\",layoutId:\"syOn7wERM\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:12,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition10,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sp37oe-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"FJqaTHkNP\",layoutId:\"FJqaTHkNP\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:10,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition10,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m9ezgd-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"b5NghyxBb\",layoutId:\"b5NghyxBb\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:9,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition11,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3ief9y-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"MFlnmnSQr\",layoutId:\"MFlnmnSQr\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:9,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition11,__perspectiveFX:false,__targetOpacity:1,className:\"framer-df6rq8-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"tXpX0peXz\",layoutId:\"tXpX0peXz\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:8,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition12,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o29x5y-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"nYYBOa8p2\",layoutId:\"nYYBOa8p2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:8,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition13,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xgcrg1-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"zvRvwJGYj\",layoutId:\"zvRvwJGYj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:7,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition14,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1elf72n-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"qIy3hYsXj\",layoutId:\"qIy3hYsXj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:7,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition14,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m5xb6s-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"U1hmBHt68\",layoutId:\"U1hmBHt68\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:6,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition12,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12h9pue-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"TR26r8CHO\",layoutId:\"TR26r8CHO\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:6,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition12,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wu1ysr-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"l6VEWg1wC\",layoutId:\"l6VEWg1wC\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t9ubct-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"gaAo11ZL4\",layoutId:\"gaAo11ZL4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sh811f-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"ikcnRMkdV\",layoutId:\"ikcnRMkdV\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:4,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition16,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q7v91o-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"PJPRJgQ8j\",layoutId:\"PJPRJgQ8j\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:4,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition16,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rabxox-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"H9XvLQUSR\",layoutId:\"H9XvLQUSR\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition17,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rhdvu1-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"WAsvdebxo\",layoutId:\"WAsvdebxo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition17,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7rdhr8-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"m5p8LU51x\",layoutId:\"m5p8LU51x\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e254h2-container\",children:/*#__PURE__*/_jsx(Particles,{height:\"100%\",id:\"elYqMaNIs\",jiyRKWafe:\"rgb(16, 16, 16)\",layoutId:\"elYqMaNIs\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zkpou0\",\"data-framer-name\":\"Benefits Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6d8ftl\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tk1bhy\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dcnbif\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n6hwdb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pq696h-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:getLocalizedValue(\"v7\",activeLocale)??\"House\",iconSelection:\"RocketLaunch\",id:\"OMAkqrqQV\",layoutId:\"OMAkqrqQV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yhsvg0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Smarter Job Applications\"})}),className:\"framer-kz6qwm\",fonts:[\"FS;General Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:\"You Don't Have to Be Good at Writing Job Applications\"})})}),className:\"framer-hfoc7t\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Organize your job hunt and land your dream job \u2014without drowning.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Organize your job hunt and land your dream job \u2014without drowning.\"})}),className:\"framer-mt1sl\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hmqaty\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1100px)`,y:undefined},jyqUeP3Ls:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1100px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:196,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+991+50+0+40+0+18+363+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-youfjj-container\",children:/*#__PURE__*/_jsx(BenefitsCards,{height:\"100%\",id:\"OLHguXPO4\",J7MHiNuJH:getLocalizedValue(\"v12\",activeLocale)??\"Upload CV\",KjFkXzXK2:getLocalizedValue(\"v13\",activeLocale)??\"And our AI will evaluate it based on key factors like skills, experience, and certifications.\",layoutId:\"OLHguXPO4\",oWawbLv84:\"NumberCircleOne\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1100px)`,y:undefined},jyqUeP3Ls:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1100px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:196,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+991+50+0+40+0+18+363+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9mrolr-container\",children:/*#__PURE__*/_jsx(BenefitsCards,{height:\"100%\",id:\"z7yXrr9JE\",J7MHiNuJH:getLocalizedValue(\"v14\",activeLocale)??\"Insert Dreamjob\",KjFkXzXK2:getLocalizedValue(\"v15\",activeLocale)??\"Customize your CV to specific roles to increasing your chances of getting noticed.\",layoutId:\"z7yXrr9JE\",oWawbLv84:\"NumberCircleTwo\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1100px)`,y:undefined},jyqUeP3Ls:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1100px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:196,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+991+50+0+40+0+18+363+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ykn5yh-container\",children:/*#__PURE__*/_jsx(BenefitsCards,{height:\"100%\",id:\"hga8bXb0x\",J7MHiNuJH:getLocalizedValue(\"v16\",activeLocale)??\"Tailored Job Docs\",KjFkXzXK2:getLocalizedValue(\"v17\",activeLocale)??\"Ready to send job docs to better match the roles you're applying for.\",layoutId:\"hga8bXb0x\",oWawbLv84:\"NumberCircleThree\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tk4016\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eab3ix\",\"data-border\":true,\"data-framer-name\":\"App\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:874,intrinsicWidth:1100,pixelHeight:1854,pixelWidth:2984,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 50px), 1100px) - 20px)`,src:\"https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png 2984w\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:874,intrinsicWidth:1100,pixelHeight:1854,pixelWidth:2984,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1100px) - 20px) / 3, 50px) * 3 + 20px, 1100px) - 20px)`,src:\"https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png 2984w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:874,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+991+50+0+40+0+18+574+0+0+10+0),pixelHeight:1854,pixelWidth:2984,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 20px) / 3, 50px) * 3 + 20px, 1100px) - 20px)`,src:\"https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o24SCTTjPDyrKvqyWLicjswhsSQ.png 2984w\"},className:\"framer-171sn9r\",\"data-border\":true,\"data-framer-name\":\"App_2x\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cmap7w\",\"data-framer-name\":\"Play Button Wrapper\",id:\"cmap7w\",onTap:onTap3bnx0g({overlay:overlay1}),children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{y:undefined},jyqUeP3Ls:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:111,width:\"111px\",y:(componentViewport?.y||0)+0+991+50+0+40+0+18+574+0+0+10+0+280.00000000000017+.5000000000000284,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bs8v7z-container\",children:/*#__PURE__*/_jsx(AIKitPlayButton,{height:\"100%\",id:\"F3jD77aib\",layoutId:\"F3jD77aib\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-mlcdj8\"),\"data-framer-portal-id\":\"cmap7w\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"tKmEKJRM6\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-1ye7rl\"),\"data-border\":true,\"data-framer-portal-id\":\"cmap7w\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wy1p70-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"X6UTm5jfn\",isMixedBorderRadius:false,layoutId:\"X6UTm5jfn\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/d8pclFBlPQf16cvzz374gW5V9U4.mp4\",srcType:\"Upload\",srcUrl:getLocalizedValue(\"v18\",activeLocale)??\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cbzmpd\",onTap:onTap1wnntms({overlay:overlay1}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6sp5d3\",\"data-framer-name\":\"graphic\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 0 0 L 28 0 L 28 28 L 0 28 Z\" fill=\"transparent\"></path><path d=\"M 21.875 6.125 L 6.125 21.875 M 21.875 21.875 L 6.125 6.125\" fill=\"rgb(255,255,255)\" stroke-width=\"1.33\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12506028301,withExternalLayout:true})})]})]}),getContainer())})})]})})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"}},jyqUeP3Ls:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+991+50+0+0),pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"},className:\"framer-11s5ehi\",\"data-framer-name\":\"Stars\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s57mn5\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c0xvzs\",\"data-framer-name\":\"Gradient Top\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wn4df\",\"data-framer-name\":\"Companies\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i0k36i\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gp46nv\",\"data-framer-name\":\"graphic\",layout:\"position\",opacity:1,radius:{bottomLeft:0,bottomRight:0,topLeft:0,topRight:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 26\"><g id=\"ss8720569938_1\"><path d=\"M 0 0 L 26 0 L 26 26 L 0 26 Z\" fill=\"transparent\"></path><path d=\"M 13 6.5 L 13 0 L 26 6.5 L 26 19.5 L 13 26 L 13 19.5 L 0 26 L 0 19.5 L 13 13 L 0 6.5 L 0 0 Z M 13 6.5 L 13 19.5 L 26 13 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:8720569938,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Acme Corp\"})}),className:\"framer-z865pr\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gtcv3q\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lxly\",\"data-framer-name\":\"graphic\",layout:\"position\",opacity:1,radius:{bottomLeft:0,bottomRight:0,topLeft:0,topRight:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 26\"><g id=\"ss10693930646_1\"><path d=\"M 0 0 L 26 0 L 26 26 L 0 26 Z\" fill=\"transparent\"></path><path d=\"M 13 26 C 12.142 26 11.352 25.786 10.63 25.357 C 9.931 24.951 9.366 24.398 8.938 23.698 C 8.531 22.976 8.328 22.186 8.328 21.328 C 8.328 20.245 8.576 19.342 9.073 18.62 C 9.57 17.898 10.337 17.051 11.375 16.081 C 12.142 15.381 12.526 14.715 12.526 14.083 L 12.526 13.474 L 11.917 13.474 C 11.217 13.474 10.258 14.174 9.039 15.573 C 7.843 16.972 6.387 17.672 4.672 17.672 C 3.814 17.672 3.024 17.469 2.302 17.063 C 1.602 16.634 1.038 16.069 0.609 15.37 C 0.203 14.648 0 13.858 0 13 C 0 12.142 0.203 11.364 0.609 10.664 C 1.038 9.942 1.602 9.378 2.302 8.971 C 3.024 8.542 3.814 8.328 4.672 8.328 C 6.365 8.328 7.809 9.017 9.005 10.393 C 10.201 11.77 11.172 12.458 11.917 12.458 L 12.526 12.458 L 12.526 11.917 C 12.526 11.285 12.142 10.619 11.375 9.919 L 10.596 9.208 C 10.032 8.689 9.513 8.069 9.039 7.346 C 8.565 6.602 8.328 5.71 8.328 4.672 C 8.328 3.814 8.531 3.036 8.938 2.336 C 9.366 1.614 9.931 1.049 10.63 0.643 C 11.353 0.214 12.143 0 13 0 C 13.858 0 14.636 0.214 15.336 0.643 C 16.058 1.072 16.622 1.636 17.029 2.336 C 17.457 3.036 17.672 3.814 17.672 4.672 C 17.672 6.365 16.983 7.809 15.607 9.005 C 14.23 10.201 13.542 11.172 13.542 11.917 L 13.542 12.458 L 14.083 12.458 C 14.851 12.458 15.821 11.77 16.995 10.393 C 18.146 9.017 19.59 8.328 21.328 8.328 C 22.186 8.328 22.964 8.543 23.664 8.971 C 24.386 9.378 24.951 9.931 25.357 10.63 C 25.786 11.33 26 12.12 26 13 C 26 13.858 25.786 14.648 25.357 15.37 C 24.951 16.069 24.386 16.634 23.664 17.063 C 22.964 17.469 22.186 17.672 21.328 17.672 C 20.267 17.672 19.353 17.412 18.586 16.893 C 17.841 16.374 17.006 15.618 16.081 14.625 C 15.381 13.858 14.715 13.474 14.083 13.474 L 13.542 13.474 L 13.542 14.083 C 13.542 14.918 14.23 15.889 15.607 16.995 C 16.983 18.101 17.672 19.545 17.672 21.328 C 17.672 22.186 17.457 22.976 17.029 23.698 C 16.622 24.398 16.069 24.951 15.37 25.357 C 14.67 25.786 13.88 26 13 26 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:10693930646,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1ib2xk\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Quantum\"})}),className:\"framer-4nv8ga\",fonts:[\"FS;Switzer-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1akzs3i\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-sq1guf\",\"data-framer-name\":\"graphic\",layout:\"position\",opacity:1,radius:{bottomLeft:0,bottomRight:0,topLeft:0,topRight:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><g id=\"ss11864283288_1\"><path d=\"M 0 0 L 22 0 L 22 22 L 0 22 Z\" fill=\"transparent\"></path><path d=\"M 11.043 10.104 C 10.587 4.448 5.852 0 0.079 0 C 0.079 5.747 4.485 10.464 10.104 10.957 C 4.448 11.413 0 16.148 0 21.921 C 5.747 21.921 10.464 17.515 10.957 11.896 C 11.413 17.552 16.148 22 21.921 22 C 21.921 16.253 17.515 11.536 11.896 11.043 C 17.552 10.587 22 5.852 22 0.079 C 16.253 0.079 11.536 4.485 11.043 10.104 Z M 11 11 L 11 11 L 11 11 L 11 11 L 11 11 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:11864283288,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2hpbGxheC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Chillax\", \"Chillax Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Echo Valley\"})}),className:\"framer-18gi1sh\",fonts:[\"FS;Chillax-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6mqzv3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UGFuY2hhbmctYm9sZA==\",\"--framer-font-family\":'\"Panchang\", \"Panchang Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PULSE\"})}),className:\"framer-1qeaakt\",fonts:[\"FS;Panchang-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17muyod\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10uh6h5\",\"data-framer-name\":\"graphic\",layout:\"position\",opacity:1,radius:{bottomLeft:0,bottomRight:0,topLeft:0,topRight:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(0 0)\" id=\"ss11783445416_1\"><path d=\"M 0 0 L 24 0 L 24 24 L 0 24 Z\" fill=\"transparent\"></path><path d=\"M 12 20.849 C 2.924 28.433 -4.433 21.076 3.151 12 C -4.433 2.924 2.924 -4.433 12 3.151 C 21.075 -4.433 28.433 2.924 20.849 12 C 28.433 21.069 21.075 28.433 12 20.849 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:11783445416,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2hpbGxheC1ib2xk\",\"--framer-font-family\":'\"Chillax\", \"Chillax Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"APEX\"})}),className:\"framer-10xxeez\",fonts:[\"FS;Chillax-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ihvyep\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1sy2c8x\",\"data-framer-name\":\"graphic\",layout:\"position\",opacity:1,radius:{bottomLeft:0,bottomRight:0,topLeft:0,topRight:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g id=\"ss10849698354_1\"><path d=\"M 0 0 L 24 0 L 24 24 L 0 24 Z\" fill=\"transparent\"></path><path d=\"M 12 12 C 12 12 13.5 7.983 13.5 5.143 C 13.5 2.302 12.828 0 12 0 C 11.172 0 10.5 2.303 10.5 5.143 C 10.5 7.983 12 12 12 12 Z M 12 12 C 12 12 13.78 15.901 15.788 17.909 C 17.796 19.918 19.899 21.071 20.485 20.485 C 21.071 19.899 19.918 17.796 17.909 15.788 C 15.901 13.78 12 12 12 12 Z M 12 12 C 12 12 16.017 10.5 18.857 10.5 C 21.697 10.5 24 11.172 24 12 C 24 12.828 21.697 13.5 18.857 13.5 C 16.017 13.5 12 12 12 12 Z M 12 12 C 12 12 8.099 13.78 6.091 15.788 C 4.082 17.796 2.929 19.899 3.515 20.485 C 4.101 21.071 6.204 19.918 8.212 17.909 C 10.22 15.901 12 12 12 12 Z M 12 12 C 12.003 12.009 13.5 16.02 13.5 18.857 C 13.5 21.697 12.828 24 12 24 C 11.172 24 10.5 21.697 10.5 18.857 C 10.5 16.017 12 12 12 12 Z M 12 12 C 12 12 7.983 10.5 5.143 10.5 C 2.302 10.5 0 11.172 0 12 C 0 12.828 2.303 13.5 5.143 13.5 C 7.983 13.5 12 12 12 12 Z M 12 12 C 12 12 15.901 10.22 17.909 8.212 C 19.918 6.204 21.071 4.101 20.485 3.515 C 19.899 2.929 17.796 4.082 15.788 6.091 C 13.78 8.099 12 12 12 12 Z M 8.212 6.091 C 10.22 8.099 12 12 12 12 C 12 12 8.099 10.22 6.091 8.212 C 4.082 6.204 2.929 4.1 3.515 3.515 C 4.101 2.929 6.204 4.082 8.212 6.091 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:10849698354,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Celestial\"})}),className:\"framer-5jrexo\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wub70\",\"data-framer-name\":\"Course Categories Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oucx1d\",\"data-framer-name\":\"Course Categories Columns\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16q2bo9\",\"data-framer-name\":\"Course Categories Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7xhjbu-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:getLocalizedValue(\"v7\",activeLocale)??\"House\",iconSelection:\"Wind\",id:\"PpPjoI6iU\",layoutId:\"PpPjoI6iU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:\"Stand Out From The Crowd\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:\"Stand Out From The Crowd\"})})}),className:\"framer-7dfujg\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"We have developed features to help you get that first interview. TaqoAI acts as Talent Acquisition Officer and is your personal coach in creating your job docs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"We have developed features to help you get that first interview. TaqoAI acts as Talent Acquisition Officer and is your personal coach in creating your job docs.\"})}),className:\"framer-bz34x6\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{y:undefined},jyqUeP3Ls:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+0+2560+50+0+0+0+250,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12gyfy3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{m2Y8rrB3N:13}},children:/*#__PURE__*/_jsx(ButtonsMainGreenButton,{Bf2Bblc5O:\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\",height:\"100%\",HHXsvsz54:\"rgb(255, 255, 255)\",id:\"wZdSRVK0q\",layoutId:\"wZdSRVK0q\",m2Y8rrB3N:15,o6KASNBil:false,TeDM4RjBF:getLocalizedValue(\"v23\",activeLocale)??\"Upload your CV for free\",TwUpWc_3Q:\"https://app.taqo.ai\",va1T5B74v:false,variant:\"QGRqHUCbp\",W2FqRPI6z:\"ArrowRight\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n0s83g\",\"data-framer-name\":\"Course Categories Grid Cards\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 200px)`,y:undefined},jyqUeP3Ls:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1100px) - 20px) / 2, 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:196,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1100px) * 0.7 - 10px, 1px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2560+50+0+0+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1v1p0ul-container\",id:\"1v1p0ul\",ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{m_ccqxcms:15},jyqUeP3Ls:{m_ccqxcms:15}},children:/*#__PURE__*/_jsx(CourseCategories,{AJkw1XAT7:\"ChartBar\",DiwmQUii_:DiwmQUii_txyyif({overlay:overlay2}),EbQYdjPWv:getLocalizedValue(\"v25\",activeLocale)??\"Optimize your resume to meet the requirements of recruiters.\",EOi0ntDzE:getLocalizedValue(\"v24\",activeLocale)??\"Higher Success Rate\",height:\"100%\",id:\"LHkzPek6S\",layoutId:\"LHkzPek6S\",m_ccqxcms:13,style:{width:\"100%\"},width:\"100%\",XI0i_x522:false})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{offsetX:12.00005590193905,offsetY:-202.29687804792775},jyqUeP3Ls:{offsetX:55.0000842101872,offsetY:-179.34376940247603}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref5,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1v1p0ul\",offsetX:108.99998676683754,offsetY:-180.742173814564,onDismiss:overlay2.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",pixelHeight:556,pixelWidth:900,sizes:\"307px\",src:\"https://framerusercontent.com/images/kxtXzXc0G1rSVvJCT6Dz84bcKY.png\",srcSet:\"https://framerusercontent.com/images/kxtXzXc0G1rSVvJCT6Dz84bcKY.png?scale-down-to=512 512w,https://framerusercontent.com/images/kxtXzXc0G1rSVvJCT6Dz84bcKY.png 900w\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",pixelHeight:556,pixelWidth:900,sizes:\"562px\",src:\"https://framerusercontent.com/images/kxtXzXc0G1rSVvJCT6Dz84bcKY.png\",srcSet:\"https://framerusercontent.com/images/kxtXzXc0G1rSVvJCT6Dz84bcKY.png?scale-down-to=512 512w,https://framerusercontent.com/images/kxtXzXc0G1rSVvJCT6Dz84bcKY.png 900w\"}}},children:/*#__PURE__*/_jsx(Image,{animate:animation6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2560+50+0+0+0+0+-180.25),pixelHeight:556,pixelWidth:900,sizes:\"562px\",src:\"https://framerusercontent.com/images/kxtXzXc0G1rSVvJCT6Dz84bcKY.png\",srcSet:\"https://framerusercontent.com/images/kxtXzXc0G1rSVvJCT6Dz84bcKY.png?scale-down-to=512 512w,https://framerusercontent.com/images/kxtXzXc0G1rSVvJCT6Dz84bcKY.png 900w\"},className:\"framer-jugm11\",exit:animation5,initial:animation7,ref:ref6,role:\"dialog\"})})})})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 200px)`,y:undefined},jyqUeP3Ls:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1100px) - 20px) / 2, 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:196,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1100px) * 0.7 - 10px, 1px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2560+50+0+0+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-hr2acl-container\",id:\"hr2acl\",ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{m_ccqxcms:15},jyqUeP3Ls:{m_ccqxcms:15}},children:/*#__PURE__*/_jsx(CourseCategories,{AJkw1XAT7:\"LightbulbFilament\",DiwmQUii_:DiwmQUii_txyyif({overlay:overlay3}),EbQYdjPWv:getLocalizedValue(\"v27\",activeLocale)??\"Get AI-powered suggestions on whats missing in minutes.\",EOi0ntDzE:getLocalizedValue(\"v26\",activeLocale)??\"Instant Feedback\",height:\"100%\",id:\"hyIfJs1He\",layoutId:\"hyIfJs1He\",m_ccqxcms:13,style:{width:\"100%\"},width:\"100%\",XI0i_x522:false})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{offsetX:-325.5000152308494,offsetY:-20.898283852497116},jyqUeP3Ls:{offsetX:-546.5000932905823,offsetY:-.15622291411273181}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref7,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"hr2acl\",offsetX:-360.99998361896724,offsetY:13.257826185435988,onDismiss:overlay3.hide,placement:\"right\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",pixelHeight:1006,pixelWidth:1288,sizes:\"321px\",src:\"https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png\",srcSet:\"https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png?scale-down-to=512 512w,https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png 1288w\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",pixelHeight:1006,pixelWidth:1288,sizes:\"482px\",src:\"https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png\",srcSet:\"https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png?scale-down-to=512 512w,https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png 1288w\"}}},children:/*#__PURE__*/_jsx(Image,{animate:animation6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2560+50+0+0+0+0+-183),pixelHeight:1006,pixelWidth:1288,sizes:\"482px\",src:\"https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png\",srcSet:\"https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png?scale-down-to=512 512w,https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RVgfa7n4rMUWmMEgaRpSiAT508.png 1288w\"},className:\"framer-16qelkz\",exit:animation5,initial:animation7,ref:ref8,role:\"dialog\"})})})})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 200px)`,y:undefined},jyqUeP3Ls:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1100px) - 20px) / 2, 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:196,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1100px) * 0.7 - 10px, 1px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2560+50+0+0+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-9syjnd-container\",id:\"9syjnd\",ref:ref9,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{m_ccqxcms:15},jyqUeP3Ls:{m_ccqxcms:15}},children:/*#__PURE__*/_jsx(CourseCategories,{AJkw1XAT7:\"ChatCircle\",DiwmQUii_:DiwmQUii_txyyif({overlay:overlay4}),EbQYdjPWv:getLocalizedValue(\"v29\",activeLocale)??\"Start Shipping Next Level Edits with our Video Editing Courses.\",EOi0ntDzE:getLocalizedValue(\"v28\",activeLocale)??\"Tailored CVs\",height:\"100%\",id:\"tzLjSf8V4\",layoutId:\"tzLjSf8V4\",m_ccqxcms:13,style:{width:\"100%\"},width:\"100%\",XI0i_x522:false})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{offsetX:.5000271797180176,offsetY:-230.59396700933576},jyqUeP3Ls:{offsetX:152.0000842101872,offsetY:-320.9609382774215}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref9,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"9syjnd\",offsetX:-263.00002033202327,offsetY:-195.24221380826202,onDismiss:overlay4.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",pixelHeight:1292,pixelWidth:1496,sizes:\"331px\",src:\"https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png\",srcSet:\"https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png?scale-down-to=512 512w,https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png 1496w\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",pixelHeight:1292,pixelWidth:1496,sizes:\"510px\",src:\"https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png\",srcSet:\"https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png?scale-down-to=512 512w,https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png 1496w\"}}},children:/*#__PURE__*/_jsx(Image,{animate:animation6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2560+50+0+0+0+0+-194.75),pixelHeight:1292,pixelWidth:1496,sizes:\"452px\",src:\"https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png\",srcSet:\"https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png?scale-down-to=512 512w,https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yPI0GBVdHLTjE1XXXhhDvo27hg.png 1496w\"},className:\"framer-kya1k5\",exit:animation5,initial:animation7,ref:ref10,role:\"dialog\"})})})})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 200px)`,y:undefined},jyqUeP3Ls:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1100px) - 20px) / 2, 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:196,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1100px) * 0.7 - 10px, 1px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2560+50+0+0+0+216,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-110m0ts-container\",id:\"110m0ts\",ref:ref11,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{m_ccqxcms:15},jyqUeP3Ls:{m_ccqxcms:15}},children:/*#__PURE__*/_jsx(CourseCategories,{AJkw1XAT7:\"PencilLine\",DiwmQUii_:DiwmQUii_txyyif({overlay:overlay5}),EbQYdjPWv:getLocalizedValue(\"v31\",activeLocale)??\"Explore our Coding Courses to develop all kinds of programs.\",EOi0ntDzE:getLocalizedValue(\"v30\",activeLocale)??\"Stunning Cover Letter\",height:\"100%\",id:\"rQA51aO8E\",layoutId:\"rQA51aO8E\",m_ccqxcms:13,style:{width:\"100%\"},width:\"100%\",XI0i_x522:false})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{offsetX:.5000291660835501,offsetY:-254.2110586736817},jyqUeP3Ls:{offsetX:-152.4999373392202,offsetY:-284.46079794441175}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref11,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"110m0ts\",offsetX:274.99998676683754,offsetY:-392.4686148664914,onDismiss:overlay5.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",pixelHeight:1078,pixelWidth:1152,sizes:\"329px\",src:\"https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png\",srcSet:\"https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png?scale-down-to=512 512w,https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png 1152w\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",pixelHeight:1078,pixelWidth:1152,sizes:\"396px\",src:\"https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png\",srcSet:\"https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png?scale-down-to=512 512w,https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png 1152w\"}}},children:/*#__PURE__*/_jsx(Image,{animate:animation6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2560+50+0+0+0+216+-184.25),pixelHeight:1078,pixelWidth:1152,sizes:\"396px\",src:\"https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png\",srcSet:\"https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png?scale-down-to=512 512w,https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/c000WeaElcDOJblBX6QFXIUntU.png 1152w\"},className:\"framer-1470zu5\",exit:animation5,initial:animation7,ref:ref12,role:\"dialog\"})})})})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay6=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 200px)`,y:undefined},jyqUeP3Ls:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1100px) - 20px) / 2, 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:196,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1100px) * 0.7 - 10px, 1px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2560+50+0+0+0+216,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1qce79y-container\",id:\"1qce79y\",ref:ref13,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{m_ccqxcms:15},jyqUeP3Ls:{m_ccqxcms:15}},children:/*#__PURE__*/_jsx(CourseCategories,{AJkw1XAT7:\"Fire\",DiwmQUii_:DiwmQUii_txyyif({overlay:overlay6}),EbQYdjPWv:getLocalizedValue(\"v33\",activeLocale)??\"Write Stunning content with our Content Writing Courses.\",EOi0ntDzE:getLocalizedValue(\"v32\",activeLocale)??\"Organized Jobhunt\",height:\"100%\",id:\"lMjlf44Sg\",layoutId:\"lMjlf44Sg\",m_ccqxcms:13,style:{width:\"100%\"},width:\"100%\",XI0i_x522:false})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{offsetX:-.5000285664573312,offsetY:-203.01560426392825},jyqUeP3Ls:{offsetX:163.99996607517824,offsetY:-402.26561762107303}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref13,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1qce79y\",offsetX:-.5000148862600327,offsetY:-372.9688506036764,onDismiss:overlay6.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",pixelHeight:1194,pixelWidth:1968,sizes:\"352px\",src:\"https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png\",srcSet:\"https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png?scale-down-to=512 512w,https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png 1968w\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",pixelHeight:1194,pixelWidth:1968,sizes:\"585px\",src:\"https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png\",srcSet:\"https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png?scale-down-to=512 512w,https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png 1968w\"}}},children:/*#__PURE__*/_jsx(Image,{animate:animation6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2560+50+0+0+0+216+-176.25),pixelHeight:1194,pixelWidth:1968,sizes:\"585px\",src:\"https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png\",srcSet:\"https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png?scale-down-to=512 512w,https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sP7WI87Ky1whnvqWf3OOIYuBc28.png 1968w\"},className:\"framer-1c0ho3m\",exit:animation5,initial:animation7,ref:ref14,role:\"dialog\"})})})})})]})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay7=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 200px)`,y:undefined},jyqUeP3Ls:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1100px) - 20px) / 2, 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:196,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1100px) * 0.7 - 10px, 1px) - 40px) / 3, 200px)`,y:(componentViewport?.y||0)+0+2560+50+0+0+0+216,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-bzffx-container\",id:\"bzffx\",ref:ref15,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{m_ccqxcms:15},jyqUeP3Ls:{m_ccqxcms:15}},children:/*#__PURE__*/_jsx(CourseCategories,{AJkw1XAT7:\"Download\",DiwmQUii_:DiwmQUii_txyyif({overlay:overlay7}),EbQYdjPWv:getLocalizedValue(\"v35\",activeLocale)??\"Be Seen on the Top of Search Results with our SEO Courses.\",EOi0ntDzE:getLocalizedValue(\"v34\",activeLocale)??\"Downloadable Files\",height:\"100%\",id:\"iseTe9yHz\",layoutId:\"iseTe9yHz\",m_ccqxcms:13,style:{width:\"100%\"},width:\"100%\",XI0i_x522:false})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay7.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{offsetX:15230849385261536e-21,offsetY:-202.1798247497063},jyqUeP3Ls:{offsetX:-44.499937339220196,offsetY:-380.76540797359485}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"end\",anchorRef:ref15,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"bzffx\",offsetX:-119.99998248089105,offsetY:-374.96861884975806,onDismiss:overlay7.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",pixelHeight:724,pixelWidth:1068,sizes:\"330px\",src:\"https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png\",srcSet:\"https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png?scale-down-to=512 512w,https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png 1068w\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",pixelHeight:724,pixelWidth:1068,sizes:\"521px\",src:\"https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png\",srcSet:\"https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png?scale-down-to=512 512w,https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png 1068w\"}}},children:/*#__PURE__*/_jsx(Image,{animate:animation6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2560+50+0+0+0+216+-178.5),pixelHeight:724,pixelWidth:1068,sizes:\"521px\",src:\"https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png\",srcSet:\"https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png?scale-down-to=512 512w,https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dPUnvZobh8xtaA90I1ofFC3fhis.png 1068w\"},className:\"framer-wzaqor\",exit:animation5,initial:animation7,ref:ref16,role:\"dialog\"})})})})})]})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1esbwjl\",\"data-framer-name\":\"Custom Testimonial Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rftds0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a5jf7i\",\"data-framer-name\":\"Heading Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-31oqoy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pdo7vv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:getLocalizedValue(\"v7\",activeLocale)??\"House\",iconSelection:\"Heart\",id:\"KUy2TL1om\",layoutId:\"KUy2TL1om\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mpgyvv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"HAPPY CUSTOMERS\"})}),className:\"framer-1drmm6i\",fonts:[\"FS;General Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:\"Don't Just Take Our Word, Take theirs!\"})})})},jyqUeP3Ls:{children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:[\"Don't Just Take Our Word,\",/*#__PURE__*/_jsx(\"br\",{}),\"Take theirs!\"]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:\"Don't Just Take Our Word, Take theirs!\"})})}),className:\"framer-1o66g9r\",fonts:[\"FS;General Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Our Users Love How TaqoAI helped them, so you won't regret spending on our Courses.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Our Users Love How TaqoAI helped them, so you won't regret spending on our Courses.\"})}),className:\"framer-1uel29k\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1100px) - 40px) * 0.9)`,y:undefined},jyqUeP3Ls:{width:`min(570px, min(${componentViewport?.width||\"100vw\"}, 1100px))`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:434,y:(componentViewport?.y||0)+0+3072+40+2310.6+0+361.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10hwf8x-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{F0ckoiY8A:15,On9A_xIC0:20,style:{width:\"100%\"}},jyqUeP3Ls:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(TestimonialsCardsTestimonialCarouselCustom,{F0ckoiY8A:20,height:\"100%\",id:\"mowXnhHBT\",layoutId:\"mowXnhHBT\",On9A_xIC0:40,variant:\"YB05gqxdE\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.6,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3072+40+2310.6+795.5-195),pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/YMQr3A29sQDnKCdgHPJEvp0iCU.png?scale-down-to=1024\"},className:\"framer-1gvlbc3 hidden-15jk4uj hidden-1s7ss1\",\"data-framer-name\":\"Dark\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{transformPerspective:1200},whileTap:animation15}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.6,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3072+40+2310.6+795.5-284),pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/XBGdEEax7R3d8iEu2HLcV0ji0I.png?scale-down-to=1024\"},className:\"framer-1y3fozt hidden-15jk4uj hidden-1s7ss1\",\"data-framer-name\":\"Dark\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{transformPerspective:1200},whileTap:animation15}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.6,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3072+40+2310.6+205.5),pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/vz9kBTFoRFtcblXGjYPD8q3K3k.png?scale-down-to=1024\"},className:\"framer-zrrat3 hidden-15jk4uj hidden-1s7ss1\",\"data-framer-name\":\"Dark\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:28,transformPerspective:1200},whileTap:animation15}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2016,intrinsicWidth:2016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3072+40+2310.6+19),pixelHeight:4032,pixelWidth:4032,src:\"https://framerusercontent.com/images/iVEIMoOeg0btapECZ8Lmewv6gg.png?scale-down-to=1024\"},className:\"framer-ebpguq hidden-15jk4uj hidden-1s7ss1\",\"data-framer-name\":\"Dark\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{transformPerspective:1200},whileTap:animation15}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.8,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3072+40+2310.6+85.5),pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/ioBrAcmXYF8LRSxJApCAUh9LI.png?scale-down-to=1024\"},className:\"framer-bu7aeb hidden-15jk4uj hidden-1s7ss1\",\"data-framer-name\":\"Dark\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{transformPerspective:1200},whileTap:animation15}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3072+40+2310.6+795.5-114),pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/Cw7txRkj102SoTp368n2ufAhs.png?scale-down-to=1024\"},className:\"framer-t7z72k hidden-15jk4uj hidden-1s7ss1\",\"data-framer-name\":\"Dark\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{transformPerspective:1200},whileTap:animation15})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10bvur1-container\",children:/*#__PURE__*/_jsx(Pattern,{back:\"rgba(0, 0, 0, 0)\",diagonal:true,direction:\"left\",duration:5,front:\"rgb(255, 255, 255)\",height:\"100%\",id:\"F9hpOYcr0\",layoutId:\"F9hpOYcr0\",patternType:\"paper\",radius:0,scale:80,shouldAnimate:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9e0eml\",\"data-framer-name\":\"Starsfall\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:10,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition11,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tygj1f-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"YMGE6qT4R\",layoutId:\"YMGE6qT4R\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:12,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition21,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17p047j-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"CM9VnLN0O\",layoutId:\"CM9VnLN0O\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:10,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition13,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k8452a-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"nGx7_J3Jo\",layoutId:\"nGx7_J3Jo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:9,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition22,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cvwf5a-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"o5y8q_7St\",layoutId:\"o5y8q_7St\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:9,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition14,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9i5kba-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"vZRhn4nXf\",layoutId:\"vZRhn4nXf\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:8,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition12,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1keb50u-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"oe3Py3tjJ\",layoutId:\"oe3Py3tjJ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:8,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition12,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ctus0-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"S5D10dDC6\",layoutId:\"S5D10dDC6\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:7,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition23,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11ea9yu-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"pY2dHpgTj\",layoutId:\"pY2dHpgTj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:7,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition12,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aox35x-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"TmnYV4obT\",layoutId:\"TmnYV4obT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:6,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition24,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16xvr12-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"pHU4g8VvU\",layoutId:\"pHU4g8VvU\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:6,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kvrlpc-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"Ykb2DKnq0\",layoutId:\"Ykb2DKnq0\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition25,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y04w94-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"MQ1MXkj70\",layoutId:\"MQ1MXkj70\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition26,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w99ocz-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"dzEjC43mz\",layoutId:\"dzEjC43mz\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:4,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition16,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1abhbeu-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"sjgnxBY4D\",layoutId:\"sjgnxBY4D\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:4,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition16,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x05lgr-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"lOeT0th7Z\",layoutId:\"lOeT0th7Z\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition17,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r8dy1h-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"KQE8SX9QS\",layoutId:\"KQE8SX9QS\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition17,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ysaf8s-container\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Meteor,{height:\"100%\",id:\"gsDH57Nps\",layoutId:\"gsDH57Nps\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l4w190\",\"data-framer-name\":\"Achievements Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161knwd\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hm2b4o\",\"data-framer-name\":\"Achievements Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2xxd9g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Some Average Numbers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLWJvbGQ=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Some Average Numbers\"})}),className:\"framer-1judpnz\",fonts:[\"FS;General Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:\"Job Market Review 2024\"})})}),className:\"framer-j3yqj5\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Recruiters receive 50 to 500 applications per role, while candidates struggle to apply for multiple jobs and land an interview\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Recruiters receive 50 to 500 applications per role, while candidates struggle to apply for multiple jobs and land an interview\"})}),className:\"framer-l82760\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r42lrh\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i6h6jg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2py9n1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"3.8M Hours\"})})},jyqUeP3Ls:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"3.8M Hours\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"3.8M Hours\"})}),className:\"framer-18xlx12\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Spent Monthly to rewrite CVs\"})}),className:\"framer-y0dukm\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8k3p9j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"50+ Hours\"})})},jyqUeP3Ls:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"50+ Hours\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"50+ Hours\"})}),className:\"framer-pqvn8m\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Pre-Screening per Position\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Pre-Screening per Position\"})}),className:\"framer-ddft6a\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nqjaz3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"8.3% Chance\"})})},jyqUeP3Ls:{children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"8.3% Chance\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"8.3% Chance\"})}),className:\"framer-1wntx4d\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Landing an Interview\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Landing an Interview\"})}),className:\"framer-19r7xw8\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nzxj2d\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v63\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"100-200+ CVs\"})})},jyqUeP3Ls:{children:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"100-200+ CVs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\"},children:\"100-200+ CVs\"})}),className:\"framer-101r9ub\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v65\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Required to Land a Job\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v64\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Required to Land a Job\"})}),className:\"framer-1k65ygu\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yX4J0xBzN\"},implicitPathVariables:undefined},{href:{webPageId:\"yX4J0xBzN\"},implicitPathVariables:undefined},{href:{webPageId:\"yX4J0xBzN\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{y:undefined},jyqUeP3Ls:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+0+8628.7+50+0+50+0+759.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w8cei0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{m2Y8rrB3N:13,TwUpWc_3Q:resolvedLinks[2]},jyqUeP3Ls:{TwUpWc_3Q:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonsMainGreenButton,{Bf2Bblc5O:\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\",height:\"100%\",HHXsvsz54:\"rgb(255, 255, 255)\",id:\"KBL1eYUyq\",layoutId:\"KBL1eYUyq\",m2Y8rrB3N:15,o6KASNBil:false,TeDM4RjBF:getLocalizedValue(\"v66\",activeLocale)??\"More About Us\",TwUpWc_3Q:resolvedLinks[0],va1T5B74v:false,variant:\"QGRqHUCbp\",W2FqRPI6z:\"ArrowRight\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eqf2h0\",\"data-framer-name\":\"Globe\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sbx8cp-container\",children:/*#__PURE__*/_jsx(Globe,{alignment:\"center\",background:\"rgba(255, 245, 245, 0)\",baseColor:\"rgb(33, 33, 33)\",dark:1,diffuse:5,dragOptions:{damping:40,mass:1,stiffness:200},glowColor:\"rgb(28, 28, 28)\",height:\"100%\",id:\"ykDxBX_QX\",isDraggable:true,layoutId:\"ykDxBX_QX\",mapBrightness:5,markerArray:[{latitude:33.06515,longitude:-80.04273}],markerColor:\"var(--token-c462d72f-6ac9-4184-8505-3f1c572844b9, rgb(84, 242, 166))\",markerSize:1,maxSamples:1e4,maxWidth:1072,offset:{offsetX:0,offsetY:0},phi:4.01,scale:1.1,speed:.04,style:{height:\"100%\",width:\"100%\"},theta:.04,width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12jbgkl\",\"data-framer-name\":\"CTA Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t1rz4f\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o70jdh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cep70d\",\"data-framer-name\":\"CTA Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pgj7eq\",\"data-framer-name\":\"Happy Students Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jfpz37\",\"data-framer-name\":\"Image stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6220,intrinsicWidth:6220,pixelHeight:6220,pixelWidth:6220,src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6220,intrinsicWidth:6220,pixelHeight:6220,pixelWidth:6220,src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6220,intrinsicWidth:6220,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9626.400000000001+50+0+0+70+0+0+0+0+0),pixelHeight:6220,pixelWidth:6220,src:\"https://framerusercontent.com/images/PUja2jlMhB77g7YskLJxlVzkBAA.jpg?scale-down-to=512\"},className:\"framer-1og2g4\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:9504,intrinsicWidth:6336,pixelHeight:9504,pixelWidth:6336,src:\"https://framerusercontent.com/images/Z7AxzYZVOy5HtdCKWZh3YlF3mE.jpg?scale-down-to=512\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:9504,intrinsicWidth:6336,pixelHeight:9504,pixelWidth:6336,src:\"https://framerusercontent.com/images/Z7AxzYZVOy5HtdCKWZh3YlF3mE.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:9504,intrinsicWidth:6336,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9626.400000000001+50+0+0+70+0+0+0+0+0),pixelHeight:9504,pixelWidth:6336,src:\"https://framerusercontent.com/images/Z7AxzYZVOy5HtdCKWZh3YlF3mE.jpg?scale-down-to=512\"},className:\"framer-z1h42q\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:4928,pixelHeight:3264,pixelWidth:4928,src:\"https://framerusercontent.com/images/hCsV8dkBKP9VEaaIlJr8Bk89bX4.jpg?scale-down-to=512\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:4928,pixelHeight:3264,pixelWidth:4928,src:\"https://framerusercontent.com/images/hCsV8dkBKP9VEaaIlJr8Bk89bX4.jpg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3264,intrinsicWidth:4928,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9626.400000000001+50+0+0+70+0+0+0+0+0),pixelHeight:3264,pixelWidth:4928,src:\"https://framerusercontent.com/images/hCsV8dkBKP9VEaaIlJr8Bk89bX4.jpg?scale-down-to=512\"},className:\"framer-1j617sa\",\"data-border\":true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v67\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"121+ Happy Beta Users\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"121+ Happy Beta Users\"})}),className:\"framer-yld8lu\",fonts:[\"FS;General Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1js33gh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"21px\"},children:\"Ready to Make a Difference?\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"21px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})})}),viewBox:getLocalizedValue(\"v70\",activeLocale)??\"0 0 285 27\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(86deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.7) 72.1895%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"Ready to Make a Difference?\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})})}),className:\"framer-16su81t\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ltdww\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{children:getLocalizedValue(\"v72\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start with TaqoAI\"})}),viewBox:\"0 0 192 32\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v71\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Start with TaqoAI\"})}),className:\"framer-18rgd74\",fonts:[\"FS;General Sans-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v73\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Let's find your dream job faster together.\"})}),className:\"framer-1vf8g06\",fonts:[\"FS;General Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{y:undefined},jyqUeP3Ls:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+0+9626.400000000001+50+0+0+70+344,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e9wz49-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{m2Y8rrB3N:13}},children:/*#__PURE__*/_jsx(ButtonsMainGreenButton,{Bf2Bblc5O:\"var(--token-1c6696d8-fc37-4710-b1a4-9e54d6c7e146, rgb(140, 69, 255))\",height:\"100%\",HHXsvsz54:\"rgb(255, 255, 255)\",id:\"p0vM3NpnU\",layoutId:\"p0vM3NpnU\",m2Y8rrB3N:15,o6KASNBil:false,TeDM4RjBF:getLocalizedValue(\"v23\",activeLocale)??\"Upload your CV for free\",TwUpWc_3Q:\"https://app.taqo.ai\",va1T5B74v:false,variant:\"QGRqHUCbp\",W2FqRPI6z:\"ArrowRight\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/2BVisM9PsFkqJ6LP1bIeg3M9eM.png?scale-down-to=1024\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/2BVisM9PsFkqJ6LP1bIeg3M9eM.png?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.8,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9626.400000000001+50+0+0+522-177.5),pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/2BVisM9PsFkqJ6LP1bIeg3M9eM.png?scale-down-to=1024\"},className:\"framer-1s3z4yx\",\"data-framer-name\":\"Dark\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:28,transformPerspective:1200},whileTap:animation15})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/61mwWQt0GTFnB8uQDYVVQ0udKgk.png?scale-down-to=1024\"}},jyqUeP3Ls:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/61mwWQt0GTFnB8uQDYVVQ0udKgk.png?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9626.400000000001+50+0+0+45.5),pixelHeight:2e3,pixelWidth:2e3,src:\"https://framerusercontent.com/images/61mwWQt0GTFnB8uQDYVVQ0udKgk.png?scale-down-to=1024\"},className:\"framer-21j2uk\",\"data-framer-name\":\"Dark\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,style:{rotate:28,transformPerspective:1200},whileTap:animation15})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{y:undefined},jyqUeP3Ls:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:865,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10248.400000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-135irw2-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fx8zUb3jh:{variant:\"RVlc0w_sY\"},jyqUeP3Ls:{variant:\"lQyvHE2lR\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"jUv2ci9PL\",layoutId:\"jUv2ci9PL\",style:{width:\"100%\"},variant:\"okb40vuAG\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(16, 16, 16); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-htJtb.framer-lux5qc, .framer-htJtb .framer-lux5qc { display: block; }\",\".framer-htJtb.framer-72rtr7 { align-content: center; align-items: center; background-color: #101010; 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-htJtb .framer-80yqix-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-htJtb .framer-m7ropz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 92vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-1vgzaa9 { --border-bottom-width: 0px; --border-color: rgba(238, 238, 238, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(171, 171, 171, 0) 100%); flex: none; height: 20%; left: -78px; overflow: hidden; position: absolute; top: 145px; width: 80%; z-index: 1; }\",\".framer-htJtb .framer-15ee7mg { --border-bottom-width: 0px; --border-color: rgba(238, 238, 238, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(171, 171, 171, 0) 100%); flex: none; height: 20%; left: -193px; overflow: hidden; position: absolute; top: -22px; width: 80%; z-index: 1; }\",\".framer-htJtb .framer-1n4mcz1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-htJtb .framer-je3gr3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 46%; }\",\".framer-htJtb .framer-zta6ir { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-txj5sz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-1e1kap3 { --border-bottom-width: 1px; --border-color: rgba(238, 238, 238, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: linear-gradient(259deg, #242424 0%, #101010 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 13px 6px 13px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-i2tad6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-htJtb .framer-1m05ar5 { aspect-ratio: 1.3796296296296295 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: var(--framer-aspect-ratio-supported, 109px); overflow: hidden; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-15pwfn3, .framer-htJtb .framer-kz6qwm, .framer-htJtb .framer-hfoc7t, .framer-htJtb .framer-7dfujg, .framer-htJtb .framer-bz34x6, .framer-htJtb .framer-1drmm6i, .framer-htJtb .framer-1o66g9r, .framer-htJtb .framer-1uel29k, .framer-htJtb .framer-1judpnz, .framer-htJtb .framer-j3yqj5, .framer-htJtb .framer-l82760, .framer-htJtb .framer-18xlx12, .framer-htJtb .framer-y0dukm, .framer-htJtb .framer-pqvn8m, .framer-htJtb .framer-ddft6a, .framer-htJtb .framer-1wntx4d, .framer-htJtb .framer-19r7xw8, .framer-htJtb .framer-101r9ub, .framer-htJtb .framer-1k65ygu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-htJtb .framer-1rqaqgo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-htJtb .framer-1gdbj8r-container, .framer-htJtb .framer-12gyfy3-container, .framer-htJtb .framer-1w8cei0-container, .framer-htJtb .framer-e9wz49-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-htJtb .framer-dwr3jm, .framer-htJtb .framer-pgj7eq { 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: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-htJtb .framer-757rac, .framer-htJtb .framer-1jfpz37 { 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: min-content; }\",\".framer-htJtb .framer-1q1d3fl, .framer-htJtb .framer-1og2g4 { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 30px; overflow: hidden; position: relative; width: 30px; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-1i15cl7, .framer-htJtb .framer-z1h42q { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 0px; flex: none; left: calc(50.00000000000002% - 30px / 2); overflow: hidden; position: absolute; top: 0px; width: 30px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-htJtb .framer-oarlui, .framer-htJtb .framer-1j617sa { --border-bottom-width: 1.5px; --border-color: #ffffff; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 30px; overflow: hidden; position: relative; width: 30px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-htJtb .framer-1jmibj8, .framer-htJtb .framer-z865pr, .framer-htJtb .framer-4nv8ga, .framer-htJtb .framer-18gi1sh, .framer-htJtb .framer-1qeaakt, .framer-htJtb .framer-10xxeez, .framer-htJtb .framer-5jrexo, .framer-htJtb .framer-yld8lu, .framer-htJtb .framer-16su81t, .framer-htJtb .framer-18rgd74 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-htJtb .framer-1bdsigw-container, .framer-htJtb .framer-1wy1p70-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-htJtb .framer-16xnnzo, .framer-htJtb .framer-9e0eml { flex: none; height: 219px; left: -39px; opacity: 0.5; overflow: visible; position: absolute; top: -3px; width: 102px; z-index: 0; }\",\".framer-htJtb .framer-z4m76l-container { flex: none; height: 1px; position: absolute; right: -144px; top: -48px; width: 110px; z-index: 2; }\",\".framer-htJtb .framer-1sp37oe-container, .framer-htJtb .framer-17p047j-container { bottom: 76px; flex: none; height: 1px; left: -69px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1m9ezgd-container { flex: none; height: 1px; position: absolute; right: -279px; top: -82px; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-3ief9y-container, .framer-htJtb .framer-cvwf5a-container { flex: none; height: 1px; left: -69px; position: absolute; top: -35px; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-df6rq8-container, .framer-htJtb .framer-9i5kba-container { bottom: 33px; flex: none; height: 1px; left: -69px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1o29x5y-container { flex: none; height: 1px; position: absolute; right: -89px; top: -83px; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1xgcrg1-container, .framer-htJtb .framer-ctus0-container { flex: none; height: 1px; left: -99px; position: absolute; top: 8px; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1elf72n-container, .framer-htJtb .framer-11ea9yu-container { bottom: -70px; flex: none; height: 1px; left: -89px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-m5xb6s-container, .framer-htJtb .framer-1aox35x-container { flex: none; height: 1px; left: -69px; position: absolute; top: 50px; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-12h9pue-container, .framer-htJtb .framer-16xvr12-container { bottom: 47px; flex: none; height: 1px; left: -79px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1wu1ysr-container, .framer-htJtb .framer-1kvrlpc-container { bottom: -144px; flex: none; height: 1px; left: -79px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1t9ubct-container, .framer-htJtb .framer-1y04w94-container { flex: none; height: 1px; left: -89px; position: absolute; top: 93px; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-sh811f-container, .framer-htJtb .framer-1w99ocz-container { bottom: -126px; flex: none; height: 1px; left: -89px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1q7v91o-container, .framer-htJtb .framer-1abhbeu-container { bottom: -278px; flex: none; height: 1px; left: -79px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1rabxox-container, .framer-htJtb .framer-x05lgr-container { bottom: -58px; flex: none; height: 1px; left: -79px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1rhdvu1-container, .framer-htJtb .framer-1r8dy1h-container { bottom: -439px; flex: none; height: 1px; left: -69px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-7rdhr8-container, .framer-htJtb .framer-1ysaf8s-container { bottom: 40px; flex: none; height: 1px; left: -89px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1e254h2-container { flex: none; height: 100%; left: 0px; position: absolute; top: -1px; width: 100%; }\",\".framer-htJtb .framer-zkpou0 { align-content: center; align-items: center; background: radial-gradient(50% 22% at 50% 50%, #4a208a 0%, rgb(25, 13, 46) 50%, rgb(16, 16, 16) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-6d8ftl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-htJtb .framer-1tk1bhy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 18px 0px 18px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-htJtb .framer-dcnbif { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-1n6hwdb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-1pq696h-container, .framer-htJtb .framer-1pdo7vv-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-htJtb .framer-yhsvg0, .framer-htJtb .framer-mpgyvv, .framer-htJtb .framer-2xxd9g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-mt1sl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-htJtb .framer-1hmqaty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-htJtb .framer-youfjj-container, .framer-htJtb .framer-9mrolr-container, .framer-htJtb .framer-1ykn5yh-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-htJtb .framer-tk4016 { display: grid; flex: none; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-htJtb .framer-1eab3ix { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px -30px 70px 0px rgba(140, 69, 255, 0.3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-column: 1 / -1; height: min-content; justify-content: flex-start; justify-self: start; max-width: 1100px; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-171sn9r { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.4561664190193164 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 742px); overflow: visible; position: relative; width: 100%; }\",\".framer-htJtb .framer-cmap7w { cursor: pointer; flex: none; height: 112px; left: calc(50.00000000000002% - 112px / 2); overflow: hidden; position: absolute; top: calc(49.925705794948016% - 112px / 2); width: 112px; }\",\".framer-htJtb .framer-1bs8v7z-container { flex: none; height: 111px; left: calc(50.00000000000002% - 111px / 2); position: absolute; top: calc(50.00000000000002% - 111px / 2); width: 111px; z-index: 7; }\",\".framer-htJtb.framer-mlcdj8 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 7; }\",\".framer-htJtb.framer-1ye7rl { --border-bottom-width: 1px; --border-color: var(--token-d559605d-d2a3-4776-a2c1-0436ceda3b18, rgba(255, 255, 255, 0.15)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1.833810888252149 / 1; background-color: #000000; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 109px); justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 80%; will-change: var(--framer-will-change-override, transform); z-index: 7; }\",\".framer-htJtb .framer-cbzmpd { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 10px; top: 10px; width: min-content; z-index: 1; }\",\".framer-htJtb .framer-6sp5d3 { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-htJtb .framer-11s5ehi { flex: none; height: 100%; left: 1px; opacity: 0.8; overflow: hidden; pointer-events: none; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-htJtb .framer-s57mn5 { background: linear-gradient(0deg, #101010 0%, rgba(0, 0, 0, 0) 100%); bottom: 0px; flex: none; height: 100px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; }\",\".framer-htJtb .framer-1c0xvzs { background: linear-gradient(180deg, #101010 0%, rgba(0, 0, 0, 0) 100%); flex: none; height: 100px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-htJtb .framer-1wn4df { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-i0k36i, .framer-htJtb .framer-1akzs3i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-htJtb .framer-1gp46nv, .framer-htJtb .framer-1lxly { flex: none; height: 26px; position: relative; width: 26px; }\",\".framer-htJtb .framer-1gtcv3q, .framer-htJtb .framer-6mqzv3, .framer-htJtb .framer-17muyod, .framer-htJtb .framer-1ihvyep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-htJtb .framer-sq1guf { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-htJtb .framer-10uh6h5, .framer-htJtb .framer-1sy2c8x { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-htJtb .framer-1wub70 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-oucx1d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-16q2bo9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 30%; z-index: 1; }\",\".framer-htJtb .framer-7xhjbu-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-htJtb .framer-1n0s83g { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-htJtb .framer-1v1p0ul-container, .framer-htJtb .framer-hr2acl-container, .framer-htJtb .framer-9syjnd-container, .framer-htJtb .framer-110m0ts-container, .framer-htJtb .framer-1qce79y-container, .framer-htJtb .framer-bzffx-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-htJtb .framer-jugm11 { aspect-ratio: 1.5603864734299517 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 20px 20px rgba(255, 255, 255, 0.1); height: var(--framer-aspect-ratio-supported, 361px); overflow: hidden; position: relative; width: 562px; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-16qelkz { aspect-ratio: 1.3175355450236967 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 20px 20px rgba(255, 255, 255, 0.1); height: var(--framer-aspect-ratio-supported, 366px); overflow: hidden; position: relative; width: 482px; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-kya1k5 { aspect-ratio: 1.1597633136094674 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 20px 20px rgba(255, 255, 255, 0.1); height: var(--framer-aspect-ratio-supported, 390px); overflow: hidden; position: relative; width: 452px; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-1470zu5 { aspect-ratio: 1.075268817204301 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 20px 20px rgba(255, 255, 255, 0.1); height: var(--framer-aspect-ratio-supported, 369px); overflow: hidden; position: relative; width: 396px; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-1c0ho3m { aspect-ratio: 1.6606060606060606 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 20px 20px rgba(255, 255, 255, 0.1); height: var(--framer-aspect-ratio-supported, 353px); overflow: hidden; position: relative; width: 585px; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-wzaqor { aspect-ratio: 1.4593301435406698 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 20px 20px rgba(255, 255, 255, 0.1); height: var(--framer-aspect-ratio-supported, 357px); overflow: hidden; position: relative; width: 521px; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-1esbwjl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; overflow: hidden; padding: 40px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-1rftds0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-htJtb .framer-1a5jf7i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-htJtb .framer-31oqoy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-htJtb .framer-10hwf8x-container { flex: none; height: auto; position: relative; width: auto; z-index: 5; }\",\".framer-htJtb .framer-1gvlbc3 { aspect-ratio: 1 / 1; bottom: -87px; cursor: grab; flex: none; height: var(--framer-aspect-ratio-supported, 282px); opacity: 0.6; overflow: visible; position: absolute; right: -141px; width: 282px; z-index: 3; }\",\".framer-htJtb .framer-1y3fozt { aspect-ratio: 1 / 1; bottom: 172px; cursor: grab; flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 33px; opacity: 0.6; overflow: visible; position: absolute; width: 112px; z-index: 3; }\",\".framer-htJtb .framer-zrrat3 { -webkit-filter: blur(0px); aspect-ratio: 1 / 1; cursor: grab; filter: blur(0px); flex: none; height: var(--framer-aspect-ratio-supported, 129px); left: 962px; opacity: 0.6; overflow: visible; position: absolute; top: 206px; width: 129px; z-index: 3; }\",\".framer-htJtb .framer-ebpguq { -webkit-filter: blur(6px); aspect-ratio: 1 / 1; cursor: grab; filter: blur(6px); flex: none; height: var(--framer-aspect-ratio-supported, 109px); opacity: 0.5; overflow: visible; position: absolute; right: -54px; top: 19px; width: 109px; z-index: 3; }\",\".framer-htJtb .framer-bu7aeb { -webkit-filter: blur(8px); aspect-ratio: 1 / 1; cursor: grab; filter: blur(8px); flex: none; height: var(--framer-aspect-ratio-supported, 166px); left: -60px; opacity: 0.8; overflow: visible; position: absolute; top: 86px; width: 166px; z-index: 3; }\",\".framer-htJtb .framer-t7z72k { aspect-ratio: 1 / 1; bottom: -67px; cursor: grab; flex: none; height: var(--framer-aspect-ratio-supported, 181px); left: -80px; opacity: 0.5; overflow: visible; position: absolute; width: 181px; z-index: 3; }\",\".framer-htJtb .framer-10bvur1-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.01; position: absolute; top: calc(50.069735006973524% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-htJtb .framer-1tygj1f-container { flex: none; height: 1px; left: -94px; position: absolute; top: -128px; width: 110px; z-index: 2; }\",\".framer-htJtb .framer-1k8452a-container { bottom: -199px; flex: none; height: 1px; left: -109px; position: absolute; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-1keb50u-container { flex: none; height: 1px; left: -179px; position: absolute; top: 37px; width: 100px; z-index: 2; }\",\".framer-htJtb .framer-l4w190, .framer-htJtb .framer-12jbgkl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-161knwd { --border-bottom-width: 1px; --border-color: rgba(238, 238, 238, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background: linear-gradient(313deg, rgba(255, 255, 255, 0.06) 0%, rgba(171, 171, 171, 0) 65.70688885795353%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1100px; overflow: hidden; padding: 50px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-1hm2b4o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 45%; }\",\".framer-htJtb .framer-1r42lrh { background-color: rgba(238, 238, 238, 0.1); flex: none; height: 1px; overflow: hidden; position: relative; width: 163px; }\",\".framer-htJtb .framer-i6h6jg { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-2py9n1, .framer-htJtb .framer-8k3p9j, .framer-htJtb .framer-1nqjaz3, .framer-htJtb .framer-nzxj2d { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: auto; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-eqf2h0 { flex: 1 0 0px; height: 296px; overflow: visible; position: relative; width: 1px; }\",\".framer-htJtb .framer-1sbx8cp-container { bottom: -284px; flex: none; height: 572px; left: -10px; position: absolute; right: -162px; }\",\".framer-htJtb .framer-1t1rz4f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-htJtb .framer-1o70jdh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 0px 70px 0px; position: relative; width: 1px; }\",\".framer-htJtb .framer-cep70d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1100px; }\",\".framer-htJtb .framer-1js33gh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-htJtb .framer-ltdww { --border-bottom-width: 1px; --border-color: rgba(238, 238, 238, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background: linear-gradient(313deg, rgba(255, 255, 255, 0.06) 0%, rgba(171, 171, 171, 0) 65.70688885795353%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 15px 3px 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-htJtb .framer-1vf8g06 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 45%; word-break: break-word; word-wrap: break-word; }\",\".framer-htJtb .framer-1s3z4yx { -webkit-filter: blur(0px); aspect-ratio: 1 / 1; bottom: 27px; cursor: grab; filter: blur(0px); flex: none; height: var(--framer-aspect-ratio-supported, 151px); left: 890px; opacity: 0.8; overflow: visible; position: absolute; width: 151px; z-index: 3; }\",\".framer-htJtb .framer-21j2uk { -webkit-filter: blur(0px); aspect-ratio: 1 / 1; cursor: grab; filter: blur(0px); flex: none; height: var(--framer-aspect-ratio-supported, 129px); left: 44px; opacity: 0.5; overflow: visible; position: absolute; top: 46px; width: 129px; z-index: 3; }\",\".framer-htJtb .framer-135irw2-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-htJtb.framer-72rtr7, .framer-htJtb .framer-m7ropz, .framer-htJtb .framer-1n4mcz1, .framer-htJtb .framer-je3gr3, .framer-htJtb .framer-zta6ir, .framer-htJtb .framer-txj5sz, .framer-htJtb .framer-1e1kap3, .framer-htJtb .framer-dwr3jm, .framer-htJtb .framer-757rac, .framer-htJtb .framer-zkpou0, .framer-htJtb .framer-6d8ftl, .framer-htJtb .framer-1tk1bhy, .framer-htJtb .framer-dcnbif, .framer-htJtb .framer-1n6hwdb, .framer-htJtb .framer-yhsvg0, .framer-htJtb .framer-1hmqaty, .framer-htJtb .framer-1eab3ix, .framer-htJtb.framer-1ye7rl, .framer-htJtb .framer-cbzmpd, .framer-htJtb .framer-1wn4df, .framer-htJtb .framer-i0k36i, .framer-htJtb .framer-1gtcv3q, .framer-htJtb .framer-1akzs3i, .framer-htJtb .framer-6mqzv3, .framer-htJtb .framer-17muyod, .framer-htJtb .framer-1ihvyep, .framer-htJtb .framer-1wub70, .framer-htJtb .framer-oucx1d, .framer-htJtb .framer-16q2bo9, .framer-htJtb .framer-1esbwjl, .framer-htJtb .framer-1rftds0, .framer-htJtb .framer-1a5jf7i, .framer-htJtb .framer-31oqoy, .framer-htJtb .framer-mpgyvv, .framer-htJtb .framer-l4w190, .framer-htJtb .framer-1hm2b4o, .framer-htJtb .framer-2xxd9g, .framer-htJtb .framer-2py9n1, .framer-htJtb .framer-8k3p9j, .framer-htJtb .framer-1nqjaz3, .framer-htJtb .framer-nzxj2d, .framer-htJtb .framer-12jbgkl, .framer-htJtb .framer-1t1rz4f, .framer-htJtb .framer-1o70jdh, .framer-htJtb .framer-cep70d, .framer-htJtb .framer-pgj7eq, .framer-htJtb .framer-1jfpz37, .framer-htJtb .framer-1js33gh, .framer-htJtb .framer-ltdww { gap: 0px; } .framer-htJtb.framer-72rtr7 > *, .framer-htJtb .framer-1js33gh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-htJtb.framer-72rtr7 > :first-child, .framer-htJtb .framer-m7ropz > :first-child, .framer-htJtb .framer-je3gr3 > :first-child, .framer-htJtb .framer-zta6ir > :first-child, .framer-htJtb .framer-txj5sz > :first-child, .framer-htJtb .framer-zkpou0 > :first-child, .framer-htJtb .framer-6d8ftl > :first-child, .framer-htJtb .framer-1tk1bhy > :first-child, .framer-htJtb .framer-dcnbif > :first-child, .framer-htJtb .framer-1n6hwdb > :first-child, .framer-htJtb .framer-yhsvg0 > :first-child, .framer-htJtb .framer-1eab3ix > :first-child, .framer-htJtb .framer-1wub70 > :first-child, .framer-htJtb .framer-16q2bo9 > :first-child, .framer-htJtb .framer-1esbwjl > :first-child, .framer-htJtb .framer-1rftds0 > :first-child, .framer-htJtb .framer-31oqoy > :first-child, .framer-htJtb .framer-mpgyvv > :first-child, .framer-htJtb .framer-l4w190 > :first-child, .framer-htJtb .framer-1hm2b4o > :first-child, .framer-htJtb .framer-2xxd9g > :first-child, .framer-htJtb .framer-2py9n1 > :first-child, .framer-htJtb .framer-8k3p9j > :first-child, .framer-htJtb .framer-1nqjaz3 > :first-child, .framer-htJtb .framer-nzxj2d > :first-child, .framer-htJtb .framer-12jbgkl > :first-child, .framer-htJtb .framer-1o70jdh > :first-child, .framer-htJtb .framer-cep70d > :first-child, .framer-htJtb .framer-1js33gh > :first-child { margin-top: 0px; } .framer-htJtb.framer-72rtr7 > :last-child, .framer-htJtb .framer-m7ropz > :last-child, .framer-htJtb .framer-je3gr3 > :last-child, .framer-htJtb .framer-zta6ir > :last-child, .framer-htJtb .framer-txj5sz > :last-child, .framer-htJtb .framer-zkpou0 > :last-child, .framer-htJtb .framer-6d8ftl > :last-child, .framer-htJtb .framer-1tk1bhy > :last-child, .framer-htJtb .framer-dcnbif > :last-child, .framer-htJtb .framer-1n6hwdb > :last-child, .framer-htJtb .framer-yhsvg0 > :last-child, .framer-htJtb .framer-1eab3ix > :last-child, .framer-htJtb .framer-1wub70 > :last-child, .framer-htJtb .framer-16q2bo9 > :last-child, .framer-htJtb .framer-1esbwjl > :last-child, .framer-htJtb .framer-1rftds0 > :last-child, .framer-htJtb .framer-31oqoy > :last-child, .framer-htJtb .framer-mpgyvv > :last-child, .framer-htJtb .framer-l4w190 > :last-child, .framer-htJtb .framer-1hm2b4o > :last-child, .framer-htJtb .framer-2xxd9g > :last-child, .framer-htJtb .framer-2py9n1 > :last-child, .framer-htJtb .framer-8k3p9j > :last-child, .framer-htJtb .framer-1nqjaz3 > :last-child, .framer-htJtb .framer-nzxj2d > :last-child, .framer-htJtb .framer-12jbgkl > :last-child, .framer-htJtb .framer-1o70jdh > :last-child, .framer-htJtb .framer-cep70d > :last-child, .framer-htJtb .framer-1js33gh > :last-child { margin-bottom: 0px; } .framer-htJtb .framer-m7ropz > *, .framer-htJtb .framer-txj5sz > *, .framer-htJtb .framer-1eab3ix > *, .framer-htJtb .framer-16q2bo9 > *, .framer-htJtb .framer-cep70d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-htJtb .framer-1n4mcz1 > *, .framer-htJtb .framer-1hmqaty > *, .framer-htJtb .framer-1t1rz4f > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-htJtb .framer-1n4mcz1 > :first-child, .framer-htJtb .framer-1e1kap3 > :first-child, .framer-htJtb .framer-dwr3jm > :first-child, .framer-htJtb .framer-757rac > :first-child, .framer-htJtb .framer-1hmqaty > :first-child, .framer-htJtb.framer-1ye7rl > :first-child, .framer-htJtb .framer-cbzmpd > :first-child, .framer-htJtb .framer-1wn4df > :first-child, .framer-htJtb .framer-i0k36i > :first-child, .framer-htJtb .framer-1gtcv3q > :first-child, .framer-htJtb .framer-1akzs3i > :first-child, .framer-htJtb .framer-6mqzv3 > :first-child, .framer-htJtb .framer-17muyod > :first-child, .framer-htJtb .framer-1ihvyep > :first-child, .framer-htJtb .framer-oucx1d > :first-child, .framer-htJtb .framer-1a5jf7i > :first-child, .framer-htJtb .framer-1t1rz4f > :first-child, .framer-htJtb .framer-pgj7eq > :first-child, .framer-htJtb .framer-1jfpz37 > :first-child, .framer-htJtb .framer-ltdww > :first-child { margin-left: 0px; } .framer-htJtb .framer-1n4mcz1 > :last-child, .framer-htJtb .framer-1e1kap3 > :last-child, .framer-htJtb .framer-dwr3jm > :last-child, .framer-htJtb .framer-757rac > :last-child, .framer-htJtb .framer-1hmqaty > :last-child, .framer-htJtb.framer-1ye7rl > :last-child, .framer-htJtb .framer-cbzmpd > :last-child, .framer-htJtb .framer-1wn4df > :last-child, .framer-htJtb .framer-i0k36i > :last-child, .framer-htJtb .framer-1gtcv3q > :last-child, .framer-htJtb .framer-1akzs3i > :last-child, .framer-htJtb .framer-6mqzv3 > :last-child, .framer-htJtb .framer-17muyod > :last-child, .framer-htJtb .framer-1ihvyep > :last-child, .framer-htJtb .framer-oucx1d > :last-child, .framer-htJtb .framer-1a5jf7i > :last-child, .framer-htJtb .framer-1t1rz4f > :last-child, .framer-htJtb .framer-pgj7eq > :last-child, .framer-htJtb .framer-1jfpz37 > :last-child, .framer-htJtb .framer-ltdww > :last-child { margin-right: 0px; } .framer-htJtb .framer-je3gr3 > *, .framer-htJtb .framer-zkpou0 > *, .framer-htJtb .framer-6d8ftl > *, .framer-htJtb .framer-1wub70 > *, .framer-htJtb .framer-1esbwjl > *, .framer-htJtb .framer-l4w190 > *, .framer-htJtb .framer-12jbgkl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-htJtb .framer-zta6ir > *, .framer-htJtb .framer-dcnbif > *, .framer-htJtb .framer-1o70jdh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-htJtb .framer-1e1kap3 > *, .framer-htJtb .framer-dwr3jm > *, .framer-htJtb .framer-757rac > *, .framer-htJtb.framer-1ye7rl > *, .framer-htJtb .framer-cbzmpd > *, .framer-htJtb .framer-oucx1d > *, .framer-htJtb .framer-1a5jf7i > *, .framer-htJtb .framer-pgj7eq > *, .framer-htJtb .framer-1jfpz37 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-htJtb .framer-1tk1bhy > *, .framer-htJtb .framer-1n6hwdb > *, .framer-htJtb .framer-31oqoy > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-htJtb .framer-yhsvg0 > *, .framer-htJtb .framer-mpgyvv > *, .framer-htJtb .framer-2xxd9g > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-htJtb .framer-1wn4df > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-htJtb .framer-i0k36i > *, .framer-htJtb .framer-1akzs3i > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-htJtb .framer-1gtcv3q > *, .framer-htJtb .framer-6mqzv3 > *, .framer-htJtb .framer-17muyod > *, .framer-htJtb .framer-1ihvyep > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-htJtb .framer-1rftds0 > *, .framer-htJtb .framer-1hm2b4o > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-htJtb .framer-2py9n1 > *, .framer-htJtb .framer-8k3p9j > *, .framer-htJtb .framer-1nqjaz3 > *, .framer-htJtb .framer-nzxj2d > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-htJtb .framer-ltdww > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",'.framer-htJtb[data-border=\"true\"]::after, .framer-htJtb [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: 690px) and (max-width: 1199px) { .framer-htJtb.framer-72rtr7 { width: 690px; } .framer-htJtb .framer-80yqix-container { position: relative; top: unset; } .framer-htJtb .framer-m7ropz { height: min-content; } .framer-htJtb .framer-1vgzaa9 { height: 196px; left: unset; right: -371px; top: calc(17.212347988774578% - 196px / 2); width: 1184px; } .framer-htJtb .framer-15ee7mg { height: 196px; left: unset; right: -211px; top: calc(2.52572497661368% - 196px / 2); width: 1184px; } .framer-htJtb .framer-1n4mcz1 { flex: none; flex-direction: column; gap: 10px; height: min-content; padding: 20px 0px 0px 0px; } .framer-htJtb .framer-je3gr3 { padding: 50px; width: 100%; } .framer-htJtb .framer-1rqaqgo { max-width: 100%; width: 590px; } .framer-htJtb .framer-1bdsigw-container { flex: none; height: 547px; width: 100%; } .framer-htJtb .framer-1e254h2-container { height: 994px; } .framer-htJtb .framer-6d8ftl, .framer-htJtb .framer-1wub70, .framer-htJtb .framer-l4w190 { padding: 30px; } .framer-htJtb .framer-mt1sl, .framer-htJtb .framer-1uel29k, .framer-htJtb .framer-1vf8g06 { width: 70%; } .framer-htJtb .framer-1hmqaty, .framer-htJtb .framer-161knwd { flex-direction: column; } .framer-htJtb .framer-youfjj-container, .framer-htJtb .framer-9mrolr-container, .framer-htJtb .framer-1ykn5yh-container { flex: none; width: 100%; } .framer-htJtb .framer-171sn9r { height: var(--framer-aspect-ratio-supported, 419px); } .framer-htJtb .framer-1wn4df { flex-wrap: wrap; gap: 30px; max-width: 500px; } .framer-htJtb .framer-oucx1d { flex-direction: column; gap: 30px; } .framer-htJtb .framer-16q2bo9, .framer-htJtb .framer-1hm2b4o, .framer-htJtb .framer-cep70d { width: 100%; } .framer-htJtb .framer-1n0s83g { flex: none; grid-template-columns: repeat(2, minmax(200px, 1fr)); width: 100%; } .framer-htJtb .framer-jugm11 { height: var(--framer-aspect-ratio-supported, 360px); } .framer-htJtb .framer-kya1k5 { height: var(--framer-aspect-ratio-supported, 440px); width: 510px; } .framer-htJtb .framer-1470zu5 { height: var(--framer-aspect-ratio-supported, 368px); } .framer-htJtb .framer-mpgyvv { width: 90%; } .framer-htJtb .framer-10hwf8x-container { max-width: 100%; width: 570px; } .framer-htJtb .framer-eqf2h0 { flex: none; height: 350px; width: 100%; } .framer-htJtb .framer-1t1rz4f, .framer-htJtb .framer-1o70jdh { overflow: visible; } .framer-htJtb .framer-1s3z4yx { bottom: -23px; left: unset; right: -11px; } .framer-htJtb .framer-21j2uk { height: var(--framer-aspect-ratio-supported, 94px); left: 23px; top: -32px; width: 94px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-htJtb .framer-1n4mcz1, .framer-htJtb .framer-1hmqaty, .framer-htJtb .framer-1wn4df, .framer-htJtb .framer-oucx1d, .framer-htJtb .framer-161knwd { gap: 0px; } .framer-htJtb .framer-1n4mcz1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-htJtb .framer-1n4mcz1 > :first-child, .framer-htJtb .framer-1hmqaty > :first-child, .framer-htJtb .framer-oucx1d > :first-child { margin-top: 0px; } .framer-htJtb .framer-1n4mcz1 > :last-child, .framer-htJtb .framer-1hmqaty > :last-child, .framer-htJtb .framer-oucx1d > :last-child { margin-bottom: 0px; } .framer-htJtb .framer-1hmqaty > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-htJtb .framer-1wn4df > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-htJtb .framer-1wn4df > :first-child { margin-left: 0px; } .framer-htJtb .framer-1wn4df > :last-child { margin-right: 0px; } .framer-htJtb .framer-oucx1d > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-htJtb .framer-161knwd > *, .framer-htJtb .framer-161knwd > :first-child, .framer-htJtb .framer-161knwd > :last-child { margin: 0px; } }}\",\"@media (max-width: 689px) { .framer-htJtb.framer-72rtr7 { width: 370px; } .framer-htJtb .framer-80yqix-container { z-index: 9; } .framer-htJtb .framer-m7ropz { height: min-content; } .framer-htJtb .framer-1vgzaa9 { height: 196px; left: unset; right: -531px; top: calc(17.153996101364545% - 196px / 2); width: 1184px; } .framer-htJtb .framer-15ee7mg { height: 196px; left: unset; right: -301px; top: calc(2.534113060428872% - 196px / 2); width: 1184px; } .framer-htJtb .framer-1n4mcz1 { flex: none; flex-direction: column; gap: 10px; height: min-content; padding: 40px 0px 0px 0px; } .framer-htJtb .framer-je3gr3 { padding: 20px; width: 100%; } .framer-htJtb .framer-1rqaqgo { max-width: 100%; width: 378px; } .framer-htJtb .framer-dwr3jm { justify-content: flex-start; width: 100%; } .framer-htJtb .framer-1q1d3fl, .framer-htJtb .framer-oarlui, .framer-htJtb .framer-1og2g4, .framer-htJtb .framer-1j617sa { height: 25px; width: 25px; } .framer-htJtb .framer-1i15cl7, .framer-htJtb .framer-z1h42q { left: calc(50.00000000000002% - 25px / 2); width: 25px; } .framer-htJtb .framer-1jmibj8 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-htJtb .framer-1bdsigw-container { flex: none; height: 547px; width: 100%; } .framer-htJtb .framer-1e254h2-container { height: 994px; } .framer-htJtb .framer-6d8ftl, .framer-htJtb .framer-1wub70, .framer-htJtb .framer-1rftds0, .framer-htJtb .framer-l4w190 { padding: 20px; } .framer-htJtb .framer-mt1sl, .framer-htJtb .framer-16q2bo9, .framer-htJtb .framer-1r42lrh, .framer-htJtb .framer-cep70d, .framer-htJtb .framer-1js33gh, .framer-htJtb .framer-16su81t, .framer-htJtb .framer-18rgd74, .framer-htJtb .framer-1vf8g06 { width: 100%; } .framer-htJtb .framer-1hmqaty { flex-direction: column; } .framer-htJtb .framer-youfjj-container, .framer-htJtb .framer-9mrolr-container, .framer-htJtb .framer-1ykn5yh-container { flex: none; width: 100%; } .framer-htJtb .framer-tk4016 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-htJtb .framer-171sn9r { height: var(--framer-aspect-ratio-supported, 213px); } .framer-htJtb .framer-1wn4df { flex-wrap: wrap; } .framer-htJtb .framer-oucx1d { flex-direction: column; gap: 30px; } .framer-htJtb .framer-1n0s83g { flex: none; grid-template-columns: repeat(1, minmax(200px, 1fr)); width: 100%; } .framer-htJtb .framer-jugm11 { height: var(--framer-aspect-ratio-supported, 197px); width: 307px; } .framer-htJtb .framer-16qelkz { height: var(--framer-aspect-ratio-supported, 244px); width: 321px; } .framer-htJtb .framer-kya1k5 { height: var(--framer-aspect-ratio-supported, 286px); width: 331px; } .framer-htJtb .framer-1470zu5 { height: var(--framer-aspect-ratio-supported, 306px); width: 329px; } .framer-htJtb .framer-1c0ho3m { height: var(--framer-aspect-ratio-supported, 212px); width: 352px; } .framer-htJtb .framer-wzaqor { height: var(--framer-aspect-ratio-supported, 227px); width: 330px; } .framer-htJtb .framer-10hwf8x-container { width: 90%; } .framer-htJtb .framer-161knwd { flex-direction: column; padding: 25px 20px 20px 20px; } .framer-htJtb .framer-1hm2b4o { gap: 20px; width: 100%; z-index: 3; } .framer-htJtb .framer-i6h6jg { gap: 10px; grid-template-columns: repeat(2, minmax(70px, 1fr)); } .framer-htJtb .framer-2py9n1, .framer-htJtb .framer-8k3p9j, .framer-htJtb .framer-1nqjaz3, .framer-htJtb .framer-nzxj2d { align-content: flex-start; align-items: flex-start; width: min-content; } .framer-htJtb .framer-18xlx12, .framer-htJtb .framer-pqvn8m, .framer-htJtb .framer-1wntx4d, .framer-htJtb .framer-101r9ub { white-space: pre; width: auto; } .framer-htJtb .framer-y0dukm, .framer-htJtb .framer-ddft6a, .framer-htJtb .framer-19r7xw8, .framer-htJtb .framer-1k65ygu { align-self: stretch; width: auto; } .framer-htJtb .framer-eqf2h0 { flex: none; height: 236px; width: 100%; } .framer-htJtb .framer-1t1rz4f { overflow: visible; } .framer-htJtb .framer-1o70jdh { overflow: visible; padding: 70px 20px 70px 20px; } .framer-htJtb .framer-ltdww { flex-direction: column; width: 100%; } .framer-htJtb .framer-1s3z4yx { bottom: -34px; height: var(--framer-aspect-ratio-supported, 90px); left: unset; right: -4px; width: 90px; } .framer-htJtb .framer-21j2uk { height: var(--framer-aspect-ratio-supported, 57px); left: 19px; top: -23px; width: 57px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-htJtb .framer-1n4mcz1, .framer-htJtb .framer-1hmqaty, .framer-htJtb .framer-oucx1d, .framer-htJtb .framer-161knwd, .framer-htJtb .framer-1hm2b4o, .framer-htJtb .framer-i6h6jg, .framer-htJtb .framer-ltdww { gap: 0px; } .framer-htJtb .framer-1n4mcz1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-htJtb .framer-1n4mcz1 > :first-child, .framer-htJtb .framer-1hmqaty > :first-child, .framer-htJtb .framer-oucx1d > :first-child, .framer-htJtb .framer-1hm2b4o > :first-child, .framer-htJtb .framer-ltdww > :first-child { margin-top: 0px; } .framer-htJtb .framer-1n4mcz1 > :last-child, .framer-htJtb .framer-1hmqaty > :last-child, .framer-htJtb .framer-oucx1d > :last-child, .framer-htJtb .framer-1hm2b4o > :last-child, .framer-htJtb .framer-ltdww > :last-child { margin-bottom: 0px; } .framer-htJtb .framer-1hmqaty > *, .framer-htJtb .framer-1hm2b4o > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-htJtb .framer-oucx1d > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-htJtb .framer-161knwd > *, .framer-htJtb .framer-161knwd > :first-child, .framer-htJtb .framer-161knwd > :last-child, .framer-htJtb .framer-i6h6jg > *, .framer-htJtb .framer-i6h6jg > :first-child, .framer-htJtb .framer-i6h6jg > :last-child { margin: 0px; } .framer-htJtb .framer-ltdww > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5467\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jyqUeP3Ls\":{\"layout\":[\"fixed\",\"auto\"]},\"fx8zUb3jh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-htJtb\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5467,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K46YRH762FH3QJ25IQM3VAXAKCHEXXW4/ISLWQPUZHZF33LRIOTBMFOJL57GBGQ4B/3ZLMEXZEQPLTEPMHTQDAUXP5ZZXCZAEN.woff2\",weight:\"600\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MFQT7HFGCR2L5ULQTW6YXYZXXHMPKLJ3/YWQ244D6TACUX5JBKATPOW5I5MGJ3G73/7YY3ZAAE3TRV2LANYOLXNHTPHLXVWTKH.woff2\",weight:\"400\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KWXO5X3YW4X7OLUMPO4X24HQJGJU7E2Q/VOWUQZS3YLP66ZHPTXAFSH6YACY4WJHT/NIQ54PVBBIWVK3PFSOIOUJSXIJ5WTNDP.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/HBNTRIISA5MEXGL5WPYI7CV2HIWTDV3Q/YDPDINVT673XLXNSTMLG4JNCZZMVVNPN/Y7SCNZJOT2MW5ADSGOFLDGH4TNL4JCQY.woff2\",weight:\"700\"},{family:\"Chillax\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2T24MWUOKZU65SZJ33GPRGNOKE4KPOBX/T6LIXZJIPB23UDPMTIKURYWSZLXZBJ3A/THF5L6EHVL4N4NNE3GYDZNZSHABL5CH5.woff2\",weight:\"600\"},{family:\"Panchang\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/47WQXPVBB5FZSBSKG7EM3GTGOVFM5BBT/ODED7M7ROA7KYKTD3MYSN4KKO6JVXBQE/EE3DYKUPHF3W5SWXFO53CRP5KMNTTNTH.woff2\",weight:\"700\"},{family:\"Chillax\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UM553GIXLG5E46TUH763VYPGAQ77BPQ5/NN4EI53RUGC4BO5HP5F46SYQ4WY4U4CE/T2KA2X72VGASVXFVB7QCOIFYVH5GZJTW.woff2\",weight:\"700\"}]},...NavMainNavBarFonts,...ButtonsMainGreenButtonFonts,...ImagesSlieshowFonts,...MeteorFonts,...ParticlesFonts,...PhosphorFonts,...BenefitsCardsFonts,...AIKitPlayButtonFonts,...VideoFonts,...CourseCategoriesFonts,...TestimonialsCardsTestimonialCarouselCustomFonts,...PatternFonts,...GlobeFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5467\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jyqUeP3Ls\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fx8zUb3jh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "SVG", "css", "FramernqG0q1NJM", "withCSS", "nqG0q1NJM_default", "addFonts", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "cx", "ComponentViewportProvider", "Image2", "css", "FramerUU2T2e91p", "withCSS", "UU2T2e91p_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavMainNavBarFonts", "getFonts", "EDme_opHj_default", "ContainerWithFX", "withFX", "Container", "MotionDivWithFX", "motion", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonsMainGreenButtonFonts", "e2GbS75_6_default", "ContainerWithOptimizedAppearEffect", "ImagesSlieshowFonts", "UU2T2e91p_default", "MeteorFonts", "NQPEk3NPy_default", "ParticlesFonts", "e4qiH016o_default", "PhosphorFonts", "Icon", "BenefitsCardsFonts", "e5o4n9_Ho_default", "AIKitPlayButtonFonts", "nqG0q1NJM_default", "VideoFonts", "Video", "CourseCategoriesFonts", "tBp0PDZLO_default", "TestimonialsCardsTestimonialCarouselCustomFonts", "ZrRC6Bd5H_default", "ImageWithFX", "Image2", "PatternFonts", "Pattern", "GlobeFonts", "Globe", "FooterFonts", "BLNlMI3RI_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "animation7", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition5", "animation8", "transition6", "animation9", "transition7", "animation10", "transition8", "animation11", "transition9", "animation12", "transition10", "transition11", "transition12", "transition13", "transition14", "transition15", "transition16", "transition17", "getContainer", "animation13", "transition18", "animation14", "inertia", "preventDefault", "e", "animation15", "transition19", "animation16", "transition20", "animation17", "transition21", "transition22", "transition23", "transition24", "transition25", "transition26", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaptxyyif", "overlay", "loadMore", "args", "onTap3bnx0g", "onTap1wnntms", "DiwmQUii_txyyif", "scopingClassNames", "cx", "ref1", "pe", "ref2", "usePreloadLocalizedValues", "ref3", "ref4", "ref5", "ref6", "ref7", "ref8", "ref9", "ref10", "ref11", "ref12", "ref13", "ref14", "ref15", "ref16", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "l", "getLocalizedValue", "x", "AnimatePresence", "Floating", "getLoadingLazyAtYPosition", "overlay1", "Ga", "SVG", "overlay2", "overlay3", "overlay4", "overlay5", "overlay6", "overlay7", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
