{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/wUagwszOBoqitZLi0Kcr/p2hwaQqUN6r3mvL2CH4C/BbbHM6phd.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// 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[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,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||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Button from\"https://framerusercontent.com/modules/yVcUFHP2nP7o86b9RJlZ/GeqKtAmh9goXhxZOUgil/amRCTPdTF.js\";import NavigationNEW from\"#framer/local/canvasComponent/negQnKaUz/negQnKaUz.js\";import*as sharedStyle1 from\"#framer/local/css/htqHw00bf/htqHw00bf.js\";import*as sharedStyle from\"#framer/local/css/p9qDDwZqD/p9qDDwZqD.js\";import metadataProvider from\"#framer/local/webPageMetadata/BbbHM6phd/BbbHM6phd.js\";const NavigationNEWFonts=getFonts(NavigationNEW);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const FeatherFonts=getFonts(Feather);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const breakpoints={FDcHps31y:\"(min-width: 1440px)\",Gku0bMo0s:\"(min-width: 768px) and (max-width: 991px)\",KvwJZNv7b:\"(min-width: 992px) and (max-width: 1439px)\",LbYoZQ8Fv:\"(max-width: 767px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-t6Ejr\";const variantClassNames={FDcHps31y:\"framer-v-1chorao\",Gku0bMo0s:\"framer-v-sqqelg\",KvwJZNv7b:\"framer-v-xd0iwx\",LbYoZQ8Fv:\"framer-v-1ju80c\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:60,delay:0,mass:1,stiffness:350,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const transition2={damping:60,delay:.2,mass:1,stiffness:350,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:50};const transition3={damping:60,delay:.4,mass:1,stiffness:350,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:50};const transition4={damping:60,delay:.6,mass:1,stiffness:350,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:50};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};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 HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"FDcHps31y\",Laptop:\"KvwJZNv7b\",Phone:\"LbYoZQ8Fv\",Tablet:\"Gku0bMo0s\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FDcHps31y\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);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 onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"FDcHps31y\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1chorao\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14d38n6\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LbYoZQ8Fv:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1320px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1320px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yrsvx3-container\",nodeId:\"mDXebe5Oo\",scopeId:\"BbbHM6phd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gku0bMo0s:{variant:\"Kb9R8ShVV\"},LbYoZQ8Fv:{variant:\"Kb9R8ShVV\"}},children:/*#__PURE__*/_jsx(NavigationNEW,{height:\"100%\",id:\"mDXebe5Oo\",layoutId:\"mDXebe5Oo\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"SVZmbvsBu\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12hj4gs\",\"data-framer-name\":\" Hero Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hjag2o\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lk36qo\",\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ldbcvg\",\"data-framer-name\":\"Text content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t7dc6t\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gku0bMo0s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f3c1508e-13fd-445e-92d5-b83015015a44, rgb(8, 10, 71))\"},children:\"AI-Powered Platform for Personalized Tutoring\"})})},KvwJZNv7b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qxnr2d\",\"data-styles-preset\":\"p9qDDwZqD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f3c1508e-13fd-445e-92d5-b83015015a44, rgb(8, 10, 71))\"},children:\"AI-Powered Platform for Personalized Tutoring\"})}),fonts:[\"Inter\"]},LbYoZQ8Fv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f3c1508e-13fd-445e-92d5-b83015015a44, rgb(8, 10, 71))\"},children:\"AI-Powered Platform for Personalized Tutoring\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f3c1508e-13fd-445e-92d5-b83015015a44, rgb(8, 10, 71))\"},children:\"AI-Powered Platform for Personalized Tutoring\"})}),className:\"framer-1bdircy\",\"data-framer-name\":\"Point of sale & inventory management software\",fonts:[\"GF;Plus Jakarta Sans-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LbYoZQ8Fv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-x0fmvw\",\"data-styles-preset\":\"htqHw00bf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f3c1508e-13fd-445e-92d5-b83015015a44, rgb(8, 10, 71))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Deliver 1:1 learning at scale\u2014in minutes, not hours.\"}),\" StudySpaces helps tutors diagnose, assign, assess, and adapt learning - automating the hardest parts of personalized tutoring with AI-powered insights.\"]})}),fonts:[\"Inter\",\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:.8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f3c1508e-13fd-445e-92d5-b83015015a44, rgb(8, 10, 71))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Deliver 1:1 learning at scale\u2014in minutes, not hours.\"}),\" StudySpaces helps tutors diagnose, assign, assess, and adapt learning - automating the hardest parts of personalized tutoring with AI-powered insights.\"]})}),className:\"framer-1etszdh\",\"data-framer-name\":\"Turn your smartphone or tablet into a powerful POS. Manage sales, inventory with ease; engage customers & increase your revenue.\",fonts:[\"GF;Plus Jakarta Sans-regular\",\"GF;Plus Jakarta Sans-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5hd1nt\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kMOqondp5\"},implicitPathVariables:undefined},{href:{webPageId:\"kMOqondp5\"},implicitPathVariables:undefined},{href:{webPageId:\"kMOqondp5\"},implicitPathVariables:undefined},{href:{webPageId:\"kMOqondp5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12232qi-container\",isModuleExternal:true,nodeId:\"RG4rfu6Ux\",rendersWithMotion:true,scopeId:\"BbbHM6phd\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gku0bMo0s:{fzPQj5vxM:resolvedLinks[2]},KvwJZNv7b:{fzPQj5vxM:resolvedLinks[1]},LbYoZQ8Fv:{fzPQj5vxM:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{BlJNMfRrN:false,fzPQj5vxM:resolvedLinks[0],height:\"100%\",id:\"RG4rfu6Ux\",layoutId:\"RG4rfu6Ux\",pQL1TvLYQ:\"Reply\",qWQ35JEj6:\"For Test Prep\",variant:\"NcUvPco3S\",width:\"100%\",yWCCtolhs:\"phone\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"phSzcnB_X\"},implicitPathVariables:undefined},{href:{webPageId:\"phSzcnB_X\"},implicitPathVariables:undefined},{href:{webPageId:\"phSzcnB_X\"},implicitPathVariables:undefined},{href:{webPageId:\"phSzcnB_X\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yss3ap-container\",isModuleExternal:true,nodeId:\"RiC4v0V8W\",rendersWithMotion:true,scopeId:\"BbbHM6phd\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gku0bMo0s:{fzPQj5vxM:resolvedLinks1[2]},KvwJZNv7b:{fzPQj5vxM:resolvedLinks1[1]},LbYoZQ8Fv:{fzPQj5vxM:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Button,{BlJNMfRrN:false,fzPQj5vxM:resolvedLinks1[0],height:\"100%\",id:\"RiC4v0V8W\",layoutId:\"RiC4v0V8W\",pQL1TvLYQ:\"Reply\",qWQ35JEj6:\"For Tutoring\",variant:\"NcUvPco3S\",width:\"100%\",yWCCtolhs:\"phone\"})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gwbs7b\",\"data-framer-name\":\"Video button\",id:\"1gwbs7b\",onTap:onTap3bnx0g({overlay}),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1pwgiwt\"),\"data-framer-portal-id\":\"1gwbs7b\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"Cw_M6HfKf\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1h0urtt-container\"),\"data-framer-portal-id\":\"1gwbs7b\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UqijNrQCQ\",scopeId:\"BbbHM6phd\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-445e6a17-5d81-448c-bb59-55039561ecb7, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"UqijNrQCQ\",layoutId:\"UqijNrQCQ\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-2uaj2h-container\"),\"data-framer-portal-id\":\"1gwbs7b\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eHF34DWZD\",scopeId:\"BbbHM6phd\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"eHF34DWZD\",isMixedBorderRadius:false,isRed:true,layoutId:\"eHF34DWZD\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/smPos0mJvh8\",width:\"100%\"})})})]}),getContainer())})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tr2m2u\",\"data-framer-name\":\"Image & shapes\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gku0bMo0s:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1192,intrinsicWidth:2496,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+0+0+376.2+0),pixelHeight:1024,pixelWidth:1440,sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 720px)`,src:\"https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png\",srcSet:\"https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png 1440w\"}},KvwJZNv7b:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1192,intrinsicWidth:2496,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+90+0+0+0+0+354.6+0),pixelHeight:1024,pixelWidth:1440,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1000px) * 0.9464)`,src:\"https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png\",srcSet:\"https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png 1440w\"}},LbYoZQ8Fv:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1192,intrinsicWidth:2496,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+60+0+0+0+0+425.4+0),pixelHeight:1024,pixelWidth:1440,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png\",srcSet:\"https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png 1440w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1.2,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:30,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1192,intrinsicWidth:2496,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+64+0+0+0+0+399.2+0),pixelHeight:1024,pixelWidth:1440,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1320px) * 0.9455)`,src:\"https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png\",srcSet:\"https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SuiVdzQ6BmU08OLu2GaJRDYk.png 1440w\"},className:\"framer-zb11ni\",\"data-framer-name\":\"Dash board\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1is0uc7\",\"data-framer-name\":\"circle one\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5f2tby\",\"data-framer-name\":\"circle two\"})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vjai05\",\"data-framer-name\":\"Brand-Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-b57hcd\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a6wqpl\",\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LbYoZQ8Fv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x0fmvw\",\"data-styles-preset\":\"htqHw00bf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f3c1508e-13fd-445e-92d5-b83015015a44, rgb(8, 10, 71))\"},children:\"Trusted by Leading Tutoring and Education Companies\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f3c1508e-13fd-445e-92d5-b83015015a44, rgb(8, 10, 71))\"},children:\"Trusted by Leading Tutoring and Education Companies\"})}),className:\"framer-bhlggb\",\"data-framer-name\":\"Turn your smartphone or tablet into a powerful POS. Manage sales, inventory with ease; engage customers & increase your revenue.\",fonts:[\"GF;Plus Jakarta Sans-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4d8iyz-container\",isModuleExternal:true,nodeId:\"Qy0BZ1vpt\",scopeId:\"BbbHM6phd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gku0bMo0s:{sizingOptions:{heightType:false,widthType:false}},KvwJZNv7b:{gap:65,sizingOptions:{heightType:false,widthType:false}},LbYoZQ8Fv:{gap:51,sizingOptions:{heightType:false,widthType:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:1,id:\"Qy0BZ1vpt\",layoutId:\"Qy0BZ1vpt\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:136,intrinsicWidth:256,pixelHeight:272,pixelWidth:512,src:\"https://framerusercontent.com/images/P6kJBrfxoXmzCZsYiOOPbiUXU.png\"},className:\"framer-1yui73f\",\"data-framer-name\":\"PASSProgram StudySpaces\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:57,intrinsicWidth:347,pixelHeight:114,pixelWidth:694,sizes:\"319px\",src:\"https://framerusercontent.com/images/mIFur2finJhjkyZEUGHTANu9UAc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mIFur2finJhjkyZEUGHTANu9UAc.png?scale-down-to=512 512w,https://framerusercontent.com/images/mIFur2finJhjkyZEUGHTANu9UAc.png 694w\"},className:\"framer-n7wvnx\",\"data-framer-name\":\"AdmissionHelpers StudySpaces\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116,intrinsicWidth:750,pixelHeight:232,pixelWidth:1500,sizes:\"321px\",src:\"https://framerusercontent.com/images/7PWs3biAENixKKOubOwFavRKPw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7PWs3biAENixKKOubOwFavRKPw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7PWs3biAENixKKOubOwFavRKPw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7PWs3biAENixKKOubOwFavRKPw.png 1500w\"},className:\"framer-p3z2ka\",\"data-framer-name\":\"MedBoardTutors StudySpaces\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:284.5,pixelHeight:200,pixelWidth:569,sizes:\"319px\",src:\"https://framerusercontent.com/images/Zfqm1IwVJfda1xJsmXTd2812Fo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Zfqm1IwVJfda1xJsmXTd2812Fo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Zfqm1IwVJfda1xJsmXTd2812Fo.png 569w\"},className:\"framer-1s66ueo\",\"data-framer-name\":\"SmartyPANCE StudySpaces\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:71,intrinsicWidth:254,pixelHeight:142,pixelWidth:508,src:\"https://framerusercontent.com/images/RTSU53CVPw36x0JEGt93arIq7ZA.png\"},className:\"framer-iscp7j\",\"data-framer-name\":\"Screenshot 2025-04-29 at 3.06.14\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:214.5,pixelHeight:96,pixelWidth:429,src:\"https://framerusercontent.com/images/s5NEaOYRJjH9PPg1DtKzv04S5Q.png\"},className:\"framer-10qwqnn\",\"data-framer-name\":\"Wolfpacc StudySpaces\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:104,intrinsicWidth:480,pixelHeight:208,pixelWidth:960,sizes:\"319px\",src:\"https://framerusercontent.com/images/RMwSmq9SW0PLomWzHH1iQwL5zJw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RMwSmq9SW0PLomWzHH1iQwL5zJw.png?scale-down-to=512 512w,https://framerusercontent.com/images/RMwSmq9SW0PLomWzHH1iQwL5zJw.png 960w\"},className:\"framer-a4t4om\",\"data-framer-name\":\"Screenshot 2025-04-29 at 3.08.38\\xe2\\x80\\xafPM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:134,intrinsicWidth:321,pixelHeight:268,pixelWidth:642,sizes:\"321px\",src:\"https://framerusercontent.com/images/3uefV13zY6KW6reQ2HIEGoAdfSg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/3uefV13zY6KW6reQ2HIEGoAdfSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/3uefV13zY6KW6reQ2HIEGoAdfSg.png 642w\"},className:\"framer-1jx5rtc\",\"data-framer-name\":\"Screenshot 2025-04-29 at 3.07.37\\xe2\\x80\\xafPM\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t6Ejr.framer-1doi8n6, .framer-t6Ejr .framer-1doi8n6 { display: block; }\",\".framer-t6Ejr.framer-1chorao { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-t6Ejr .framer-14d38n6 { 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 30px 0px 30px; position: relative; width: 100%; z-index: 10; }\",\".framer-t6Ejr .framer-yrsvx3-container { flex: 1 0 0px; height: auto; max-width: 1320px; position: relative; width: 1px; }\",\".framer-t6Ejr .framer-12hj4gs { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-t6Ejr .framer-hjag2o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t6Ejr .framer-1lk36qo { 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: 0px; position: relative; width: 100%; }\",\".framer-t6Ejr .framer-1ldbcvg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t6Ejr .framer-t7dc6t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t6Ejr .framer-1bdircy, .framer-t6Ejr .framer-bhlggb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-t6Ejr .framer-1etszdh { flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-t6Ejr .framer-5hd1nt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t6Ejr .framer-12232qi-container, .framer-t6Ejr .framer-yss3ap-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-t6Ejr .framer-1gwbs7b { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t6Ejr.framer-1pwgiwt { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-t6Ejr.framer-1h0urtt-container { flex: none; height: 35px; left: calc(50.00000000000002% - 35px / 2); position: fixed; top: 69px; width: 35px; z-index: 10; }\",\".framer-t6Ejr.framer-2uaj2h-container { flex: none; height: 471px; left: calc(50.00000000000002% - 893px / 2); position: fixed; top: calc(50.00000000000002% - 471px / 2); width: 893px; z-index: 10; }\",\".framer-t6Ejr .framer-1tr2m2u { 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: 100%; }\",\".framer-t6Ejr .framer-zb11ni { aspect-ratio: 2.0939597315436242 / 1; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 596px); overflow: visible; position: relative; width: 95%; z-index: 1; }\",\".framer-t6Ejr .framer-1is0uc7 { -webkit-filter: blur(123.13432312011719px); background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #45c9c1 39.0625%, rgba(69, 201, 193, 0) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 161px; filter: blur(123.13432312011719px); flex: none; height: 550px; left: -60px; position: absolute; width: 550px; z-index: 0; }\",\".framer-t6Ejr .framer-5f2tby { -webkit-filter: blur(130.74627685546875px); background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, #f480d4 39.0625%, rgba(244, 128, 212, 0) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -440px; filter: blur(130.74627685546875px); flex: none; height: 584px; position: absolute; right: -46px; width: 584px; z-index: 0; }\",\".framer-t6Ejr .framer-vjai05 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 40px 48px 40px; position: relative; width: 100%; }\",\".framer-t6Ejr .framer-b57hcd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-t6Ejr .framer-1a6wqpl { 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: 0px; position: relative; width: 100%; }\",\".framer-t6Ejr .framer-4d8iyz-container { flex: none; height: 168px; position: relative; width: 1317px; }\",\".framer-t6Ejr .framer-1yui73f { aspect-ratio: 1.8823529411764706 / 1; height: var(--framer-aspect-ratio-supported, 74px); overflow: visible; position: relative; width: 139px; }\",\".framer-t6Ejr .framer-n7wvnx { aspect-ratio: 6.087719298245614 / 1; height: var(--framer-aspect-ratio-supported, 53px); overflow: visible; position: relative; width: 319px; }\",\".framer-t6Ejr .framer-p3z2ka { aspect-ratio: 6.4655172413793105 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 321px; }\",\".framer-t6Ejr .framer-1s66ueo { aspect-ratio: 2.845 / 1; height: var(--framer-aspect-ratio-supported, 112px); overflow: visible; position: relative; width: 319px; }\",\".framer-t6Ejr .framer-iscp7j { aspect-ratio: 3.5774647887323945 / 1; height: var(--framer-aspect-ratio-supported, 89px); overflow: visible; position: relative; width: 319px; }\",\".framer-t6Ejr .framer-10qwqnn { aspect-ratio: 4.46875 / 1; height: var(--framer-aspect-ratio-supported, 72px); overflow: visible; position: relative; width: 319px; }\",\".framer-t6Ejr .framer-a4t4om { aspect-ratio: 4.615384615384615 / 1; height: var(--framer-aspect-ratio-supported, 69px); overflow: visible; position: relative; width: 319px; }\",\".framer-t6Ejr .framer-1jx5rtc { aspect-ratio: 2.3955223880597014 / 1; height: var(--framer-aspect-ratio-supported, 134px); overflow: visible; position: relative; width: 321px; }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 992px) and (max-width: 1439px) { .framer-t6Ejr.framer-1chorao { width: 992px; } .framer-t6Ejr .framer-12hj4gs { padding: 90px 30px 0px 30px; } .framer-t6Ejr .framer-hjag2o, .framer-t6Ejr .framer-b57hcd { max-width: 1000px; } .framer-t6Ejr .framer-1etszdh, .framer-t6Ejr .framer-bhlggb { width: 78%; } .framer-t6Ejr .framer-zb11ni { height: var(--framer-aspect-ratio-supported, 421px); order: 0; width: 95%; } .framer-t6Ejr .framer-1is0uc7 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 326px); width: 35%; } .framer-t6Ejr .framer-5f2tby { aspect-ratio: 1 / 1; bottom: -113px; height: var(--framer-aspect-ratio-supported, 326px); right: -73px; width: 35%; } .framer-t6Ejr .framer-vjai05 { padding: 30px 40px 30px 40px; } .framer-t6Ejr .framer-1a6wqpl { gap: 21px; } .framer-t6Ejr .framer-4d8iyz-container { height: 62px; width: 916px; }}\",\"@media (min-width: 768px) and (max-width: 991px) { .framer-t6Ejr.framer-1chorao { width: 768px; } .framer-t6Ejr .framer-12hj4gs { padding: 80px 30px 0px 30px; } .framer-t6Ejr .framer-hjag2o, .framer-t6Ejr .framer-b57hcd { max-width: 720px; } .framer-t6Ejr .framer-1bdircy { width: 81%; } .framer-t6Ejr .framer-1etszdh, .framer-t6Ejr .framer-bhlggb { width: 100%; } .framer-t6Ejr.framer-1h0urtt-container { top: 167px; } .framer-t6Ejr.framer-2uaj2h-container { height: 337px; left: calc(50.00000000000002% - 595px / 2); top: calc(50.00000000000002% - 337px / 2); width: 595px; } .framer-t6Ejr .framer-zb11ni { height: var(--framer-aspect-ratio-supported, 338px); order: 0; width: 100%; } .framer-t6Ejr .framer-1is0uc7 { aspect-ratio: 1 / 1; bottom: 190px; height: var(--framer-aspect-ratio-supported, 213px); left: -71px; width: 30%; } .framer-t6Ejr .framer-5f2tby { aspect-ratio: 1 / 1; bottom: -44px; height: var(--framer-aspect-ratio-supported, 213px); right: -60px; width: 30%; } .framer-t6Ejr .framer-vjai05 { padding: 21px 40px 21px 40px; } .framer-t6Ejr .framer-1a6wqpl { gap: 13px; } .framer-t6Ejr .framer-4d8iyz-container { height: 58px; width: 684px; }}\",\"@media (max-width: 767px) { .framer-t6Ejr.framer-1chorao { width: 390px; } .framer-t6Ejr .framer-14d38n6 { padding: 0px 20px 0px 20px; } .framer-t6Ejr .framer-12hj4gs { background-color: unset; padding: 60px 20px 0px 20px; } .framer-t6Ejr .framer-hjag2o, .framer-t6Ejr .framer-b57hcd { max-width: unset; } .framer-t6Ejr .framer-1lk36qo { gap: 35px; } .framer-t6Ejr .framer-1ldbcvg { gap: 30px; order: 0; } .framer-t6Ejr .framer-1bdircy, .framer-t6Ejr .framer-1etszdh, .framer-t6Ejr .framer-bhlggb { width: 100%; } .framer-t6Ejr .framer-5hd1nt { flex-direction: column; gap: 25px; } .framer-t6Ejr.framer-1h0urtt-container { top: 203px; } .framer-t6Ejr.framer-2uaj2h-container { height: 174px; left: calc(50.00000000000002% - 322px / 2); top: calc(50.00000000000002% - 174px / 2); width: 322px; } .framer-t6Ejr .framer-1tr2m2u { order: 1; } .framer-t6Ejr .framer-zb11ni { border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 167px); order: 0; width: 100%; } .framer-t6Ejr .framer-1is0uc7 { aspect-ratio: 1 / 1; bottom: 158px; height: var(--framer-aspect-ratio-supported, 88px); left: -11px; order: 2; width: 25%; z-index: 1; } .framer-t6Ejr .framer-5f2tby { aspect-ratio: 1 / 1; bottom: 0px; height: var(--framer-aspect-ratio-supported, 87px); order: 3; right: -20px; width: 25%; } .framer-t6Ejr .framer-vjai05 { padding: 32px 20px 32px 20px; } .framer-t6Ejr .framer-1a6wqpl { gap: 29px; } .framer-t6Ejr .framer-4d8iyz-container { height: 53px; width: 346px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1440\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KvwJZNv7b\":{\"layout\":[\"fixed\",\"auto\"]},\"Gku0bMo0s\":{\"layout\":[\"fixed\",\"auto\"]},\"LbYoZQ8Fv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerBbbHM6phd=withCSS(Component,css,\"framer-t6Ejr\");export default FramerBbbHM6phd;FramerBbbHM6phd.displayName=\"Home2\";FramerBbbHM6phd.defaultProps={height:1440,width:1440};addFonts(FramerBbbHM6phd,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavigationNEWFonts,...ButtonFonts,...FeatherFonts,...YouTubeFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBbbHM6phd\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KvwJZNv7b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gku0bMo0s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LbYoZQ8Fv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "NavigationNEWFonts", "getFonts", "negQnKaUz_default", "RichTextWithFX", "withFX", "RichText2", "ButtonFonts", "amRCTPdTF_default", "ContainerWithFX", "Container", "FeatherFonts", "Icon", "YouTubeFonts", "Youtube", "MotionDivWithFX", "motion", "ImageWithFX", "Image2", "TickerFonts", "Ticker", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onClick1wnntms", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "negQnKaUz_default", "x", "RichTextWithFX", "ResolveLinks", "resolvedLinks", "ContainerWithFX", "amRCTPdTF_default", "resolvedLinks1", "l", "MotionDivWithFX", "AnimatePresence", "Ga", "Icon", "Youtube", "getLoadingLazyAtYPosition", "ImageWithFX", "Ticker", "Image2", "css", "FramerBbbHM6phd", "withCSS", "BbbHM6phd_default", "addFonts", "NavigationNEWFonts", "ButtonFonts", "FeatherFonts", "YouTubeFonts", "TickerFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
