{"version":3,"file":"K-GyKqln4gdmFcOO4FSE5G-1oaEjqhdWuRAnStdhEmQ.CcJ-KIy0.mjs","names":["size","placeholderStyles","emojiStyles","titleStyles","subtitleStyles","containerStyle","clamp","isBrowser","current","placeholderStyles","emojiStyles","titleStyles","subtitleStyles","dotStyle","Component","getProps","ObjectFitType","SrcType","fonts","css","className","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","transition2","animation","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","RichText","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","RichText","Image","css","variationAxes","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","Image","className","css","animate","addPropertyOverrides","ClipboardFonts","AnimatorFonts","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","RichText","css","variationAxes","serializationHash","variantClassNames","transition1","humanReadableVariantMap","getProps","Component","className","css","Component","animate","animation","Logo","Copy","Button","Badge","CopyPaste","IconJS","IconReact","IconVue","HomeExit","Image","HomeLayout","CTA","DBook","ButtonInfo","Typewriter","BlurGradient","Slide","DocsQuickStartMenu","metadata","className","PropertyOverrides","RichText","_Fragment","css"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js","https:/framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js","https:/framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js","https:/framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js","https:/framerusercontent.com/modules/EMH1jzfsP258NLtZAeHn/STxzdQWQSssFoMgdXNVy/sSxg187SX.js","https:/framerusercontent.com/modules/pY288sSmGGOk1iGCDxbj/DQiWWVL1HwtswxZDXf55/BcfvSSGww.js","https:/framerusercontent.com/modules/WtOJ94p9qIUN6OlQZDth/wBIGGQuFP0EcIX01egLG/f4Cf1Hiye.js","https:/framerusercontent.com/modules/1EZ4GQkP73421XzlHF4C/gMzm5vLgK3fywpSCyWGS/gLcHCDWIb.js","https:/framerusercontent.com/modules/4FSS5COIhnvd1XBJw8rv/2aDWYMu9KuwWRRRG0pdH/kOxgpZL55.js","https:/framerusercontent.com/modules/gW8fpgW2zbMzj4J59hlh/I6VKTtx6KuDzycKLAA2f/MmDA8iBoR.js","https:/framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js","https:/framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js","https:/framerusercontent.com/modules/mtpYBhlFaDnNOaff0YRh/JXqGGtpvF7vnyrK65R9M/QHVbA2UDp.js","https:/framerusercontent.com/modules/Gy88rZy8qRahKwu3Pphk/YcVLlEQX7aAuaPwjCs5u/XyT9HMQcf.js","https:/framerusercontent.com/modules/HFEAliJlRe1LCbaxxpLT/fEcxQVAJVY2AtcH0eEwI/Home2025.js","https:/framerusercontent.com/modules/xzns7yGMItVsusGQlyYJ/7KyRHCS6V34FGPWm8ZE2/augiA20Il.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:\"✨\"}),/*#__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","import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"⭐️\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0—1—2—3—4—5—0 */let isSelected=wrappedIndex===index;/* Go 0—5—4—3—2—1—0—5 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map","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 “Play”.\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 – if we’re 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’t 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’s because\n// `startTime` == start == changing it shouldn’t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn’t exist,\n// you might ask? Now, that’s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the “Start Time” in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don’t know, and it\n//   always supported it, so let’s 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 (11394f1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-tVebj .framer-styles-preset-pszpck:not(.rich-text-wrapper), .framer-tVebj .framer-styles-preset-pszpck.rich-text-wrapper a { --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: rgba(255, 255, 255, 0.7); --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }\"];export const className=\"framer-tVebj\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (e6b7ce8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9mOTdsswxC2gA5Ec2bhx/wJJw7WyuS7vPwdXG4hcG/OCes52Yrx.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/66LcDfbtRAJhpzCr5NGg/7pevxJuEtfIcQI53C0qb/PSqZE1cmW.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/EMH1jzfsP258NLtZAeHn/STxzdQWQSssFoMgdXNVy/sSxg187SX.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"Tfg1b7fdQ\",\"yMfiUXSrX\"];const serializationHash=\"framer-Tgdf0\";const variantClassNames={Tfg1b7fdQ:\"framer-v-mpamoh\",yMfiUXSrX:\"framer-v-1c61zgb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Paused:\"Tfg1b7fdQ\",Playing:\"yMfiUXSrX\"};const getProps=({author,color,effect,effectLink,height,id,info,padding,poster,projectName,source,video,width,...props})=>{return{...props,CEpl2BMFI:projectName??props.CEpl2BMFI,fs1lL4sTQ:padding??props.fs1lL4sTQ??\"20px\",McY8ZKS7c:video??props.McY8ZKS7c,qpAAIMxM6:effect??props.qpAAIMxM6??\"<AnimateNumber />\",SMV95qjJC:info??props.SMV95qjJC??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"Tfg1b7fdQ\",VhY7lSL5d:author??props.VhY7lSL5d??\"Matt Perry\",X9J1svZU4:color??props.X9J1svZU4??\"rgb(38, 38, 38)\",XnQyKr1HU:poster??props.XnQyKr1HU,Yz4Ry4eLn:source??props.Yz4Ry4eLn,z7xcMQZbz:effectLink??props.z7xcMQZbz};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,X9J1svZU4,SMV95qjJC,VhY7lSL5d,Yz4Ry4eLn,qpAAIMxM6,z7xcMQZbz,McY8ZKS7c,XnQyKr1HU,CEpl2BMFI,fs1lL4sTQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Tfg1b7fdQ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(CEpl2BMFI);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-mpamoh\",className,classNames),\"data-framer-name\":\"Paused\",layoutDependency:layoutDependency,layoutId:\"Tfg1b7fdQ\",ref:refBinding,style:{\"--bb36bw\":numberToPixelString(fs1lL4sTQ),backgroundColor:X9J1svZU4,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,...style},...addPropertyOverrides({yMfiUXSrX:{\"data-framer-name\":\"Playing\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:Yz4Ry4eLn,motionChild:true,nodeId:\"xw91gbXX0\",scopeId:\"BcfvSSGww\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-w9kvm7 framer-1cy7qqz\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"xw91gbXX0\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-4a83ba8a-e6b8-4e13-a0b8-09417ff42ae4, rgba(255, 255, 255, 0.06))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.2)\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14},whileHover:animation,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ktk0c1-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kSbFs9qrW-container\",nodeId:\"kSbFs9qrW\",rendersWithMotion:true,scopeId:\"BcfvSSGww\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(15, 17, 21, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"kSbFs9qrW\",isMixedBorderRadius:false,layoutId:\"kSbFs9qrW\",loop:true,muted:true,objectFit:\"cover\",playing:false,poster:toImageSrc(XnQyKr1HU),posterEnabled:true,srcFile:McY8ZKS7c,srcType:\"Upload\",srcUrl:\"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%\",...addPropertyOverrides({yMfiUXSrX:{playing:true}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14theck\",\"data-framer-name\":\"Pointer\",layoutDependency:layoutDependency,layoutId:\"c7HUoK4e3\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"}})]})}),SMV95qjJC&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-msd8xj\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"uSNcBssgE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iy1sje\",layoutDependency:layoutDependency,layoutId:\"sES9KkdvY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Matt Perry\"})}),className:\"framer-1sc0fzl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jH9peCkGD\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:VhY7lSL5d,verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ipl9mu\",layoutDependency:layoutDependency,layoutId:\"f6j1_h7eI\",style:{opacity:.7},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qh0zyq\",layoutDependency:layoutDependency,layoutId:\"Kg73PPQQV\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Matt Perry\"})}),className:\"framer-1kkw7p3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ABM7_H__T\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:CEpl2BMFI,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",children:/*#__PURE__*/_jsx(motion.code,{className:\"framer-styles-preset-1x44pam\",\"data-styles-preset\":\"PSqZE1cmW\",children:/*#__PURE__*/_jsx(Link,{href:z7xcMQZbz,motionChild:true,nodeId:\"uunCWA8MK\",openInNewTab:false,scopeId:\"BcfvSSGww\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-pszpck\",\"data-styles-preset\":\"sSxg187SX\",children:\"<AnimateNumber />\"})})})})}),className:\"framer-4lq95v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uunCWA8MK\",text:qpAAIMxM6,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Tgdf0.framer-1cy7qqz, .framer-Tgdf0 .framer-1cy7qqz { display: block; }\",\".framer-Tgdf0.framer-mpamoh { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: var(--bb36bw); position: relative; width: 708px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Tgdf0 .framer-w9kvm7 { align-content: center; align-items: center; aspect-ratio: 1.4334763948497855 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 466px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Tgdf0 .framer-1ktk0c1-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-Tgdf0 .framer-14theck { cursor: pointer; flex: none; height: 100%; left: calc(50.00000000000002% - 101.34730538922156% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 101%; z-index: 1; }\",\".framer-Tgdf0 .framer-msd8xj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Tgdf0 .framer-iy1sje, .framer-Tgdf0 .framer-ipl9mu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Tgdf0 .framer-1sc0fzl, .framer-Tgdf0 .framer-1kkw7p3, .framer-Tgdf0 .framer-4lq95v { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-Tgdf0 .framer-qh0zyq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); overflow: hidden; position: relative; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Tgdf0.framer-mpamoh, .framer-Tgdf0 .framer-w9kvm7, .framer-Tgdf0 .framer-iy1sje, .framer-Tgdf0 .framer-ipl9mu { gap: 0px; } .framer-Tgdf0.framer-mpamoh > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-Tgdf0.framer-mpamoh > :first-child { margin-top: 0px; } .framer-Tgdf0.framer-mpamoh > :last-child { margin-bottom: 0px; } .framer-Tgdf0 .framer-w9kvm7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Tgdf0 .framer-w9kvm7 > :first-child, .framer-Tgdf0 .framer-iy1sje > :first-child, .framer-Tgdf0 .framer-ipl9mu > :first-child { margin-left: 0px; } .framer-Tgdf0 .framer-w9kvm7 > :last-child, .framer-Tgdf0 .framer-iy1sje > :last-child, .framer-Tgdf0 .framer-ipl9mu > :last-child { margin-right: 0px; } .framer-Tgdf0 .framer-iy1sje > *, .framer-Tgdf0 .framer-ipl9mu > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-Tgdf0[data-border=\"true\"]::after, .framer-Tgdf0 [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 545\n * @framerIntrinsicWidth 708\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yMfiUXSrX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"X9J1svZU4\":\"color\",\"SMV95qjJC\":\"info\",\"VhY7lSL5d\":\"author\",\"Yz4Ry4eLn\":\"source\",\"qpAAIMxM6\":\"effect\",\"z7xcMQZbz\":\"effectLink\",\"McY8ZKS7c\":\"video\",\"XnQyKr1HU\":\"poster\",\"CEpl2BMFI\":\"projectName\",\"fs1lL4sTQ\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBcfvSSGww=withCSS(Component,css,\"framer-Tgdf0\");export default FramerBcfvSSGww;FramerBcfvSSGww.displayName=\"2025/Slide\";FramerBcfvSSGww.defaultProps={height:545,width:708};addPropertyControls(FramerBcfvSSGww,{variant:{options:[\"Tfg1b7fdQ\",\"yMfiUXSrX\"],optionTitles:[\"Paused\",\"Playing\"],title:\"Variant\",type:ControlType.Enum},X9J1svZU4:{defaultValue:\"rgb(38, 38, 38)\",title:\"Color\",type:ControlType.Color},SMV95qjJC:{defaultValue:true,title:\"Info\",type:ControlType.Boolean},VhY7lSL5d:{defaultValue:\"Matt Perry\",displayTextArea:false,title:\"Author\",type:ControlType.String},Yz4Ry4eLn:{title:\"Source\",type:ControlType.Link},qpAAIMxM6:{defaultValue:\"<AnimateNumber />\",displayTextArea:false,title:\"Effect\",type:ControlType.String},z7xcMQZbz:{title:\"Effect Link\",type:ControlType.Link},McY8ZKS7c:VideoControls?.[\"srcFile\"]&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"Video\"},XnQyKr1HU:{title:\"Poster\",type:ControlType.ResponsiveImage},CEpl2BMFI:{defaultValue:\"\",description:\"Not required\",displayTextArea:false,placeholder:\"Figma Community\",title:\"Project name\",type:ControlType.String},fs1lL4sTQ:{defaultValue:\"20px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerBcfvSSGww,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBcfvSSGww\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"708\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"545\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"X9J1svZU4\\\":\\\"color\\\",\\\"SMV95qjJC\\\":\\\"info\\\",\\\"VhY7lSL5d\\\":\\\"author\\\",\\\"Yz4Ry4eLn\\\":\\\"source\\\",\\\"qpAAIMxM6\\\":\\\"effect\\\",\\\"z7xcMQZbz\\\":\\\"effectLink\\\",\\\"McY8ZKS7c\\\":\\\"video\\\",\\\"XnQyKr1HU\\\":\\\"poster\\\",\\\"CEpl2BMFI\\\":\\\"projectName\\\",\\\"fs1lL4sTQ\\\":\\\"padding\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yMfiUXSrX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (033131b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"g4d6SykVy\",\"BOWkGejs0\",\"dDXBxuwlJ\",\"zd5Ru5ZIp\",\"Uwbx5C9Na\"];const serializationHash=\"framer-uYxR1\";const variantClassNames={BOWkGejs0:\"framer-v-16ldgew\",dDXBxuwlJ:\"framer-v-q0p2nf\",g4d6SykVy:\"framer-v-1pqhry6\",Uwbx5C9Na:\"framer-v-p76j4m\",zd5Ru5ZIp:\"framer-v-1vdopto\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.12,.42,.15,.98],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"BOWkGejs0\",\"Variant 3\":\"dDXBxuwlJ\",\"Variant 4\":\"zd5Ru5ZIp\",\"Variant 5\":\"Uwbx5C9Na\",Base:\"g4d6SykVy\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"g4d6SykVy\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"g4d6SykVy\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap3r32ts=activeVariantCallback(async(...args)=>{setVariant(\"BOWkGejs0\");});const onTap1unfm8p=activeVariantCallback(async(...args)=>{setVariant(\"g4d6SykVy\");});const onTap16m13dg=activeVariantCallback(async(...args)=>{setVariant(\"dDXBxuwlJ\");});const onTap1j8hbqo=activeVariantCallback(async(...args)=>{setVariant(\"zd5Ru5ZIp\");});const onTap1cs3oxc=activeVariantCallback(async(...args)=>{setVariant(\"Uwbx5C9Na\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pqhry6\",className,classNames),\"data-framer-name\":\"Base\",layoutDependency:layoutDependency,layoutId:\"g4d6SykVy\",ref:refBinding,style:{...style},...addPropertyOverrides({BOWkGejs0:{\"data-framer-name\":\"Variant 2\"},dDXBxuwlJ:{\"data-framer-name\":\"Variant 3\"},Uwbx5C9Na:{\"data-framer-name\":\"Variant 5\"},zd5Ru5ZIp:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4w4sr1\",\"data-framer-name\":\"1 Container\",layoutDependency:layoutDependency,layoutId:\"f4GQoIDKg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i0sqko\",\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xonbfzO0d\",onTap:onTap3r32ts,style:{backgroundColor:\"rgb(30, 30, 30)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.35)\",opacity:1,originX:1,originY:0},variants:{dDXBxuwlJ:{opacity:.2},Uwbx5C9Na:{opacity:.2},zd5Ru5ZIp:{opacity:.2}},...addPropertyOverrides({BOWkGejs0:{onTap:onTap1unfm8p}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7k1i50\",layoutDependency:layoutDependency,layoutId:\"zFKFfcnrn\",style:{backgroundColor:\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,originX:0,originY:0}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bpx3c4\",layoutDependency:layoutDependency,layoutId:\"H62XSRccb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yousvt\",layoutDependency:layoutDependency,layoutId:\"tCU7pBlQd\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n3ra00\",layoutDependency:layoutDependency,layoutId:\"xBXsI0yiK\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7pxcv0\",layoutDependency:layoutDependency,layoutId:\"GAhNPbCle\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x72aoa\",\"data-framer-name\":\"2 Container\",layoutDependency:layoutDependency,layoutId:\"Ia4OP5UqB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fjv5nf\",\"data-framer-name\":\"2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mu9LwikBj\",onTap:onTap16m13dg,style:{backgroundColor:\"rgb(30, 30, 30)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.35)\",opacity:1,originX:1,originY:0},variants:{BOWkGejs0:{opacity:.2},dDXBxuwlJ:{opacity:1},Uwbx5C9Na:{opacity:.2},zd5Ru5ZIp:{opacity:.2}},...addPropertyOverrides({dDXBxuwlJ:{onTap:onTap1unfm8p}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gf08d\",layoutDependency:layoutDependency,layoutId:\"NHbYJNqd1\",style:{backgroundColor:\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,originX:0,originY:0}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h0jorq\",layoutDependency:layoutDependency,layoutId:\"YYh0dzZvR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yoaw3l\",layoutDependency:layoutDependency,layoutId:\"ICjw1K4aE\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1948u79\",layoutDependency:layoutDependency,layoutId:\"mt4bbaDLt\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ymkqr\",layoutDependency:layoutDependency,layoutId:\"IeAfiUB9s\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yakbex\",\"data-framer-name\":\"3 Container\",layoutDependency:layoutDependency,layoutId:\"icmUChFrB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1877ukh\",\"data-framer-name\":\"3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"e6mMXNGXz\",onTap:onTap1j8hbqo,style:{backgroundColor:\"rgb(30, 30, 30)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.35)\",opacity:1,originX:1,originY:0},variants:{BOWkGejs0:{opacity:.2},dDXBxuwlJ:{opacity:.2},Uwbx5C9Na:{opacity:.2},zd5Ru5ZIp:{opacity:1}},...addPropertyOverrides({zd5Ru5ZIp:{onTap:onTap1unfm8p}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16wiwu8\",layoutDependency:layoutDependency,layoutId:\"AQOnDPFip\",style:{backgroundColor:\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,originX:0,originY:0}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5sideo\",layoutDependency:layoutDependency,layoutId:\"gw1io4tl9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-237olf\",layoutDependency:layoutDependency,layoutId:\"xzXbo21Rz\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vtd5vb\",layoutDependency:layoutDependency,layoutId:\"Ts4Gm5T_X\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y0nw27\",layoutDependency:layoutDependency,layoutId:\"S9g5mGSUJ\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y1d416\",\"data-framer-name\":\"4 Container\",layoutDependency:layoutDependency,layoutId:\"hjWrZ2dWd\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-198eceq\",\"data-framer-name\":\"4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"EQGVYEXDA\",onTap:onTap1cs3oxc,style:{backgroundColor:\"rgb(30, 30, 30)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.35)\",opacity:1,originX:1,originY:0},variants:{BOWkGejs0:{opacity:.2},dDXBxuwlJ:{opacity:.2},Uwbx5C9Na:{opacity:1},zd5Ru5ZIp:{opacity:.2}},...addPropertyOverrides({Uwbx5C9Na:{onTap:onTap1unfm8p}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jl7ovr\",layoutDependency:layoutDependency,layoutId:\"UAdoVKKuG\",style:{backgroundColor:\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,originX:0,originY:0}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lymwff\",layoutDependency:layoutDependency,layoutId:\"lcNtrfGoz\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-84xyk0\",layoutDependency:layoutDependency,layoutId:\"HAGiYcv7Q\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-133oqlj\",layoutDependency:layoutDependency,layoutId:\"g8aTkZsV6\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c086uw\",layoutDependency:layoutDependency,layoutId:\"S4AXJx92e\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uYxR1.framer-39u1u5, .framer-uYxR1 .framer-39u1u5 { display: block; }\",\".framer-uYxR1.framer-1pqhry6 { display: grid; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 380px; justify-content: center; max-height: 380px; overflow: visible; padding: 0px; position: relative; width: 415px; }\",\".framer-uYxR1 .framer-4w4sr1 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uYxR1 .framer-i0sqko { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 185px; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-7k1i50, .framer-uYxR1 .framer-gf08d, .framer-uYxR1 .framer-16wiwu8, .framer-uYxR1 .framer-1jl7ovr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-uYxR1 .framer-1bpx3c4, .framer-uYxR1 .framer-h0jorq, .framer-uYxR1 .framer-5sideo, .framer-uYxR1 .framer-lymwff { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uYxR1 .framer-1yousvt, .framer-uYxR1 .framer-vtd5vb { flex: none; height: 10px; overflow: hidden; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-n3ra00 { flex: none; height: 10px; overflow: hidden; position: relative; width: 73%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-7pxcv0 { flex: none; height: 10px; overflow: hidden; position: relative; width: 58%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-x72aoa, .framer-uYxR1 .framer-yakbex, .framer-uYxR1 .framer-y1d416 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uYxR1 .framer-1fjv5nf, .framer-uYxR1 .framer-1877ukh, .framer-uYxR1 .framer-198eceq { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 185px; justify-content: space-between; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-1yoaw3l { flex: none; height: 10px; overflow: hidden; position: relative; width: 66%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-1948u79, .framer-uYxR1 .framer-1y0nw27 { flex: none; height: 10px; overflow: hidden; position: relative; width: 62%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-7ymkqr { flex: none; height: 10px; overflow: hidden; position: relative; width: 74%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-237olf { flex: none; height: 10px; overflow: hidden; position: relative; width: 56%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-84xyk0 { flex: none; height: 10px; overflow: hidden; position: relative; width: 52%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-133oqlj { flex: none; height: 10px; overflow: hidden; position: relative; width: 64%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uYxR1 .framer-c086uw { flex: none; height: 10px; overflow: hidden; position: relative; width: 60%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uYxR1 .framer-4w4sr1, .framer-uYxR1 .framer-1bpx3c4, .framer-uYxR1 .framer-x72aoa, .framer-uYxR1 .framer-h0jorq, .framer-uYxR1 .framer-yakbex, .framer-uYxR1 .framer-5sideo, .framer-uYxR1 .framer-y1d416, .framer-uYxR1 .framer-lymwff { gap: 0px; } .framer-uYxR1 .framer-4w4sr1 > *, .framer-uYxR1 .framer-1bpx3c4 > *, .framer-uYxR1 .framer-h0jorq > *, .framer-uYxR1 .framer-5sideo > *, .framer-uYxR1 .framer-lymwff > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-uYxR1 .framer-4w4sr1 > :first-child, .framer-uYxR1 .framer-1bpx3c4 > :first-child, .framer-uYxR1 .framer-h0jorq > :first-child, .framer-uYxR1 .framer-5sideo > :first-child, .framer-uYxR1 .framer-lymwff > :first-child { margin-top: 0px; } .framer-uYxR1 .framer-4w4sr1 > :last-child, .framer-uYxR1 .framer-1bpx3c4 > :last-child, .framer-uYxR1 .framer-h0jorq > :last-child, .framer-uYxR1 .framer-5sideo > :last-child, .framer-uYxR1 .framer-lymwff > :last-child { margin-bottom: 0px; } .framer-uYxR1 .framer-x72aoa > *, .framer-uYxR1 .framer-yakbex > *, .framer-uYxR1 .framer-y1d416 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uYxR1 .framer-x72aoa > :first-child, .framer-uYxR1 .framer-yakbex > :first-child, .framer-uYxR1 .framer-y1d416 > :first-child { margin-left: 0px; } .framer-uYxR1 .framer-x72aoa > :last-child, .framer-uYxR1 .framer-yakbex > :last-child, .framer-uYxR1 .framer-y1d416 > :last-child { margin-right: 0px; } }\",\".framer-uYxR1.framer-v-16ldgew .framer-i0sqko { height: 235px; left: 34px; position: absolute; top: 66px; width: 335px; z-index: 1; }\",\".framer-uYxR1.framer-v-q0p2nf .framer-1fjv5nf { flex: none; height: 235px; left: -173px; position: absolute; top: 67px; width: 335px; z-index: 1; }\",\".framer-uYxR1.framer-v-1vdopto .framer-1877ukh { flex: none; height: 235px; left: 37px; position: absolute; top: -128px; width: 335px; z-index: 1; }\",\".framer-uYxR1.framer-v-p76j4m .framer-1877ukh { z-index: 1; }\",\".framer-uYxR1.framer-v-p76j4m .framer-198eceq { flex: none; height: 235px; left: -176px; position: absolute; top: -124px; width: 335px; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 380\n * @framerIntrinsicWidth 415\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"380px\"]},\"BOWkGejs0\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"380px\"]},\"dDXBxuwlJ\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"380px\"]},\"zd5Ru5ZIp\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"380px\"]},\"Uwbx5C9Na\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"380px\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerf4Cf1Hiye=withCSS(Component,css,\"framer-uYxR1\");export default Framerf4Cf1Hiye;Framerf4Cf1Hiye.displayName=\"Home: Layout\";Framerf4Cf1Hiye.defaultProps={height:380,width:415};addPropertyControls(Framerf4Cf1Hiye,{variant:{options:[\"g4d6SykVy\",\"BOWkGejs0\",\"dDXBxuwlJ\",\"zd5Ru5ZIp\",\"Uwbx5C9Na\"],optionTitles:[\"Base\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerf4Cf1Hiye,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf4Cf1Hiye\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"415\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"380px\\\"]},\\\"BOWkGejs0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"380px\\\"]},\\\"dDXBxuwlJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"380px\\\"]},\\\"zd5Ru5ZIp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"380px\\\"]},\\\"Uwbx5C9Na\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"380px\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"380\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./f4Cf1Hiye.map","// Generated by Framer (bbc0d0b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"lv0EABEUF\",\"q6v3TdCAc\",\"GgWRm1dDz\"];const serializationHash=\"framer-GST7U\";const variantClassNames={GgWRm1dDz:\"framer-v-dsoiku\",lv0EABEUF:\"framer-v-rr2lle\",q6v3TdCAc:\"framer-v-ncqtgs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.8,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"lv0EABEUF\",\"Variant 2\":\"q6v3TdCAc\",\"Variant 3\":\"GgWRm1dDz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lv0EABEUF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lv0EABEUF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1nm7uz5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"q6v3TdCAc\",true),1500);});const onAppear1bx9ngz=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"GgWRm1dDz\",true),1500);});const onAppear6fkc6v=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lv0EABEUF\",true),1500);});useOnVariantChange(baseVariant,{default:onAppear1nm7uz5,GgWRm1dDz:onAppear6fkc6v,q6v3TdCAc:onAppear1bx9ngz});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-rr2lle\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lv0EABEUF\",ref:refBinding,style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 63.342835022522515%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 63.342835022522515%) add\",...style},...addPropertyOverrides({GgWRm1dDz:{\"data-framer-name\":\"Variant 3\"},q6v3TdCAc:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y1fd0l\",layoutDependency:layoutDependency,layoutId:\"zzTDQvHoy\",style:{backgroundColor:\"rgb(30, 30, 30)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 5px 18px 0px rgba(0, 0, 0, 0.35)\",opacity:1,scale:1},variants:{GgWRm1dDz:{opacity:0,scale:.9},q6v3TdCAc:{opacity:0,scale:.9}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sfedg5\",layoutDependency:layoutDependency,layoutId:\"JMedBJHw5\",style:{backgroundColor:\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\",borderBottomLeftRadius:125,borderBottomRightRadius:125,borderTopLeftRadius:125,borderTopRightRadius:125}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ph87n\",layoutDependency:layoutDependency,layoutId:\"zwPggb79i\",style:{backgroundColor:\"rgb(30, 30, 30)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 5px 18px 0px rgba(0, 0, 0, 0.35)\",opacity:1,scale:1},variants:{GgWRm1dDz:{opacity:0,scale:.9}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8u0lak\",layoutDependency:layoutDependency,layoutId:\"l6DLoDlkt\",style:{backgroundColor:\"rgb(67, 255, 186)\",borderBottomLeftRadius:125,borderBottomRightRadius:125,borderTopLeftRadius:125,borderTopRightRadius:125}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1utgiet\",layoutDependency:layoutDependency,layoutId:\"V6rsKFxgk\",style:{backgroundColor:\"rgb(30, 30, 30)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 5px 18px 0px rgba(0, 0, 0, 0.35)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3r7atm\",layoutDependency:layoutDependency,layoutId:\"xGXwKy6u3\",style:{backgroundColor:\"rgb(67, 255, 186)\",borderBottomLeftRadius:125,borderBottomRightRadius:125,borderTopLeftRadius:125,borderTopRightRadius:125}})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GST7U.framer-wfbvf3, .framer-GST7U .framer-wfbvf3 { display: block; }\",\".framer-GST7U.framer-rr2lle { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 270px; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 481px; }\",\".framer-GST7U .framer-1y1fd0l, .framer-GST7U .framer-1ph87n, .framer-GST7U .framer-1utgiet { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: flex-start; max-width: 260px; overflow: visible; padding: 5px 5px 5px 15px; position: relative; width: 260px; }\",\".framer-GST7U .framer-sfedg5, .framer-GST7U .framer-8u0lak, .framer-GST7U .framer-3r7atm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GST7U.framer-rr2lle, .framer-GST7U .framer-1y1fd0l, .framer-GST7U .framer-1ph87n, .framer-GST7U .framer-1utgiet { gap: 0px; } .framer-GST7U.framer-rr2lle > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-GST7U.framer-rr2lle > :first-child { margin-top: 0px; } .framer-GST7U.framer-rr2lle > :last-child { margin-bottom: 0px; } .framer-GST7U .framer-1y1fd0l > *, .framer-GST7U .framer-1ph87n > *, .framer-GST7U .framer-1utgiet > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GST7U .framer-1y1fd0l > :first-child, .framer-GST7U .framer-1ph87n > :first-child, .framer-GST7U .framer-1utgiet > :first-child { margin-left: 0px; } .framer-GST7U .framer-1y1fd0l > :last-child, .framer-GST7U .framer-1ph87n > :last-child, .framer-GST7U .framer-1utgiet > :last-child { margin-right: 0px; } }\",\".framer-GST7U.framer-v-ncqtgs .framer-1y1fd0l, .framer-GST7U.framer-v-dsoiku .framer-1y1fd0l, .framer-GST7U.framer-v-dsoiku .framer-1ph87n { left: calc(49.896049896049924% - min(260px, 260px) / 2); position: absolute; top: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 270\n * @framerIntrinsicWidth 481\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"q6v3TdCAc\":{\"layout\":[\"fixed\",\"fixed\"]},\"GgWRm1dDz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergLcHCDWIb=withCSS(Component,css,\"framer-GST7U\");export default FramergLcHCDWIb;FramergLcHCDWIb.displayName=\"Home: Exit\";FramergLcHCDWIb.defaultProps={height:270,width:481};addPropertyControls(FramergLcHCDWIb,{variant:{options:[\"lv0EABEUF\",\"q6v3TdCAc\",\"GgWRm1dDz\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramergLcHCDWIb,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergLcHCDWIb\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q6v3TdCAc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GgWRm1dDz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"481\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"270\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gLcHCDWIb.map","// Generated by Framer (d489d3b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"j_MPuEy1k\",\"wXEupLjy3\"];const serializationHash=\"framer-hJpNk\";const variantClassNames={j_MPuEy1k:\"framer-v-19av28\",wXEupLjy3:\"framer-v-1ytipck\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.6,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"j_MPuEy1k\",Hover:\"wXEupLjy3\"};const getProps=({cover,height,id,link,name1,paper,textColor,title,width,...props})=>{return{...props,lfEuc9C8n:name1??props.lfEuc9C8n??\"Emil Kowalski\",oEsI3wd9g:title??props.oEsI3wd9g??\"Animations on the Web\",pRet1EGd1:cover??props.pRet1EGd1??\"var(--token-6d6f97c3-5f4a-41b8-a7b9-eff3df1acd75, rgb(255, 243, 18))\",RrrvdkH4D:link??props.RrrvdkH4D,vAGzmENmE:textColor??props.vAGzmENmE??\"rgb(0, 0, 0)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"j_MPuEy1k\",Z6oXQD6Do:paper??props.Z6oXQD6Do??\"rgb(255, 253, 212)\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,pRet1EGd1,oEsI3wd9g,vAGzmENmE,Z6oXQD6Do,lfEuc9C8n,RrrvdkH4D,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"j_MPuEy1k\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1vjdwa6=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"wXEupLjy3\");});const onMouseLeave1fj6o8x=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"j_MPuEy1k\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:RrrvdkH4D,motionChild:true,nodeId:\"j_MPuEy1k\",openInNewTab:true,scopeId:\"kOxgpZL55\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-19av28\",className,classNames)} framer-6u97g0`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"j_MPuEy1k\",onMouseEnter:onMouseEnter1vjdwa6,ref:refBinding,style:{...style},...addPropertyOverrides({wXEupLjy3:{\"data-framer-name\":\"Hover\",onMouseEnter:undefined,onMouseLeave:onMouseLeave1fj6o8x}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oin3d5\",\"data-framer-name\":\"Book\",layoutDependency:layoutDependency,layoutId:\"dwEiOXx82\",style:{originX:0,originY:1,rotateX:0,rotateY:0,transformPerspective:1200,z:0},variants:{wXEupLjy3:{originY:.95,rotateX:-1,rotateY:-35,z:25}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qajnxo\",\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"C1IjfITNl\",style:{backgroundColor:pRet1EGd1,borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1,boxShadow:\"inset 1px 2px 10px -2px rgba(255, 255, 255, 0.1), inset 3.6px 0px 3.6px 0px rgba(0, 0, 0, 0.15)\",transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8gjkdm\",\"data-framer-name\":\"Highlight\",layoutDependency:layoutDependency,layoutId:\"YvuJkkMcT\",style:{borderBottomLeftRadius:1,borderTopLeftRadius:1,opacity:.21},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ncbr9s\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"WevWIzCCI\",style:{background:\"linear-gradient(90deg, rgba(255, 255, 255, 0.49) 0%, rgb(0, 0, 0) 39.475858671171174%, rgba(0, 0, 0, 0.3) 100%)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1prc9cn\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"dIVt0y6z6\",style:{background:\"linear-gradient(270deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0.7) 34.87922297297296%, rgba(0, 0, 0, 0.7) 59.33980855855856%, rgba(255, 255, 255, 0.5) 100%)\",opacity:.5}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c7znp6\",\"data-framer-name\":\"Text wrap\",layoutDependency:layoutDependency,layoutId:\"h54jeJI1k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-variation-axes\":'var(--extracted-198i5e0, \"opsz\" 32, \"wght\" 580)',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.05em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--variable-reference-vAGzmENmE-kOxgpZL55))\"},children:\"Animations on the Web\"})}),className:\"framer-1ara6to\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Variable\"],layoutDependency:layoutDependency,layoutId:\"HBjieg0t8\",style:{\"--extracted-198i5e0\":'\"opsz\" 32, \"wght\" 580',\"--extracted-1lwpl3i\":\"var(--variable-reference-vAGzmENmE-kOxgpZL55)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-vAGzmENmE-kOxgpZL55\":vAGzmENmE},text:oEsI3wd9g,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"opsz\" 32, \"wght\" 520)',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-vAGzmENmE-kOxgpZL55))\",\"--framer-text-transform\":\"inherit\"},children:\"Emil Kowalski\"})}),className:\"framer-9kuh2j\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Variable\"],layoutDependency:layoutDependency,layoutId:\"b74WJN2Eu\",style:{\"--extracted-2gg91v\":'\"opsz\" 32, \"wght\" 520',\"--extracted-r6o4lv\":\"var(--variable-reference-vAGzmENmE-kOxgpZL55)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-vAGzmENmE-kOxgpZL55\":vAGzmENmE,opacity:.6},text:lfEuc9C8n,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pj9v78\",layoutDependency:layoutDependency,layoutId:\"tfU8VPo9z\",style:{mask:\"linear-gradient(10deg, rgba(0,0,0,0) 4%, rgba(0,0,0,1) 43%) add\",WebkitMask:\"linear-gradient(10deg, rgba(0,0,0,0) 4%, rgba(0,0,0,1) 43%) add\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||192)-0-192)/2)+0+0+-10),pixelHeight:2e3,pixelWidth:2e3,sizes:\"485px\",src:\"https://framerusercontent.com/images/K5Y6wRbQ7U4XGfRYt9gthQKzA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/K5Y6wRbQ7U4XGfRYt9gthQKzA.png?scale-down-to=512 512w,https://framerusercontent.com/images/K5Y6wRbQ7U4XGfRYt9gthQKzA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K5Y6wRbQ7U4XGfRYt9gthQKzA.png 2000w\"},className:\"framer-1hdmk10\",\"data-framer-name\":\"Vhm 1740323418\",layoutDependency:layoutDependency,layoutId:\"sFCSB6tgO\",style:{filter:\"grayscale(1) invert(1)\",mask:\"radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 16.84790259009009%, rgba(0,0,0,1) 64.53582488738738%, rgba(0,0,0,0) 100%) add\",opacity:.8,WebkitFilter:\"grayscale(1) invert(1)\",WebkitMask:\"radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 16.84790259009009%, rgba(0,0,0,1) 64.53582488738738%, rgba(0,0,0,0) 100%) add\"}})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-feiefo\",\"data-framer-name\":\"Paper\",layoutDependency:layoutDependency,layoutId:\"HMVSAAs1J\",style:{backgroundColor:Z6oXQD6Do,opacity:0,rotateY:90,transformPerspective:3747,z:-10},variants:{wXEupLjy3:{opacity:1}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4hn4i2\",\"data-framer-name\":\"Back\",layoutDependency:layoutDependency,layoutId:\"sj5Kx2N5B\",style:{backgroundColor:pRet1EGd1,borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,filter:\"brightness(0.8)\",transformPerspective:1200,WebkitFilter:\"brightness(0.8)\",z:-20}})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hJpNk.framer-6u97g0, .framer-hJpNk .framer-6u97g0 { display: block; }\",\".framer-hJpNk.framer-19av28 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 192px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 157px; }\",\".framer-hJpNk .framer-oin3d5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 192px; justify-content: center; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 157px; }\",\".framer-hJpNk .framer-qajnxo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: 192px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 157px; z-index: 2; }\",\".framer-hJpNk .framer-8gjkdm { flex: none; height: 192px; overflow: hidden; position: relative; width: 13px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hJpNk .framer-ncbr9s { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 5px; }\",\".framer-hJpNk .framer-1prc9cn { bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 4px; }\",\".framer-hJpNk .framer-1c7znp6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; max-width: 110px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-hJpNk .framer-1ara6to, .framer-hJpNk .framer-9kuh2j { --framer-text-wrap: balance; -webkit-user-select: none; flex: none; height: auto; max-width: 100%; position: relative; user-select: none; white-space: pre-wrap; width: 110px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-hJpNk .framer-1pj9v78 { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-hJpNk .framer-1hdmk10 { bottom: -391px; flex: none; left: 0px; overflow: visible; position: absolute; right: -328px; top: -10px; z-index: 1; }\",\".framer-hJpNk .framer-feiefo { bottom: 7px; flex: none; height: 184px; overflow: visible; position: absolute; right: 0px; transform-style: preserve-3d; width: 18px; z-index: 1; }\",\".framer-hJpNk .framer-4hn4i2 { flex: none; height: 192px; left: 4px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 192px / 2); transform-style: preserve-3d; width: 153px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hJpNk.framer-19av28, .framer-hJpNk .framer-oin3d5, .framer-hJpNk .framer-qajnxo { gap: 0px; } .framer-hJpNk.framer-19av28 > *, .framer-hJpNk .framer-oin3d5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hJpNk.framer-19av28 > :first-child, .framer-hJpNk .framer-oin3d5 > :first-child, .framer-hJpNk .framer-qajnxo > :first-child { margin-left: 0px; } .framer-hJpNk.framer-19av28 > :last-child, .framer-hJpNk .framer-oin3d5 > :last-child, .framer-hJpNk .framer-qajnxo > :last-child { margin-right: 0px; } .framer-hJpNk .framer-qajnxo > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } }\",\".framer-hJpNk.framer-v-1ytipck .framer-qajnxo { order: 0; }\",\".framer-hJpNk.framer-v-1ytipck .framer-feiefo { bottom: 4px; order: 1; right: -8px; }\",\".framer-hJpNk.framer-v-1ytipck .framer-4hn4i2 { order: 2; right: -6px; width: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 192\n * @framerIntrinsicWidth 157\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wXEupLjy3\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"pRet1EGd1\":\"cover\",\"oEsI3wd9g\":\"title\",\"vAGzmENmE\":\"textColor\",\"Z6oXQD6Do\":\"paper\",\"lfEuc9C8n\":\"name1\",\"RrrvdkH4D\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkOxgpZL55=withCSS(Component,css,\"framer-hJpNk\");export default FramerkOxgpZL55;FramerkOxgpZL55.displayName=\"3D Book\";FramerkOxgpZL55.defaultProps={height:192,width:157};addPropertyControls(FramerkOxgpZL55,{variant:{options:[\"j_MPuEy1k\",\"wXEupLjy3\"],optionTitles:[\"Default\",\"Hover\"],title:\"Variant\",type:ControlType.Enum},pRet1EGd1:{defaultValue:'var(--token-6d6f97c3-5f4a-41b8-a7b9-eff3df1acd75, rgb(255, 243, 18)) /* {\"name\":\"Tint\"} */',title:\"Cover\",type:ControlType.Color},oEsI3wd9g:{defaultValue:\"Animations on the Web\",displayTextArea:true,title:\"Title\",type:ControlType.String},vAGzmENmE:{defaultValue:\"rgb(0, 0, 0)\",title:\"Text color\",type:ControlType.Color},Z6oXQD6Do:{defaultValue:\"rgb(255, 253, 212)\",title:\"Paper\",type:ControlType.Color},lfEuc9C8n:{defaultValue:\"Emil Kowalski\",displayTextArea:false,title:\"Name\",type:ControlType.String},RrrvdkH4D:{title:\"Link\",type:ControlType.Link}});const variationAxes=[{defaultValue:14,maxValue:32,minValue:14,name:\"Optical size\",tag:\"opsz\"},{defaultValue:400,maxValue:900,minValue:100,name:\"Weight\",tag:\"wght\"}];addFonts(FramerkOxgpZL55,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mYcqTSergLb16PdbJJQMl9ebYm4.woff2\",variationAxes,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/ZRl8AlxwsX1m7xS1eJCiSPbztg.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/nhSQpBRqFmXNUBY2p5SENQ8NplQ.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/DYHjxG0qXjopUuruoacfl5SA.woff2\",variationAxes,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/s7NH6sl7w4NU984r5hcmo1tPSYo.woff2\",variationAxes,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/7lw0VWkeXrGYJT05oB3DsFy8BaY.woff2\",variationAxes,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/wx5nfqEgOXnxuFaxB0Mn9OhmcZA.woff2\",variationAxes,weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkOxgpZL55\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"192\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wXEupLjy3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"pRet1EGd1\\\":\\\"cover\\\",\\\"oEsI3wd9g\\\":\\\"title\\\",\\\"vAGzmENmE\\\":\\\"textColor\\\",\\\"Z6oXQD6Do\\\":\\\"paper\\\",\\\"lfEuc9C8n\\\":\\\"name1\\\",\\\"RrrvdkH4D\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"157\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kOxgpZL55.map","// Generated by Framer (eb6af5b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"MQLEWIy9g\",\"P9awvKZOu\",\"l6gs76ET_\",\"JPpOznz9C\"];const serializationHash=\"framer-V3f1K\";const variantClassNames={JPpOznz9C:\"framer-v-rrv7oh\",l6gs76ET_:\"framer-v-1mv6hth\",MQLEWIy9g:\"framer-v-1hfhyv6\",P9awvKZOu:\"framer-v-1eip67z\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Greyscale Medium\":\"l6gs76ET_\",\"Greyscale Small\":\"JPpOznz9C\",Medium:\"MQLEWIy9g\",Small:\"P9awvKZOu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MQLEWIy9g\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MQLEWIy9g\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:176,pixelWidth:176,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GWrxs3CewblWm4PmKWd5dcLzVfA.png\"},className:cx(scopingClassNames,\"framer-1hfhyv6\",className,classNames),\"data-framer-name\":\"Medium\",layoutDependency:layoutDependency,layoutId:\"MQLEWIy9g\",ref:refBinding,style:{filter:\"none\",WebkitFilter:\"none\",...style},variants:{JPpOznz9C:{filter:\"brightness(1.78) grayscale(1)\",WebkitFilter:\"brightness(1.78) grayscale(1)\"},l6gs76ET_:{filter:\"brightness(1.78) grayscale(1)\",WebkitFilter:\"brightness(1.78) grayscale(1)\"}},...addPropertyOverrides({JPpOznz9C:{\"data-framer-name\":\"Greyscale Small\"},l6gs76ET_:{\"data-framer-name\":\"Greyscale Medium\"},P9awvKZOu:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-V3f1K.framer-qu5ewg, .framer-V3f1K .framer-qu5ewg { display: block; }\",\".framer-V3f1K.framer-1hfhyv6 { height: 36px; overflow: hidden; position: relative; width: 40px; }\",\".framer-V3f1K.framer-v-1eip67z.framer-1hfhyv6, .framer-V3f1K.framer-v-rrv7oh.framer-1hfhyv6 { height: 18px; width: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"P9awvKZOu\":{\"layout\":[\"fixed\",\"fixed\"]},\"l6gs76ET_\":{\"layout\":[\"fixed\",\"fixed\"]},\"JPpOznz9C\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMmDA8iBoR=withCSS(Component,css,\"framer-V3f1K\");export default FramerMmDA8iBoR;FramerMmDA8iBoR.displayName=\"Icon Vue\";FramerMmDA8iBoR.defaultProps={height:36,width:40};addPropertyControls(FramerMmDA8iBoR,{variant:{options:[\"MQLEWIy9g\",\"P9awvKZOu\",\"l6gs76ET_\",\"JPpOznz9C\"],optionTitles:[\"Medium\",\"Small\",\"Greyscale Medium\",\"Greyscale Small\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMmDA8iBoR,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMmDA8iBoR\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P9awvKZOu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l6gs76ET_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JPpOznz9C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"36\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MmDA8iBoR.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Animator(props){/* Properties */const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */const hasChildren=Children.count(slots)>0;/* Empty State */let customShape=/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"✍️\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties *//* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */if(isCanvas){customShape=firstChild;}/* If on a web page */if(!isCanvas&&svgChild){/* Pass Attributes */let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/_jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/_jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity},initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\"})})});}}return customShape;}/* Default Properties */Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* 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\"};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\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map","// Generated by Framer (033131b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";const ClipboardFonts=getFonts(Clipboard);const AnimatorFonts=getFonts(Animator);const enabledGestures={gYuHT4r7E:{hover:true},K7iCvqwlS:{hover:true}};const cycleOrder=[\"gYuHT4r7E\",\"K7iCvqwlS\"];const serializationHash=\"framer-ydDJO\";const variantClassNames={gYuHT4r7E:\"framer-v-4e9e5o\",K7iCvqwlS:\"framer-v-1ynb9rg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"gYuHT4r7E\",\"Variant 2\":\"K7iCvqwlS\"};const getProps=({background,backgroundBlur,height,id,width,...props})=>{return{...props,b6FHe6Vec:backgroundBlur??props.b6FHe6Vec,jRd8C845a:background??props.jRd8C845a??\"rgba(255, 255, 255, 0.02)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"gYuHT4r7E\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,jRd8C845a,b6FHe6Vec,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gYuHT4r7E\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap16pijce=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"K7iCvqwlS\");});const onAppear1c5hg8i=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"gYuHT4r7E\"),800);});useOnVariantChange(baseVariant,{K7iCvqwlS:onAppear1c5hg8i});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"K7iCvqwlS-hover\")return false;if(baseVariant===\"K7iCvqwlS\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"K7iCvqwlS-hover\")return true;if(baseVariant===\"K7iCvqwlS\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-4e9e5o\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gYuHT4r7E\",onTap:onTap16pijce,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.06)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${b6FHe6Vec}px)`,backgroundColor:jRd8C845a,borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 15px 20px 0px rgba(0, 0, 0, 0.35)\",...style},...addPropertyOverrides({\"gYuHT4r7E-hover\":{\"data-framer-name\":undefined},\"K7iCvqwlS-hover\":{\"data-framer-name\":undefined,onTap:undefined},K7iCvqwlS:{\"data-framer-name\":\"Variant 2\",onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bsczx2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AKim2gNnZ-container\",nodeId:\"AKim2gNnZ\",rendersWithMotion:true,scopeId:\"QHVbA2UDp\",style:{opacity:0},children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:5,bottomLeftRadius:5,bottomRightRadius:5,color:\"rgb(255, 255, 255)\",content:\"npm install motion\",fill:\"var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(237, 237, 237))\",font:{fontFamily:'\"Geist Mono Medium\", \"Geist Mono Medium Placeholder\", monospace',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"AKim2gNnZ\",isMixedBorderRadius:false,label:\"npm install motion\",layoutId:\"AKim2gNnZ\",padding:1,paddingBottom:1,paddingLeft:1,paddingPerSide:false,paddingRight:1,paddingTop:1,style:{height:\"100%\",width:\"100%\"},topLeftRadius:5,topRightRadius:5,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7SmV0QnJhaW5zIE1vbm8tdmFyaWFibGVWRj1JbmRuYUhRaUlEVXlNQT09\",\"--framer-font-family\":'\"JetBrains Mono Variable\", \"JetBrains Mono Placeholder\", sans-serif',\"--framer-font-size\":\"13.55px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 520)',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-95cb0a67-053e-4ab2-a5d0-7294f60d31fe, rgb(16, 20, 26)))\"},children:\"npm install motion\"})}),className:\"framer-oegyzl\",fonts:[\"FS;JetBrains Mono-variable\"],layoutDependency:layoutDependency,layoutId:\"s6K8aIrjI\",style:{\"--extracted-2gg91v\":'\"wght\" 520',\"--extracted-r6o4lv\":\"var(--token-95cb0a67-053e-4ab2-a5d0-7294f60d31fe, rgb(16, 20, 26))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-73ujdd\",layoutDependency:layoutDependency,layoutId:\"U3bNIbbon\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-f3gtxv\",\"data-framer-name\":\"copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jiF6JNU1V\",opacity:1,style:{opacity:1},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 0 0 L 14 0 L 14 14 L 0 14 Z\" fill=\"transparent\"></path><path d=\"M 9.188 9.188 L 11.813 9.188 L 11.813 2.188 L 4.813 2.188 L 4.813 4.813\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.188 4.813 L 9.188 4.813 L 9.188 11.813 L 2.188 11.813 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12229749230,variants:{\"gYuHT4r7E-hover\":{opacity:.5}},withExternalLayout:true,...addPropertyOverrides({\"gYuHT4r7E-hover\":{opacity:.5,svgContentId:10227243762}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bwbha8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mxnNfKtx7-container\",nodeId:\"mxnNfKtx7\",rendersWithMotion:true,scopeId:\"QHVbA2UDp\",style:{opacity:0},variants:{K7iCvqwlS:{opacity:1}},children:/*#__PURE__*/_jsx(Animator,{animate:false,endCircle:true,from:0,height:\"100%\",id:\"mxnNfKtx7\",layoutId:\"mxnNfKtx7\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zt1r6\",\"data-framer-name\":\"checkmark\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"iQyYtUY9s\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 0 0 L 14 0 L 14 14 L 0 14 Z\" fill=\"transparent\"></path><path d=\"M 2.188 7.875 L 5.25 10.938 L 12.25 3.938\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10817089157,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\",...addPropertyOverrides({K7iCvqwlS:{animate:true}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ydDJO.framer-4tv0wr, .framer-ydDJO .framer-4tv0wr { display: block; }\",\".framer-ydDJO.framer-4e9e5o { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 35px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-ydDJO .framer-bsczx2-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-ydDJO .framer-oegyzl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ydDJO .framer-73ujdd { flex: none; height: 15px; overflow: visible; position: relative; width: 14px; }\",\".framer-ydDJO .framer-f3gtxv { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(46.66666666666669% - 14px / 2); width: 14px; }\",\".framer-ydDJO .framer-bwbha8-container { bottom: 0px; flex: none; height: 14px; left: 0px; position: absolute; right: 0px; }\",\".framer-ydDJO .framer-zt1r6 { height: 14px; position: relative; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ydDJO.framer-4e9e5o { gap: 0px; } .framer-ydDJO.framer-4e9e5o > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ydDJO.framer-4e9e5o > :first-child { margin-left: 0px; } .framer-ydDJO.framer-4e9e5o > :last-child { margin-right: 0px; } }\",'.framer-ydDJO[data-border=\"true\"]::after, .framer-ydDJO [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 35\n * @framerIntrinsicWidth 198.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"K7iCvqwlS\":{\"layout\":[\"auto\",\"fixed\"]},\"GDHGqxk3r\":{\"layout\":[\"auto\",\"fixed\"]},\"kRgv8keFY\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"jRd8C845a\":\"background\",\"b6FHe6Vec\":\"backgroundBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerQHVbA2UDp=withCSS(Component,css,\"framer-ydDJO\");export default FramerQHVbA2UDp;FramerQHVbA2UDp.displayName=\"Copy\";FramerQHVbA2UDp.defaultProps={height:35,width:198.5};addPropertyControls(FramerQHVbA2UDp,{variant:{options:[\"gYuHT4r7E\",\"K7iCvqwlS\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},jRd8C845a:{defaultValue:\"rgba(255, 255, 255, 0.02)\",title:\"Background\",type:ControlType.Color},b6FHe6Vec:{defaultValue:0,title:\"Background Blur\",type:ControlType.Number}});const variationAxes=[{defaultValue:400,maxValue:800,minValue:100,name:\"Weight\",tag:\"wght\"}];addFonts(FramerQHVbA2UDp,[{explicitInter:true,fonts:[{family:\"JetBrains Mono\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NETZQ54ZOKLTIGCF4PEMSPBMZ4WH6PJS/IU37JRVORJNT7W7AFXSHPFH7UV2F5ZWX/ZFWC2YLUJ7YZ5NZDUAYWIG2A6AZGG5QH.woff2\",variationAxes,weight:\"400\"}]},...ClipboardFonts,...AnimatorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQHVbA2UDp\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"K7iCvqwlS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"GDHGqxk3r\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"kRgv8keFY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"198.5\",\"framerVariables\":\"{\\\"jRd8C845a\\\":\\\"background\\\",\\\"b6FHe6Vec\\\":\\\"backgroundBlur\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"35\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QHVbA2UDp.map","// Generated by Framer (d489d3b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";const AnimatorFonts=getFonts(Animator);const ClipboardFonts=getFonts(Clipboard);const enabledGestures={As_kqdCLt:{hover:true}};const cycleOrder=[\"As_kqdCLt\",\"ntY_KbefT\"];const serializationHash=\"framer-bo3mS\";const variantClassNames={As_kqdCLt:\"framer-v-kimuqn\",ntY_KbefT:\"framer-v-ky3qti\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"As_kqdCLt\",\"Variant 2\":\"ntY_KbefT\"};const getProps=({content,height,id,width,...props})=>{return{...props,F0wgXXa7W:content??props.F0wgXXa7W,variant:humanReadableVariantMap[props.variant]??props.variant??\"As_kqdCLt\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,F0wgXXa7W,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"As_kqdCLt\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1iwbj81=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ntY_KbefT\");});const onAppear1yfvmd0=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"As_kqdCLt\",true),800);});useOnVariantChange(baseVariant,{ntY_KbefT:onAppear1yfvmd0});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ntY_KbefT\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"ntY_KbefT\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-kimuqn\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"As_kqdCLt\",onTap:onTap1iwbj81,ref:refBinding,style:{opacity:.5,...style},variants:{\"As_kqdCLt-hover\":{opacity:1},ntY_KbefT:{opacity:1}},...addPropertyOverrides({\"As_kqdCLt-hover\":{\"data-framer-name\":undefined},ntY_KbefT:{\"data-framer-name\":\"Variant 2\",onTap:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-uux3a4\",\"data-framer-name\":\"copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ixSI5MbkF\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 0 0 L 14 0 L 14 14 L 0 14 Z\" fill=\"transparent\"></path><path d=\"M 9.188 9.188 L 11.813 9.188 L 11.813 2.188 L 4.813 2.188 L 4.813 4.813\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.188 4.813 L 9.188 4.813 L 9.188 11.813 L 2.188 11.813 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12229749230,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19g4vsc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EWGxip_ri-container\",nodeId:\"EWGxip_ri\",rendersWithMotion:true,scopeId:\"XyT9HMQcf\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"EWGxip_ri\",layoutId:\"EWGxip_ri\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-bbq0a0\",\"data-framer-name\":\"checkmark\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rwbHkL4B3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 0 0 L 14 0 L 14 14 L 0 14 Z\" fill=\"transparent\"></path><path d=\"M 2.188 7.875 L 5.25 10.938 L 12.25 3.938\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10817089157,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1j3d0lq-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ziWjDjhNX-container\",nodeId:\"ziWjDjhNX\",rendersWithMotion:true,scopeId:\"XyT9HMQcf\",style:{opacity:0},children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,color:\"rgb(255, 255, 255)\",content:F0wgXXa7W,fill:\"rgb(0, 102, 255)\",font:{},height:\"100%\",id:\"ziWjDjhNX\",isMixedBorderRadius:false,label:\"Copy to Clipboard\",layoutId:\"ziWjDjhNX\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:50,topRightRadius:50,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bo3mS.framer-3nho6k, .framer-bo3mS .framer-3nho6k { display: block; }\",\".framer-bo3mS.framer-kimuqn { cursor: pointer; height: 15px; overflow: visible; position: relative; width: 14px; }\",\".framer-bo3mS .framer-uux3a4 { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(46.66666666666669% - 14px / 2); width: 14px; }\",\".framer-bo3mS .framer-19g4vsc-container, .framer-bo3mS .framer-1j3d0lq-container { flex: none; height: 14px; left: 0px; position: absolute; top: 0px; width: 14px; }\",\".framer-bo3mS .framer-bbq0a0 { height: 14px; position: relative; width: 14px; }\",\".framer-bo3mS.framer-v-ky3qti.framer-kimuqn { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15\n * @framerIntrinsicWidth 14\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ntY_KbefT\":{\"layout\":[\"fixed\",\"fixed\"]},\"y2WbX51ao\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"F0wgXXa7W\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXyT9HMQcf=withCSS(Component,css,\"framer-bo3mS\");export default FramerXyT9HMQcf;FramerXyT9HMQcf.displayName=\"2025/Copy-paste\";FramerXyT9HMQcf.defaultProps={height:15,width:14};addPropertyControls(FramerXyT9HMQcf,{variant:{options:[\"As_kqdCLt\",\"ntY_KbefT\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},F0wgXXa7W:{defaultValue:\"\",displayTextArea:true,title:\"Content\",type:ControlType.String}});addFonts(FramerXyT9HMQcf,[{explicitInter:true,fonts:[]},...AnimatorFonts,...ClipboardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXyT9HMQcf\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"14\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"F0wgXXa7W\\\":\\\"content\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"15\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ntY_KbefT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"y2WbX51ao\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XyT9HMQcf.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{forwardRef,useRef,useEffect}from\"react\";import{useAnimate,useInView,stagger,useScroll}from\"framer-motion\";export function withScrollAnimation(Component){return /*#__PURE__*/forwardRef(props=>{const ref=useRef(null);const{scrollYProgress}=useScroll({target:ref,offset:[\"end end\",\"start start\"]});return /*#__PURE__*/_jsx(Component,{ref:ref,...props,style:{...props,originY:1,scaleY:scrollYProgress}});});}export function withTimeline(Component){return props=>{const[ref,animate]=useAnimate();useEffect(()=>{if(!ref.current)return;const controls=animate([[ref.current,{opacity:[0,1],y:[30,0]},{duration:.7,ease:[.21,.14,.24,.97]}],[\"[data-framer-name='Item']\",{opacity:[0,1],x:[-30,0]},{delay:stagger(.1),duration:.6,ease:[.21,.14,.24,.97],at:\"-0.4\"}],[ref.current,{opacity:0,y:-30},{duration:.5,ease:[.21,.05,.87,.45],at:\"+1\"}]],{repeat:Infinity,repeatDelay:.3});return()=>controls.stop();},[]);return /*#__PURE__*/_jsx(Component,{ref:ref,initial:{opacity:0},...props});};}const spring={type:\"spring\",duration:1,bounce:.5};export function withSpringAnimation(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[scope,animate]=useAnimate();const isInView=useInView(scope);useEffect(()=>{if(!isInView)return;const animation=animate([[\"div\",{transform:[\"translateY(0px)\",\"translateY(-130px)\"]},{...spring,delay:stagger(.1)}],[\"div\",{transform:\"translateY(0px)\"},{...spring,delay:stagger(.1)}]],{repeat:Infinity});return()=>animation.stop();},[isInView]);return /*#__PURE__*/_jsx(Component,{ref:scope,...props});});}\nexport const __FramerMetadata__ = {\"exports\":{\"withSpringAnimation\":{\"type\":\"reactHoc\",\"name\":\"withSpringAnimation\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTimeline\":{\"type\":\"reactHoc\",\"name\":\"withTimeline\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withScrollAnimation\":{\"type\":\"reactHoc\",\"name\":\"withScrollAnimation\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Home2025.map","// Generated by Framer (ca9cb57)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect,withVariantAppearEffect}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 BlurGradient from\"https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/mqQEarGIByho1rG31aTv/BlurGradient_Prod.js\";import Typewriter from\"https://framerusercontent.com/modules/vgSbxmWWvbgW6ShllXld/IkcZ6LdJBUqPPlbnntkz/Typewriter.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import Slide from\"#framer/local/canvasComponent/BcfvSSGww/BcfvSSGww.js\";import DocsQuickStartMenu from\"#framer/local/canvasComponent/cDv2KQqt9/cDv2KQqt9.js\";import HomeLayout from\"#framer/local/canvasComponent/f4Cf1Hiye/f4Cf1Hiye.js\";import HomeExit from\"#framer/local/canvasComponent/gLcHCDWIb/gLcHCDWIb.js\";import CTA from\"#framer/local/canvasComponent/jd7pNNy9n/jd7pNNy9n.js\";import Badge from\"#framer/local/canvasComponent/kID64bmx9/kID64bmx9.js\";import DBook from\"#framer/local/canvasComponent/kOxgpZL55/kOxgpZL55.js\";import IconVue from\"#framer/local/canvasComponent/MmDA8iBoR/MmDA8iBoR.js\";import IconJS from\"#framer/local/canvasComponent/nA294gnyt/nA294gnyt.js\";import Button,*as ButtonInfo from\"#framer/local/canvasComponent/NotBhc7Ra/NotBhc7Ra.js\";import Copy from\"#framer/local/canvasComponent/QHVbA2UDp/QHVbA2UDp.js\";import IconReact from\"#framer/local/canvasComponent/VAteATCd0/VAteATCd0.js\";import CopyPaste from\"#framer/local/canvasComponent/XyT9HMQcf/XyT9HMQcf.js\";import Logo from\"#framer/local/canvasComponent/yJ1iLnMjI/yJ1iLnMjI.js\";import{withScrollAnimation,withSpringAnimation,withTimeline}from\"#framer/local/codeFile/Hxy0cDA/Home2025.js\";import{withTransformExamples}from\"#framer/local/codeFile/PeXioT4/New_Homepage.js\";import{withSetPaddleReferralHomepage}from\"#framer/local/codeFile/drNDGs2/Paddle.js\";import*as sharedStyle4 from\"#framer/local/css/bgIWdR1bl/bgIWdR1bl.js\";import*as sharedStyle7 from\"#framer/local/css/ebpVhGhlo/ebpVhGhlo.js\";import*as sharedStyle6 from\"#framer/local/css/MNWLPP1ih/MNWLPP1ih.js\";import*as sharedStyle from\"#framer/local/css/nJ1TIN9W3/nJ1TIN9W3.js\";import*as sharedStyle5 from\"#framer/local/css/OCes52Yrx/OCes52Yrx.js\";import*as sharedStyle2 from\"#framer/local/css/oFGazSjG5/oFGazSjG5.js\";import*as sharedStyle1 from\"#framer/local/css/PSqZE1cmW/PSqZE1cmW.js\";import*as sharedStyle3 from\"#framer/local/css/qNr6sz4fJ/qNr6sz4fJ.js\";import*as sharedStyle8 from\"#framer/local/css/sSxg187SX/sSxg187SX.js\";import*as sharedStyle9 from\"#framer/local/css/XpCCubdWP/XpCCubdWP.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const LogoFonts=getFonts(Logo);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CopyFonts=getFonts(Copy);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ButtonFonts=getFonts(Button);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const BadgeFonts=getFonts(Badge);const ContainerWithFX=withFX(Container);const MotionDivWithFX=withFX(motion.div);const CopyPasteFonts=getFonts(CopyPaste);const IconJSFonts=getFonts(IconJS);const IconReactFonts=getFonts(IconReact);const IconVueFonts=getFonts(IconVue);const MotionDivWithTransformExamples19dqz24=withCodeBoundaryForOverrides(motion.div,{nodeId:\"U61hsJaxv\",override:withTransformExamples,scopeId:\"augiA20Il\"});const MotionDivWithScrollAnimationqrkba5=withCodeBoundaryForOverrides(motion.div,{nodeId:\"jy0SnEcPJ\",override:withScrollAnimation,scopeId:\"augiA20Il\"});const HomeExitFonts=getFonts(HomeExit);const MotionDivWithSpringAnimation6fd5fa=withCodeBoundaryForOverrides(motion.div,{nodeId:\"uk51DxWTx\",override:withSpringAnimation,scopeId:\"augiA20Il\"});const ImageWithFX=withFX(Image);const HomeLayoutFonts=getFonts(HomeLayout);const MotionDivWithTimeline1p9cgnt=withCodeBoundaryForOverrides(motion.div,{nodeId:\"bSEgTRYvr\",override:withTimeline,scopeId:\"augiA20Il\"});const CTAFonts=getFonts(CTA);const DBookFonts=getFonts(DBook);const TickerFonts=getFonts(Ticker);const ButtonWithSetPaddleReferralHomepageexdckiWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"zhxA5U8U5\",override:withSetPaddleReferralHomepage,scopeId:\"augiA20Il\"}),ButtonInfo);const TypewriterFonts=getFonts(Typewriter);const BlurGradientFonts=getFonts(BlurGradient);const ButtonWithSetPaddleReferralHomepage1cf7pixWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"R2zdNzSzo\",override:withSetPaddleReferralHomepage,scopeId:\"augiA20Il\"}),ButtonInfo);const SlideFonts=getFonts(Slide);const SlideWithVariantAppearEffect=withVariantAppearEffect(Slide);const SlideshowFonts=getFonts(Slideshow);const DocsQuickStartMenuFonts=getFonts(DocsQuickStartMenu);const breakpoints={AWrfk7SmU:\"(max-width: 989px)\",i8PagvNKL:\"(min-width: 1290px)\",QdjPMfI8v:\"(min-width: 990px) and (max-width: 1289px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8lyR2\";const variantClassNames={AWrfk7SmU:\"framer-v-cb1b2l\",i8PagvNKL:\"framer-v-ogrxa2\",QdjPMfI8v:\"framer-v-ras1cd\"};const transition1={bounce:0,delay:0,duration:2,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const animation2={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.05,duration:1.3,type:\"spring\"};const textEffect={effect:animation2,repeat:false,startDelay:0,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const animation3={filter:\"blur(4px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={bounce:0,delay:.06,duration:.9,type:\"spring\"};const textEffect1={effect:animation3,repeat:false,startDelay:0,tokenization:\"word\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const transition4={bounce:0,delay:.55,duration:2,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:0,delay:.65,duration:2,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:0,delay:.6,duration:2,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation7={opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7};const transition8={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation10={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 transition9={bounce:0,delay:.7,duration:2,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={bounce:0,delay:.75,duration:2,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={bounce:0,delay:.8,duration:2,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const transition12={bounce:0,delay:.85,duration:2,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition13={bounce:.2,delay:0,duration:6,type:\"spring\"};const animation15={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const animation16={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.85,skewX:0,skewY:0,x:0,y:10};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition14={bounce:0,delay:.3,duration:2,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition15={bounce:0,delay:.05,duration:2,type:\"spring\"};const getTextEffect=ref=>({effect:animation2,repeat:false,startDelay:0,target:{ref},threshold:1,tokenization:\"word\",transition:transition15,trigger:\"onScrollTarget\",type:\"appear\"});const transition16={bounce:0,delay:.15,duration:1.4,type:\"spring\"};const getTextEffect1=ref=>({effect:animation2,repeat:false,startDelay:0,target:{ref},threshold:1,tokenization:\"line\",transition:transition16,trigger:\"onScrollTarget\",type:\"appear\"});const transition17={bounce:0,delay:.4,duration:2,type:\"spring\"};const animation19={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7};const transition18={delay:0,duration:.6,ease:[.17,.67,.51,1],type:\"tween\"};const animation20={opacity:0,rotate:0,rotateX:5,rotateY:15,scale:1,skewX:0,skewY:0,transformPerspective:1500,transition:transition18,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation21={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1500,transition:transition18,x:0,y:0};const animation22={opacity:0,rotate:0,rotateX:5,rotateY:15,scale:1,skewX:0,skewY:0,transformPerspective:1500,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const transition19={delay:0,duration:.8,ease:[.2,.06,.07,.99],type:\"tween\"};const animation23={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition20={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation24={opacity:1,rotate:10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:10,y:0};const inertia={bounceDamping:11,bounceStiffness:274,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const transition21={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation25={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition21};const animation26={cursor:\"grabbing\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition21};const transition22={bounce:0,delay:.45,duration:2,type:\"spring\"};const transition23={bounce:0,delay:.05,duration:1.1,type:\"spring\"};const getTextEffect2=ref=>({effect:animation2,repeat:false,startDelay:0,target:{ref},threshold:1,tokenization:\"word\",transition:transition23,trigger:\"onScrollTarget\",type:\"appear\"});const transition24={bounce:0,delay:.05,duration:1,type:\"spring\"};const getTextEffect3=ref=>({effect:animation2,repeat:false,startDelay:0,target:{ref},threshold:1,tokenization:\"word\",transition:transition24,trigger:\"onScrollTarget\",type:\"appear\"});const transition25={bounce:0,delay:.9,duration:2,type:\"spring\"};const animation27={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-110};const transition26={bounce:.2,delay:0,duration:1.2,type:\"spring\"};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:90};const transition27={bounce:.2,delay:.1,duration:1.2,type:\"spring\"};const animation29={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition28={bounce:.4,delay:.1,duration:1.2,type:\"spring\"};const animation30={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"i8PagvNKL\",Phone:\"AWrfk7SmU\",Tablet:\"QdjPMfI8v\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"i8PagvNKL\"};};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 onMouseEntertxyyif=({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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const ref1=React.useRef(null);const ref2=React.useRef(null);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 elementId=useRouteElementId(\"dd7GSkMJO\");const elementId1=useRouteElementId(\"skVhFBsCT\");const ref14=React.useRef(null);const elementId2=useRouteElementId(\"RyRBrinRM\");const ref15=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"AWrfk7SmU\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AWrfk7SmU\")return true;return false;};const elementId3=useRouteElementId(\"W4ykTebJl\");const ref16=React.useRef(null);const elementId4=useRouteElementId(\"nmjjig7UQ\");const ref17=React.useRef(null);const elementId5=useRouteElementId(\"fihICu4ao\");const ref18=React.useRef(null);const elementId6=useRouteElementId(\"nSFtSZx7m\");const ref19=React.useRef(null);const elementId7=useRouteElementId(\"LXFPtOl4K\");const ref20=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"i8PagvNKL\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(178, 7, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ogrxa2\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14zrw16\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4c0dnh\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xtqye5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eavkbs\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ydvjff\",\"data-framer-appear-id\":\"ydvjff\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+0+20+152.5+0+0+0+0+4.8429},QdjPMfI8v:{y:(componentViewport?.y||0)+0+0+20+246.5+0+0+0+0+4.8429}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,width:\"35px\",y:(componentViewport?.y||0)+0+0+20+230+0+0+0+0+4.8429,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ruqxu-container\",nodeId:\"J9PZwPOhi\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:1.2},children:/*#__PURE__*/_jsx(Logo,{GD8JyVniZ:0,height:\"100%\",id:\"J9PZwPOhi\",layoutId:\"J9PZwPOhi\",style:{height:\"100%\",width:\"100%\"},variant:\"GAMw0OGJi\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bqedbi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdOVFF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 540',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Make it move with Motion.\"})})},QdjPMfI8v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdOVFF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 540',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Make it move with Motion.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdOVFF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 540',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Make it move with Motion.\"})}),className:\"framer-1mtwkhg\",effect:textEffect,fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdORGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 480',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"A robust animation library for modern web projects using JavaScript, React, or Vue.\"})}),className:\"framer-1ebuhv8\",effect:textEffect1,fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6yatjn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+0+20+152.5+0+0+0+246+0},QdjPMfI8v:{y:(componentViewport?.y||0)+0+0+20+246.5+0+0+0+259+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,width:\"192.5px\",y:(componentViewport?.y||0)+0+0+20+230+0+0+0+292+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1on9sf4-container\",\"data-framer-appear-id\":\"1on9sf4\",initial:animation1,nodeId:\"GdQ1GQQX1\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Copy,{b6FHe6Vec:0,height:\"100%\",id:\"GdQ1GQQX1\",jRd8C845a:\"rgb(23, 23, 23)\",layoutId:\"GdQ1GQQX1\",style:{height:\"100%\",width:\"100%\"},variant:\"gYuHT4r7E\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iIDpwJJzs\"},implicitPathVariables:undefined},{href:{webPageId:\"iIDpwJJzs\"},implicitPathVariables:undefined},{href:{webPageId:\"iIDpwJJzs\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+0+20+152.5+0+0+0+246+0},QdjPMfI8v:{y:(componentViewport?.y||0)+0+0+20+246.5+0+0+0+259+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,y:(componentViewport?.y||0)+0+0+20+230+0+0+0+292+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1xdv37q-container\",\"data-framer-appear-id\":\"1xdv37q\",initial:animation1,nodeId:\"GuIWFTBpm\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{XNXElvSwv:resolvedLinks[2]},QdjPMfI8v:{XNXElvSwv:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{Cew9bH6Xi:\"rgb(9, 104, 255)\",height:\"100%\",id:\"GuIWFTBpm\",layoutId:\"GuIWFTBpm\",sl65aq8yV:\"rgb(255, 255, 255)\",variant:\"X4CnET4cW\",width:\"100%\",XNXElvSwv:resolvedLinks[0],YtW6M9hpO:\"Quick start\"})})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1klalke\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1vg77zl\",\"data-framer-appear-id\":\"1vg77zl\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ef1ige\",id:\"1ef1ige\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref1,whileHover:animation7,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kj5jiu\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 2.813 9 C 2.502 9 2.25 9 2.25 9 L 2.25 5.625 C 2.25 5.625 2.502 5.625 2.813 5.625 L 15.188 5.625 C 15.498 5.625 15.75 5.625 15.75 5.625 L 15.75 9 C 15.75 9 15.498 9 15.188 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 14.625 9 L 14.625 14.063 C 14.625 14.373 14.373 14.625 14.063 14.625 L 3.938 14.625 C 3.627 14.625 3.375 14.373 3.375 14.063 L 3.375 9 M 9 5.625 L 9 14.625 M 12.431 2.194 C 13.087 2.851 13.126 3.956 12.431 4.572 C 11.242 5.625 9 5.625 9 5.625 C 9 5.625 9 3.383 10.055 2.194 C 10.669 1.499 11.774 1.538 12.431 2.194 Z M 5.569 2.194 C 4.913 2.851 4.874 3.956 5.569 4.572 C 6.758 5.625 9 5.625 9 5.625 C 9 5.625 9 3.383 7.945 2.194 C 7.331 1.499 6.226 1.538 5.569 2.194 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11279610091,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 520',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Free and\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 520',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"open-source\"})]}),className:\"framer-1kb7qxe\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1ef1ige\",offsetX:0,offsetY:-15,onDismiss:overlay.hide,placement:\"top\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation9,className:\"framer-ocwfoc\",exit:animation8,initial:animation10,ref:ref2,role:\"dialog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-asoo2a\",\"data-styles-preset\":\"nJ1TIN9W3\",children:\"Completely free to use and open-source under the MIT license.\"})}),className:\"framer-743sks\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-o671qm\",\"data-framer-appear-id\":\"o671qm\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9eluk8\",id:\"9eluk8\",onMouseEnter:onMouseEntertxyyif({overlay:overlay1}),ref:ref3,whileHover:animation7,children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref3,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"9eluk8\",offsetX:0,offsetY:-15,onDismiss:overlay1.hide,placement:\"top\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation9,className:\"framer-154knn8\",exit:animation8,initial:animation10,ref:ref4,role:\"dialog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-asoo2a\",\"data-styles-preset\":\"nJ1TIN9W3\",children:\"User-friendly API that’s easy to start with and fun to master.\"})}),className:\"framer-r3baw5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1skg2fg\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 2.25 9 C 2.25 5.272 5.272 2.25 9 2.25 C 12.728 2.25 15.75 5.272 15.75 9 C 15.75 12.728 12.728 15.75 9 15.75 C 5.272 15.75 2.25 12.728 2.25 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 5.625 7.594 C 5.625 7.128 6.003 6.75 6.469 6.75 C 6.935 6.75 7.313 7.128 7.313 7.594 C 7.313 8.06 6.935 8.438 6.469 8.438 C 6.003 8.438 5.625 8.06 5.625 7.594 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 10.688 7.594 C 10.688 7.128 11.065 6.75 11.531 6.75 C 11.997 6.75 12.375 7.128 12.375 7.594 C 12.375 8.06 11.997 8.438 11.531 8.438 C 11.065 8.438 10.688 8.06 10.688 7.594 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 11.813 10.688 C 11.229 11.696 10.249 12.375 9 12.375 C 7.751 12.375 6.771 11.696 6.188 10.688\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12178375294,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 520',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Easy to use\"})}),className:\"framer-1e4y7nr\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation11,className:\"framer-19b9g4t\",\"data-framer-appear-id\":\"19b9g4t\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9i3ee8\",id:\"9i3ee8\",onMouseEnter:onMouseEntertxyyif({overlay:overlay2}),ref:ref5,whileHover:animation7,children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref5,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"9i3ee8\",offsetX:0,offsetY:-15,onDismiss:overlay2.hide,placement:\"top\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation9,className:\"framer-1o18dco\",exit:animation8,initial:animation10,ref:ref6,role:\"dialog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-asoo2a\",\"data-styles-preset\":\"nJ1TIN9W3\",children:\"Written in TypeScript with extensive test coverage and high performance.\"})}),className:\"framer-18as4d8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7tcx0l\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 6.188 9.563 L 7.875 11.25 L 11.813 7.313\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.25 9 C 2.25 5.272 5.272 2.25 9 2.25 C 12.728 2.25 15.75 5.272 15.75 9 C 15.75 12.728 12.728 15.75 9 15.75 C 5.272 15.75 2.25 12.728 2.25 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10263936151,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 520',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Production-ready\"})}),className:\"framer-3ut381\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation12,className:\"framer-m7n5t9\",\"data-framer-appear-id\":\"m7n5t9\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ubbv5p\",id:\"1ubbv5p\",onMouseEnter:onMouseEntertxyyif({overlay:overlay3}),ref:ref7,whileHover:animation7,children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref7,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1ubbv5p\",offsetX:0,offsetY:-15,onDismiss:overlay3.hide,placement:\"top\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation9,className:\"framer-1e7ytm6\",exit:animation8,initial:animation10,ref:ref8,role:\"dialog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-asoo2a\",\"data-styles-preset\":\"nJ1TIN9W3\",children:\"Combines JS animations with hardware acceleration for optimal performance.\"})}),className:\"framer-f2kf0m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1x2f1ug\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 7.313 7.313 L 10.688 7.313 L 10.688 10.688 L 7.313 10.688 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 3.938 14.625 C 3.627 14.625 3.375 14.625 3.375 14.625 L 3.375 3.375 C 3.375 3.375 3.627 3.375 3.938 3.375 L 14.063 3.375 C 14.373 3.375 14.625 3.375 14.625 3.375 L 14.625 14.625 C 14.625 14.625 14.373 14.625 14.063 14.625 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 14.625 7.313 L 16.313 7.313 M 14.625 10.688 L 16.313 10.688 M 1.688 7.313 L 3.375 7.313 M 1.688 10.688 L 3.375 10.688 M 10.688 14.625 L 10.688 16.313 M 7.313 14.625 L 7.313 16.313 M 10.688 1.688 L 10.688 3.375 M 7.313 1.688 L 7.313 3.375\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10219885477,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 520',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Hybrid engine\"})}),className:\"framer-f22tqf\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation13,className:\"framer-1kewbwq\",\"data-framer-appear-id\":\"1kewbwq\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ti6dk9\",id:\"1ti6dk9\",onMouseEnter:onMouseEntertxyyif({overlay:overlay4}),ref:ref9,whileHover:animation7,children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref9,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1ti6dk9\",offsetX:0,offsetY:-15,onDismiss:overlay4.hide,placement:\"top\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation9,className:\"framer-1ouxecs\",exit:animation8,initial:animation10,ref:ref10,role:\"dialog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-asoo2a\",\"data-styles-preset\":\"nJ1TIN9W3\",children:\"Provides LLM-friendly documentation, AI-editable examples and Motion+ .cursorrules\"})}),className:\"framer-6vyvv5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ulo365\",\"data-framer-name\":\"Robot\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 9 6 L 9 3 L 6 3\" fill=\"transparent\" stroke-width=\"1.52\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 4.5 15 C 3.672 15 3 15 3 15 L 3 6 C 3 6 3.672 6 4.5 6 L 13.5 6 C 14.328 6 15 6 15 6 L 15 15 C 15 15 14.328 15 13.5 15 Z\" fill=\"transparent\" stroke-width=\"1.52\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 1.5 10.5 L 3 10.5 M 15 10.5 L 16.5 10.5 M 11.25 9.75 L 11.25 11.25 M 6.75 9.75 L 6.75 11.25\" fill=\"transparent\" stroke-width=\"1.52\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9778647153,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 520',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Robot friendly\"})}),className:\"framer-8cwcdx\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation14,className:\"framer-cyrv3z\",\"data-framer-appear-id\":\"cyrv3z\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r4f2s3\",id:\"1r4f2s3\",onMouseEnter:onMouseEntertxyyif({overlay:overlay5}),ref:ref11,whileHover:animation7,children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref11,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1r4f2s3\",offsetX:0,offsetY:-15,onDismiss:overlay5.hide,placement:\"top\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation9,className:\"framer-1lsna91\",exit:animation8,initial:animation10,ref:ref12,role:\"dialog\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-asoo2a\",\"data-styles-preset\":\"nJ1TIN9W3\",children:[\"Mini \",/*#__PURE__*/_jsx(\"code\",{className:\"framer-styles-preset-1x44pam\",\"data-styles-preset\":\"PSqZE1cmW\",children:\"animate\"}),\" is 90% smaller than its GSAP equivalent, \",/*#__PURE__*/_jsx(\"code\",{className:\"framer-styles-preset-1x44pam\",\"data-styles-preset\":\"PSqZE1cmW\",children:\"scroll\"}),\" is 75% smaller.\"]})}),className:\"framer-19l3xdu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mrdir1\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 12.938 5.063 L 2.25 15.75 M 10.29 13.335 C 10.184 13.441 10.041 13.5 9.892 13.5 L 4.5 13.5 L 4.5 8.108 C 4.5 7.959 4.559 7.816 4.665 7.71 L 9.591 2.841 C 11.128 1.303 13.622 1.303 15.159 2.841 C 16.697 4.378 16.697 6.872 15.159 8.409 Z M 7.875 4.537 L 7.875 10.125 M 9.563 8.437 L 15.131 8.437\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12499187715,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 520',\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Tiny footprint\"})}),className:\"framer-jh1xoo\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:.6,animate:animation15,className:\"framer-1n2jfom\",\"data-framer-appear-id\":\"1n2jfom\",\"data-framer-name\":\"Background\",initial:animation16,optimized:true,transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-133+-19),pixelHeight:2e3,pixelWidth:2e3,sizes:\"1098px\",src:\"https://framerusercontent.com/images/lyeMp4g3kXbh4joTBITbB07M5o.jpg?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/lyeMp4g3kXbh4joTBITbB07M5o.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/lyeMp4g3kXbh4joTBITbB07M5o.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/lyeMp4g3kXbh4joTBITbB07M5o.jpg?lossless=1 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-143+-19),pixelHeight:2e3,pixelWidth:2e3,sizes:\"1098px\",src:\"https://framerusercontent.com/images/lyeMp4g3kXbh4joTBITbB07M5o.jpg?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/lyeMp4g3kXbh4joTBITbB07M5o.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/lyeMp4g3kXbh4joTBITbB07M5o.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/lyeMp4g3kXbh4joTBITbB07M5o.jpg?lossless=1 2000w\"},className:\"framer-ojn04v\",\"data-framer-name\":\"Image\",style:{rotate:180}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oj4d68\",\"data-framer-name\":\"Shade\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-33knlp\",\"data-framer-name\":\"Gray\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vghpay\",\"data-framer-name\":\"Gray\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jnmit4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dqux7l\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s16cmo\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n0zjf\",id:elementId,ref:ref13,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+1e3+180+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o1ikig-container\",nodeId:\"GnN3QPifB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{fY2ivOzRD:\"Examples\",height:\"100%\",id:\"GnN3QPifB\",layoutId:\"GnN3QPifB\",oufbjrCkl:\"rgba(255, 255, 255, 0.6)\",Q2I4Ibtfz:\"rgb(26, 26, 26)\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jioqov\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-exngks\",\"data-styles-preset\":\"oFGazSjG5\",style:{\"--framer-text-alignment\":\"center\"},children:\"Powerful animations\"})}),className:\"framer-3l3lkn\",effect:getTextEffect(ref13),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15baaxw\",\"data-styles-preset\":\"qNr6sz4fJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Create smooth, high-performance animations with Motion’s easy-to-use API—from simple transforms to advanced interactive gestures.\"})}),className:\"framer-1h5ba2h\",effect:getTextEffect1(ref13),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vu9j51\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref13,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gau6p9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s8b783\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qjgnd2\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay6=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xozyr1\",\"data-framer-name\":\"Details\",id:\"xozyr1\",onTap:onTap3bnx0g({overlay:overlay6}),whileHover:animation19,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16i4892\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 8.156 12.656 C 8.156 12.19 8.534 11.813 9 11.813 C 9.466 11.813 9.844 12.19 9.844 12.656 C 9.844 13.122 9.466 13.5 9 13.5 C 8.534 13.5 8.156 13.122 8.156 12.656 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9 10.125 L 9 9.563 C 10.242 9.563 11.25 8.681 11.25 7.594 C 11.25 6.507 10.242 5.625 9 5.625 C 7.758 5.625 6.75 6.507 6.75 7.594 L 6.75 7.875\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.25 9 C 2.25 5.272 5.272 2.25 9 2.25 C 12.728 2.25 15.75 5.272 15.75 9 C 15.75 12.728 12.728 15.75 9 15.75 C 5.272 15.75 2.25 12.728 2.25 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9972837727,withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-ns8u6a\"),\"data-framer-portal-id\":\"xozyr1\",exit:{opacity:0,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay6.hide()},\"hlAbJ0SRa\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation21,className:cx(scopingClassNames,\"framer-1l5kjn8\"),\"data-framer-portal-id\":\"xozyr1\",exit:animation20,initial:animation22,style:{originX:0,transformPerspective:1500},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-41lkz8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e1kzyo\",\"data-framer-name\":\"Logo\",opacity:.4,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 13\"><path d=\"M 13.215 0 L 6.3 12.989 L 0 12.989 L 5.4 2.847 C 6.237 1.274 8.326 0 10.065 0 Z M 28.665 3.247 C 28.665 1.454 30.075 0 31.815 0 C 33.554 0 34.965 1.454 34.965 3.247 C 34.965 5.04 33.554 6.494 31.815 6.494 C 30.075 6.494 28.665 5.04 28.665 3.247 Z M 14.397 0 L 20.697 0 L 13.781 12.989 L 7.481 12.989 Z M 21.837 0 L 28.137 0 L 22.738 10.142 C 21.901 11.714 19.812 12.989 18.072 12.989 L 14.922 12.989 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8776362102,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fm05z2\",onTap:onTap1wnntms({overlay:overlay6}),whileHover:animation7,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ku7zn4\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 14.063 3.938 L 3.938 14.063 M 14.063 14.063 L 3.938 3.938\" fill=\"rgb(0,0,0)\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9049391167,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u9rbfs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1691wg3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-2u0z3l\",\"data-styles-preset\":\"bgIWdR1bl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Simple\"})}),className:\"framer-13stzdq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Motion’s pick-up-and-play API is easy to start and fun to master.\"})}),className:\"framer-15ex3oj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v9ew53\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1inyisn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-95cb0a67-053e-4ab2-a5d0-7294f60d31fe, rgb(16, 20, 26))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"// JavaScript\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"animate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"(\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-276eccf4-355e-4a09-b15d-365542f5d985, rgb(12, 220, 247))\"},children:'\".ball\"'}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\", { scale: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"1.2\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" })\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-2wvyz3\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bd901n-container\",nodeId:\"RsFXkX6xK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:'// JavaScript \\nanimate(\".ball\", { scale: 1.2 })',height:\"100%\",id:\"RsFXkX6xK\",layoutId:\"RsFXkX6xK\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10v5ccr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-95cb0a67-053e-4ab2-a5d0-7294f60d31fe, rgb(16, 20, 26))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"// React\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"<\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-276eccf4-355e-4a09-b15d-365542f5d985, rgb(12, 220, 247))\"},children:\"motion\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\".\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-276eccf4-355e-4a09-b15d-365542f5d985, rgb(12, 220, 247))\"},children:\"div\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-a06cf1e3-330f-485d-9c59-c18af7a866a8, rgb(79, 240, 183))\"},children:\"animate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"={{ scale: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"1.2\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" }} />\"})]})}),className:\"framer-1xyymsi\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jfs7lh-container\",nodeId:\"ysQRrbUQO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:\"// React\\n<motion.div animate={{ scale: 1.2 }} />\",height:\"100%\",id:\"ysQRrbUQO\",layoutId:\"ysQRrbUQO\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]})]})]})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ogk788\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation23,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition19,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hwg7c1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g6kwcu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ci7afz\",\"data-styles-preset\":\"MNWLPP1ih\",children:\"Simple\"})}),className:\"framer-2tjdbv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v5sf5u\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/js/options?utm_source=homepage-header\",motionChild:true,nodeId:\"UfiCwImOx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8urrfq framer-lux5qc\",\"data-framer-name\":\"JS\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+0+30+202+6.5+0+-2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"22px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+0+30+227.75+6.5+0+-2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-188xrox-container\",nodeId:\"NlBZhyEyr\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.7},children:/*#__PURE__*/_jsx(IconJS,{height:\"100%\",id:\"NlBZhyEyr\",layoutId:\"NlBZhyEyr\",style:{height:\"100%\",width:\"100%\"},variant:\"N3wKbOXIM\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/enter-animation?utm_source=homepage-header\",motionChild:true,nodeId:\"yoGdQEnrR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gtuf85 framer-lux5qc\",\"data-framer-name\":\"React\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+0+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+0+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yepvcl-container\",nodeId:\"Mh9bSa6T8\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconReact,{height:\"100%\",id:\"Mh9bSa6T8\",layoutId:\"Mh9bSa6T8\",style:{height:\"100%\",width:\"100%\"},variant:\"mlXzqoMM8\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/vue/enter-animation?utm_source=homepage-header?utm_source=homepage-header\",motionChild:true,nodeId:\"WkmIPG0d8\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1y8y9e8 framer-lux5qc\",\"data-framer-name\":\"Vue\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+0+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+0+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g3a0cw-container\",nodeId:\"hTOLbiskt\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconVue,{height:\"100%\",id:\"hTOLbiskt\",layoutId:\"hTOLbiskt\",style:{height:\"100%\",width:\"100%\"},variant:\"JPpOznz9C\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tgobm9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h9ar98\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay7=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3xpit8\",\"data-framer-name\":\"Details\",id:\"3xpit8\",onTap:onTap3bnx0g({overlay:overlay7}),whileHover:animation19,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e4wkev\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 8.156 12.656 C 8.156 12.19 8.534 11.813 9 11.813 C 9.466 11.813 9.844 12.19 9.844 12.656 C 9.844 13.122 9.466 13.5 9 13.5 C 8.534 13.5 8.156 13.122 8.156 12.656 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9 10.125 L 9 9.563 C 10.242 9.563 11.25 8.681 11.25 7.594 C 11.25 6.507 10.242 5.625 9 5.625 C 7.758 5.625 6.75 6.507 6.75 7.594 L 6.75 7.875\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.25 9 C 2.25 5.272 5.272 2.25 9 2.25 C 12.728 2.25 15.75 5.272 15.75 9 C 15.75 12.728 12.728 15.75 9 15.75 C 5.272 15.75 2.25 12.728 2.25 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9972837727,withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay7.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-wcrizi\"),\"data-framer-portal-id\":\"3xpit8\",exit:{opacity:0,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay7.hide()},\"MWz8R0h3b\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation21,className:cx(scopingClassNames,\"framer-1n3ppil\"),\"data-framer-portal-id\":\"3xpit8\",exit:animation20,initial:animation22,style:{originX:0,transformPerspective:1500},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-168rpc5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-otsknq\",\"data-framer-name\":\"Logo\",opacity:.4,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 13\"><path d=\"M 13.215 0 L 6.3 12.989 L 0 12.989 L 5.4 2.847 C 6.237 1.274 8.326 0 10.065 0 Z M 28.665 3.247 C 28.665 1.454 30.075 0 31.815 0 C 33.554 0 34.965 1.454 34.965 3.247 C 34.965 5.04 33.554 6.494 31.815 6.494 C 30.075 6.494 28.665 5.04 28.665 3.247 Z M 14.397 0 L 20.697 0 L 13.781 12.989 L 7.481 12.989 Z M 21.837 0 L 28.137 0 L 22.738 10.142 C 21.901 11.714 19.812 12.989 18.072 12.989 L 14.922 12.989 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8776362102,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i98slh\",onTap:onTap1wnntms({overlay:overlay7}),whileHover:animation7,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13guxsk\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 14.063 3.938 L 3.938 14.063 M 14.063 14.063 L 3.938 3.938\" fill=\"rgb(0,0,0)\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9049391167,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b8qyx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-101k8vw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-2u0z3l\",\"data-styles-preset\":\"bgIWdR1bl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Transforms\"})}),className:\"framer-1d74c7e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Animate every transform axis independently, without needing multiple elements.\"})}),className:\"framer-nser6c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dl6r7k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15jwt35\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-95cb0a67-053e-4ab2-a5d0-7294f60d31fe, rgb(16, 20, 26))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"// JavaScript\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"animate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"(\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-276eccf4-355e-4a09-b15d-365542f5d985, rgb(12, 220, 247))\"},children:'\".ball\"'}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\", { scale: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"1.2\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" })\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-1di9y62\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tifsrd-container\",nodeId:\"GXQZ8XpHN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:'// JavaScriptanimate(\".ball\", { scale: 1.2 })',height:\"100%\",id:\"GXQZ8XpHN\",layoutId:\"GXQZ8XpHN\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fr4ah7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"// React\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"<\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:\"motion.div\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"initial\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"={{ y: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"20\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" }}\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"animate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"={{ y: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"0\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" }}\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"whileHover\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"={{ scale: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"1.1\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" }}\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"whileTap\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"={{ scale: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"0.9 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"}}\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"/>\"})]})}),className:\"framer-1fm4h3e\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rxzuum-container\",nodeId:\"CUc65TEa8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:\"// React<motion.div  initial={{ y: 20 }}  animate={{ y: 0 }}  whileHover={{ scale: 1.1 }}  whileTap={{ scale: 0.9 }}/>\",height:\"100%\",id:\"CUc65TEa8\",layoutId:\"CUc65TEa8\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]})]})]})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11vv7v4\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tx9gkv\",children:/*#__PURE__*/_jsxs(MotionDivWithTransformExamples19dqz24,{className:\"framer-19dqz24\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17avq15\",style:{originX:0,originY:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qvntt\",style:{originX:1,originY:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8nefiy\",style:{originX:0,originY:1}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p00dq7\",style:{originX:1,originY:1}})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6mzpm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ci7afz\",\"data-styles-preset\":\"MNWLPP1ih\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Transforms\"})}),className:\"framer-bvh8nw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17g6azy\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/js/rotate?utm_source=homepage-header\",motionChild:true,nodeId:\"nJuh4JPH4\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zziimc framer-lux5qc\",\"data-framer-name\":\"JS\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+298+30+202+6.5+0+-2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"22px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+0+30+227.75+6.5+0+-2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rlyndr-container\",nodeId:\"jYGOkgviO\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.7},children:/*#__PURE__*/_jsx(IconJS,{height:\"100%\",id:\"jYGOkgviO\",layoutId:\"jYGOkgviO\",style:{height:\"100%\",width:\"100%\"},variant:\"N3wKbOXIM\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/rotate?utm_source=homepage-header\",motionChild:true,nodeId:\"meYvfw7FB\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1eatxdg framer-lux5qc\",\"data-framer-name\":\"React\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+298+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+0+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r8f2r6-container\",nodeId:\"lv2Q6OHAd\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconReact,{height:\"100%\",id:\"lv2Q6OHAd\",layoutId:\"lv2Q6OHAd\",style:{height:\"100%\",width:\"100%\"},variant:\"mlXzqoMM8\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/vue/rotate?utm_source=homepage-header\",motionChild:true,nodeId:\"f34dR5E5V\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-c1ipy3 framer-lux5qc\",\"data-framer-name\":\"Vue\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+298+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+0+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fdrkxd-container\",nodeId:\"PFR7a5rye\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconVue,{height:\"100%\",id:\"PFR7a5rye\",layoutId:\"PFR7a5rye\",style:{height:\"100%\",width:\"100%\"},variant:\"JPpOznz9C\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5esriu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rlhb4g\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay8=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eavitr\",\"data-framer-name\":\"Details\",id:\"1eavitr\",onTap:onTap3bnx0g({overlay:overlay8}),whileHover:animation19,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8u74ms\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 8.156 12.656 C 8.156 12.19 8.534 11.813 9 11.813 C 9.466 11.813 9.844 12.19 9.844 12.656 C 9.844 13.122 9.466 13.5 9 13.5 C 8.534 13.5 8.156 13.122 8.156 12.656 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9 10.125 L 9 9.563 C 10.242 9.563 11.25 8.681 11.25 7.594 C 11.25 6.507 10.242 5.625 9 5.625 C 7.758 5.625 6.75 6.507 6.75 7.594 L 6.75 7.875\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.25 9 C 2.25 5.272 5.272 2.25 9 2.25 C 12.728 2.25 15.75 5.272 15.75 9 C 15.75 12.728 12.728 15.75 9 15.75 C 5.272 15.75 2.25 12.728 2.25 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9972837727,withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay8.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1frrngo\"),\"data-framer-portal-id\":\"1eavitr\",exit:{opacity:0,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay8.hide()},\"psaCHkVuc\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation21,className:cx(scopingClassNames,\"framer-c9oggv\"),\"data-framer-portal-id\":\"1eavitr\",exit:animation20,initial:animation22,style:{originX:0,transformPerspective:1500},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ezstx1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-747cry\",\"data-framer-name\":\"Logo\",opacity:.4,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 13\"><path d=\"M 13.215 0 L 6.3 12.989 L 0 12.989 L 5.4 2.847 C 6.237 1.274 8.326 0 10.065 0 Z M 28.665 3.247 C 28.665 1.454 30.075 0 31.815 0 C 33.554 0 34.965 1.454 34.965 3.247 C 34.965 5.04 33.554 6.494 31.815 6.494 C 30.075 6.494 28.665 5.04 28.665 3.247 Z M 14.397 0 L 20.697 0 L 13.781 12.989 L 7.481 12.989 Z M 21.837 0 L 28.137 0 L 22.738 10.142 C 21.901 11.714 19.812 12.989 18.072 12.989 L 14.922 12.989 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8776362102,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7vqvhk\",onTap:onTap1wnntms({overlay:overlay8}),whileHover:animation7,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18hpkk0\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 14.063 3.938 L 3.938 14.063 M 14.063 14.063 L 3.938 3.938\" fill=\"rgb(0,0,0)\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9049391167,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e3zt9d\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5j2ato\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-2u0z3l\",\"data-styles-preset\":\"bgIWdR1bl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Scroll\"})}),className:\"framer-14fcag9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Motion uses browser APIs for hardware accelerated scroll-linked and scroll-triggered animations.\"})}),className:\"framer-1f73duk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k0kr3a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hmbl3u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"// JavaScript\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"inView\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:'(\"'}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"section\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:'\", (info) => {'}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"   \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"animate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"(info.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:\"target\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\", { opacity: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"1\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" })\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"})\"})]})}),className:\"framer-1uiknb\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rjuu3a-container\",nodeId:\"zQA6S9Mv8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:'// JavaScriptinView(\"section\", (info) => {   animate(info.target, { opacity: 1 })})',height:\"100%\",id:\"zQA6S9Mv8\",layoutId:\"zQA6S9Mv8\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z93gqe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"// React\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"<\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:\"motion.div\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\" whileInView\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"={{ opacity: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"1\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" }} />\"})]})}),className:\"framer-1br47m4\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wyfejs-container\",nodeId:\"oqQmkP0VM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:\"// React<motion.div whileInView={{ opacity: 1 }} />\",height:\"100%\",id:\"oqQmkP0VM\",layoutId:\"oqQmkP0VM\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]})]})]})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fymeyv\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-u0jjup\",style:{originX:1,originY:0},children:/*#__PURE__*/_jsx(MotionDivWithScrollAnimationqrkba5,{className:\"framer-qrkba5\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-po1p5e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ci7afz\",\"data-styles-preset\":\"MNWLPP1ih\",children:\"Scroll\"})}),className:\"framer-14121y2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mxoojo\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/js/scroll-pinning?utm_source=homepage-header\",motionChild:true,nodeId:\"lYxUT7UrN\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1e2kpjp framer-lux5qc\",\"data-framer-name\":\"JS\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+596+30+500+6.5+0+-2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"22px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+0+30+551.5+6.5+0+-2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8lr5vu-container\",nodeId:\"NO2sWaCya\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.7},children:/*#__PURE__*/_jsx(IconJS,{height:\"100%\",id:\"NO2sWaCya\",layoutId:\"NO2sWaCya\",style:{height:\"100%\",width:\"100%\"},variant:\"N3wKbOXIM\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/scroll-linked?utm_source=homepage-header\",motionChild:true,nodeId:\"XzNrojBwt\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5c3pzs framer-lux5qc\",\"data-framer-name\":\"React\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+596+30+500+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+0+30+551.5+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2l0489-container\",nodeId:\"THn5nyToz\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconReact,{height:\"100%\",id:\"THn5nyToz\",layoutId:\"THn5nyToz\",style:{height:\"100%\",width:\"100%\"},variant:\"mlXzqoMM8\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/vue/scroll-linked?utm_source=homepage-header\",motionChild:true,nodeId:\"osFc1AJAj\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-kpvbji framer-lux5qc\",\"data-framer-name\":\"Vue\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+596+30+500+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+0+30+551.5+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17m57jy-container\",nodeId:\"Ssi9t81wX\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconVue,{height:\"100%\",id:\"Ssi9t81wX\",layoutId:\"Ssi9t81wX\",style:{height:\"100%\",width:\"100%\"},variant:\"JPpOznz9C\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1toj9o8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m5m13j\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay9=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jli8qy\",\"data-framer-name\":\"Details\",id:\"jli8qy\",onTap:onTap3bnx0g({overlay:overlay9}),whileHover:animation19,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-158ciso\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 8.156 12.656 C 8.156 12.19 8.534 11.813 9 11.813 C 9.466 11.813 9.844 12.19 9.844 12.656 C 9.844 13.122 9.466 13.5 9 13.5 C 8.534 13.5 8.156 13.122 8.156 12.656 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9 10.125 L 9 9.563 C 10.242 9.563 11.25 8.681 11.25 7.594 C 11.25 6.507 10.242 5.625 9 5.625 C 7.758 5.625 6.75 6.507 6.75 7.594 L 6.75 7.875\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.25 9 C 2.25 5.272 5.272 2.25 9 2.25 C 12.728 2.25 15.75 5.272 15.75 9 C 15.75 12.728 12.728 15.75 9 15.75 C 5.272 15.75 2.25 12.728 2.25 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9972837727,withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay9.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-66osqb\"),\"data-framer-portal-id\":\"jli8qy\",exit:{opacity:0,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay9.hide()},\"dytJPLxIH\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation21,className:cx(scopingClassNames,\"framer-1ni6i3y\"),\"data-framer-portal-id\":\"jli8qy\",exit:animation20,initial:animation22,style:{originX:0,transformPerspective:1500},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3j7q4c\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ip09q1\",\"data-framer-name\":\"Logo\",opacity:.4,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 13\"><path d=\"M 13.215 0 L 6.3 12.989 L 0 12.989 L 5.4 2.847 C 6.237 1.274 8.326 0 10.065 0 Z M 28.665 3.247 C 28.665 1.454 30.075 0 31.815 0 C 33.554 0 34.965 1.454 34.965 3.247 C 34.965 5.04 33.554 6.494 31.815 6.494 C 30.075 6.494 28.665 5.04 28.665 3.247 Z M 14.397 0 L 20.697 0 L 13.781 12.989 L 7.481 12.989 Z M 21.837 0 L 28.137 0 L 22.738 10.142 C 21.901 11.714 19.812 12.989 18.072 12.989 L 14.922 12.989 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8776362102,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jcydpr\",onTap:onTap1wnntms({overlay:overlay9}),whileHover:animation7,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kjysrq\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 14.063 3.938 L 3.938 14.063 M 14.063 14.063 L 3.938 3.938\" fill=\"rgb(0,0,0)\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9049391167,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10n1emp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qyza6z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-2u0z3l\",\"data-styles-preset\":\"bgIWdR1bl\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://motion.dev/#section-5\",motionChild:true,nodeId:\"nNNdYCqBp\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1p15ko0\",\"data-styles-preset\":\"ebpVhGhlo\",children:\"Exit animations\"})})})}),className:\"framer-ujn3mz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Motion for React and Vue make it easier than ever to animate elements as they exit the DOM.\"})}),className:\"framer-vbyhq0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ulxf9j\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-170b0xn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"<\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"AnimatePresence\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\">\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"  {show ? (\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[\"    <\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:\"motion.div\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"exit\"}),\"={{ opacity: \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"0\"}),\" }} />\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"  ) : null}\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"</\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"AnimatePresence\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\">\"})]})]}),className:\"framer-itb481\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uwhlf0-container\",nodeId:\"F9Mi3Y3c8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:\"<AnimatePresence>  {show ? <motion.div exit={{ opacity: 0 }} /> : null}</AnimatePresence>\",height:\"100%\",id:\"F9Mi3Y3c8\",layoutId:\"F9Mi3Y3c8\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]})})]})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-md36vt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{width:`calc((max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 50px) - 60px) * 1.1598)`,y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+1192+30+21+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:270,width:`calc((max((min(${componentViewport?.width||\"100vw\"} - 40px, 1000px) - 70px) / 4, 50px) * 2 - 50px) * 1.1598)`,y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+323.75+30+21+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1imzf72-container\",nodeId:\"LA9J3LpO6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HomeExit,{height:\"100%\",id:\"LA9J3LpO6\",layoutId:\"LA9J3LpO6\",style:{height:\"100%\",width:\"100%\"},variant:\"lv0EABEUF\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tl223z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ci7afz\",\"data-styles-preset\":\"MNWLPP1ih\",children:\"Exit animations\"})}),className:\"framer-4te1n0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1foxjh2\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/exit-animation?utm_source=homepage-header\",motionChild:true,nodeId:\"qiqGaZrOP\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-137cz framer-lux5qc\",\"data-framer-name\":\"React\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+1192+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+323.75+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ia04y3-container\",nodeId:\"v3QH9iuwx\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconReact,{height:\"100%\",id:\"v3QH9iuwx\",layoutId:\"v3QH9iuwx\",style:{height:\"100%\",width:\"100%\"},variant:\"mlXzqoMM8\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/vue/exit-animation?utm_source=homepage-header\",motionChild:true,nodeId:\"NgTApdYGv\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qeu6fw framer-lux5qc\",\"data-framer-name\":\"Vue\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+1192+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+323.75+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hja4zq-container\",nodeId:\"tBXW8GQIt\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconVue,{height:\"100%\",id:\"tBXW8GQIt\",layoutId:\"tBXW8GQIt\",style:{height:\"100%\",width:\"100%\"},variant:\"JPpOznz9C\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fdkvyv\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xbm6zc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8l2nle\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay10=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-epp4jt\",\"data-framer-name\":\"Details\",id:\"epp4jt\",onTap:onTap3bnx0g({overlay:overlay10}),whileHover:animation19,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gjbuy0\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 8.156 12.656 C 8.156 12.19 8.534 11.813 9 11.813 C 9.466 11.813 9.844 12.19 9.844 12.656 C 9.844 13.122 9.466 13.5 9 13.5 C 8.534 13.5 8.156 13.122 8.156 12.656 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9 10.125 L 9 9.563 C 10.242 9.563 11.25 8.681 11.25 7.594 C 11.25 6.507 10.242 5.625 9 5.625 C 7.758 5.625 6.75 6.507 6.75 7.594 L 6.75 7.875\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.25 9 C 2.25 5.272 5.272 2.25 9 2.25 C 12.728 2.25 15.75 5.272 15.75 9 C 15.75 12.728 12.728 15.75 9 15.75 C 5.272 15.75 2.25 12.728 2.25 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9972837727,withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay10.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1i2ypdc\"),\"data-framer-portal-id\":\"epp4jt\",exit:{opacity:0,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay10.hide()},\"d8qebbilV\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation21,className:cx(scopingClassNames,\"framer-1jexmkk\"),\"data-framer-portal-id\":\"epp4jt\",exit:animation20,initial:animation22,style:{originX:0,transformPerspective:1500},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1drne9n\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7pb5n1\",\"data-framer-name\":\"Logo\",opacity:.4,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 13\"><path d=\"M 13.215 0 L 6.3 12.989 L 0 12.989 L 5.4 2.847 C 6.237 1.274 8.326 0 10.065 0 Z M 28.665 3.247 C 28.665 1.454 30.075 0 31.815 0 C 33.554 0 34.965 1.454 34.965 3.247 C 34.965 5.04 33.554 6.494 31.815 6.494 C 30.075 6.494 28.665 5.04 28.665 3.247 Z M 14.397 0 L 20.697 0 L 13.781 12.989 L 7.481 12.989 Z M 21.837 0 L 28.137 0 L 22.738 10.142 C 21.901 11.714 19.812 12.989 18.072 12.989 L 14.922 12.989 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8776362102,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i3ekby\",onTap:onTap1wnntms({overlay:overlay10}),whileHover:animation7,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1s0cjur\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 14.063 3.938 L 3.938 14.063 M 14.063 14.063 L 3.938 3.938\" fill=\"rgb(0,0,0)\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9049391167,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-35rb63\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sl6z8d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-2u0z3l\",\"data-styles-preset\":\"bgIWdR1bl\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://motion.dev/#section-5\",motionChild:true,nodeId:\"YpSIZQDuY\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1p15ko0\",\"data-styles-preset\":\"ebpVhGhlo\",children:\"S\"})}),\"prings\"]})}),className:\"framer-16wbqnr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Go beyond time-based animations with real spring physics for great-feeling animations.\"})}),className:\"framer-1s2ugj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y09uzw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15xq2dr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"// JavaScript\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"animate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"(\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:\"element\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\", { x: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"100\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:' }, { type: \"'}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"spring\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:'\" })'})]})}),className:\"framer-ki56ne\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-x485hx-container\",nodeId:\"QIyTAo860\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:'// React<motion.div animate={{ x: 100 }} transition={{ type: \"spring\" }} />',height:\"100%\",id:\"QIyTAo860\",layoutId:\"QIyTAo860\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7372at\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"// React\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"<\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:\"motion.div\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"animate\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"={{ x: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"100\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" }} \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"transition\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:'={{ type: \"'}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"spring\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:'\" }} />'})]})}),className:\"framer-69c06v\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1op34i2-container\",nodeId:\"YpIHaoFur\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:'// React<motion.div animate={{ x: 100 }} transition={{ type: \"spring\" }} />',height:\"100%\",id:\"YpIHaoFur\",layoutId:\"YpIHaoFur\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]})]})]})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(MotionDivWithSpringAnimation6fd5fa,{className:\"framer-6fd5fa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9ga0ao\",style:{originX:1,originY:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-62vhys\",style:{originX:1,originY:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ykrr5z\",style:{originX:1,originY:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sf1rga\",style:{originX:1,originY:0}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14yjeyf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ci7afz\",\"data-styles-preset\":\"MNWLPP1ih\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Springs\"})}),className:\"framer-xons6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7psagd\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/js/spring-follow-cursor?utm_source=homepage-header\",motionChild:true,nodeId:\"QIg9UAac0\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ozns1q framer-lux5qc\",\"data-framer-name\":\"JS\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+1490+30+202+6.5+0+-2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"22px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+323.75+30+227.75+6.5+0+-2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vt4xlb-container\",nodeId:\"UjWHWPlB0\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.7},children:/*#__PURE__*/_jsx(IconJS,{height:\"100%\",id:\"UjWHWPlB0\",layoutId:\"UjWHWPlB0\",style:{height:\"100%\",width:\"100%\"},variant:\"N3wKbOXIM\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/follow-pointer-with-spring?utm_source=homepage-header\",motionChild:true,nodeId:\"xXpSVJjdc\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1pvnqcz framer-lux5qc\",\"data-framer-name\":\"React\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+1490+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+323.75+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dwa7ms-container\",nodeId:\"ALbFgnT4Y\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconReact,{height:\"100%\",id:\"ALbFgnT4Y\",layoutId:\"ALbFgnT4Y\",style:{height:\"100%\",width:\"100%\"},variant:\"mlXzqoMM8\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/vue/follow-pointer-with-spring?utm_source=homepage-header\",motionChild:true,nodeId:\"aatJwKoJ5\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1i9mhe8 framer-lux5qc\",\"data-framer-name\":\"Vue\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+1490+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+323.75+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6xxyop-container\",nodeId:\"pNSNSR3qB\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconVue,{height:\"100%\",id:\"pNSNSR3qB\",layoutId:\"pNSNSR3qB\",style:{height:\"100%\",width:\"100%\"},variant:\"JPpOznz9C\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9b309g\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-169n269\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay11=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-trzrtw\",\"data-framer-name\":\"Details\",id:\"trzrtw\",onTap:onTap3bnx0g({overlay:overlay11}),whileHover:animation19,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17vwv6k\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 8.156 12.656 C 8.156 12.19 8.534 11.813 9 11.813 C 9.466 11.813 9.844 12.19 9.844 12.656 C 9.844 13.122 9.466 13.5 9 13.5 C 8.534 13.5 8.156 13.122 8.156 12.656 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9 10.125 L 9 9.563 C 10.242 9.563 11.25 8.681 11.25 7.594 C 11.25 6.507 10.242 5.625 9 5.625 C 7.758 5.625 6.75 6.507 6.75 7.594 L 6.75 7.875\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.25 9 C 2.25 5.272 5.272 2.25 9 2.25 C 12.728 2.25 15.75 5.272 15.75 9 C 15.75 12.728 12.728 15.75 9 15.75 C 5.272 15.75 2.25 12.728 2.25 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9972837727,withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay11.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-b6l8vj\"),\"data-framer-portal-id\":\"trzrtw\",exit:{opacity:0,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay11.hide()},\"HW0cRbjQU\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation21,className:cx(scopingClassNames,\"framer-1359092\"),\"data-framer-portal-id\":\"trzrtw\",exit:animation20,initial:animation22,style:{originX:0,transformPerspective:1500},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pdf2rt\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tmvgl9\",\"data-framer-name\":\"Logo\",opacity:.4,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 13\"><path d=\"M 13.215 0 L 6.3 12.989 L 0 12.989 L 5.4 2.847 C 6.237 1.274 8.326 0 10.065 0 Z M 28.665 3.247 C 28.665 1.454 30.075 0 31.815 0 C 33.554 0 34.965 1.454 34.965 3.247 C 34.965 5.04 33.554 6.494 31.815 6.494 C 30.075 6.494 28.665 5.04 28.665 3.247 Z M 14.397 0 L 20.697 0 L 13.781 12.989 L 7.481 12.989 Z M 21.837 0 L 28.137 0 L 22.738 10.142 C 21.901 11.714 19.812 12.989 18.072 12.989 L 14.922 12.989 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8776362102,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kwqgq8\",onTap:onTap1wnntms({overlay:overlay11}),whileHover:animation7,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ti6c46\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 14.063 3.938 L 3.938 14.063 M 14.063 14.063 L 3.938 3.938\" fill=\"rgb(0,0,0)\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9049391167,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10a0hqj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ja17o1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-2u0z3l\",\"data-styles-preset\":\"bgIWdR1bl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Gestures\"})}),className:\"framer-89egsl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Hover, press and drag gestures that feel native, not “webby”.\"})}),className:\"framer-zuaz54\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vwa5w\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uh4qs2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"0px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"<motion.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:\"button\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"whileHover\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"={{ scale: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"1.1\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" }}\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"whileTap\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"={{ scale: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"0.95\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" }}\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"whileDrag\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"={{ scale: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"0.9\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\", rotate: \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"10\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\" }}\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"drag\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"/>\"})]})}),className:\"framer-wi77k7\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-909o7o-container\",nodeId:\"WJm3CTLV_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:\"<motion.button\\n  whileHover={{ scale: 1.1 }}\\n  whileTap={{ scale: 0.95 }}\\n  whileDrag={{ scale: 0.9, rotate: 10 }}\\n  drag\\n/>\",height:\"100%\",id:\"WJm3CTLV_\",layoutId:\"WJm3CTLV_\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]})})]})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fojxv2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+80+236+0+0+0+1788+30+41+141-92.5),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/gKHGJy8cUfCDFgFPOpBjYP4Ab8.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation24,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition20,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+180+236+0+0+0+647.5+30+41+166.75-102.5),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/gKHGJy8cUfCDFgFPOpBjYP4Ab8.png\"},className:\"framer-mreqao\",\"data-framer-name\":\"Grab\",style:{rotate:15}})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-12113az\",drag:true,dragMomentum:false,dragSnapToOrigin:true,dragTransition:inertia,onMouseDown:preventDefault,whileHover:animation25,whileTap:animation26,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tri6ob\",style:{originX:0,originY:0}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jlzmql\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ci7afz\",\"data-styles-preset\":\"MNWLPP1ih\",children:\"Gestures\"})}),className:\"framer-5x2hso\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mxraia\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/js/gestures?utm_source=homepage-header\",motionChild:true,nodeId:\"BdvgmnELA\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-129j9c3 framer-lux5qc\",\"data-framer-name\":\"JS\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+1788+30+202+6.5+0+-2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"22px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+647.5+30+227.75+6.5+0+-2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mx6zd5-container\",nodeId:\"v3Q3aqYMJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.7},children:/*#__PURE__*/_jsx(IconJS,{height:\"100%\",id:\"v3Q3aqYMJ\",layoutId:\"v3Q3aqYMJ\",style:{height:\"100%\",width:\"100%\"},variant:\"N3wKbOXIM\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/gestures?utm_source=homepage-header\",motionChild:true,nodeId:\"KQTdO0P5w\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-g6t8nv framer-lux5qc\",\"data-framer-name\":\"React\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+1788+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+647.5+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bcjq56-container\",nodeId:\"yjBrQwv3y\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconReact,{height:\"100%\",id:\"yjBrQwv3y\",layoutId:\"yjBrQwv3y\",style:{height:\"100%\",width:\"100%\"},variant:\"mlXzqoMM8\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/enter-animation?utm_source=homepage-header\",motionChild:true,nodeId:\"L7BB0HkHH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-64xvkh framer-lux5qc\",\"data-framer-name\":\"Vue\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+1788+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+647.5+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c2twe2-container\",nodeId:\"MZlhaumMB\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconVue,{height:\"100%\",id:\"MZlhaumMB\",layoutId:\"MZlhaumMB\",style:{height:\"100%\",width:\"100%\"},variant:\"JPpOznz9C\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lhlei9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ia1eb3\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay12=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-abvqi0\",\"data-framer-name\":\"Details\",id:\"abvqi0\",onTap:onTap3bnx0g({overlay:overlay12}),whileHover:animation19,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1etfbak\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 8.156 12.656 C 8.156 12.19 8.534 11.813 9 11.813 C 9.466 11.813 9.844 12.19 9.844 12.656 C 9.844 13.122 9.466 13.5 9 13.5 C 8.534 13.5 8.156 13.122 8.156 12.656 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9 10.125 L 9 9.563 C 10.242 9.563 11.25 8.681 11.25 7.594 C 11.25 6.507 10.242 5.625 9 5.625 C 7.758 5.625 6.75 6.507 6.75 7.594 L 6.75 7.875\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.25 9 C 2.25 5.272 5.272 2.25 9 2.25 C 12.728 2.25 15.75 5.272 15.75 9 C 15.75 12.728 12.728 15.75 9 15.75 C 5.272 15.75 2.25 12.728 2.25 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9972837727,withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay12.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-7i9v60\"),\"data-framer-portal-id\":\"abvqi0\",exit:{opacity:0,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay12.hide()},\"DXVr2zxdR\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation21,className:cx(scopingClassNames,\"framer-1d03ywc\"),\"data-framer-portal-id\":\"abvqi0\",exit:animation20,initial:animation22,style:{originX:0,transformPerspective:1500},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3idzyd\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2subdb\",\"data-framer-name\":\"Logo\",opacity:.4,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 13\"><path d=\"M 13.215 0 L 6.3 12.989 L 0 12.989 L 5.4 2.847 C 6.237 1.274 8.326 0 10.065 0 Z M 28.665 3.247 C 28.665 1.454 30.075 0 31.815 0 C 33.554 0 34.965 1.454 34.965 3.247 C 34.965 5.04 33.554 6.494 31.815 6.494 C 30.075 6.494 28.665 5.04 28.665 3.247 Z M 14.397 0 L 20.697 0 L 13.781 12.989 L 7.481 12.989 Z M 21.837 0 L 28.137 0 L 22.738 10.142 C 21.901 11.714 19.812 12.989 18.072 12.989 L 14.922 12.989 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8776362102,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ic36vm\",onTap:onTap1wnntms({overlay:overlay12}),whileHover:animation7,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pmb537\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 14.063 3.938 L 3.938 14.063 M 14.063 14.063 L 3.938 3.938\" fill=\"rgb(0,0,0)\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9049391167,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n9j1kx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ny3029\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-2u0z3l\",\"data-styles-preset\":\"bgIWdR1bl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Layout animations\"})}),className:\"framer-u23won\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Animate between different layouts with Motion’s industry-leading layout animation engine.\"})}),className:\"framer-1du5hgr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m11etc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f4nekr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"<\"}),\"motion.div\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"layoutId\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:'=\"'}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"modal\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:'\" />'})]})}),className:\"framer-fwi36y\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1anu51y-container\",nodeId:\"Nk7fXcgE2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:'<motion.div layoutId=\"modal\" />',height:\"100%\",id:\"Nk7fXcgE2\",layoutId:\"Nk7fXcgE2\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]})})]})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ovrxyc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+2086+30+41+29.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"415px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+647.5+30+41+55.25,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{style:{scale:.7}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-qh3ghc-container\",nodeId:\"bIzweq220\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HomeLayout,{height:\"100%\",id:\"bIzweq220\",layoutId:\"bIzweq220\",style:{height:\"100%\",width:\"100%\"},variant:\"g4d6SykVy\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h7d50e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ci7afz\",\"data-styles-preset\":\"MNWLPP1ih\",children:\"Layout animations\"})}),className:\"framer-aqczlj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aoc0m\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/js/lightbox?utm_source=homepage-header\",motionChild:true,nodeId:\"OL7wcDSLA\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1stex5p framer-lux5qc\",\"data-framer-name\":\"JS\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+2086+30+500+6.5+0+-2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"22px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+647.5+30+551.5+6.5+0+-2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vwz1wu-container\",nodeId:\"mOJeGwD4z\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.7},children:/*#__PURE__*/_jsx(IconJS,{height:\"100%\",id:\"mOJeGwD4z\",layoutId:\"mOJeGwD4z\",style:{height:\"100%\",width:\"100%\"},variant:\"N3wKbOXIM\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/layout-animation?utm_source=homepage-header\",motionChild:true,nodeId:\"r9PUE5hse\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ykbguh framer-lux5qc\",\"data-framer-name\":\"React\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+2086+30+500+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+647.5+30+551.5+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gyqbuc-container\",nodeId:\"S_4RIce6K\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconReact,{height:\"100%\",id:\"S_4RIce6K\",layoutId:\"S_4RIce6K\",style:{height:\"100%\",width:\"100%\"},variant:\"mlXzqoMM8\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/js/stagger?utm_source=homepage-header\",motionChild:true,nodeId:\"TJqmIF5fU\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15ssoed framer-lux5qc\",\"data-framer-name\":\"Vue\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+2086+30+500+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+647.5+30+551.5+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bq3uft-container\",nodeId:\"ntnZsn0tB\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconVue,{height:\"100%\",id:\"ntnZsn0tB\",layoutId:\"ntnZsn0tB\",style:{height:\"100%\",width:\"100%\"},variant:\"JPpOznz9C\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vanzss\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19s58h5\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay13=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1satwiw\",\"data-framer-name\":\"Details\",id:\"1satwiw\",onTap:onTap3bnx0g({overlay:overlay13}),whileHover:animation19,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gsbysg\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 8.156 12.656 C 8.156 12.19 8.534 11.813 9 11.813 C 9.466 11.813 9.844 12.19 9.844 12.656 C 9.844 13.122 9.466 13.5 9 13.5 C 8.534 13.5 8.156 13.122 8.156 12.656 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9 10.125 L 9 9.563 C 10.242 9.563 11.25 8.681 11.25 7.594 C 11.25 6.507 10.242 5.625 9 5.625 C 7.758 5.625 6.75 6.507 6.75 7.594 L 6.75 7.875\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.25 9 C 2.25 5.272 5.272 2.25 9 2.25 C 12.728 2.25 15.75 5.272 15.75 9 C 15.75 12.728 12.728 15.75 9 15.75 C 5.272 15.75 2.25 12.728 2.25 9 Z\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9972837727,withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay13.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1ayp6yq\"),\"data-framer-portal-id\":\"1satwiw\",exit:{opacity:0,transition:{delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay13.hide()},\"B1ML40wG_\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation21,className:cx(scopingClassNames,\"framer-vlnv7m\"),\"data-framer-portal-id\":\"1satwiw\",exit:animation20,initial:animation22,style:{originX:0,transformPerspective:1500},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e7cqn8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5k1gpq\",\"data-framer-name\":\"Logo\",opacity:.4,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 13\"><path d=\"M 13.215 0 L 6.3 12.989 L 0 12.989 L 5.4 2.847 C 6.237 1.274 8.326 0 10.065 0 Z M 28.665 3.247 C 28.665 1.454 30.075 0 31.815 0 C 33.554 0 34.965 1.454 34.965 3.247 C 34.965 5.04 33.554 6.494 31.815 6.494 C 30.075 6.494 28.665 5.04 28.665 3.247 Z M 14.397 0 L 20.697 0 L 13.781 12.989 L 7.481 12.989 Z M 21.837 0 L 28.137 0 L 22.738 10.142 C 21.901 11.714 19.812 12.989 18.072 12.989 L 14.922 12.989 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8776362102,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1anrv3a\",onTap:onTap1wnntms({overlay:overlay13}),whileHover:animation7,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17snmox\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 0 0 L 18 0 L 18 18 L 0 18 Z\" fill=\"transparent\"></path><path d=\"M 14.063 3.938 L 3.938 14.063 M 14.063 14.063 L 3.938 3.938\" fill=\"rgb(0,0,0)\" stroke-width=\"1.3\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9049391167,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-umdngu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d02f5p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-2u0z3l\",\"data-styles-preset\":\"bgIWdR1bl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Timeline\"})}),className:\"framer-gguab\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-alignment\":\"left\"},children:\"Variants, stagger and timelines make it easy to precisely orchestrate animations.\"})}),className:\"framer-vs6euk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y0bbyi\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qmv1in\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tbWVkaXVt\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-200c00c6-377a-42d3-b88e-d67d5880022c, rgb(12, 220, 247))\"},children:\"animate\"}),\"([\",/*#__PURE__*/_jsx(\"br\",{}),'  [\"',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"ul\"}),'\", { opacity: ',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"1\"}),\" }],\",/*#__PURE__*/_jsx(\"br\",{}),'  [\"',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"li\"}),'\", { x: [',/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, rgb(255, 79, 186))\"},children:\"-20, 0\"}),\"] }, { delay: \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9df1059f-3870-4f92-ba84-f5bda3adc96f, rgb(67, 255, 186))\"},children:\"stagger\"}),\"(.2) }]\",/*#__PURE__*/_jsx(\"br\",{}),\"])\"]})}),className:\"framer-bs3ztc\",\"data-framer-name\":\"1\",fonts:[\"FS;Azeret Mono-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"14px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ohn1n6-container\",nodeId:\"jQb5ZODCO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CopyPaste,{F0wgXXa7W:'animate([  [\"ul\", { opacity: 1 }],  [\"li\", { x: [-20, 0] }, { delay: stagger(.2) }]])',height:\"100%\",id:\"jQb5ZODCO\",layoutId:\"jQb5ZODCO\",style:{height:\"100%\",width:\"100%\"},variant:\"As_kqdCLt\",width:\"100%\"})})})]})})]})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ncry4b\",children:/*#__PURE__*/_jsxs(MotionDivWithTimeline1p9cgnt,{className:\"framer-1p9cgnt\",style:{originX:1,originY:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xby077\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w0bdvi\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k61fgr\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y874y6\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m6zz98\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r51keo\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ujq9ob\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gn1q92\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aoc5a4\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1494wo5\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-52sir1\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jmkuah\"})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o0i7iq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ci7afz\",\"data-styles-preset\":\"MNWLPP1ih\",children:\"Sequencing\"})}),className:\"framer-1e1vkab\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i267cr\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/js/options?utm_source=homepage-header\",motionChild:true,nodeId:\"T6NHsMbYB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11ixb6y framer-lux5qc\",\"data-framer-name\":\"JS\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+2682+30+202+6.5+0+-2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"22px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+971.25+30+227.75+6.5+0+-2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x6b6y1-container\",nodeId:\"TI2VMAcra\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.7},children:/*#__PURE__*/_jsx(IconJS,{height:\"100%\",id:\"TI2VMAcra\",layoutId:\"TI2VMAcra\",style:{height:\"100%\",width:\"100%\"},variant:\"N3wKbOXIM\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/variants?utm_source=homepage-header\",motionChild:true,nodeId:\"ofBmNKgjc\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tqgmhq framer-lux5qc\",\"data-framer-name\":\"React\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+2682+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+971.25+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yshmfh-container\",nodeId:\"THh1548Gs\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconReact,{height:\"100%\",id:\"THh1548Gs\",layoutId:\"THh1548Gs\",style:{height:\"100%\",width:\"100%\"},variant:\"mlXzqoMM8\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/vue/variants?utm_source=homepage-header\",motionChild:true,nodeId:\"oabVjj6QQ\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1aoteo8 framer-lux5qc\",\"data-framer-name\":\"Vue\",whileHover:animation7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+0+0+2682+30+202+6.5+0+-1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+0+1e3+180+236+0+0+0+971.25+30+227.75+6.5+0+-1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17azmq4-container\",nodeId:\"ZeiDJDAyB\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(IconVue,{height:\"100%\",id:\"ZeiDJDAyB\",layoutId:\"ZeiDJDAyB\",style:{height:\"100%\",width:\"100%\"},variant:\"JPpOznz9C\",width:\"100%\"})})})})})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+1e3+80+236+0+3e3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,y:(componentViewport?.y||0)+0+1e3+180+236+0+1315,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xwgdfd-container\",nodeId:\"fdP0ffMyc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"fdP0ffMyc\",l3_Njl2Hs:\"https://examples.motion.dev/\",layoutId:\"fdP0ffMyc\",NeJttckul:\"Explore all examples\",variant:\"Kjml3Rt2k\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6d9ymn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5bxzic\",id:elementId1,ref:ref14,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+4411+80+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+2926+140+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref14,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cnwib1-container\",nodeId:\"dKlvCbXqj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{fY2ivOzRD:\"Sponsors\",height:\"100%\",id:\"dKlvCbXqj\",layoutId:\"dKlvCbXqj\",oufbjrCkl:\"rgba(255, 255, 255, 0.6)\",Q2I4Ibtfz:\"rgb(26, 26, 26)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-exngks\",\"data-styles-preset\":\"oFGazSjG5\",style:{\"--framer-text-alignment\":\"center\"},children:\"Motion is supported by the finest in the industry\"})}),className:\"framer-1jsklrr\",effect:getTextEffect(ref14),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref14,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13dc81p\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvq9ik\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckpfxd\",\"data-border\":true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"10px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 580',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Diamond sponsor\"})}),className:\"framer-ywnjus\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ovbqiw\",\"data-border\":true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xsp41n\",children:/*#__PURE__*/_jsx(Link,{href:\"https://framer.link/Kyr6Vpy\",motionChild:true,nodeId:\"Wvpx5caGj\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-w39giw framer-lux5qc\",whileHover:animation19,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1v1n7k2\",\"data-framer-name\":\"framer\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 121.245 31.903\"><path d=\"M 10.776 10.553 L 0 10.553 L 0 21.106 L 10.776 31.66 L 10.776 21.106 L 21.553 21.106 L 10.776 10.553 L 21.553 10.553 L 21.553 0 L 0 0 Z M 37.939 24.56 L 41.537 24.56 L 41.537 16.967 L 50.11 16.967 L 50.11 14.012 L 41.537 14.012 L 41.537 9.246 L 50.75 9.246 L 50.75 6.221 L 37.939 6.221 Z M 58.773 11.45 C 57.899 11.45 57.204 11.644 56.683 12.031 C 56.162 12.418 55.785 12.992 55.54 13.754 L 55.504 13.754 L 55.504 11.562 L 52.187 11.562 L 52.187 24.56 L 55.63 24.56 L 55.63 17.36 C 55.63 16.686 55.743 16.129 55.977 15.677 C 56.21 15.232 56.522 14.898 56.929 14.675 C 57.336 14.452 57.785 14.341 58.288 14.341 C 58.804 14.338 59.319 14.362 59.832 14.411 L 59.832 11.491 C 59.701 11.485 59.545 11.474 59.365 11.462 C 59.192 11.45 58.994 11.444 58.773 11.444 Z M 70.333 13.361 L 70.297 13.361 C 70.042 12.92 69.7 12.531 69.292 12.218 C 68.886 11.911 68.428 11.677 67.939 11.526 C 67.442 11.368 66.903 11.292 66.322 11.292 C 65.191 11.292 64.191 11.579 63.329 12.148 C 62.467 12.717 61.79 13.508 61.311 14.522 C 60.832 15.537 60.587 16.709 60.587 18.046 C 60.587 19.383 60.826 20.585 61.305 21.605 C 61.784 22.625 62.455 23.416 63.317 23.979 C 64.179 24.542 65.191 24.829 66.346 24.829 C 66.927 24.829 67.466 24.747 67.963 24.577 C 68.459 24.407 68.908 24.161 69.31 23.838 C 69.711 23.516 70.034 23.106 70.297 22.613 L 70.345 22.613 L 70.345 24.56 L 73.704 24.56 L 73.704 11.562 L 70.333 11.562 Z M 70.064 20.168 C 69.789 20.766 69.411 21.229 68.92 21.558 C 68.429 21.886 67.855 22.05 67.19 22.05 C 66.568 22.05 66.023 21.892 65.556 21.581 C 65.089 21.271 64.724 20.813 64.46 20.221 C 64.203 19.629 64.071 18.902 64.071 18.046 C 64.071 17.19 64.203 16.457 64.46 15.865 C 64.718 15.273 65.083 14.821 65.556 14.511 C 66.029 14.2 66.568 14.042 67.19 14.042 C 67.855 14.042 68.429 14.206 68.92 14.534 C 69.411 14.862 69.794 15.326 70.064 15.924 C 70.339 16.522 70.471 17.231 70.471 18.04 C 70.471 18.849 70.333 19.559 70.064 20.157 Z M 93.85 11.837 C 93.179 11.48 92.425 11.304 91.587 11.304 C 90.85 11.304 90.174 11.433 89.563 11.685 C 88.966 11.927 88.433 12.3 88.006 12.775 C 87.731 13.08 87.516 13.42 87.348 13.789 C 87.13 13.138 86.714 12.568 86.156 12.154 C 85.408 11.585 84.528 11.304 83.516 11.304 C 82.894 11.304 82.307 11.415 81.744 11.644 C 81.181 11.866 80.691 12.218 80.265 12.681 C 79.96 13.016 79.709 13.414 79.505 13.872 L 79.505 11.562 L 76.188 11.562 L 76.188 24.56 L 79.631 24.56 L 79.631 16.838 C 79.631 16.246 79.745 15.748 79.972 15.343 C 80.2 14.939 80.505 14.628 80.882 14.423 C 81.265 14.212 81.678 14.106 82.133 14.106 C 82.822 14.106 83.379 14.311 83.804 14.728 C 84.229 15.144 84.444 15.701 84.444 16.393 L 84.444 24.554 L 87.773 24.554 L 87.773 16.651 C 87.773 16.152 87.875 15.707 88.072 15.32 C 88.27 14.933 88.557 14.634 88.922 14.423 C 89.288 14.212 89.725 14.1 90.234 14.1 C 90.88 14.1 91.431 14.294 91.892 14.686 C 92.353 15.073 92.58 15.683 92.58 16.516 L 92.58 24.554 L 96.011 24.554 L 96.011 15.959 C 96.011 14.95 95.813 14.1 95.424 13.403 C 95.035 12.711 94.502 12.183 93.832 11.825 Z M 109.008 13.15 C 108.44 12.551 107.749 12.077 106.979 11.761 C 106.188 11.433 105.308 11.268 104.339 11.268 C 103.081 11.268 101.968 11.562 101.004 12.142 C 100.034 12.722 99.28 13.532 98.729 14.558 C 98.178 15.584 97.903 16.756 97.903 18.075 C 97.903 19.394 98.172 20.555 98.705 21.575 C 99.244 22.596 100.004 23.399 100.986 23.979 C 101.968 24.56 103.129 24.853 104.464 24.853 C 105.518 24.853 106.482 24.665 107.356 24.296 C 108.23 23.926 108.948 23.416 109.523 22.766 C 110.098 22.115 110.469 21.358 110.637 20.508 L 107.458 20.508 C 107.338 20.854 107.152 21.159 106.889 21.423 C 106.625 21.687 106.302 21.898 105.907 22.044 C 105.512 22.191 105.063 22.267 104.56 22.267 C 103.854 22.267 103.261 22.121 102.77 21.822 C 102.279 21.528 101.902 21.112 101.644 20.579 C 101.411 20.098 101.285 19.541 101.261 18.919 L 110.768 18.919 L 110.768 18.011 C 110.768 17.02 110.613 16.111 110.307 15.285 C 110.002 14.458 109.565 13.748 109.002 13.15 Z M 101.291 16.697 C 101.345 16.24 101.459 15.824 101.644 15.46 C 101.902 14.956 102.267 14.563 102.74 14.288 C 103.213 14.012 103.77 13.877 104.404 13.877 C 105.039 13.877 105.62 14.012 106.087 14.288 C 106.554 14.563 106.919 14.95 107.176 15.46 C 107.362 15.824 107.476 16.24 107.53 16.697 L 101.297 16.697 Z M 119.791 11.468 C 119.617 11.456 119.419 11.45 119.198 11.45 C 118.324 11.45 117.629 11.644 117.108 12.031 C 116.588 12.418 116.21 12.992 115.965 13.754 L 115.929 13.754 L 115.929 11.562 L 112.612 11.562 L 112.612 24.56 L 116.055 24.56 L 116.055 17.36 C 116.055 16.686 116.169 16.129 116.402 15.677 C 116.63 15.232 116.947 14.898 117.348 14.675 C 117.749 14.452 118.204 14.341 118.707 14.341 C 119.223 14.338 119.738 14.362 120.252 14.411 L 120.252 11.491 C 120.12 11.485 119.964 11.474 119.785 11.462 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8724272374,withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n325b2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oh6dmn\",\"data-border\":true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"10px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 580',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Platinum sponsors\"})}),className:\"framer-rqdh32\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-txenst\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1llao5z\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ktjx8b\",children:/*#__PURE__*/_jsx(Link,{href:\"https://linear.app/\",motionChild:true,nodeId:\"t1Q7d_XwB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17h919s framer-lux5qc\",whileHover:animation19,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{svgContentId:12747809375},QdjPMfI8v:{svgContentId:12747809375}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17tslp9\",\"data-framer-name\":\"Linear-light-wordmark\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112.205 27.65\"><path d=\"M 13.859 0 C 21.527 0 27.743 5.852 27.743 13.071 C 27.743 16.903 25.991 20.35 23.2 22.741 C 23.039 22.879 22.792 22.87 22.638 22.725 L 3.604 4.806 C 3.449 4.662 3.441 4.429 3.587 4.277 C 6.127 1.649 9.788 0 13.859 0 Z M 1.208 7.677 C 1.395 7.29 1.601 6.912 1.826 6.545 C 1.96 6.327 2.276 6.294 2.465 6.471 L 20.869 23.798 C 21.058 23.976 21.022 24.273 20.791 24.399 C 20.4 24.611 19.999 24.805 19.588 24.981 C 19.433 25.047 19.251 25.014 19.131 24.9 L 1.294 8.108 C 1.173 7.995 1.138 7.824 1.208 7.677 Z M 0.126 12.486 C 0.042 12.408 -0.002 12.299 0.006 12.188 C 0.042 11.668 0.112 11.157 0.211 10.656 C 0.271 10.355 0.661 10.251 0.89 10.467 L 16.625 25.28 C 16.854 25.496 16.744 25.863 16.424 25.919 C 15.886 26.014 15.343 26.078 14.797 26.113 C 14.679 26.12 14.564 26.078 14.481 25.999 L 0.126 12.486 Z M 10.606 25.09 C 10.892 25.36 10.645 25.796 10.254 25.697 C 5.483 24.493 1.726 20.956 0.447 16.465 C 0.342 16.096 0.805 15.864 1.091 16.133 Z M 54.14 5.491 C 54.14 4.55 54.947 3.788 55.942 3.788 C 56.937 3.788 57.744 4.55 57.744 5.49 C 57.744 6.431 56.937 7.193 55.942 7.193 C 54.947 7.193 54.14 6.431 54.14 5.491 Z M 40.508 3.789 L 43.71 3.789 L 43.71 19.371 L 52.344 19.371 L 52.344 22.041 L 40.508 22.041 Z M 63.299 22.041 L 60.201 22.041 L 60.201 9.106 L 63.26 9.106 L 63.26 11.323 L 63.299 11.298 C 63.61 10.604 64.112 10.024 64.803 9.559 C 65.494 9.085 66.376 8.848 67.448 8.848 C 68.399 8.848 69.263 9.048 70.041 9.449 C 70.818 9.84 71.441 10.416 71.907 11.176 C 72.374 11.935 72.607 12.866 72.607 13.969 L 72.607 22.041 L 69.509 22.041 L 69.509 14.373 C 69.509 13.393 69.232 12.649 68.679 12.143 C 68.135 11.629 67.405 11.372 66.488 11.372 C 65.901 11.372 65.365 11.486 64.881 11.715 C 64.397 11.943 64.012 12.294 63.727 12.768 C 63.442 13.242 63.299 13.85 63.299 14.593 Z M 89.669 20.522 C 89.254 19.942 89.047 19.223 89.047 18.366 C 89.047 17.623 89.194 17.015 89.487 16.541 C 89.776 16.072 90.187 15.68 90.68 15.402 C 91.19 15.116 91.769 14.899 92.417 14.752 C 93.084 14.602 93.759 14.492 94.44 14.422 C 95.296 14.332 95.97 14.254 96.462 14.189 C 96.963 14.124 97.318 14.021 97.525 13.883 C 97.741 13.744 97.849 13.527 97.849 13.234 L 97.849 13.136 C 97.849 12.743 97.746 12.4 97.538 12.106 C 97.331 11.812 97.033 11.58 96.644 11.408 C 96.263 11.237 95.801 11.151 95.257 11.151 C 94.712 11.151 94.232 11.237 93.818 11.408 C 93.403 11.572 93.074 11.8 92.832 12.094 C 92.592 12.383 92.448 12.733 92.417 13.099 L 89.423 13.099 C 89.466 12.298 89.729 11.58 90.213 10.943 C 90.698 10.306 91.367 9.799 92.223 9.424 C 93.087 9.04 94.111 8.848 95.296 8.848 C 96.16 8.848 96.938 8.954 97.629 9.166 C 98.32 9.371 98.908 9.664 99.392 10.048 C 99.885 10.432 100.261 10.886 100.52 11.408 C 100.779 11.931 100.909 12.507 100.909 13.135 L 100.909 22.041 L 97.94 22.041 L 97.94 20.216 L 97.888 20.216 C 97.681 20.583 97.4 20.922 97.046 21.233 C 96.7 21.543 96.259 21.792 95.723 21.98 C 95.187 22.159 94.544 22.249 93.792 22.249 C 92.876 22.249 92.063 22.106 91.354 21.82 C 90.646 21.526 90.084 21.094 89.669 20.522 Z M 97.486 18.635 C 97.737 18.211 97.862 17.745 97.862 17.239 L 97.862 15.794 C 97.767 15.859 97.616 15.92 97.409 15.977 C 97.21 16.034 96.968 16.092 96.683 16.149 C 96.397 16.198 96.091 16.251 95.762 16.308 C 95.434 16.357 95.097 16.406 94.751 16.455 C 94.275 16.512 93.835 16.614 93.429 16.761 C 93.022 16.908 92.694 17.108 92.443 17.361 C 92.201 17.615 92.08 17.946 92.08 18.354 C 92.08 18.876 92.301 19.289 92.742 19.591 C 93.182 19.885 93.774 20.032 94.518 20.032 C 95.252 20.032 95.87 19.906 96.372 19.652 C 96.873 19.391 97.244 19.052 97.486 18.635 Z M 103.612 9.105 L 106.594 9.105 L 106.594 11.237 L 106.633 11.237 C 106.884 10.502 107.277 9.942 107.813 9.558 C 108.357 9.166 109.07 8.971 109.952 8.971 C 110.168 8.971 110.362 8.978 110.535 8.995 C 110.717 9.003 110.868 9.011 110.989 9.019 L 110.989 11.653 C 110.791 11.628 110.592 11.608 110.393 11.592 C 110.091 11.567 109.788 11.555 109.485 11.556 C 108.975 11.556 108.509 11.666 108.085 11.886 C 107.661 12.107 107.324 12.446 107.074 12.903 C 106.832 13.352 106.711 13.92 106.711 14.606 L 106.711 22.041 L 103.612 22.041 Z M 54.386 22.041 L 54.386 9.105 L 57.484 9.105 L 57.484 22.041 Z M 77.761 21.465 C 76.767 20.885 76.002 20.089 75.466 19.076 C 74.931 18.056 74.663 16.892 74.663 15.585 C 74.663 14.27 74.939 13.102 75.492 12.082 C 76.046 11.061 76.81 10.261 77.787 9.681 C 78.764 9.101 79.887 8.811 81.158 8.811 C 82.134 8.811 83.02 8.974 83.815 9.301 C 84.619 9.628 85.306 10.093 85.877 10.697 C 86.447 11.294 86.888 12.004 87.199 12.829 C 87.51 13.645 87.666 14.552 87.666 15.548 L 87.666 16.333 L 77.7 16.333 C 77.724 17.008 77.865 17.612 78.124 18.146 C 78.409 18.725 78.824 19.179 79.369 19.505 C 79.922 19.832 80.583 19.995 81.352 19.995 C 81.923 19.995 82.424 19.914 82.856 19.75 C 83.288 19.587 83.647 19.362 83.932 19.076 C 84.223 18.787 84.44 18.44 84.567 18.06 L 87.484 18.06 C 87.311 18.901 86.935 19.644 86.356 20.289 C 85.777 20.926 85.051 21.429 84.178 21.796 C 83.314 22.155 82.355 22.335 81.3 22.335 C 79.935 22.335 78.755 22.045 77.761 21.465 Z M 84.282 12.903 C 83.997 12.347 83.591 11.919 83.063 11.617 C 82.536 11.314 81.914 11.163 81.196 11.163 C 80.488 11.163 79.87 11.314 79.343 11.617 C 78.824 11.919 78.418 12.347 78.124 12.903 C 77.914 13.305 77.782 13.762 77.726 14.275 L 84.68 14.275 C 84.624 13.762 84.492 13.305 84.282 12.903 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11397790896,withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e0y3e3\",children:/*#__PURE__*/_jsx(Link,{href:\"https://figma.com\",motionChild:true,nodeId:\"RXBLKAzXy\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1c7xwb2 framer-lux5qc\",whileHover:animation19,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{svgContentId:11333771549},QdjPMfI8v:{svgContentId:11333771549}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sjtfhq\",\"data-framer-name\":\"Group 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 70 28\"><path d=\"M 62.61 21.473 C 61.678 21.473 60.84 21.295 60.098 20.941 C 59.374 20.587 58.794 20.111 58.357 19.515 C 57.938 18.899 57.728 18.191 57.728 17.389 C 57.728 16.345 58.071 15.496 58.756 14.843 C 59.441 14.191 60.421 13.743 61.696 13.501 L 65.036 12.83 C 65.702 12.699 66.159 12.494 66.407 12.214 C 66.654 11.934 66.778 11.524 66.778 10.983 L 67.12 14.256 L 62.324 15.263 C 61.678 15.394 61.173 15.627 60.811 15.962 C 60.469 16.298 60.298 16.764 60.298 17.361 C 60.298 17.976 60.536 18.47 61.011 18.843 C 61.506 19.216 62.172 19.403 63.009 19.403 C 63.695 19.403 64.323 19.254 64.894 18.955 C 65.483 18.657 65.94 18.247 66.264 17.725 C 66.606 17.184 66.778 16.568 66.778 15.878 L 66.778 10.983 C 66.778 10.312 66.53 9.79 66.035 9.417 C 65.559 9.025 64.903 8.83 64.066 8.83 C 63 8.83 62.182 9.091 61.611 9.613 C 61.04 10.135 60.707 10.872 60.611 11.823 L 58.099 11.487 C 58.195 10.499 58.499 9.65 59.013 8.942 C 59.527 8.214 60.212 7.655 61.068 7.263 C 61.924 6.872 62.943 6.676 64.123 6.676 C 65.797 6.676 67.082 7.095 67.976 7.935 C 68.871 8.774 69.318 9.855 69.318 11.179 L 69.318 21.053 L 66.835 21.053 L 66.835 19.235 C 66.587 19.85 66.083 20.382 65.322 20.829 C 64.579 21.258 63.675 21.473 62.61 21.473 Z M 37.488 21.053 L 37.488 7.095 L 39.971 7.095 L 39.971 8.662 C 40.162 8.121 40.58 7.655 41.227 7.263 C 41.874 6.872 42.626 6.676 43.482 6.676 C 44.32 6.676 45.091 6.853 45.795 7.207 C 46.499 7.562 46.956 8.093 47.165 8.802 C 47.412 8.149 47.869 7.636 48.535 7.263 C 49.22 6.872 49.981 6.676 50.819 6.676 C 52.265 6.676 53.369 7.086 54.13 7.907 C 54.891 8.727 55.272 9.921 55.272 11.487 L 55.272 21.053 L 52.731 21.053 L 52.731 11.823 C 52.731 10.89 52.522 10.191 52.103 9.725 C 51.704 9.24 51.114 8.997 50.334 8.997 C 49.477 8.997 48.811 9.296 48.335 9.893 C 47.879 10.471 47.65 11.319 47.65 12.438 L 47.65 21.053 L 45.11 21.053 L 45.11 11.823 C 45.11 10.89 44.9 10.191 44.482 9.725 C 44.082 9.24 43.492 8.997 42.712 8.997 C 41.855 8.997 41.189 9.296 40.713 9.893 C 40.257 10.471 40.028 11.319 40.028 12.438 L 40.028 21.053 Z M 27.773 26.088 C 26.003 26.088 24.567 25.687 23.463 24.885 C 22.359 24.083 21.655 22.964 21.35 21.529 L 23.834 20.997 C 24.043 21.911 24.49 22.619 25.176 23.123 C 25.861 23.645 26.727 23.906 27.773 23.906 C 29.029 23.906 29.971 23.589 30.599 22.955 C 31.246 22.34 31.57 21.417 31.57 20.186 L 31.57 17.976 C 31.284 18.666 30.752 19.226 29.971 19.655 C 29.21 20.083 28.354 20.298 27.402 20.298 C 26.146 20.298 25.042 20.018 24.091 19.459 C 23.139 18.881 22.397 18.079 21.864 17.053 C 21.331 16.028 21.065 14.843 21.065 13.501 C 21.065 12.14 21.331 10.946 21.864 9.921 C 22.397 8.895 23.13 8.102 24.062 7.543 C 25.014 6.965 26.127 6.676 27.402 6.676 C 28.354 6.676 29.22 6.89 30 7.319 C 30.799 7.729 31.342 8.242 31.627 8.858 L 31.627 7.095 L 34.111 7.095 L 34.111 20.186 C 34.111 21.417 33.863 22.47 33.368 23.347 C 32.873 24.242 32.15 24.922 31.199 25.389 C 30.266 25.855 29.124 26.088 27.773 26.088 Z M 27.716 18.088 C 28.934 18.088 29.905 17.669 30.628 16.829 C 31.37 15.99 31.741 14.881 31.741 13.501 C 31.741 12.102 31.37 10.983 30.628 10.144 C 29.886 9.305 28.915 8.886 27.716 8.886 C 26.498 8.886 25.518 9.305 24.776 10.144 C 24.053 10.983 23.691 12.102 23.691 13.501 C 23.691 14.881 24.062 15.99 24.804 16.829 C 25.547 17.669 26.517 18.088 27.716 18.088 Z M 15.938 21.053 L 15.938 7.095 L 18.478 7.095 L 18.478 21.053 Z M 15.909 5.305 L 15.909 1.333 L 18.507 1.333 L 18.507 5.305 Z M 1.346 21.053 L 1.346 1.333 L 4.029 1.333 L 4.029 21.053 Z M 1.889 12.718 L 1.889 10.34 L 12.822 10.34 L 12.822 12.718 Z M 1.889 3.739 L 1.889 1.333 L 13.878 1.333 L 13.878 3.739 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9919578113,withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vxuij5\",children:/*#__PURE__*/_jsx(Link,{href:\"https://emilkowal.ski/\",motionChild:true,nodeId:\"HfZBwo2c9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1371ep8 framer-lux5qc\",whileHover:animation19,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVGt3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"23px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 590',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Emil Kowalski\"})}),className:\"framer-7t678z\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ubc3pz\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14xur9x\",\"data-border\":true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"10px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 580',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"gold sponsors\"})}),className:\"framer-8grvkb\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a5okdg\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hdb66r\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cw3eim\",children:/*#__PURE__*/_jsx(Link,{href:\"https://tailwindcss.com/\",motionChild:true,nodeId:\"SlGqVKQdk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1nwlki7 framer-lux5qc\",whileHover:animation19,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{svgContentId:10015770799},QdjPMfI8v:{svgContentId:10015770799}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13gevlc\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 130 19\"><path d=\"M 13.361 1.544 C 9.798 1.544 7.571 3.26 6.681 6.692 C 8.017 4.976 9.575 4.333 11.357 4.762 C 12.373 5.006 13.1 5.716 13.904 6.503 C 15.214 7.784 16.73 9.266 20.04 9.266 C 23.604 9.266 25.831 7.55 26.721 4.119 C 25.386 5.834 23.827 6.477 22.045 6.049 C 21.028 5.803 20.302 5.094 19.498 4.308 C 18.189 3.026 16.674 1.544 13.361 1.544 Z M 6.681 9.266 C 3.117 9.266 0.89 10.981 0 14.413 C 1.336 12.698 2.895 12.054 4.676 12.483 C 5.693 12.727 6.419 13.437 7.223 14.224 C 8.533 15.505 10.049 16.987 13.361 16.987 C 16.924 16.987 19.151 15.271 20.041 11.84 C 18.705 13.555 17.147 14.199 15.365 13.77 C 14.349 13.525 13.622 12.814 12.819 12.029 C 11.508 10.748 9.991 9.266 6.681 9.266 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 40.081 8.051 L 37.75 8.051 L 37.75 12.398 C 37.75 13.557 38.539 13.538 40.082 13.466 L 40.082 15.223 C 36.959 15.586 35.719 14.752 35.719 12.397 L 35.719 8.05 L 33.989 8.05 L 33.989 6.168 L 35.719 6.168 L 35.719 3.736 L 37.75 3.156 L 37.75 6.168 L 40.081 6.168 L 40.081 8.052 Z M 48.969 6.167 L 51 6.167 L 51 15.223 L 48.969 15.223 L 48.969 13.919 C 48.254 14.879 47.145 15.459 45.679 15.459 C 43.121 15.459 40.996 13.376 40.996 10.695 C 40.996 7.997 43.121 5.931 45.678 5.931 C 47.145 5.931 48.255 6.511 48.969 7.453 L 48.969 6.168 Z M 45.998 13.593 C 47.691 13.593 48.969 12.379 48.969 10.695 C 48.969 9.01 47.691 7.797 45.998 7.797 C 44.306 7.797 43.028 9.011 43.028 10.695 C 43.028 12.379 44.306 13.593 45.998 13.593 Z M 54.385 4.809 C 53.671 4.809 53.088 4.23 53.088 3.559 C 53.089 3.227 53.226 2.909 53.47 2.675 C 53.712 2.44 54.041 2.309 54.385 2.309 C 54.728 2.309 55.057 2.44 55.3 2.675 C 55.543 2.909 55.68 3.227 55.682 3.559 C 55.682 4.229 55.099 4.809 54.385 4.809 Z M 53.369 15.223 L 53.369 6.167 L 55.401 6.167 L 55.401 15.223 Z M 57.751 15.223 L 57.751 2 L 59.781 2 L 59.781 15.222 L 57.751 15.222 Z M 72.964 6.167 L 75.108 6.167 L 72.155 15.223 L 70.162 15.223 L 68.206 9.12 L 66.231 15.223 L 64.238 15.223 L 61.286 6.167 L 63.43 6.167 L 65.254 12.415 L 67.229 6.167 L 69.165 6.167 L 71.121 12.415 Z M 77.627 4.809 C 76.912 4.809 76.329 4.23 76.329 3.559 C 76.332 3.227 76.469 2.909 76.712 2.675 C 76.954 2.44 77.284 2.308 77.627 2.308 C 77.971 2.308 78.3 2.44 78.543 2.675 C 78.785 2.909 78.923 3.227 78.925 3.559 C 78.925 4.229 78.342 4.809 77.627 4.809 Z M 76.612 15.223 L 76.612 6.167 L 78.643 6.167 L 78.643 15.223 L 76.611 15.223 Z M 85.938 5.931 C 88.045 5.931 89.549 7.308 89.549 9.663 L 89.549 15.222 L 87.518 15.222 L 87.518 9.862 C 87.518 8.485 86.691 7.761 85.412 7.761 C 84.077 7.761 83.024 8.522 83.024 10.369 L 83.024 15.223 L 80.993 15.223 L 80.993 6.167 L 83.024 6.167 L 83.024 7.327 C 83.645 6.385 84.66 5.932 85.938 5.932 Z M 99.177 2.545 L 101.208 2.545 L 101.208 15.223 L 99.177 15.223 L 99.177 13.918 C 98.463 14.879 97.353 15.458 95.886 15.458 C 93.329 15.458 91.204 13.376 91.204 10.694 C 91.204 7.996 93.329 5.931 95.886 5.931 C 97.353 5.931 98.463 6.511 99.177 7.453 Z M 96.205 13.593 C 97.898 13.593 99.177 12.379 99.177 10.695 C 99.177 9.01 97.898 7.797 96.205 7.797 C 94.513 7.797 93.235 9.011 93.235 10.695 C 93.235 12.379 94.513 13.593 96.205 13.593 Z M 108.015 15.459 C 105.175 15.459 103.05 13.376 103.05 10.695 C 103.05 7.997 105.175 5.931 108.015 5.931 C 109.858 5.931 111.456 6.855 112.208 8.268 L 110.459 9.246 C 110.045 8.395 109.124 7.852 107.996 7.852 C 106.341 7.852 105.082 9.066 105.082 10.695 C 105.082 12.325 106.341 13.538 107.996 13.538 C 109.124 13.538 110.045 12.977 110.497 12.144 L 112.246 13.104 C 111.456 14.534 109.858 15.459 108.015 15.459 Z M 115.593 8.666 C 115.593 10.315 120.652 9.318 120.652 12.67 C 120.652 14.481 119.015 15.459 116.985 15.459 C 115.104 15.459 113.75 14.643 113.148 13.339 L 114.898 12.362 C 115.198 13.176 115.95 13.666 116.985 13.666 C 117.888 13.666 118.583 13.376 118.583 12.651 C 118.583 11.039 113.524 11.945 113.524 8.703 C 113.524 7 115.047 5.931 116.966 5.931 C 118.508 5.931 119.787 6.62 120.445 7.815 L 118.733 8.739 C 118.395 8.032 117.737 7.707 116.966 7.707 C 116.232 7.707 115.593 8.015 115.593 8.666 Z M 124.262 8.666 C 124.262 10.315 129.32 9.318 129.32 12.67 C 129.32 14.481 127.684 15.459 125.653 15.459 C 123.773 15.459 122.419 14.643 121.817 13.339 L 123.566 12.362 C 123.867 13.176 124.619 13.666 125.653 13.666 C 126.555 13.666 127.252 13.376 127.252 12.651 C 127.252 11.039 122.194 11.945 122.194 8.703 C 122.194 7 123.716 5.931 125.634 5.931 C 127.177 5.931 128.455 6.62 129.113 7.815 L 127.402 8.739 C 127.064 8.032 126.406 7.707 125.634 7.707 C 124.901 7.707 124.262 8.015 124.262 8.666 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9792938725,withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11nyxef\",children:/*#__PURE__*/_jsx(Link,{href:\"https://liveblocks.io/\",motionChild:true,nodeId:\"dQMW9zrsi\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-po3b2b framer-lux5qc\",whileHover:animation19,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{svgContentId:10174456660},QdjPMfI8v:{svgContentId:10174456660}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1t363ww\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 22\"><path d=\"M 27.009 2.977 L 24.356 2.977 L 24.356 18.494 L 27.009 18.494 L 27.009 2.978 Z M 31.931 7.413 L 29.279 7.413 L 29.279 18.494 L 31.93 18.494 L 31.93 7.413 Z M 31.931 2.858 L 29.279 2.858 L 29.279 5.682 L 31.93 5.682 L 31.93 2.858 Z M 35.822 7.413 L 32.973 7.413 L 36.985 18.494 L 39.944 18.494 L 43.956 7.413 L 41.15 7.413 L 39.473 12.662 C 39.429 12.798 39.271 13.333 39.002 14.263 L 38.464 16.048 C 38.147 14.915 37.814 13.786 37.467 12.662 Z M 54.82 10.876 C 54.6 10.134 54.279 9.502 53.854 8.982 C 53.372 8.393 52.751 7.929 52.046 7.63 C 51.322 7.305 50.519 7.144 49.635 7.144 C 47.954 7.144 46.609 7.662 45.601 8.701 C 45.098 9.238 44.713 9.872 44.472 10.563 C 44.223 11.277 44.1 12.067 44.1 12.932 C 44.1 14.787 44.6 16.218 45.601 17.229 C 46.617 18.253 47.969 18.764 49.657 18.764 C 51.104 18.764 52.276 18.444 53.175 17.802 C 54.074 17.16 54.67 16.208 54.962 14.945 L 52.375 14.75 C 52.25 15.436 51.966 15.948 51.52 16.287 C 51.074 16.62 50.445 16.786 49.635 16.786 C 47.779 16.786 46.829 15.753 46.785 13.69 L 55.138 13.69 L 55.149 13.322 C 55.149 12.435 55.038 11.62 54.82 10.876 Z M 47.376 10.098 C 47.845 9.448 48.597 9.123 49.634 9.123 C 50.139 9.123 50.563 9.191 50.906 9.329 C 51.25 9.466 51.546 9.686 51.794 9.988 C 51.987 10.224 52.136 10.492 52.233 10.779 C 52.341 11.079 52.408 11.391 52.429 11.71 L 46.807 11.71 C 46.872 11.068 47.063 10.529 47.376 10.098 Z M 65.452 7.846 C 64.699 7.363 63.83 7.121 62.844 7.121 L 62.843 7.121 C 62.164 7.113 61.492 7.261 60.881 7.554 C 60.298 7.835 59.799 8.26 59.433 8.788 L 59.433 2.977 L 56.782 2.977 L 56.782 18.494 L 59.434 18.494 L 59.434 16.968 C 59.771 17.517 60.246 17.969 60.814 18.278 C 61.415 18.605 62.091 18.773 62.776 18.765 C 63.771 18.765 64.651 18.53 65.42 18.062 C 66.187 17.593 66.782 16.922 67.205 16.049 C 67.636 15.169 67.852 14.137 67.852 12.954 C 67.852 11.799 67.64 10.783 67.217 9.902 C 66.8 9.015 66.212 8.33 65.452 7.846 Z M 64.323 15.886 C 63.899 16.522 63.176 16.839 62.152 16.839 C 61.231 16.839 60.537 16.51 60.071 15.854 C 59.602 15.197 59.368 14.238 59.368 12.976 C 59.368 11.756 59.577 10.804 59.993 10.118 C 60.417 9.426 61.129 9.08 62.131 9.08 C 63.154 9.08 63.881 9.397 64.312 10.032 C 64.743 10.66 64.959 11.634 64.959 12.954 C 64.959 14.274 64.747 15.252 64.323 15.886 Z M 72.16 2.978 L 69.509 2.978 L 69.509 18.495 L 72.161 18.495 L 72.161 2.978 Z M 76.457 18.073 C 77.319 18.536 78.342 18.766 79.527 18.766 C 80.666 18.766 81.667 18.524 82.529 18.041 C 83.385 17.571 84.083 16.864 84.535 16.006 C 85.009 15.127 85.247 14.109 85.247 12.954 C 85.247 11.845 85.013 10.849 84.546 9.968 C 84.097 9.101 83.404 8.379 82.55 7.891 C 81.689 7.393 80.681 7.144 79.527 7.144 C 78.364 7.144 77.349 7.393 76.479 7.891 C 75.628 8.377 74.936 9.094 74.484 9.957 C 74.024 10.83 73.793 11.83 73.793 12.955 C 73.793 14.153 74.019 15.188 74.473 16.06 C 74.913 16.913 75.605 17.615 76.457 18.073 Z M 81.729 15.898 C 81.283 16.519 80.549 16.83 79.527 16.83 C 78.831 16.83 78.273 16.692 77.85 16.418 C 77.424 16.137 77.118 15.715 76.928 15.151 C 76.738 14.581 76.643 13.85 76.643 12.954 C 76.643 11.613 76.866 10.632 77.312 10.012 C 77.765 9.392 78.503 9.081 79.527 9.081 C 80.542 9.081 81.273 9.391 81.719 10.012 C 82.171 10.631 82.398 11.613 82.398 12.955 C 82.398 14.296 82.175 15.278 81.729 15.898 Z M 88.865 18.073 C 89.721 18.536 90.739 18.766 91.924 18.766 C 92.844 18.766 93.666 18.608 94.389 18.29 C 95.114 17.973 95.701 17.53 96.154 16.959 C 96.609 16.378 96.906 15.693 97.02 14.968 L 94.466 14.709 C 94.291 15.401 93.999 15.917 93.589 16.255 C 93.18 16.595 92.625 16.764 91.924 16.764 C 91.207 16.764 90.645 16.62 90.235 16.331 C 89.826 16.035 89.542 15.613 89.38 15.065 C 89.219 14.51 89.14 13.806 89.14 12.955 C 89.14 12.118 89.219 11.426 89.38 10.877 C 89.541 10.322 89.823 9.897 90.224 9.601 C 90.634 9.297 91.2 9.146 91.924 9.146 C 92.698 9.146 93.272 9.359 93.645 9.784 C 94.024 10.203 94.295 10.775 94.455 11.504 L 96.966 11.06 C 96.725 9.877 96.18 8.929 95.332 8.215 C 94.492 7.501 93.355 7.144 91.924 7.144 C 90.754 7.144 89.742 7.39 88.887 7.88 C 88.042 8.36 87.36 9.075 86.925 9.936 C 86.472 10.809 86.245 11.815 86.245 12.955 C 86.245 14.159 86.468 15.199 86.914 16.072 C 87.343 16.92 88.024 17.618 88.865 18.073 Z M 101.087 14.383 L 102.326 13.214 L 105.614 18.495 L 108.672 18.495 L 104.123 11.537 L 108.53 7.414 L 105.087 7.414 L 101.087 11.462 L 101.087 2.978 L 98.434 2.978 L 98.434 18.495 L 101.087 18.495 Z M 110.997 18.366 C 111.742 18.633 112.571 18.766 113.485 18.766 C 114.88 18.766 116.031 18.491 116.938 17.944 C 117.851 17.396 118.308 16.501 118.308 15.26 C 118.308 14.452 118.095 13.817 117.672 13.355 C 117.264 12.896 116.743 12.55 116.159 12.349 C 115.582 12.14 114.796 11.927 113.803 11.71 C 113.341 11.617 112.883 11.502 112.433 11.365 C 112.096 11.255 111.826 11.115 111.621 10.942 C 111.427 10.773 111.318 10.527 111.325 10.271 C 111.325 9.867 111.508 9.561 111.873 9.351 C 112.239 9.142 112.692 9.037 113.233 9.037 C 113.948 9.037 114.508 9.207 114.91 9.545 C 115.319 9.886 115.538 10.394 115.567 11.071 L 118.022 10.672 C 117.905 9.431 117.413 8.533 116.542 7.977 C 115.68 7.422 114.577 7.144 113.233 7.144 C 112.443 7.144 111.713 7.262 111.041 7.501 C 110.375 7.732 109.839 8.096 109.429 8.595 C 109.02 9.091 108.816 9.719 108.816 10.477 C 108.816 11.177 108.991 11.743 109.341 12.176 C 109.698 12.613 110.157 12.958 110.679 13.182 C 111.219 13.413 111.899 13.633 112.717 13.842 L 113.398 14.004 C 113.851 14.11 114.301 14.233 114.746 14.372 C 115.052 14.467 115.304 14.596 115.501 14.762 C 115.696 14.922 115.805 15.162 115.798 15.412 C 115.798 15.88 115.6 16.241 115.205 16.494 C 114.819 16.746 114.252 16.873 113.507 16.873 C 112.746 16.873 112.14 16.684 111.687 16.309 C 111.234 15.934 111.004 15.393 110.997 14.687 L 108.498 14.968 C 108.526 15.819 108.764 16.53 109.21 17.1 C 109.664 17.669 110.258 18.091 110.997 18.366 Z M 12.646 8.324 L 0 8.324 L 3.747 12.023 L 3.747 17.11 Z M 6.089 18.497 L 18.735 18.497 L 14.988 14.798 L 14.988 9.711 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11143736533,withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gqk8gg\",children:/*#__PURE__*/_jsx(Link,{href:\"https://vercel.com/\",motionChild:true,nodeId:\"Jiuo8GIQf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fne5bl framer-lux5qc\",whileHover:animation19,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{svgContentId:8862841831},QdjPMfI8v:{svgContentId:8862841831}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ughyvt\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 90 18\"><path d=\"M 20.644 18.583 L 10.322 0 L 0.001 18.583 Z M 31.054 17.737 L 39.68 0.844 L 35.949 0.844 L 29.999 13.113 L 24.049 0.844 L 20.317 0.844 L 28.943 17.737 Z M 89.84 0.844 L 89.84 17.737 L 86.751 17.737 L 86.751 0.844 Z M 72.646 11.432 C 72.646 10.116 72.911 8.958 73.442 7.959 C 73.973 6.959 74.713 6.19 75.662 5.651 C 76.611 5.111 77.722 4.842 78.993 4.842 C 80.119 4.842 81.132 5.095 82.033 5.603 C 82.934 6.111 83.65 6.864 84.181 7.863 C 84.712 8.863 84.985 10.084 85.001 11.527 L 85.001 12.265 L 75.904 12.265 C 75.968 13.312 76.266 14.137 76.796 14.739 C 77.344 15.326 78.075 15.62 78.993 15.62 C 79.557 15.624 80.11 15.459 80.585 15.144 C 81.061 14.835 81.438 14.388 81.671 13.859 L 84.833 14.097 C 84.446 15.286 83.722 16.238 82.66 16.952 C 81.599 17.666 80.376 18.023 78.993 18.023 C 77.722 18.023 76.611 17.753 75.662 17.214 C 74.713 16.674 73.973 15.905 73.442 14.906 C 72.911 13.907 72.646 12.749 72.646 11.432 Z M 81.816 10.242 C 81.703 9.211 81.389 8.458 80.875 7.982 C 80.36 7.491 79.732 7.245 78.993 7.245 C 78.14 7.245 77.448 7.506 76.917 8.03 C 76.386 8.553 76.056 9.291 75.928 10.242 Z M 67.435 7.982 C 67.95 8.411 68.271 9.005 68.4 9.767 L 71.586 9.6 C 71.473 8.633 71.143 7.792 70.596 7.078 C 70.049 6.364 69.341 5.817 68.473 5.437 C 67.62 5.04 66.679 4.842 65.649 4.842 C 64.378 4.842 63.268 5.111 62.319 5.651 C 61.37 6.19 60.63 6.959 60.099 7.959 C 59.568 8.958 59.302 10.116 59.302 11.432 C 59.302 12.749 59.568 13.907 60.099 14.906 C 60.63 15.905 61.37 16.675 62.319 17.214 C 63.268 17.753 64.378 18.023 65.649 18.023 C 66.711 18.023 67.676 17.824 68.545 17.428 C 69.414 17.015 70.122 16.436 70.668 15.691 C 71.216 14.945 71.545 14.073 71.658 13.074 L 68.448 12.931 C 68.336 13.772 68.022 14.422 67.507 14.882 C 66.992 15.326 66.373 15.548 65.649 15.548 C 64.652 15.548 63.88 15.191 63.332 14.478 C 62.786 13.764 62.512 12.749 62.512 11.432 C 62.512 10.116 62.786 9.101 63.332 8.387 C 63.88 7.673 64.652 7.316 65.649 7.316 C 66.341 7.316 66.936 7.538 67.435 7.982 Z M 51.765 5.127 L 54.639 5.127 L 54.723 7.553 C 54.927 6.867 55.21 6.333 55.574 5.953 C 56.101 5.402 56.835 5.127 57.777 5.127 L 58.951 5.127 L 58.951 7.724 L 57.754 7.724 C 57.083 7.724 56.532 7.819 56.101 8.008 C 55.694 8.189 55.357 8.504 55.143 8.905 C 54.935 9.314 54.831 9.834 54.831 10.464 L 54.831 17.737 L 51.765 17.737 Z M 38.507 7.959 C 37.976 8.958 37.711 10.116 37.711 11.432 C 37.711 12.749 37.976 13.907 38.507 14.906 C 39.038 15.905 39.778 16.675 40.727 17.214 C 41.676 17.753 42.786 18.023 44.057 18.023 C 45.441 18.023 46.664 17.666 47.725 16.952 C 48.787 16.238 49.511 15.287 49.897 14.097 L 46.736 13.859 C 46.503 14.388 46.126 14.835 45.65 15.144 C 45.175 15.459 44.621 15.624 44.057 15.62 C 43.14 15.62 42.408 15.326 41.861 14.739 C 41.33 14.137 41.033 13.312 40.968 12.265 L 50.066 12.265 L 50.066 11.527 C 50.05 10.084 49.777 8.863 49.246 7.863 C 48.715 6.864 47.999 6.111 47.098 5.603 C 46.197 5.096 45.183 4.842 44.057 4.842 C 42.786 4.842 41.676 5.111 40.727 5.651 C 39.778 6.19 39.038 6.959 38.507 7.959 Z M 45.94 7.982 C 46.454 8.458 46.768 9.212 46.881 10.242 L 40.992 10.242 C 41.121 9.291 41.451 8.553 41.982 8.03 C 42.513 7.506 43.205 7.245 44.057 7.245 C 44.797 7.245 45.425 7.491 45.94 7.982 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9631318228,withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tlv9rs\",children:/*#__PURE__*/_jsx(Link,{href:\"https://lu.ma/\",motionChild:true,nodeId:\"P3MpowoNr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tyyvem framer-lux5qc\",whileHover:animation19,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4lxjpp\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 70 24\"><path d=\"M 3.715 23.387 L 0.041 23.387 L 0.041 2.5 L 3.715 2.5 Z M 12.053 23.635 C 7.979 23.635 5.642 21.575 5.642 17.983 L 5.642 8.015 L 9.316 8.015 L 9.316 17.73 C 9.316 19.849 10.155 20.637 12.413 20.637 C 15.34 20.637 16.534 19.332 16.534 16.135 L 16.534 8.015 L 20.208 8.015 L 20.208 23.388 L 16.684 23.388 L 16.684 20.704 C 16.203 22.766 14.069 23.635 12.053 23.635 Z M 45.533 23.387 L 41.889 23.387 L 41.889 13.447 C 41.889 11.428 41.213 10.677 39.393 10.677 C 37.052 10.677 35.815 11.974 35.815 14.427 L 35.815 23.387 L 32.171 23.387 L 32.171 13.447 C 32.171 11.479 31.473 10.677 29.766 10.677 C 26.719 10.677 26.097 13.635 26.097 14.427 L 26.097 23.387 L 22.423 23.387 L 22.423 8.015 L 25.946 8.015 L 25.946 10.703 C 26.572 8.817 28.552 7.679 30.548 7.679 C 32.543 7.679 34.221 8.387 34.949 10.703 C 35.925 8.302 37.682 7.679 39.785 7.679 C 43.437 7.679 45.533 9.373 45.533 12.327 Z M 52.924 23.635 C 47.85 23.635 46.989 20.634 46.989 19.102 C 46.989 17.299 47.84 15.674 49.682 15.015 C 50.493 14.736 51.275 14.528 52.077 14.378 C 52.784 14.246 53.875 14.106 54.672 14.004 L 54.935 13.97 C 56.322 13.791 57.796 13.144 57.796 12.299 C 57.796 10.864 55.819 10.649 54.639 10.649 C 53.302 10.649 52.36 10.97 51.985 11.551 C 51.648 12.131 51.625 12.266 51.539 12.771 L 51.479 13.169 L 47.805 13.169 L 47.871 12.666 C 48.001 11.666 48.2 10.958 48.496 10.438 C 49.512 8.608 51.559 7.679 54.579 7.679 C 57.096 7.679 58.882 8.417 59.714 9.109 C 60.226 9.522 60.592 9.992 60.861 10.586 C 61.424 11.695 61.47 12.437 61.47 13.224 L 61.47 20.978 C 61.47 21.703 61.546 22.322 61.693 22.818 L 61.863 23.388 L 58.111 23.388 L 58.043 23.012 C 57.995 22.746 57.979 21.24 57.958 20.658 C 57.092 22.777 55.232 23.635 52.924 23.635 Z M 57.796 15.226 C 57.028 15.774 55.823 16.088 54.072 16.413 C 51.057 16.932 50.549 17.585 50.549 18.856 C 50.549 19.977 51.574 20.673 53.225 20.673 C 56.429 20.673 57.796 19.284 57.796 16.028 Z M 69.773 5.759 C 66.387 5.759 63.643 3.206 63.643 0.056 C 63.643 3.206 60.899 5.759 57.513 5.759 C 60.899 5.759 63.643 8.313 63.643 11.463 C 63.643 8.313 66.387 5.759 69.773 5.759 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9540566419,withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1syjc4x\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4nvp4l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qzj7jy\",\"data-styles-preset\":\"OCes52Yrx\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Motion is made possible thanks to our amazing sponsors.\"})}),className:\"framer-o3q7b4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KzBi7SA3t\"},implicitPathVariables:undefined},{href:{webPageId:\"KzBi7SA3t\"},implicitPathVariables:undefined},{href:{webPageId:\"KzBi7SA3t\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+4411+80+763+0+111}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,y:(componentViewport?.y||0)+0+2926+140+633+3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v4kxk0-container\",nodeId:\"i4OhcBXcZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{l3_Njl2Hs:resolvedLinks1[2]},QdjPMfI8v:{l3_Njl2Hs:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"i4OhcBXcZ\",l3_Njl2Hs:resolvedLinks1[0],layoutId:\"i4OhcBXcZ\",NeJttckul:\"Become a sponsor\",variant:\"Kjml3Rt2k\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u7xzqd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11uoqpi\",id:elementId2,ref:ref15,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+5460+80+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+3860+180+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref15,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-90dve0-container\",nodeId:\"WNOmA3Fc1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{fY2ivOzRD:\"courses\",height:\"100%\",id:\"WNOmA3Fc1\",layoutId:\"WNOmA3Fc1\",oufbjrCkl:\"rgba(255, 255, 255, 0.6)\",Q2I4Ibtfz:\"rgb(26, 26, 26)\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-153j331\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-exngks\",\"data-styles-preset\":\"oFGazSjG5\",style:{\"--framer-text-alignment\":\"center\"},children:\"Learn Motion\"})}),className:\"framer-1irc0bs\",effect:getTextEffect2(ref15),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15baaxw\",\"data-styles-preset\":\"qNr6sz4fJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Learn Motion for React with interactive courses and expert-led videos.\"})}),className:\"framer-10h4r1k\",effect:getTextEffect1(ref15),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref15,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t0ev0b\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11m095b hidden-cb1b2l\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qbp5ui\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,width:\"157px\",y:(componentViewport?.y||0)+0+3860+180+236+0+0+10+58+38.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m2hc0z-container\",nodeId:\"Ki1h9U3Va\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:1.4},children:/*#__PURE__*/_jsx(DBook,{height:\"100%\",id:\"Ki1h9U3Va\",layoutId:\"Ki1h9U3Va\",lfEuc9C8n:\"Sam Selikoff\",oEsI3wd9g:\"Motion for React Recipes\",pRet1EGd1:\"rgb(32, 117, 252)\",RrrvdkH4D:\"https://buildui.com/courses/framer-motion-recipes\",style:{height:\"100%\",width:\"100%\"},vAGzmENmE:\"rgb(255, 255, 255)\",variant:\"j_MPuEy1k\",width:\"100%\",Z6oXQD6Do:\"rgb(227, 226, 216)\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cv0gfv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,width:\"157px\",y:(componentViewport?.y||0)+0+3860+180+236+0+0+10+0+67.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13al1ri-container\",nodeId:\"NMR2P7JHA\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:1.7},children:/*#__PURE__*/_jsx(DBook,{height:\"100%\",id:\"NMR2P7JHA\",layoutId:\"NMR2P7JHA\",lfEuc9C8n:\"Emil Kowalski\",oEsI3wd9g:\"Animations on the Web\",pRet1EGd1:\"var(--token-6d6f97c3-5f4a-41b8-a7b9-eff3df1acd75, rgb(255, 243, 18))\",RrrvdkH4D:\"https://animations.dev/\",style:{height:\"100%\",width:\"100%\"},vAGzmENmE:\"rgb(0, 0, 0)\",variant:\"j_MPuEy1k\",width:\"100%\",Z6oXQD6Do:\"rgb(255, 253, 212)\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15nd5yb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,width:\"157px\",y:(componentViewport?.y||0)+0+3860+180+236+0+0+10+58+38.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13z7s43-container\",nodeId:\"EVyx2MyaN\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:1.4},children:/*#__PURE__*/_jsx(DBook,{height:\"100%\",id:\"EVyx2MyaN\",layoutId:\"EVyx2MyaN\",lfEuc9C8n:\"Jeroen Reumkens\",oEsI3wd9g:\"Crafting Beautiful Experiences with Motion\",pRet1EGd1:\"rgb(250, 248, 220)\",RrrvdkH4D:\"https://www.frontend.fyi/course/motion\",style:{height:\"100%\",width:\"100%\"},vAGzmENmE:\"rgb(0, 0, 0)\",variant:\"j_MPuEy1k\",width:\"100%\",Z6oXQD6Do:\"rgb(224, 223, 209)\"})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YwjxUkoDf\"},implicitPathVariables:undefined},{href:{webPageId:\"YwjxUkoDf\"},implicitPathVariables:undefined},{href:{webPageId:\"YwjxUkoDf\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+5460+80+501+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:15,y:(componentViewport?.y||0)+0+3860+180+236+0+357,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18q78de-container\",nodeId:\"MMO2MOX0q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{l3_Njl2Hs:resolvedLinks2[2]},QdjPMfI8v:{l3_Njl2Hs:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"MMO2MOX0q\",l3_Njl2Hs:resolvedLinks2[0],layoutId:\"MMO2MOX0q\",NeJttckul:\"Explore all courses\",variant:\"Kjml3Rt2k\",width:\"100%\"})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g5b821-container hidden-ogrxa2 hidden-ras1cd\",isModuleExternal:true,nodeId:\"emjECSku6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:10,height:\"100%\",hoverFactor:1,id:\"emjECSku6\",layoutId:\"emjECSku6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-be17y3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ornjs9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,width:\"157px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1elkjvr-container\",inComponentSlot:true,nodeId:\"gb9DkTs9Q\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:1.2},children:/*#__PURE__*/_jsx(DBook,{height:\"100%\",id:\"gb9DkTs9Q\",layoutId:\"gb9DkTs9Q\",lfEuc9C8n:\"Josh W. Comeau\",oEsI3wd9g:\"The Joy of React\",pRet1EGd1:\"rgb(32, 117, 252)\",RrrvdkH4D:\"https://www.joyofreact.com/?referredBy=motion\",style:{height:\"100%\",width:\"100%\"},vAGzmENmE:\"rgb(255, 255, 255)\",variant:\"j_MPuEy1k\",width:\"100%\",Z6oXQD6Do:\"rgb(227, 226, 216)\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1emfy69\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,width:\"157px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gt0zzx-container\",inComponentSlot:true,nodeId:\"iiifvVZlb\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:1.2},children:/*#__PURE__*/_jsx(DBook,{height:\"100%\",id:\"iiifvVZlb\",layoutId:\"iiifvVZlb\",lfEuc9C8n:\"Emil Kowalski\",oEsI3wd9g:\"Animations on the Web\",pRet1EGd1:\"var(--token-6d6f97c3-5f4a-41b8-a7b9-eff3df1acd75, rgb(255, 243, 18))\",RrrvdkH4D:\"https://animations.dev/\",style:{height:\"100%\",width:\"100%\"},vAGzmENmE:\"rgb(0, 0, 0)\",variant:\"j_MPuEy1k\",width:\"100%\",Z6oXQD6Do:\"rgb(255, 253, 212)\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ncxzde\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:192,width:\"157px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-x05wyd-container\",inComponentSlot:true,nodeId:\"wrVnvw8hF\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:1.2},children:/*#__PURE__*/_jsx(DBook,{height:\"100%\",id:\"wrVnvw8hF\",layoutId:\"wrVnvw8hF\",lfEuc9C8n:\"Jeroen Reumkens\",oEsI3wd9g:\"Crafting Beautiful Experiences with Motion\",pRet1EGd1:\"rgb(250, 248, 220)\",RrrvdkH4D:\"https://www.frontend.fyi/course/motion\",style:{height:\"100%\",width:\"100%\"},vAGzmENmE:\"rgb(0, 0, 0)\",variant:\"j_MPuEy1k\",width:\"100%\",Z6oXQD6Do:\"rgb(224, 223, 209)\"})})})})]})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfrazy\",\"data-framer-name\":\"Components\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-64gmq1\",id:elementId3,ref:ref16,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+6136+80+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+4828+180+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref16,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ss33mb-container\",nodeId:\"FrFyMJ5NI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{fY2ivOzRD:\"motion+\",height:\"100%\",id:\"FrFyMJ5NI\",layoutId:\"FrFyMJ5NI\",oufbjrCkl:\"rgba(255, 255, 255, 0.6)\",Q2I4Ibtfz:\"rgb(26, 26, 26)\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhb2pz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-exngks\",\"data-styles-preset\":\"oFGazSjG5\",style:{\"--framer-text-alignment\":\"center\"},children:\"Advanced features\"})}),className:\"framer-1f1mcq8\",effect:getTextEffect3(ref16),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15baaxw\",\"data-styles-preset\":\"qNr6sz4fJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Upgrade to Motion+ for lifetime access to premium APIs, an extensive library of examples, early access to new features, and a private Discord community and more.\"})}),className:\"framer-10k31ee\",effect:getTextEffect1(ref16),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qRcjxedbO\"},implicitPathVariables:undefined},{href:{webPageId:\"qRcjxedbO\"},implicitPathVariables:undefined},{href:{webPageId:\"qRcjxedbO\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+6136+80+0+0+216}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,y:(componentViewport?.y||0)+0+4828+180+0+0+216,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref16,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-exdcki-container\",nodeId:\"zhxA5U8U5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{XNXElvSwv:resolvedLinks3[2]},QdjPMfI8v:{XNXElvSwv:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonWithSetPaddleReferralHomepageexdckiWithMappedReactProps1v1ipky,{Cew9bH6Xi:\"var(--token-0b1311c6-563c-49e1-a66a-983e82d80fd8, rgb(141, 240, 204))\",height:\"100%\",id:\"zhxA5U8U5\",layoutId:\"zhxA5U8U5\",sl65aq8yV:\"var(--token-d3c8efe0-1e3d-4593-91d5-4f8e6e6f607a, rgb(8, 8, 8))\",variant:\"UKwkQIe2E\",width:\"100%\",XNXElvSwv:resolvedLinks3[0],YtW6M9hpO:\"Upgrade to Motion+\"})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition25},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref16,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i6ruez\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-27y5fz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2315.5,intrinsicWidth:1543.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6136+80+291+0+0+-515.5),pixelHeight:1100,pixelWidth:720,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 50px) * 1.2494)`,src:\"https://framerusercontent.com/images/gM5DezdUsxyc6RJAIlELxLqcDc.jpg\",srcSet:\"https://framerusercontent.com/images/gM5DezdUsxyc6RJAIlELxLqcDc.jpg?scale-down-to=1024 670w,https://framerusercontent.com/images/gM5DezdUsxyc6RJAIlELxLqcDc.jpg 720w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2315.5,intrinsicWidth:1543.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4828+180+291+0+0+-515.5),pixelHeight:1100,pixelWidth:720,sizes:`calc((max((min(${componentViewport?.width||\"100vw\"} - 40px, 1000px) - 60px) / 3, 50px) * 2 + 10px) * 1.2494)`,src:\"https://framerusercontent.com/images/gM5DezdUsxyc6RJAIlELxLqcDc.jpg\",srcSet:\"https://framerusercontent.com/images/gM5DezdUsxyc6RJAIlELxLqcDc.jpg?scale-down-to=1024 670w,https://framerusercontent.com/images/gM5DezdUsxyc6RJAIlELxLqcDc.jpg 720w\"},className:\"framer-gd344v\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tribq1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wx46vz\",children:/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react\",motionChild:true,nodeId:\"aBoHuO7qB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1rnvzmn framer-lux5qc\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lju46b\",\"data-framer-name\":\"Nav\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 520',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Engagement stats\"})}),className:\"framer-1c3qeyf\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s9zw2e\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i8ikuu\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-134wesm\",\"data-framer-name\":\"Lock\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10 10\"><path d=\"M 2.083 9.167 C 1.623 9.167 1.25 8.794 1.25 8.333 L 1.25 5.417 C 1.25 4.956 1.623 4.583 2.083 4.583 L 7.917 4.583 C 8.377 4.583 8.75 4.956 8.75 5.417 L 8.75 8.333 C 8.75 8.794 8.377 9.167 7.917 9.167 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"#0c1012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.917 4.583 L 2.917 2.917 C 2.917 1.766 3.849 0.833 5 0.833 C 6.151 0.833 7.083 1.766 7.083 2.917 L 7.083 4.583\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"#0c1012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11803895578,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlESXdMQ0FpZDJkb2RDSWdOakl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"11px\",\"--framer-font-variation-axes\":'\"opsz\" 20, \"wght\" 620',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(12, 16, 18)\",\"--framer-text-transform\":\"uppercase\"},children:\"source\"})}),className:\"framer-481nqc\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/typewriter\",motionChild:true,nodeId:\"fHTF0miuh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1k0miov framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n3bdhd\",\"data-framer-name\":\"Nav\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 520',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Typewriter\"})}),className:\"framer-qf5vcj\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-168b8d5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1212qaf\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kqwm1o\",\"data-framer-name\":\"Lock\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10 10\"><path d=\"M 2.083 9.167 C 1.623 9.167 1.25 8.794 1.25 8.333 L 1.25 5.417 C 1.25 4.956 1.623 4.583 2.083 4.583 L 7.917 4.583 C 8.377 4.583 8.75 4.956 8.75 5.417 L 8.75 8.333 C 8.75 8.794 8.377 9.167 7.917 9.167 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"#0c1012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.917 4.583 L 2.917 2.917 C 2.917 1.766 3.849 0.833 5 0.833 C 6.151 0.833 7.083 1.766 7.083 2.917 L 7.083 4.583\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"#0c1012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11803895578,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlESXdMQ0FpZDJkb2RDSWdOakl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"11px\",\"--framer-font-variation-axes\":'\"opsz\" 20, \"wght\" 620',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(12, 16, 18)\",\"--framer-text-transform\":\"uppercase\"},children:\"source\"})}),className:\"framer-wuv06o\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ux93u2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bjkg18-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Y40d8kAuy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{font:{fontFamily:\"inter\",fontSize:48,fontWeight:500,letterSpacing:-3.6,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"center\",whiteSpace:\"nowrap\"}}},children:/*#__PURE__*/_jsx(Typewriter,{autoStart:true,caretVisibility:true,color:\"rgb(142, 240, 204)\",cursor:\"|\",cursorColor:\"rgba(136, 136, 136, 0.5)\",delayNumber:.2,delayType:true,font:{fontFamily:\"inter\",fontSize:57.5,fontWeight:500,letterSpacing:-3.6,lineHeight:1.2,lineHeightPixels:100,lineHeightType:true,offset:0,textAlign:\"center\",whiteSpace:\"nowrap\"},height:\"100%\",id:\"Y40d8kAuy\",layoutId:\"Y40d8kAuy\",loop:true,pauseFor:1,split:false,tag:\"heading1\",text:\"Hello World!\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hboq0l-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"j7kAYLN5U\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:5,borderRadius:\"14px\",direction:\"to bottom\",height:\"100%\",id:\"j7kAYLN5U\",layoutId:\"j7kAYLN5U\",style:{height:\"100%\",width:\"100%\"},transition:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qvbkhq\",children:/*#__PURE__*/_jsx(Link,{href:\"https://examples.motion.dev/react/number-engagement-stats\",motionChild:true,nodeId:\"NL68ZGKbp\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-a4h3mj framer-lux5qc\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jkixfe\",\"data-framer-name\":\"Nav\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"13px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 520',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:\"Engagement stats\"})}),className:\"framer-gk8xjk\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lew1qi\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hrr0oa\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ene9gs\",\"data-framer-name\":\"Lock\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10 10\"><path d=\"M 2.083 9.167 C 1.623 9.167 1.25 8.794 1.25 8.333 L 1.25 5.417 C 1.25 4.956 1.623 4.583 2.083 4.583 L 7.917 4.583 C 8.377 4.583 8.75 4.956 8.75 5.417 L 8.75 8.333 C 8.75 8.794 8.377 9.167 7.917 9.167 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"#0c1012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 2.917 4.583 L 2.917 2.917 C 2.917 1.766 3.849 0.833 5 0.833 C 6.151 0.833 7.083 1.766 7.083 2.917 L 7.083 4.583\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"#0c1012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11803895578,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlESXdMQ0FpZDJkb2RDSWdOakl3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on, 'tnum' on, 'ss03' on\",\"--framer-font-size\":\"11px\",\"--framer-font-variation-axes\":'\"opsz\" 20, \"wght\" 620',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(12, 16, 18)\",\"--framer-text-transform\":\"uppercase\"},children:\"source\"})}),className:\"framer-1sg8rdw\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-188w0l3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xejqmi\",\"data-framer-name\":\"Rotate-ccw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10 10\"><path d=\"M 0.417 1.667 L 0.417 4.167 L 2.917 4.167\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 1.462 6.25 C 2.018 7.825 3.547 8.844 5.215 8.748 C 6.882 8.652 8.285 7.465 8.656 5.836 C 9.027 4.207 8.275 2.53 6.814 1.722 C 5.352 0.914 3.532 1.17 2.35 2.35 L 0.417 4.167\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9142442106,withExternalLayout:true})})]})]})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c14hlb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVFF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 540',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"100+ premium examples\"})}),className:\"framer-2p0k28\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdORGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 480',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"A growing collection of high-quality, ready-to-use examples for JavaScript, React and Vue.\"})}),className:\"framer-1lbyd2c\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g0ayp7\",id:elementId4,ref:ref17,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-seif34\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:false,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref17,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ngu8f8\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdORGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 480',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Rotate the square slower\"})}),className:\"framer-81f8j0\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iekw2t\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-40b0db\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg height=\"16\" width=\"16\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.707 1.396a1 1 0 0 0-1.414 0L2.22 6.47 1.69 7l1.06 1.06.53-.53 3.97-3.97V15h1.5V3.56l3.97 3.97.53.53L14.31 7l-.53-.53-5.073-5.074Z\" fill=\"currentColor\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:293,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6136+80+291+0+446.9195+30+0+0),pixelHeight:840,pixelWidth:586,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 50px) - 60px)`,src:\"https://framerusercontent.com/images/GA9x4pwWvnG9sAZmh7wuy0eV50g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GA9x4pwWvnG9sAZmh7wuy0eV50g.png 586w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:false,__framer__enter:animation28,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref17,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.8,background:{alt:\"\",fit:\"fill\",intrinsicHeight:420,intrinsicWidth:293,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4828+180+291+0+0+30+0+0),pixelHeight:840,pixelWidth:586,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 40px, 1000px) - 60px) / 3, 50px) - 60px)`,src:\"https://framerusercontent.com/images/GA9x4pwWvnG9sAZmh7wuy0eV50g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GA9x4pwWvnG9sAZmh7wuy0eV50g.png 586w\"},className:\"framer-1ay7g7\",\"data-framer-name\":\"V0@2x\",draggable:\"false\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vqxowv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVFF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 540',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"AI-powered editing\"})}),className:\"framer-xunq95\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdORGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 480',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"Open examples in Vercel’s v0 AI editor and tweak as needed.\"})}),className:\"framer-z5a2u\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11knxlu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y7bbwi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k5rxuw\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-eoih1d\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s8r7eb\",draggable:\"false\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vtgwv3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1\"})}),className:\"framer-1ch7gzv\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"# Motion\"})}),className:\"framer-1s4a5sk\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-184cqjg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2\"})}),className:\"framer-gh5fw5\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cd7ovn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"3\"})}),className:\"framer-wq8lzu\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You're an expert in Motion, React and TypeScript.\"})}),className:\"framer-1nejxcj\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kvodo0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4\"})}),className:\"framer-16x2zwf\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1koblj6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"5\"})}),className:\"framer-1fqb37s\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"## Performance\"})}),className:\"framer-1d78wyg\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nxyql8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"6\"})}),className:\"framer-11qshhi\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7y1vg8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"7\"})}),className:\"framer-1qk6qk7\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'- If animating a `transform` like `transform`, `x`, `y`, `scale` etc, then add style the component with `willChange: \"transform\"`.'})}),className:\"framer-hde63v\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rpo5en\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"8\"})}),className:\"framer-bl5z0q\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"- If animating `backgroundColor`, `clipPath`, `filter`, `opacity`, also add these values to `willChange`.\"})}),className:\"framer-18u9ewi\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17aa2if\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"9\"})}),className:\"framer-kj6zk3\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QXplcmV0IE1vbm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Azeret Mono\", \"Azeret Mono Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"- Inside functions that will or could run every frame (hot functions), like the `motion` component's `onUpdate` prop, `useTransform` etc:\"})}),className:\"framer-1w8wz1y\",fonts:[\"FS;Azeret Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10gvtj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"izVs02MUM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:8,borderRadius:\"14px\",direction:\"to bottom\",height:\"100%\",id:\"izVs02MUM\",layoutId:\"izVs02MUM\",style:{height:\"100%\",width:\"100%\"},transition:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y3fdxc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVFF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 540',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Motion Expert Copilot\"})}),className:\"framer-19iexmj\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdORGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 480',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:[\"A\",/*#__PURE__*/_jsx(\"code\",{children:\" \"}),/*#__PURE__*/_jsx(\"code\",{className:\"framer-styles-preset-1x44pam\",\"data-styles-preset\":\"PSqZE1cmW\",children:\".cursorrules\"}),/*#__PURE__*/_jsx(\"code\",{children:\" \"}),\"that \",/*#__PURE__*/_jsx(\"em\",{children:\"guides\"}),\" AI editors with best practices.\"]})}),className:\"framer-1l4kz1k\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19tt78f\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jekdxa\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v4ofol\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-di30sk\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g284rl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-q7l14g\",\"data-framer-name\":\"Discord-mark-white\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 25 19\"><path d=\"M 21.201 1.597 C 19.556 0.84 17.821 0.303 16.037 0 C 15.793 0.439 15.573 0.89 15.376 1.352 C 13.477 1.064 11.545 1.064 9.646 1.352 C 9.449 0.89 9.228 0.439 8.984 0 C 7.2 0.306 5.463 0.844 3.817 1.601 C 0.549 6.462 -0.337 11.202 0.106 15.875 C 2.02 17.296 4.162 18.378 6.439 19.071 C 6.952 18.378 7.405 17.642 7.795 16.872 C 7.055 16.594 6.34 16.251 5.659 15.847 C 5.839 15.717 6.014 15.582 6.183 15.451 C 10.193 17.347 14.835 17.347 18.844 15.451 C 19.016 15.592 19.191 15.726 19.368 15.847 C 18.686 16.252 17.97 16.596 17.228 16.874 C 17.618 17.644 18.071 18.379 18.585 19.071 C 20.864 18.38 23.007 17.3 24.921 15.877 C 25.441 10.458 24.033 5.761 21.201 1.597 Z M 8.356 13.001 C 7.122 13.001 6.102 11.875 6.102 10.49 C 6.102 9.104 7.087 7.968 8.352 7.968 C 9.618 7.968 10.63 9.104 10.608 10.49 C 10.587 11.875 9.614 13.001 8.356 13.001 Z M 16.671 13.001 C 15.435 13.001 14.419 11.875 14.419 10.49 C 14.419 9.104 15.404 7.968 16.671 7.968 C 17.939 7.968 18.943 9.104 18.921 10.49 C 18.9 11.875 17.929 13.001 16.671 13.001 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9392477232,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tg9t2a\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uvgrfk\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cjynyu\",\"data-framer-name\":\"1800a046-e44a-479b-923c-0253cc3d0bf4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 34 12\"><path d=\"M 12.838 0 L 6.12 11.989 L 0 11.989 L 5.245 2.628 C 6.059 1.176 8.088 0 9.778 0 Z M 27.846 2.997 C 27.846 1.342 29.216 0 30.906 0 C 32.596 0 33.966 1.342 33.966 2.997 C 33.966 4.653 32.596 5.995 30.906 5.995 C 29.216 5.995 27.846 4.653 27.846 2.997 Z M 13.985 0 L 20.105 0 L 13.387 11.989 L 7.267 11.989 Z M 21.214 0 L 27.334 0 L 22.088 9.362 C 21.275 10.813 19.246 11.989 17.556 11.989 L 14.496 11.989 Z\" fill=\"#0b1012\"></path></svg>',svgContentId:12102463084,withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lcf6k\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdPREF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 800',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"8\"})}),className:\"framer-16sqhws\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qom020\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nc07cd\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y3jy7i\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1apsxjs\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a4stxy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwywym\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-s7hjc3\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 16 7.6 C 16 8.39 14.72 8.98 14.48 9.69 C 14.24 10.4 14.92 11.69 14.48 12.28 C 14.04 12.87 12.64 12.63 12.02 13.08 C 11.4 13.53 11.23 14.92 10.48 15.17 C 9.73 15.42 8.81 14.37 8.01 14.37 C 7.21 14.37 6.26 15.37 5.54 15.17 C 4.82 14.97 4.62 13.53 4 13.08 C 3.38 12.63 2 12.9 1.54 12.28 C 1.08 11.66 1.77 10.44 1.54 9.69 C 1.31 8.94 0 8.39 0 7.6 C 0 6.81 1.28 6.22 1.52 5.51 C 1.76 4.8 1.08 3.51 1.52 2.92 C 1.96 2.33 3.37 2.57 4 2.12 C 4.63 1.67 4.78 0.28 5.53 0 C 6.28 -0.28 7.2 0.83 8 0.83 C 8.8 0.83 9.75 -0.17 10.47 0.03 C 11.19 0.23 11.38 1.67 12 2.12 C 12.62 2.57 14 2.3 14.46 2.92 C 14.92 3.54 14.23 4.76 14.46 5.51 C 14.69 6.26 16 6.81 16 7.6 Z\" fill=\"var(--token-659fd5f4-75cf-4cf2-8be2-e9f0c5965188, rgb(141, 240, 204)) /* {&quot;name&quot;:&quot;Teal&quot;} */\"></path><path d=\"M 4.719 7.75 L 6.849 9.938 L 11 5.5\" fill=\"transparent\" stroke-width=\"1.3\" stroke=\"#152322\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9035740226,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVFF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 540',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Motion+\"})}),className:\"framer-lqu0h2\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jr31d9\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rekmro\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pfoufg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14bvd6u\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lqnnbb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gzi64l\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vyu1hd\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lo5oyl\"})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-198ssay\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVFF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 540',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Private Discord\"})}),className:\"framer-5cng6q\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdORGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 480',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"Stay updated with Motion releases, showcase  your work, and get support.\"})}),className:\"framer-13mg2pa\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rivsg4\",id:elementId5,ref:ref18,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rrl9ks\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14c4tvi\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:false,__framer__enter:animation29,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref18,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3p0f3f\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kv93kn\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-129j69f\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xipiej\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w2hgnm\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-278aho\"})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:false,__framer__enter:animation30,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref18,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rtn451\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18rv8v6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1aq0mfo\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.8 1h-.05c-.229 0-.426 0-.6.041A1.5 1.5 0 0 0 1.04 2.15c-.04.174-.04.37-.04.6v2.5c0 .229 0 .426.041.6A1.5 1.5 0 0 0 2.15 6.96c.174.04.37.04.6.04h2.5c.229 0 .426 0 .6-.041A1.5 1.5 0 0 0 6.96 5.85c.04-.174.04-.37.04-.6v-2.5c0-.229 0-.426-.041-.6A1.5 1.5 0 0 0 5.85 1.04C5.676 1 5.48 1 5.25 1H2.8Zm-.417 1.014c.043-.01.11-.014.417-.014h2.4c.308 0 .374.003.417.014a.5.5 0 0 1 .37.37c.01.042.013.108.013.416v2.4c0 .308-.003.374-.014.417a.5.5 0 0 1-.37.37C5.575 5.996 5.509 6 5.2 6H2.8c-.308 0-.374-.003-.417-.014a.5.5 0 0 1-.37-.37C2.004 5.575 2 5.509 2 5.2V2.8c0-.308.003-.374.014-.417a.5.5 0 0 1 .37-.37ZM9.8 1h-.05c-.229 0-.426 0-.6.041A1.5 1.5 0 0 0 8.04 2.15c-.04.174-.04.37-.04.6v2.5c0 .229 0 .426.041.6A1.5 1.5 0 0 0 9.15 6.96c.174.04.37.04.6.04h2.5c.229 0 .426 0 .6-.041a1.5 1.5 0 0 0 1.11-1.109c.04-.174.04-.37.04-.6v-2.5c0-.229 0-.426-.041-.6a1.5 1.5 0 0 0-1.109-1.11c-.174-.04-.37-.04-.6-.04H9.8Zm-.417 1.014c.043-.01.11-.014.417-.014h2.4c.308 0 .374.003.417.014a.5.5 0 0 1 .37.37c.01.042.013.108.013.416v2.4c0 .308-.004.374-.014.417a.5.5 0 0 1-.37.37c-.042.01-.108.013-.416.013H9.8c-.308 0-.374-.003-.417-.014a.5.5 0 0 1-.37-.37C9.004 5.575 9 5.509 9 5.2V2.8c0-.308.003-.374.014-.417a.5.5 0 0 1 .37-.37ZM2.75 8h2.5c.229 0 .426 0 .6.041A1.5 1.5 0 0 1 6.96 9.15c.04.174.04.37.04.6v2.5c0 .229 0 .426-.041.6a1.5 1.5 0 0 1-1.109 1.11c-.174.04-.37.04-.6.04h-2.5c-.229 0-.426 0-.6-.041a1.5 1.5 0 0 1-1.11-1.109c-.04-.174-.04-.37-.04-.6v-2.5c0-.229 0-.426.041-.6A1.5 1.5 0 0 1 2.15 8.04c.174-.04.37-.04.6-.04Zm.05 1c-.308 0-.374.003-.417.014a.5.5 0 0 0-.37.37C2.004 9.425 2 9.491 2 9.8v2.4c0 .308.003.374.014.417a.5.5 0 0 0 .37.37c.042.01.108.013.416.013h2.4c.308 0 .374-.004.417-.014a.5.5 0 0 0 .37-.37c.01-.042.013-.108.013-.416V9.8c0-.308-.003-.374-.014-.417a.5.5 0 0 0-.37-.37C5.575 9.004 5.509 9 5.2 9H2.8Zm7-1h-.05c-.229 0-.426 0-.6.041A1.5 1.5 0 0 0 8.04 9.15c-.04.174-.04.37-.04.6v2.5c0 .229 0 .426.041.6a1.5 1.5 0 0 0 1.109 1.11c.174.041.371.041.6.041h2.5c.229 0 .426 0 .6-.041a1.5 1.5 0 0 0 1.109-1.109c.041-.174.041-.371.041-.6V9.75c0-.229 0-.426-.041-.6a1.5 1.5 0 0 0-1.109-1.11c-.174-.04-.37-.04-.6-.04H9.8Zm-.417 1.014c.043-.01.11-.014.417-.014h2.4c.308 0 .374.003.417.014a.5.5 0 0 1 .37.37c.01.042.013.108.013.416v2.4c0 .308-.004.374-.014.417a.5.5 0 0 1-.37.37c-.042.01-.108.013-.416.013H9.8c-.308 0-.374-.004-.417-.014a.5.5 0 0 1-.37-.37C9.004 12.575 9 12.509 9 12.2V9.8c0-.308.003-.374.014-.417a.5.5 0 0 1 .37-.37Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-of7rsv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10ad89p\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 16.48 12 C 16.48 13.591 15.191 14.88 13.6 14.88 C 12.009 14.88 10.72 13.591 10.72 12 C 10.72 10.409 12.009 9.12 13.6 9.12 C 15.191 9.12 16.48 10.409 16.48 12 Z M 17.928 12.8 C 17.542 14.886 15.722 16.4 13.6 16.4 C 11.478 16.4 9.658 14.886 9.272 12.8 L 0.8 12.8 C 0.358 12.8 0 12.442 0 12 C 0 11.558 0.358 11.2 0.8 11.2 L 9.272 11.2 C 9.658 9.114 11.478 7.6 13.6 7.6 C 15.722 7.6 17.542 9.114 17.928 11.2 L 23.2 11.2 C 23.642 11.2 24 11.558 24 12 C 24 12.442 23.642 12.8 23.2 12.8 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9608545036,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lg5kc8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-61xbr1\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 10.4 1.6 C 9.958 1.6 9.6 1.958 9.6 2.4 C 9.6 2.842 9.958 3.2 10.4 3.2 C 11.403 3.2 11.931 3.52 12.25 3.965 C 12.605 4.464 12.8 5.261 12.8 6.4 L 12.8 17.6 C 12.8 18.739 12.605 19.536 12.25 20.035 C 11.931 20.48 11.402 20.8 10.4 20.8 C 9.958 20.8 9.6 21.158 9.6 21.6 C 9.6 22.042 9.958 22.4 10.4 22.4 C 11.797 22.4 12.869 21.92 13.552 20.965 L 13.6 20.894 L 13.648 20.965 C 14.331 21.92 15.403 22.4 16.8 22.4 C 17.242 22.4 17.6 22.042 17.6 21.6 C 17.6 21.158 17.242 20.8 16.8 20.8 C 15.797 20.8 15.269 20.48 14.95 20.035 C 14.595 19.536 14.4 18.739 14.4 17.6 L 14.4 6.4 C 14.4 5.261 14.595 4.464 14.95 3.965 C 15.269 3.52 15.798 3.2 16.8 3.2 C 17.242 3.2 17.6 2.842 17.6 2.4 C 17.6 1.958 17.242 1.6 16.8 1.6 C 15.403 1.6 14.331 2.08 13.648 3.035 L 13.6 3.106 L 13.552 3.035 C 12.867 2.08 11.795 1.6 10.4 1.6 Z M 22.4 8 L 17.6 8 L 17.6 6.4 L 22.4 6.4 C 23.284 6.4 24 7.116 24 8 L 24 16 C 24 16.884 23.284 17.6 22.4 17.6 L 17.6 17.6 L 17.6 16 L 22.4 16 Z M 9.6 6.4 L 9.6 8 L 1.6 8 L 1.6 16 L 9.6 16 L 9.6 17.6 L 1.6 17.6 C 0.716 17.6 0 16.884 0 16 L 0 8 C 0 7.116 0.716 6.4 1.6 6.4 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12788742120,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tri9vl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5hwsct\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.764 3.122A32.656 32.656 0 0 1 7.5 3c.94 0 1.868.049 2.736.122 1.044.088 1.72.148 2.236.27.47.111.733.258.959.489.024.025.06.063.082.09.2.23.33.518.405 1.062.08.583.082 1.343.082 2.492 0 1.135-.002 1.885-.082 2.46-.074.536-.204.821-.405 1.054a2.276 2.276 0 0 1-.083.09c-.23.234-.49.379-.948.487-.507.12-1.168.178-2.194.264-.869.072-1.812.12-2.788.12-.976 0-1.92-.048-2.788-.12-1.026-.086-1.687-.144-2.194-.264-.459-.108-.719-.253-.948-.487a2.299 2.299 0 0 1-.083-.09c-.2-.233-.33-.518-.405-1.054C1.002 9.41 1 8.66 1 7.525c0-1.149.002-1.91.082-2.492.075-.544.205-.832.405-1.062.023-.027.058-.065.082-.09.226-.231.489-.378.959-.489.517-.122 1.192-.182 2.236-.27ZM0 7.525c0-2.242 0-3.363.73-4.208.036-.042.085-.095.124-.135.78-.799 1.796-.885 3.826-1.056C5.57 2.05 6.527 2 7.5 2c.973 0 1.93.05 2.82.126 2.03.171 3.046.257 3.826 1.056.039.04.087.093.124.135.73.845.73 1.966.73 4.208 0 2.215 0 3.323-.731 4.168a3.243 3.243 0 0 1-.125.135c-.781.799-1.778.882-3.773 1.048C9.48 12.951 8.508 13 7.5 13s-1.98-.05-2.87-.124c-1.996-.166-2.993-.25-3.774-1.048a3.316 3.316 0 0 1-.125-.135C0 10.848 0 9.74 0 7.525Zm5.25-2.142a.25.25 0 0 1 .35-.23l4.828 2.118c.2.088.2.37 0 .458L5.6 9.846a.25.25 0 0 1-.35-.229V5.383Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vqfq1t\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tvs82g\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.8 1h-.05c-.229 0-.426 0-.6.041A1.5 1.5 0 0 0 1.04 2.15c-.04.174-.04.37-.04.6v2.5c0 .229 0 .426.041.6A1.5 1.5 0 0 0 2.15 6.96c.174.04.37.04.6.04h2.5c.229 0 .426 0 .6-.041A1.5 1.5 0 0 0 6.96 5.85c.04-.174.04-.37.04-.6v-2.5c0-.229 0-.426-.041-.6A1.5 1.5 0 0 0 5.85 1.04C5.676 1 5.48 1 5.25 1H2.8Zm-.417 1.014c.043-.01.11-.014.417-.014h2.4c.308 0 .374.003.417.014a.5.5 0 0 1 .37.37c.01.042.013.108.013.416v2.4c0 .308-.003.374-.014.417a.5.5 0 0 1-.37.37C5.575 5.996 5.509 6 5.2 6H2.8c-.308 0-.374-.003-.417-.014a.5.5 0 0 1-.37-.37C2.004 5.575 2 5.509 2 5.2V2.8c0-.308.003-.374.014-.417a.5.5 0 0 1 .37-.37ZM9.8 1h-.05c-.229 0-.426 0-.6.041A1.5 1.5 0 0 0 8.04 2.15c-.04.174-.04.37-.04.6v2.5c0 .229 0 .426.041.6A1.5 1.5 0 0 0 9.15 6.96c.174.04.37.04.6.04h2.5c.229 0 .426 0 .6-.041a1.5 1.5 0 0 0 1.11-1.109c.04-.174.04-.37.04-.6v-2.5c0-.229 0-.426-.041-.6a1.5 1.5 0 0 0-1.109-1.11c-.174-.04-.37-.04-.6-.04H9.8Zm-.417 1.014c.043-.01.11-.014.417-.014h2.4c.308 0 .374.003.417.014a.5.5 0 0 1 .37.37c.01.042.013.108.013.416v2.4c0 .308-.004.374-.014.417a.5.5 0 0 1-.37.37c-.042.01-.108.013-.416.013H9.8c-.308 0-.374-.003-.417-.014a.5.5 0 0 1-.37-.37C9.004 5.575 9 5.509 9 5.2V2.8c0-.308.003-.374.014-.417a.5.5 0 0 1 .37-.37ZM2.75 8h2.5c.229 0 .426 0 .6.041A1.5 1.5 0 0 1 6.96 9.15c.04.174.04.37.04.6v2.5c0 .229 0 .426-.041.6a1.5 1.5 0 0 1-1.109 1.11c-.174.04-.37.04-.6.04h-2.5c-.229 0-.426 0-.6-.041a1.5 1.5 0 0 1-1.11-1.109c-.04-.174-.04-.37-.04-.6v-2.5c0-.229 0-.426.041-.6A1.5 1.5 0 0 1 2.15 8.04c.174-.04.37-.04.6-.04Zm.05 1c-.308 0-.374.003-.417.014a.5.5 0 0 0-.37.37C2.004 9.425 2 9.491 2 9.8v2.4c0 .308.003.374.014.417a.5.5 0 0 0 .37.37c.042.01.108.013.416.013h2.4c.308 0 .374-.004.417-.014a.5.5 0 0 0 .37-.37c.01-.042.013-.108.013-.416V9.8c0-.308-.003-.374-.014-.417a.5.5 0 0 0-.37-.37C5.575 9.004 5.509 9 5.2 9H2.8Zm7-1h-.05c-.229 0-.426 0-.6.041A1.5 1.5 0 0 0 8.04 9.15c-.04.174-.04.37-.04.6v2.5c0 .229 0 .426.041.6a1.5 1.5 0 0 0 1.109 1.11c.174.041.371.041.6.041h2.5c.229 0 .426 0 .6-.041a1.5 1.5 0 0 0 1.109-1.109c.041-.174.041-.371.041-.6V9.75c0-.229 0-.426-.041-.6a1.5 1.5 0 0 0-1.109-1.11c-.174-.04-.37-.04-.6-.04H9.8Zm-.417 1.014c.043-.01.11-.014.417-.014h2.4c.308 0 .374.003.417.014a.5.5 0 0 1 .37.37c.01.042.013.108.013.416v2.4c0 .308-.004.374-.014.417a.5.5 0 0 1-.37.37c-.042.01-.108.013-.416.013H9.8c-.308 0-.374-.004-.417-.014a.5.5 0 0 1-.37-.37C9.004 12.575 9 12.509 9 12.2V9.8c0-.308.003-.374.014-.417a.5.5 0 0 1 .37-.37Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qtj6cz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dp3nem\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 16.48 12 C 16.48 13.591 15.191 14.88 13.6 14.88 C 12.009 14.88 10.72 13.591 10.72 12 C 10.72 10.409 12.009 9.12 13.6 9.12 C 15.191 9.12 16.48 10.409 16.48 12 Z M 17.928 12.8 C 17.542 14.886 15.722 16.4 13.6 16.4 C 11.478 16.4 9.658 14.886 9.272 12.8 L 0.8 12.8 C 0.358 12.8 0 12.442 0 12 C 0 11.558 0.358 11.2 0.8 11.2 L 9.272 11.2 C 9.658 9.114 11.478 7.6 13.6 7.6 C 15.722 7.6 17.542 9.114 17.928 11.2 L 23.2 11.2 C 23.642 11.2 24 11.558 24 12 C 24 12.442 23.642 12.8 23.2 12.8 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9608545036,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:false,__framer__enter:animation29,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref18,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mtgdna\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15nbnho\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-117fpkr\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M3 3h9v9H3V3ZM2 3a1 1 0 0 1 1-1h9a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3Zm8.35 2.511a.5.5 0 0 0-.825-.566L6.64 9.15 5.197 7.41a.5.5 0 0 0-.77.638l1.866 2.25a.5.5 0 0 0 .797-.037l3.26-4.749Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aoaxd7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1890c27\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2.5 1h10A1.5 1.5 0 0 1 14 2.5v10a1.5 1.5 0 0 1-1.5 1.5h-10A1.5 1.5 0 0 1 1 12.5v-10A1.5 1.5 0 0 1 2.5 1Zm0 1a.5.5 0 0 0-.5.5v5.864l1.682-1.682a.45.45 0 0 1 .647.01l3.545 3.798 2.808-2.808a.45.45 0 0 1 .636 0L13 9.364V2.5a.5.5 0 0 0-.5-.5h-10ZM2 12.5V9.636l1.989-1.988 3.542 3.794L8.941 13H2.5a.5.5 0 0 1-.5-.5Zm10.5.5h-2.345l-1.672-1.847L11 8.636l2 2V12.5a.5.5 0 0 1-.5.5ZM6.65 5.5a.85.85 0 1 1 1.7 0 .85.85 0 0 1-1.7 0Zm.85-1.75a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i04j63\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3mqfb7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1p1sb8v\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 53 19\"><path d=\"M 20.134 0.5 L 9.86 18.484 L 0.5 18.484 L 8.523 4.441 C 9.766 2.265 12.87 0.5 15.454 0.5 Z M 43.088 4.996 C 43.088 2.513 45.183 0.5 47.768 0.5 C 50.352 0.5 52.448 2.513 52.448 4.996 C 52.448 7.479 50.352 9.492 47.768 9.492 C 45.183 9.492 43.088 7.479 43.088 4.996 Z M 21.889 0.5 L 31.249 0.5 L 20.975 18.484 L 11.615 18.484 Z M 32.944 0.5 L 42.304 0.5 L 34.282 14.543 C 33.038 16.719 29.935 18.484 27.35 18.484 L 22.67 18.484 Z\" fill=\"var(--token-659fd5f4-75cf-4cf2-8be2-e9f0c5965188, rgb(141, 240, 204)) /* {&quot;name&quot;:&quot;Teal&quot;} */\"></path></svg>',svgContentId:9106257044,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e40uoi\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s6v8gf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2akwoj\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 10.4 1.6 C 9.958 1.6 9.6 1.958 9.6 2.4 C 9.6 2.842 9.958 3.2 10.4 3.2 C 11.403 3.2 11.931 3.52 12.25 3.965 C 12.605 4.464 12.8 5.261 12.8 6.4 L 12.8 17.6 C 12.8 18.739 12.605 19.536 12.25 20.035 C 11.931 20.48 11.402 20.8 10.4 20.8 C 9.958 20.8 9.6 21.158 9.6 21.6 C 9.6 22.042 9.958 22.4 10.4 22.4 C 11.797 22.4 12.869 21.92 13.552 20.965 L 13.6 20.894 L 13.648 20.965 C 14.331 21.92 15.403 22.4 16.8 22.4 C 17.242 22.4 17.6 22.042 17.6 21.6 C 17.6 21.158 17.242 20.8 16.8 20.8 C 15.797 20.8 15.269 20.48 14.95 20.035 C 14.595 19.536 14.4 18.739 14.4 17.6 L 14.4 6.4 C 14.4 5.261 14.595 4.464 14.95 3.965 C 15.269 3.52 15.798 3.2 16.8 3.2 C 17.242 3.2 17.6 2.842 17.6 2.4 C 17.6 1.958 17.242 1.6 16.8 1.6 C 15.403 1.6 14.331 2.08 13.648 3.035 L 13.6 3.106 L 13.552 3.035 C 12.867 2.08 11.795 1.6 10.4 1.6 Z M 22.4 8 L 17.6 8 L 17.6 6.4 L 22.4 6.4 C 23.284 6.4 24 7.116 24 8 L 24 16 C 24 16.884 23.284 17.6 22.4 17.6 L 17.6 17.6 L 17.6 16 L 22.4 16 Z M 9.6 6.4 L 9.6 8 L 1.6 8 L 1.6 16 L 9.6 16 L 9.6 17.6 L 1.6 17.6 C 0.716 17.6 0 16.884 0 16 L 0 8 C 0 7.116 0.716 6.4 1.6 6.4 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12788742120,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qq4ihw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2tork9\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.877 7.5a6.623 6.623 0 1 1 13.246 0 6.623 6.623 0 0 1-13.246 0ZM7.5 1.827a5.673 5.673 0 0 0-4.193 9.494A4.971 4.971 0 0 1 7.5 9.025a4.97 4.97 0 0 1 4.193 2.296A5.673 5.673 0 0 0 7.5 1.827Zm3.482 10.152A4.023 4.023 0 0 0 7.5 9.975a4.023 4.023 0 0 0-3.482 2.004A5.648 5.648 0 0 0 7.5 13.173c1.312 0 2.52-.446 3.482-1.194ZM5.15 6.505a2.35 2.35 0 1 1 4.7 0 2.35 2.35 0 0 1-4.7 0Zm2.35-1.4a1.4 1.4 0 1 0 0 2.8 1.4 1.4 0 0 0 0-2.8Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:false,__framer__enter:animation30,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref18,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5t7k05\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oj4mar\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-phpxqd\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2 5h11a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1ZM0 6a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6Zm4.5.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm2.25.75a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm3.75-.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-126waw2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vs7uok\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.5 1a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-1 0v-12a.5.5 0 0 1 .5-.5Zm-2 2a.5.5 0 0 1 .5.5v10a.5.5 0 0 1-1 0v-10a.5.5 0 0 1 .5-.5Zm4 0a.5.5 0 0 1 .5.5v10a.5.5 0 0 1-1 0v-10a.5.5 0 0 1 .5-.5Zm-8 1a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-1 0v-9a.5.5 0 0 1 .5-.5Zm-4 1a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0v-8a.5.5 0 0 1 .5-.5Zm6 0a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0v-8a.5.5 0 0 1 .5-.5Zm-4 2a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0v-6a.5.5 0 0 1 .5-.5Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f6fft1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lktss8\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M9.964 2.686a.5.5 0 1 0-.928-.372l-4 10a.5.5 0 1 0 .928.372l4-10Zm-6.11 2.46a.5.5 0 0 1 0 .708L2.207 7.5l1.647 1.646a.5.5 0 1 1-.708.708l-2-2a.5.5 0 0 1 0-.708l2-2a.5.5 0 0 1 .708 0Zm7.292 0a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1 0 .708l-2 2a.5.5 0 0 1-.708-.708L12.793 7.5l-1.647-1.646a.5.5 0 0 1 0-.708Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9g0qsk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3eniwn\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M10.5 4a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Zm-2.829 7A4.491 4.491 0 0 1 6 7.5c0-1.414.652-2.675 1.671-3.5H4.5a3.5 3.5 0 1 0 0 7h3.171ZM0 7.5A4.5 4.5 0 0 1 4.5 3h6a4.5 4.5 0 1 1 0 9h-6A4.5 4.5 0 0 1 0 7.5Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ixte2l\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1oi31ac\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2 5h11a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1ZM0 6a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6Zm4.5.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm2.25.75a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm3.75-.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pd1h7u\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jtnkft\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.5 1a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-1 0v-12a.5.5 0 0 1 .5-.5Zm-2 2a.5.5 0 0 1 .5.5v10a.5.5 0 0 1-1 0v-10a.5.5 0 0 1 .5-.5Zm4 0a.5.5 0 0 1 .5.5v10a.5.5 0 0 1-1 0v-10a.5.5 0 0 1 .5-.5Zm-8 1a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-1 0v-9a.5.5 0 0 1 .5-.5Zm-4 1a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0v-8a.5.5 0 0 1 .5-.5Zm6 0a.5.5 0 0 1 .5.5v8a.5.5 0 0 1-1 0v-8a.5.5 0 0 1 .5-.5Zm-4 2a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0v-6a.5.5 0 0 1 .5-.5Z\" fill=\"currentColor\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:false,__framer__enter:animation29,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref18,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1eawppo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1je3nr1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2noyrx\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14lnaat\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w3cw7v\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xiasum\"})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16z4qf6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVFF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 540',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UI library integrations\"})}),className:\"framer-uf7spm\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXdMQ0FpZDJkb2RDSWdORGd3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-variation-axes\":'\"opsz\" 30, \"wght\" 480',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"Includes integration examples, starting with Radix.\"})}),className:\"framer-17wtekz\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qRcjxedbO\"},implicitPathVariables:undefined},{href:{webPageId:\"qRcjxedbO\"},implicitPathVariables:undefined},{href:{webPageId:\"qRcjxedbO\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+6136+80+2555.5975}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,y:(componentViewport?.y||0)+0+4828+180+1214.839,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref16,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cf7pix-container\",nodeId:\"R2zdNzSzo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{XNXElvSwv:resolvedLinks4[2]},QdjPMfI8v:{XNXElvSwv:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ButtonWithSetPaddleReferralHomepage1cf7pixWithMappedReactProps1v1ipky,{Cew9bH6Xi:\"var(--token-0b1311c6-563c-49e1-a66a-983e82d80fd8, rgb(141, 240, 204))\",height:\"100%\",id:\"R2zdNzSzo\",layoutId:\"R2zdNzSzo\",sl65aq8yV:\"var(--token-d3c8efe0-1e3d-4593-91d5-4f8e6e6f607a, rgb(8, 8, 8))\",variant:\"UKwkQIe2E\",width:\"100%\",XNXElvSwv:resolvedLinks4[0],YtW6M9hpO:\"Upgrade to Motion+\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tcz1v1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yawznx\",id:elementId6,ref:ref19,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{y:(componentViewport?.y||0)+0+8886.5975+80+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+6437.839+180+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref19,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n39jgv-container\",nodeId:\"tt0giWjvz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{fY2ivOzRD:\"gallery\",height:\"100%\",id:\"tt0giWjvz\",layoutId:\"tt0giWjvz\",oufbjrCkl:\"rgba(255, 255, 255, 0.6)\",Q2I4Ibtfz:\"rgb(26, 26, 26)\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qel6c9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-exngks\",\"data-styles-preset\":\"oFGazSjG5\",style:{\"--framer-text-alignment\":\"center\"},children:\"Motion Showcase\"})}),className:\"framer-1i1z4s8\",effect:getTextEffect3(ref19),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-15baaxw\",\"data-styles-preset\":\"qNr6sz4fJ\",style:{\"--framer-text-alignment\":\"center\"},children:[\"All the beautiful sites featured in the \",/*#__PURE__*/_jsx(Link,{href:\"https://framer.link/PHq1RFg\",motionChild:true,nodeId:\"giNmImvkB\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-pszpck\",\"data-styles-preset\":\"sSxg187SX\",children:\"Framer Gallery\"})}),\" are powered by Motion. Here are some more amazing interactions made by developers with its flexible APIs.\"]})}),className:\"framer-1kf85to\",effect:getTextEffect1(ref19),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref19,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c67rm7\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oo87sn-container hidden-cb1b2l\",\"data-framer-name\":\"Desktop\",isModuleExternal:true,name:\"Desktop\",nodeId:\"VFnufsLiD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(255, 255, 255, 0.1)\",arrowGap:10,arrowPadding:-100,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:true,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.6,effectsPerspective:1200,effectsRotate:0,effectsScale:.8,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:15,height:\"100%\",id:\"VFnufsLiD\",intervalControl:2.5,itemAmount:1,layoutId:\"VFnufsLiD\",name:\"Desktop\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-40,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"react-use-transform\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"WfIvtFnkL\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:547,width:\"708px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g592kj-container\",inComponentSlot:true,nodeId:\"DNbls94dL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"20px\",height:\"100%\",id:\"DNbls94dL\",layoutId:\"DNbls94dL\",McY8ZKS7c:\"https://framerusercontent.com/assets/YyuL2HNOAMSKqlwX09gHyoZ4YFM.mp4\",qpAAIMxM6:\"useTransform\",SMV95qjJC:true,style:{height:\"100%\",width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Jeroen Reumkens\",width:\"100%\",X9J1svZU4:\"rgb(69, 110, 77)\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/myO5U0eKZeZNuGlFTTYPZGAXgo.png\",srcSet:\"https://framerusercontent.com/images/myO5U0eKZeZNuGlFTTYPZGAXgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/myO5U0eKZeZNuGlFTTYPZGAXgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/myO5U0eKZeZNuGlFTTYPZGAXgo.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://www.frontend.fyi/tutorials/making-a-foldable-map-with-framer-motion\",z7xcMQZbz:resolvedLinks5[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"vue-motion-value\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"DDhX1SnRm\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:547,width:\"708px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1icohbm-container\",inComponentSlot:true,nodeId:\"HVEDl3kby\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"20px\",height:\"100%\",id:\"HVEDl3kby\",layoutId:\"HVEDl3kby\",McY8ZKS7c:\"https://framerusercontent.com/assets/vH1w1BehBFMtjxWCTC5KUllvWY.mp4\",qpAAIMxM6:\"useMotionValue\",SMV95qjJC:true,style:{height:\"100%\",width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Theodorus Clarence\",width:\"100%\",X9J1svZU4:\"rgb(46, 46, 46)\",XnQyKr1HU:addImageAlt({pixelHeight:1098,pixelWidth:1800,src:\"https://framerusercontent.com/images/ERawNplPfVTZQNKpyotXotjPnpo.png\",srcSet:\"https://framerusercontent.com/images/ERawNplPfVTZQNKpyotXotjPnpo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ERawNplPfVTZQNKpyotXotjPnpo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ERawNplPfVTZQNKpyotXotjPnpo.png 1800w\"},\"\"),Yz4Ry4eLn:\"https://theodorusclarence.com/\",z7xcMQZbz:resolvedLinks6[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"react-layout-animations\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"mvoYsRMpO\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:547,width:\"708px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-f1q2wk-container\",inComponentSlot:true,nodeId:\"BtjtYiazE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"20px\",height:\"100%\",id:\"BtjtYiazE\",layoutId:\"BtjtYiazE\",McY8ZKS7c:\"https://framerusercontent.com/assets/rjQUHJfmAPifxAVYbgoFR80zGs.mp4\",qpAAIMxM6:\"Layout Animation\",SMV95qjJC:true,style:{height:\"100%\",width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Sam Selikoff\",width:\"100%\",X9J1svZU4:\"rgb(107, 43, 186)\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/l5ZKk0xK582GF5kqpSlccyrtOI.png\",srcSet:\"https://framerusercontent.com/images/l5ZKk0xK582GF5kqpSlccyrtOI.png?scale-down-to=512 512w,https://framerusercontent.com/images/l5ZKk0xK582GF5kqpSlccyrtOI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l5ZKk0xK582GF5kqpSlccyrtOI.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://ios-apple-music-clone.vercel.app/\",z7xcMQZbz:resolvedLinks7[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"vue-motion-component\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"v80nRrp_g\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:547,width:\"708px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-44sri4-container\",inComponentSlot:true,nodeId:\"xLRfKmGqP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"20px\",height:\"100%\",id:\"xLRfKmGqP\",layoutId:\"xLRfKmGqP\",McY8ZKS7c:\"https://framerusercontent.com/assets/RB8XofOCG04xpTKqeaHi5eK2ebg.mp4\",qpAAIMxM6:\"Motion Component\",SMV95qjJC:true,style:{height:\"100%\",width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Austin Malerba\",width:\"100%\",X9J1svZU4:\"rgb(183, 92, 251)\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/4UB06XC7W87DKCiobuUeSdc.png\",srcSet:\"https://framerusercontent.com/images/4UB06XC7W87DKCiobuUeSdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/4UB06XC7W87DKCiobuUeSdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4UB06XC7W87DKCiobuUeSdc.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://codesandbox.io/p/sandbox/more-camera-utils-3jnt7z\",z7xcMQZbz:resolvedLinks8[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"react-layout-animations\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"mvoYsRMpO\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:547,width:\"708px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ft3zn-container\",inComponentSlot:true,nodeId:\"MoHmogEdv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"20px\",height:\"100%\",id:\"MoHmogEdv\",layoutId:\"MoHmogEdv\",McY8ZKS7c:\"https://framerusercontent.com/assets/TUbA6fdxxzGweR585kEbh4LZo.mp4\",qpAAIMxM6:\"Layout Animation\",SMV95qjJC:true,style:{height:\"100%\",width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Matt Perry\",width:\"100%\",X9J1svZU4:\"rgb(253, 2, 31)\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/N9mtrprXrAzhiOJuREFX6BDgHI.png\",srcSet:\"https://framerusercontent.com/images/N9mtrprXrAzhiOJuREFX6BDgHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/N9mtrprXrAzhiOJuREFX6BDgHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N9mtrprXrAzhiOJuREFX6BDgHI.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://citizenofnowhe.re\",z7xcMQZbz:resolvedLinks9[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"react-animate-number\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"rrlzr1_Ty\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:547,width:\"708px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a644zm-container\",inComponentSlot:true,nodeId:\"tKUHuK3Vo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"20px\",height:\"100%\",id:\"tKUHuK3Vo\",layoutId:\"tKUHuK3Vo\",McY8ZKS7c:\"https://framerusercontent.com/assets/GncnZ6000AGYcwX02RGXyNlNl4.mp4\",qpAAIMxM6:\"AnimateNumber\",SMV95qjJC:true,style:{height:\"100%\",width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Max Barvian\",width:\"100%\",X9J1svZU4:\"var(--token-e29a92f4-1197-4a49-acc4-8a129abb6a3d, rgb(3, 104, 255))\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/Lv0FsQKMGEy6PIX7atucfZmql4.png\",srcSet:\"https://framerusercontent.com/images/Lv0FsQKMGEy6PIX7atucfZmql4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lv0FsQKMGEy6PIX7atucfZmql4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lv0FsQKMGEy6PIX7atucfZmql4.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://motion-number.barvian.me/\",z7xcMQZbz:resolvedLinks10[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"react-layout-animations\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"mvoYsRMpO\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:547,width:\"708px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1umd3t8-container\",inComponentSlot:true,nodeId:\"ueG6JMOKY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"Figma Community\",fs1lL4sTQ:\"20px\",height:\"100%\",id:\"ueG6JMOKY\",layoutId:\"ueG6JMOKY\",McY8ZKS7c:\"https://framerusercontent.com/assets/Grnxr8L7TYaCZ3zVpyCyHIgEGwk.mp4\",qpAAIMxM6:\"Layout Animation\",SMV95qjJC:true,style:{height:\"100%\",width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Daniel Destefanis\",width:\"100%\",X9J1svZU4:\"rgb(35, 203, 113)\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/9GcgvYDCOD9UfQEfC08kFBou8.png\",srcSet:\"https://framerusercontent.com/images/9GcgvYDCOD9UfQEfC08kFBou8.png?scale-down-to=512 512w,https://framerusercontent.com/images/9GcgvYDCOD9UfQEfC08kFBou8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9GcgvYDCOD9UfQEfC08kFBou8.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://www.figma.com/community\",z7xcMQZbz:resolvedLinks11[0]})})})})],startFrom:2,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aldap4-container hidden-ogrxa2 hidden-ras1cd\",\"data-framer-name\":\"Mobile\",isModuleExternal:true,name:\"Mobile\",nodeId:\"ScsdUfm3X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(255, 255, 255, 0.1)\",arrowGap:10,arrowPadding:0,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:true,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:.6,effectsPerspective:1200,effectsRotate:0,effectsScale:.8,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:15,height:\"100%\",id:\"ScsdUfm3X\",intervalControl:2,itemAmount:1,layoutId:\"ScsdUfm3X\",name:\"Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-40,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"react-use-transform\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"WfIvtFnkL\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:545,width:\"441px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12pzg5a-container\",inComponentSlot:true,nodeId:\"iDESXZHMQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"10px\",height:\"100%\",id:\"iDESXZHMQ\",layoutId:\"iDESXZHMQ\",McY8ZKS7c:\"https://framerusercontent.com/assets/YyuL2HNOAMSKqlwX09gHyoZ4YFM.mp4\",qpAAIMxM6:\"useTransform\",SMV95qjJC:false,style:{width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Jeroen Reumkens\",width:\"100%\",X9J1svZU4:\"rgb(69, 110, 77)\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/myO5U0eKZeZNuGlFTTYPZGAXgo.png\",srcSet:\"https://framerusercontent.com/images/myO5U0eKZeZNuGlFTTYPZGAXgo.png?scale-down-to=512 512w,https://framerusercontent.com/images/myO5U0eKZeZNuGlFTTYPZGAXgo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/myO5U0eKZeZNuGlFTTYPZGAXgo.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://www.frontend.fyi/tutorials/making-a-foldable-map-with-framer-motion\",z7xcMQZbz:resolvedLinks12[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"vue-motion-value\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"DDhX1SnRm\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:545,width:\"441px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1llvoa9-container\",inComponentSlot:true,nodeId:\"wNG6l5dR5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"10px\",height:\"100%\",id:\"wNG6l5dR5\",layoutId:\"wNG6l5dR5\",McY8ZKS7c:\"https://framerusercontent.com/assets/vH1w1BehBFMtjxWCTC5KUllvWY.mp4\",qpAAIMxM6:\"useMotionValue\",SMV95qjJC:false,style:{width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Theodorus Clarence\",width:\"100%\",X9J1svZU4:\"rgb(46, 46, 46)\",XnQyKr1HU:addImageAlt({pixelHeight:1098,pixelWidth:1800,src:\"https://framerusercontent.com/images/ERawNplPfVTZQNKpyotXotjPnpo.png\",srcSet:\"https://framerusercontent.com/images/ERawNplPfVTZQNKpyotXotjPnpo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ERawNplPfVTZQNKpyotXotjPnpo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ERawNplPfVTZQNKpyotXotjPnpo.png 1800w\"},\"\"),Yz4Ry4eLn:\"https://theodorusclarence.com/\",z7xcMQZbz:resolvedLinks13[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"react-layout-animations\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"mvoYsRMpO\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:545,width:\"441px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11bxdki-container\",inComponentSlot:true,nodeId:\"GcH_GmETH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"10px\",height:\"100%\",id:\"GcH_GmETH\",layoutId:\"GcH_GmETH\",McY8ZKS7c:\"https://framerusercontent.com/assets/rjQUHJfmAPifxAVYbgoFR80zGs.mp4\",qpAAIMxM6:\"Layout Animation\",SMV95qjJC:false,style:{width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Sam Selikoff\",width:\"100%\",X9J1svZU4:\"rgb(107, 43, 186)\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/l5ZKk0xK582GF5kqpSlccyrtOI.png\",srcSet:\"https://framerusercontent.com/images/l5ZKk0xK582GF5kqpSlccyrtOI.png?scale-down-to=512 512w,https://framerusercontent.com/images/l5ZKk0xK582GF5kqpSlccyrtOI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l5ZKk0xK582GF5kqpSlccyrtOI.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://ios-apple-music-clone.vercel.app/\",z7xcMQZbz:resolvedLinks14[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"vue-motion-component\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"v80nRrp_g\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:545,width:\"441px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3n4vqp-container\",inComponentSlot:true,nodeId:\"XCvGuP1MA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"10px\",height:\"100%\",id:\"XCvGuP1MA\",layoutId:\"XCvGuP1MA\",McY8ZKS7c:\"https://framerusercontent.com/assets/RB8XofOCG04xpTKqeaHi5eK2ebg.mp4\",qpAAIMxM6:\"Motion Component\",SMV95qjJC:false,style:{width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Austin Malerba\",width:\"100%\",X9J1svZU4:\"rgb(183, 92, 251)\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/4UB06XC7W87DKCiobuUeSdc.png\",srcSet:\"https://framerusercontent.com/images/4UB06XC7W87DKCiobuUeSdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/4UB06XC7W87DKCiobuUeSdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4UB06XC7W87DKCiobuUeSdc.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://codesandbox.io/p/sandbox/more-camera-utils-3jnt7z\",z7xcMQZbz:resolvedLinks15[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"react-layout-animations\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"mvoYsRMpO\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:545,width:\"441px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-k7pqfd-container\",inComponentSlot:true,nodeId:\"oZJFGjDvp\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"10px\",height:\"100%\",id:\"oZJFGjDvp\",layoutId:\"oZJFGjDvp\",McY8ZKS7c:\"https://framerusercontent.com/assets/TUbA6fdxxzGweR585kEbh4LZo.mp4\",qpAAIMxM6:\"Layout Animation\",SMV95qjJC:false,style:{width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Matt Perry\",width:\"100%\",X9J1svZU4:\"rgb(253, 2, 31)\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/N9mtrprXrAzhiOJuREFX6BDgHI.png\",srcSet:\"https://framerusercontent.com/images/N9mtrprXrAzhiOJuREFX6BDgHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/N9mtrprXrAzhiOJuREFX6BDgHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N9mtrprXrAzhiOJuREFX6BDgHI.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://citizenofnowhe.re\",z7xcMQZbz:resolvedLinks16[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"react-animate-number\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"rrlzr1_Ty\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:545,width:\"441px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sb38hw-container\",inComponentSlot:true,nodeId:\"t1AS9Jv9l\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"\",fs1lL4sTQ:\"10px\",height:\"100%\",id:\"t1AS9Jv9l\",layoutId:\"t1AS9Jv9l\",McY8ZKS7c:\"https://framerusercontent.com/assets/GncnZ6000AGYcwX02RGXyNlNl4.mp4\",qpAAIMxM6:\"AnimateNumber\",SMV95qjJC:false,style:{width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Max Barvian\",width:\"100%\",X9J1svZU4:\"var(--token-e29a92f4-1197-4a49-acc4-8a129abb6a3d, rgb(3, 104, 255))\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/Lv0FsQKMGEy6PIX7atucfZmql4.png\",srcSet:\"https://framerusercontent.com/images/Lv0FsQKMGEy6PIX7atucfZmql4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lv0FsQKMGEy6PIX7atucfZmql4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lv0FsQKMGEy6PIX7atucfZmql4.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://motion-number.barvian.me/\",z7xcMQZbz:resolvedLinks17[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{sg3kghrCF:\"react-layout-animations\"},unresolvedPathSlugs:{sg3kghrCF:{collectionId:\"AaN8oZOpy\",collectionItemId:\"mvoYsRMpO\"}},webPageId:\"MtVxH2FBo\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:545,width:\"441px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g63gi-container\",inComponentSlot:true,nodeId:\"SuPwsJfkI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SlideWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"Tfg1b7fdQ\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"yMfiUXSrX\",CEpl2BMFI:\"Figma Community\",fs1lL4sTQ:\"10px\",height:\"100%\",id:\"SuPwsJfkI\",layoutId:\"SuPwsJfkI\",McY8ZKS7c:\"https://framerusercontent.com/assets/Grnxr8L7TYaCZ3zVpyCyHIgEGwk.mp4\",qpAAIMxM6:\"Layout Animation\",SMV95qjJC:false,style:{width:\"100%\"},variant:\"Tfg1b7fdQ\",VhY7lSL5d:\"Daniel Destefanis\",width:\"100%\",X9J1svZU4:\"rgb(35, 203, 113)\",XnQyKr1HU:addImageAlt({pixelHeight:940,pixelWidth:1344,src:\"https://framerusercontent.com/images/9GcgvYDCOD9UfQEfC08kFBou8.png\",srcSet:\"https://framerusercontent.com/images/9GcgvYDCOD9UfQEfC08kFBou8.png?scale-down-to=512 512w,https://framerusercontent.com/images/9GcgvYDCOD9UfQEfC08kFBou8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9GcgvYDCOD9UfQEfC08kFBou8.png 1344w\"},\"\"),Yz4Ry4eLn:\"https://www.figma.com/community\",z7xcMQZbz:resolvedLinks18[0]})})})})],startFrom:2,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v2mwyw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9oj8lm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1867qt3\",id:elementId7,ref:ref20,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref20,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4j156h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 15\"><path d=\"M 16.614 0 L 7.92 14.987 L 0 14.987 L 6.788 3.285 C 7.841 1.471 10.467 0 12.654 0 Z M 36.036 3.747 C 36.036 1.677 37.809 0 39.996 0 C 42.183 0 43.956 1.677 43.956 3.747 C 43.956 5.816 42.183 7.493 39.996 7.493 C 37.809 7.493 36.036 5.816 36.036 3.747 Z M 18.099 0 L 26.019 0 L 17.325 14.987 L 9.405 14.987 Z M 27.453 0 L 35.373 0 L 28.584 11.702 C 27.532 13.516 24.906 14.987 22.719 14.987 L 18.759 14.987 Z\" fill=\"var(--token-6d6f97c3-5f4a-41b8-a7b9-eff3df1acd75, rgb(255, 243, 18))\"></path></svg>',svgContentId:11446674683}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tx64t6\",\"data-framer-name\":\"1800a046-e44a-479b-923c-0253cc3d0bf4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 56 19\"><path d=\"M 21.145 0 L 10.08 18.983 L 0 18.983 L 8.64 4.16 C 9.979 1.863 13.321 0 16.105 0 Z M 45.864 4.746 C 45.864 2.125 48.12 0 50.904 0 C 53.687 0 55.944 2.125 55.944 4.746 C 55.944 7.367 53.687 9.492 50.904 9.492 C 48.12 9.492 45.864 7.367 45.864 4.746 Z M 23.035 0 L 33.115 0 L 22.05 18.983 L 11.97 18.983 Z M 34.94 0 L 45.02 0 L 36.38 14.823 C 35.041 17.121 31.699 18.983 28.915 18.983 L 23.875 18.983 Z\" fill=\"var(--token-6d6f97c3-5f4a-41b8-a7b9-eff3df1acd75, rgb(255, 243, 18))\"></path></svg>',svgContentId:12678040080,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1797nx5\",\"data-styles-preset\":\"XpCCubdWP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Delight the web with Motion\"})}),className:\"framer-4yv4zd\",effect:getTextEffect(ref20),fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 60px)`,y:(componentViewport?.y||0)+0+9525.5975+0+0+30+0+0+115}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:245,y:(componentViewport?.y||0)+0+7460.839+0+0+30+133+0+139,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ez60if-container\",nodeId:\"tv7gDrLEr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{style:{width:\"100%\"},variant:\"R8cRnLbCT\"}},children:/*#__PURE__*/_jsx(DocsQuickStartMenu,{height:\"100%\",id:\"tv7gDrLEr\",layoutId:\"tv7gDrLEr\",variant:\"gOniHYmT7\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s1e3gv\",\"data-framer-name\":\"Background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AWrfk7SmU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9525.5975+0+0+-39.0789+-133),pixelHeight:1800,pixelWidth:1800,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) + 252px)`,src:\"https://framerusercontent.com/images/1Npj0qJ6EqiitO93dO35ofup8.jpg?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/1Npj0qJ6EqiitO93dO35ofup8.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/1Npj0qJ6EqiitO93dO35ofup8.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/1Npj0qJ6EqiitO93dO35ofup8.jpg?lossless=1 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7460.839+0+0+-75.5914+-133),pixelHeight:1800,pixelWidth:1800,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 138px)`,src:\"https://framerusercontent.com/images/1Npj0qJ6EqiitO93dO35ofup8.jpg?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/1Npj0qJ6EqiitO93dO35ofup8.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/1Npj0qJ6EqiitO93dO35ofup8.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/1Npj0qJ6EqiitO93dO35ofup8.jpg?lossless=1 1800w\"},className:\"framer-7swmi3\",\"data-framer-name\":\"Image\",style:{rotate:180}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yqeu71\",\"data-framer-name\":\"Shade\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dcpl6v\",\"data-framer-name\":\"Grey\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a98482\",\"data-framer-name\":\"Grey\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4a60x8\"})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8lyR2.framer-lux5qc, .framer-8lyR2 .framer-lux5qc { display: block; }\",\".framer-8lyR2.framer-ogrxa2 { align-content: center; align-items: center; background-color: #b207ff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1290px; }\",\".framer-8lyR2 .framer-14zrw16 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; overflow: hidden; padding: 20px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-4c0dnh { flex: none; height: 28px; overflow: hidden; position: relative; width: 268px; }\",\".framer-8lyR2 .framer-xtqye5 { 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 20px 0px 20px; position: relative; width: 100%; z-index: 4; }\",\".framer-8lyR2 .framer-eavkbs { align-content: center; align-items: center; 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: 100%; z-index: 6; }\",\".framer-8lyR2 .framer-ydvjff { flex: none; height: 46px; overflow: visible; position: relative; width: 47px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-18ruqxu-container { flex: none; height: 35px; left: calc(50.00000000000002% - 35px / 2); position: absolute; top: calc(48.57142857142859% - 35px / 2); width: 35px; }\",\".framer-8lyR2 .framer-bqedbi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 186px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1mtwkhg { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 445px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-1ebuhv8 { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-6yatjn { 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-8lyR2 .framer-1on9sf4-container { flex: none; height: 35px; position: relative; width: 193px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-1xdv37q-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-1klalke { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 560px; overflow: visible; padding: 10px; position: relative; width: 100%; z-index: 6; }\",\".framer-8lyR2 .framer-1vg77zl, .framer-8lyR2 .framer-o671qm, .framer-8lyR2 .framer-19b9g4t, .framer-8lyR2 .framer-m7n5t9, .framer-8lyR2 .framer-1kewbwq, .framer-8lyR2 .framer-cyrv3z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-1ef1ige, .framer-8lyR2 .framer-9eluk8, .framer-8lyR2 .framer-9i3ee8, .framer-8lyR2 .framer-1ubbv5p, .framer-8lyR2 .framer-1ti6dk9, .framer-8lyR2 .framer-1r4f2s3 { align-content: center; align-items: center; cursor: help; 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-kj5jiu, .framer-8lyR2 .framer-1skg2fg, .framer-8lyR2 .framer-7tcx0l, .framer-8lyR2 .framer-1x2f1ug, .framer-8lyR2 .framer-1ulo365, .framer-8lyR2 .framer-mrdir1, .framer-8lyR2 .framer-16i4892, .framer-8lyR2 .framer-1ku7zn4, .framer-8lyR2 .framer-1e4wkev, .framer-8lyR2 .framer-13guxsk, .framer-8lyR2 .framer-8u74ms, .framer-8lyR2 .framer-18hpkk0, .framer-8lyR2 .framer-158ciso, .framer-8lyR2 .framer-kjysrq, .framer-8lyR2 .framer-gjbuy0, .framer-8lyR2 .framer-1s0cjur, .framer-8lyR2 .framer-17vwv6k, .framer-8lyR2 .framer-ti6c46, .framer-8lyR2 .framer-1etfbak, .framer-8lyR2 .framer-1pmb537, .framer-8lyR2 .framer-1gsbysg, .framer-8lyR2 .framer-17snmox { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-8lyR2 .framer-1kb7qxe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; opacity: 0.6; position: relative; white-space: pre-wrap; width: 81px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-8lyR2 .framer-ocwfoc, .framer-8lyR2 .framer-154knn8 { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(255, 255, 255, 0.05); 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); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 156px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-743sks, .framer-8lyR2 .framer-r3baw5, .framer-8lyR2 .framer-18as4d8, .framer-8lyR2 .framer-f2kf0m, .framer-8lyR2 .framer-6vyvv5 { flex: none; height: auto; opacity: 0.9; pointer-events: none; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-1e4y7nr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; opacity: 0.6; position: relative; white-space: pre-wrap; width: 42px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-8lyR2 .framer-1o18dco { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(255, 255, 255, 0.05); 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); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 171px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-3ut381, .framer-8lyR2 .framer-f22tqf, .framer-8lyR2 .framer-8cwcdx, .framer-8lyR2 .framer-jh1xoo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; opacity: 0.6; position: relative; white-space: pre-wrap; width: 67px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-8lyR2 .framer-1e7ytm6, .framer-8lyR2 .framer-1ouxecs { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(255, 255, 255, 0.05); 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); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 183px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-1lsna91 { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(255, 255, 255, 0.05); 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); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 150px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-19l3xdu { flex: none; height: auto; max-width: 100%; opacity: 0.9; pointer-events: none; position: relative; white-space: pre-wrap; width: 199px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-1n2jfom { -webkit-filter: grayscale(1); -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.983671171171174%, rgba(0, 0, 0, 0.28) 48.64864864864865%, rgba(0,0,0,1) 79%) add; aspect-ratio: 1 / 1; bottom: -243px; filter: grayscale(1); flex: none; left: 50%; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.983671171171174%, rgba(0, 0, 0, 0.28) 48.64864864864865%, rgba(0,0,0,1) 79%) add; max-width: 1180px; opacity: 0.6; overflow: visible; position: absolute; top: -143px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 1108px); will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-8lyR2 .framer-ojn04v { -webkit-mask: radial-gradient(50% 47% at 50% 46.6%, rgba(0, 0, 0, 0) 6.103955518018017%, rgba(0, 0, 0, 0.1) 22.726632882882882%, rgba(0,0,0,1) 64.53582488738738%, rgba(0,0,0,0) 100%) add; bottom: 101px; flex: none; left: 41px; mask: radial-gradient(50% 47% at 50% 46.6%, rgba(0, 0, 0, 0) 6.103955518018017%, rgba(0, 0, 0, 0.1) 22.726632882882882%, rgba(0,0,0,1) 64.53582488738738%, rgba(0,0,0,0) 100%) add; overflow: visible; position: absolute; right: 41px; top: -19px; z-index: 1; }\",\".framer-8lyR2 .framer-1oj4d68, .framer-8lyR2 .framer-yqeu71 { background: linear-gradient(180deg, #0f0f0f 0%, rgba(10, 10, 10, 0) 100%); flex: none; height: 176px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-8lyR2 .framer-33knlp, .framer-8lyR2 .framer-1dcpl6v { background: radial-gradient(50% 53% at 50% 100%, #171717 0%, rgba(171, 171, 171, 0) 100%); bottom: 0px; flex: none; height: 722px; left: calc(50.00000000000002% - min(1800px, 100%) / 2); max-width: 1800px; overflow: hidden; position: absolute; width: 100%; z-index: 3; }\",\".framer-8lyR2 .framer-vghpay, .framer-8lyR2 .framer-1a98482 { background: radial-gradient(50% 53% at 50% 100%, #171717 0%, rgba(171, 171, 171, 0) 100%); bottom: 0px; flex: none; height: 307px; left: calc(50.00000000000002% - min(1800px, 100%) / 2); max-width: 1800px; overflow: hidden; position: absolute; width: 100%; z-index: 3; }\",\".framer-8lyR2 .framer-jnmit4 { 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: 180px 20px 180px 20px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-dqux7l, .framer-8lyR2 .framer-1s16cmo { 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-8lyR2 .framer-n0zjf, .framer-8lyR2 .framer-1t0ev0b, .framer-8lyR2 .framer-64gmq1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1o1ikig-container, .framer-8lyR2 .framer-xwgdfd-container, .framer-8lyR2 .framer-1cnwib1-container, .framer-8lyR2 .framer-90dve0-container, .framer-8lyR2 .framer-18q78de-container, .framer-8lyR2 .framer-ss33mb-container, .framer-8lyR2 .framer-exdcki-container, .framer-8lyR2 .framer-bjkg18-container, .framer-8lyR2 .framer-1cf7pix-container, .framer-8lyR2 .framer-1n39jgv-container, .framer-8lyR2 .framer-ez60if-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8lyR2 .framer-jioqov, .framer-8lyR2 .framer-153j331, .framer-8lyR2 .framer-1dhb2pz, .framer-8lyR2 .framer-qel6c9 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-3l3lkn, .framer-8lyR2 .framer-1irc0bs, .framer-8lyR2 .framer-1i1z4s8 { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 393px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-1h5ba2h { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 346px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-1vu9j51 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1gau6p9 { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 1285px; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-s8b783 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-370011fe-f455-4f36-bd1d-72d4dac0be54, #121212); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1qjgnd2, .framer-8lyR2 .framer-1h9ar98, .framer-8lyR2 .framer-rlhb4g, .framer-8lyR2 .framer-m5m13j, .framer-8lyR2 .framer-8l2nle, .framer-8lyR2 .framer-169n269, .framer-8lyR2 .framer-1ia1eb3, .framer-8lyR2 .framer-19s58h5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 21px; justify-content: flex-end; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-xozyr1, .framer-8lyR2 .framer-fm05z2, .framer-8lyR2 .framer-3xpit8, .framer-8lyR2 .framer-i98slh, .framer-8lyR2 .framer-1eavitr, .framer-8lyR2 .framer-7vqvhk, .framer-8lyR2 .framer-jli8qy, .framer-8lyR2 .framer-1jcydpr, .framer-8lyR2 .framer-epp4jt, .framer-8lyR2 .framer-i3ekby, .framer-8lyR2 .framer-trzrtw, .framer-8lyR2 .framer-1kwqgq8, .framer-8lyR2 .framer-abvqi0, .framer-8lyR2 .framer-ic36vm, .framer-8lyR2 .framer-1satwiw, .framer-8lyR2 .framer-1anrv3a { 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; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2.framer-ns8u6a, .framer-8lyR2.framer-wcrizi, .framer-8lyR2.framer-1frrngo, .framer-8lyR2.framer-66osqb, .framer-8lyR2.framer-1i2ypdc, .framer-8lyR2.framer-b6l8vj, .framer-8lyR2.framer-7i9v60, .framer-8lyR2.framer-1ayp6yq { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-8lyR2.framer-1l5kjn8, .framer-8lyR2.framer-1n3ppil, .framer-8lyR2.framer-c9oggv, .framer-8lyR2.framer-1ni6i3y, .framer-8lyR2.framer-1jexmkk, .framer-8lyR2.framer-1d03ywc, .framer-8lyR2.framer-vlnv7m { align-content: flex-start; align-items: flex-start; background-color: var(--token-370011fe-f455-4f36-bd1d-72d4dac0be54, #121212); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; left: 50%; overflow: hidden; padding: 30px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 510px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-8lyR2 .framer-41lkz8, .framer-8lyR2 .framer-168rpc5, .framer-8lyR2 .framer-1ezstx1, .framer-8lyR2 .framer-3j7q4c, .framer-8lyR2 .framer-1drne9n, .framer-8lyR2 .framer-1pdf2rt, .framer-8lyR2 .framer-3idzyd, .framer-8lyR2 .framer-e7cqn8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1e1kzyo, .framer-8lyR2 .framer-otsknq, .framer-8lyR2 .framer-747cry, .framer-8lyR2 .framer-1ip09q1, .framer-8lyR2 .framer-7pb5n1, .framer-8lyR2 .framer-1tmvgl9, .framer-8lyR2 .framer-2subdb, .framer-8lyR2 .framer-5k1gpq { flex: none; height: 13px; opacity: 0.4; position: relative; width: 35px; }\",\".framer-8lyR2 .framer-u9rbfs, .framer-8lyR2 .framer-b8qyx, .framer-8lyR2 .framer-1e3zt9d, .framer-8lyR2 .framer-10n1emp, .framer-8lyR2 .framer-35rb63, .framer-8lyR2 .framer-10a0hqj, .framer-8lyR2 .framer-n9j1kx, .framer-8lyR2 .framer-umdngu { 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-8lyR2 .framer-1691wg3, .framer-8lyR2 .framer-101k8vw, .framer-8lyR2 .framer-5j2ato, .framer-8lyR2 .framer-qyza6z, .framer-8lyR2 .framer-sl6z8d, .framer-8lyR2 .framer-ja17o1, .framer-8lyR2 .framer-ny3029, .framer-8lyR2 .framer-d02f5p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-13stzdq, .framer-8lyR2 .framer-2tjdbv, .framer-8lyR2 .framer-1d74c7e, .framer-8lyR2 .framer-bvh8nw, .framer-8lyR2 .framer-14fcag9, .framer-8lyR2 .framer-14121y2, .framer-8lyR2 .framer-ujn3mz, .framer-8lyR2 .framer-4te1n0, .framer-8lyR2 .framer-16wbqnr, .framer-8lyR2 .framer-xons6, .framer-8lyR2 .framer-89egsl, .framer-8lyR2 .framer-5x2hso, .framer-8lyR2 .framer-u23won, .framer-8lyR2 .framer-aqczlj, .framer-8lyR2 .framer-gguab, .framer-8lyR2 .framer-1e1vkab { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-15ex3oj { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 237px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-v9ew53, .framer-8lyR2 .framer-dl6r7k, .framer-8lyR2 .framer-k0kr3a, .framer-8lyR2 .framer-1ulxf9j, .framer-8lyR2 .framer-y09uzw, .framer-8lyR2 .framer-vwa5w, .framer-8lyR2 .framer-1m11etc, .framer-8lyR2 .framer-y0bbyi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1inyisn, .framer-8lyR2 .framer-15jwt35, .framer-8lyR2 .framer-1hmbl3u { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.03); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 50px 20px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-2wvyz3, .framer-8lyR2 .framer-1di9y62, .framer-8lyR2 .framer-1uiknb { --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-8lyR2 .framer-bd901n-container, .framer-8lyR2 .framer-1jfs7lh-container, .framer-8lyR2 .framer-tifsrd-container, .framer-8lyR2 .framer-rxzuum-container, .framer-8lyR2 .framer-rjuu3a-container, .framer-8lyR2 .framer-wyfejs-container, .framer-8lyR2 .framer-1uwhlf0-container, .framer-8lyR2 .framer-x485hx-container, .framer-8lyR2 .framer-1op34i2-container, .framer-8lyR2 .framer-909o7o-container, .framer-8lyR2 .framer-1anu51y-container, .framer-8lyR2 .framer-1ohn1n6-container { flex: none; height: 15px; position: absolute; right: 15px; top: 15px; width: 14px; z-index: 1; }\",\".framer-8lyR2 .framer-10v5ccr, .framer-8lyR2 .framer-1fr4ah7, .framer-8lyR2 .framer-z93gqe, .framer-8lyR2 .framer-170b0xn, .framer-8lyR2 .framer-15xq2dr, .framer-8lyR2 .framer-7372at, .framer-8lyR2 .framer-uh4qs2, .framer-8lyR2 .framer-1f4nekr, .framer-8lyR2 .framer-qmv1in { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.03); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 50px 20px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1xyymsi, .framer-8lyR2 .framer-1fm4h3e, .framer-8lyR2 .framer-1br47m4, .framer-8lyR2 .framer-itb481, .framer-8lyR2 .framer-ki56ne, .framer-8lyR2 .framer-69c06v, .framer-8lyR2 .framer-wi77k7, .framer-8lyR2 .framer-fwi36y, .framer-8lyR2 .framer-bs3ztc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-ogk788, .framer-8lyR2 .framer-fojxv2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-hwg7c1 { aspect-ratio: 1 / 1; background-color: var(--token-e29a92f4-1197-4a49-acc4-8a129abb6a3d, #0368ff); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 116px); overflow: hidden; position: relative; width: 116px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1g6kwcu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-8lyR2 .framer-1v5sf5u, .framer-8lyR2 .framer-17g6azy, .framer-8lyR2 .framer-mxoojo, .framer-8lyR2 .framer-1foxjh2, .framer-8lyR2 .framer-7psagd, .framer-8lyR2 .framer-1mxraia, .framer-8lyR2 .framer-aoc0m, .framer-8lyR2 .framer-i267cr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8lyR2 .framer-8urrfq, .framer-8lyR2 .framer-1gtuf85, .framer-8lyR2 .framer-1y8y9e8, .framer-8lyR2 .framer-zziimc, .framer-8lyR2 .framer-1eatxdg, .framer-8lyR2 .framer-c1ipy3, .framer-8lyR2 .framer-1e2kpjp, .framer-8lyR2 .framer-5c3pzs, .framer-8lyR2 .framer-kpvbji, .framer-8lyR2 .framer-137cz, .framer-8lyR2 .framer-1qeu6fw, .framer-8lyR2 .framer-1ozns1q, .framer-8lyR2 .framer-1pvnqcz, .framer-8lyR2 .framer-1i9mhe8, .framer-8lyR2 .framer-129j9c3, .framer-8lyR2 .framer-g6t8nv, .framer-8lyR2 .framer-64xvkh, .framer-8lyR2 .framer-1stex5p, .framer-8lyR2 .framer-ykbguh, .framer-8lyR2 .framer-15ssoed, .framer-8lyR2 .framer-11ixb6y, .framer-8lyR2 .framer-tqgmhq, .framer-8lyR2 .framer-1aoteo8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; text-decoration: none; width: 18px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-188xrox-container, .framer-8lyR2 .framer-1rlyndr-container, .framer-8lyR2 .framer-8lr5vu-container, .framer-8lyR2 .framer-vt4xlb-container, .framer-8lyR2 .framer-mx6zd5-container, .framer-8lyR2 .framer-1vwz1wu-container, .framer-8lyR2 .framer-x6b6y1-container { -webkit-filter: invert(0); bottom: -2px; filter: invert(0); flex: none; left: -2px; position: absolute; right: -2px; top: -2px; }\",\".framer-8lyR2 .framer-yepvcl-container, .framer-8lyR2 .framer-g3a0cw-container, .framer-8lyR2 .framer-r8f2r6-container, .framer-8lyR2 .framer-fdrkxd-container, .framer-8lyR2 .framer-2l0489-container, .framer-8lyR2 .framer-17m57jy-container, .framer-8lyR2 .framer-1ia04y3-container, .framer-8lyR2 .framer-hja4zq-container, .framer-8lyR2 .framer-dwa7ms-container, .framer-8lyR2 .framer-6xxyop-container, .framer-8lyR2 .framer-1bcjq56-container, .framer-8lyR2 .framer-c2twe2-container, .framer-8lyR2 .framer-gyqbuc-container, .framer-8lyR2 .framer-bq3uft-container, .framer-8lyR2 .framer-yshmfh-container, .framer-8lyR2 .framer-17azmq4-container { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-8lyR2 .framer-1tgobm9, .framer-8lyR2 .framer-9b309g, .framer-8lyR2 .framer-vanzss { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-370011fe-f455-4f36-bd1d-72d4dac0be54, #121212); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-nser6c { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 295px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-11vv7v4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 15px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1tx9gkv { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.35); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-19dqz24 { aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: grid; flex: none; gap: 5px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: var(--framer-aspect-ratio-supported, 112px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 112px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-17avq15 { align-self: start; background-color: var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, #ff4fba); flex: none; height: 100%; justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1qvntt, .framer-8lyR2 .framer-8nefiy, .framer-8lyR2 .framer-1p00dq7 { align-self: start; background-color: #ff4fba; flex: none; height: 100%; justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-h6mzpm, .framer-8lyR2 .framer-po1p5e, .framer-8lyR2 .framer-14yjeyf, .framer-8lyR2 .framer-1jlzmql, .framer-8lyR2 .framer-h7d50e, .framer-8lyR2 .framer-o0i7iq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-5esriu { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-370011fe-f455-4f36-bd1d-72d4dac0be54, #121212); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-row: span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1f73duk { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 361px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-1fymeyv, .framer-8lyR2 .framer-1ovrxyc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-u0jjup { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); background-color: #232323; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.35); flex: none; gap: 15px; height: 100%; overflow: hidden; position: relative; width: 147px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-8lyR2 .framer-qrkba5 { background-color: var(--token-9913619f-76ec-4fff-b5d9-aef25028820c, #fef62a); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-8lyR2 .framer-1toj9o8 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-370011fe-f455-4f36-bd1d-72d4dac0be54, #121212); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; grid-column: span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-vbyhq0, .framer-8lyR2 .framer-1s2ugj { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 322px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-md36vt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1imzf72-container { flex: none; height: 270px; position: relative; width: 116%; }\",\".framer-8lyR2 .framer-tl223z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-8lyR2 .framer-fdkvyv { background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgb(18, 18, 18) 100%); bottom: 0px; flex: none; height: 115px; left: calc(49.89473684210529% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 0; }\",\".framer-8lyR2 .framer-xbm6zc { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-370011fe-f455-4f36-bd1d-72d4dac0be54, #121212); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-6fd5fa { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-9ga0ao, .framer-8lyR2 .framer-ykrr5z, .framer-8lyR2 .framer-1sf1rga { aspect-ratio: 1 / 1; background-color: #8d30ff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 1px; }\",\".framer-8lyR2 .framer-62vhys { aspect-ratio: 1 / 1; background-color: var(--token-d7c7a275-fa17-498d-a600-7a7d919fcbbd, #8d30ff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 1px; }\",\".framer-8lyR2.framer-1359092 { align-content: flex-start; align-items: flex-start; background-color: #121212; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; left: 50%; overflow: hidden; padding: 30px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 510px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-8lyR2 .framer-zuaz54 { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 205px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-mreqao { -webkit-user-select: none; aspect-ratio: 1 / 1; bottom: 21px; flex: none; height: var(--framer-aspect-ratio-supported, 82px); overflow: visible; pointer-events: none; position: absolute; right: 104px; user-select: none; width: 82px; z-index: 1; }\",\".framer-8lyR2 .framer-12113az { align-content: center; align-items: center; cursor: grab; 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; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-1tri6ob { aspect-ratio: 1 / 1; background-color: #0968ff; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: var(--framer-aspect-ratio-supported, 124px); overflow: visible; position: relative; width: 124px; }\",\".framer-8lyR2 .framer-1lhlei9 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-370011fe-f455-4f36-bd1d-72d4dac0be54, #121212); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: span 2; grid-row: span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1du5hgr { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 325px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-qh3ghc-container { flex: none; height: 380px; position: relative; width: 415px; z-index: 2; }\",\".framer-8lyR2 .framer-vs6euk { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 278px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-ncry4b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1p9cgnt { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.05); 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.35); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 25px; position: relative; width: 260px; }\",\".framer-8lyR2 .framer-xby077, .framer-8lyR2 .framer-y874y6, .framer-8lyR2 .framer-1ujq9ob, .framer-8lyR2 .framer-1494wo5, .framer-8lyR2 .framer-vtgwv3, .framer-8lyR2 .framer-184cqjg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-w0bdvi, .framer-8lyR2 .framer-m6zz98, .framer-8lyR2 .framer-1gn1q92, .framer-8lyR2 .framer-52sir1 { aspect-ratio: 1 / 1; background-color: var(--token-76c1e868-1819-4210-be6a-a68cec1b5f40, #ff4fba); border-bottom-left-radius: 125px; border-bottom-right-radius: 125px; border-top-left-radius: 125px; border-top-right-radius: 125px; flex: none; height: var(--framer-aspect-ratio-supported, 14px); overflow: visible; position: relative; width: 14px; }\",\".framer-8lyR2 .framer-1k61fgr { background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 267px; border-bottom-right-radius: 267px; border-top-left-radius: 267px; border-top-right-radius: 267px; flex: none; height: 12px; overflow: hidden; position: relative; width: 75%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-r51keo { background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 267px; border-bottom-right-radius: 267px; border-top-left-radius: 267px; border-top-right-radius: 267px; flex: none; height: 12px; overflow: hidden; position: relative; width: 68%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-aoc5a4 { background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 267px; border-bottom-right-radius: 267px; border-top-left-radius: 267px; border-top-right-radius: 267px; flex: none; height: 12px; overflow: hidden; position: relative; width: 79%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1jmkuah { background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 267px; border-bottom-right-radius: 267px; border-top-left-radius: 267px; border-top-right-radius: 267px; flex: none; height: 12px; overflow: hidden; position: relative; width: 56%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-6d9ymn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 140px 20px 140px 20px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-5bxzic { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1jsklrr { --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-13dc81p { 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: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-pvq9ik, .framer-8lyR2 .framer-n325b2, .framer-8lyR2 .framer-1ubc3pz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1ckpfxd, .framer-8lyR2 .framer-ovbqiw, .framer-8lyR2 .framer-oh6dmn, .framer-8lyR2 .framer-txenst, .framer-8lyR2 .framer-14xur9x, .framer-8lyR2 .framer-1a5okdg { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: dashed; --border-top-width: 1.5px; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-8lyR2 .framer-ywnjus, .framer-8lyR2 .framer-rqdh32, .framer-8lyR2 .framer-8grvkb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.22; position: relative; white-space: pre; width: auto; }\",\".framer-8lyR2 .framer-1xsp41n { align-content: center; align-items: center; background-color: rgba(18, 18, 18, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; max-width: 600px; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-w39giw, .framer-8lyR2 .framer-17h919s, .framer-8lyR2 .framer-1c7xwb2, .framer-8lyR2 .framer-1371ep8, .framer-8lyR2 .framer-1nwlki7, .framer-8lyR2 .framer-po3b2b, .framer-8lyR2 .framer-1fne5bl { 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: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-1v1n7k2 { flex: none; height: 32px; position: relative; width: 121px; }\",\".framer-8lyR2 .framer-1llao5z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1ktjx8b, .framer-8lyR2 .framer-e0y3e3, .framer-8lyR2 .framer-vxuij5 { align-content: center; align-items: center; background-color: rgba(18, 18, 18, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-8lyR2 .framer-17tslp9 { flex: none; height: 28px; position: relative; width: 112px; }\",\".framer-8lyR2 .framer-sjtfhq { flex: none; height: 28px; position: relative; width: 70px; }\",\".framer-8lyR2 .framer-7t678z, .framer-8lyR2 .framer-1s4a5sk, .framer-8lyR2 .framer-16sqhws { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8lyR2 .framer-1hdb66r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-cw3eim, .framer-8lyR2 .framer-11nyxef, .framer-8lyR2 .framer-gqk8gg, .framer-8lyR2 .framer-tlv9rs { align-content: center; align-items: center; background-color: rgba(18, 18, 18, 0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-8lyR2 .framer-13gevlc { flex: none; height: 19px; position: relative; width: 130px; }\",\".framer-8lyR2 .framer-1t363ww { flex: none; height: 22px; position: relative; width: 120px; }\",\".framer-8lyR2 .framer-ughyvt { flex: none; height: 18px; position: relative; width: 90px; }\",\".framer-8lyR2 .framer-tyyvem { 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; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8lyR2 .framer-4lxjpp { flex: none; height: 24px; position: relative; width: 70px; }\",\".framer-8lyR2 .framer-1syjc4x { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: dashed; --border-top-width: 1.5px; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-4nvp4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-o3q7b4 { flex: none; height: auto; opacity: 0.3; position: relative; white-space: pre; width: auto; }\",\".framer-8lyR2 .framer-1v4kxk0-container { flex: none; height: auto; opacity: 0.6; position: relative; width: auto; }\",\".framer-8lyR2 .framer-u7xzqd { 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: 180px 0px 180px 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-11uoqpi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-8lyR2 .framer-10h4r1k { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 215px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-11m095b { align-content: flex-end; align-items: flex-end; background: radial-gradient(50% 89% at 50% 100%, rgba(255, 255, 255, 0.13) 0%, rgba(171, 171, 171, 0) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-8lyR2 .framer-1qbp5ui, .framer-8lyR2 .framer-15nd5yb { flex: none; height: 269px; overflow: visible; position: relative; width: 220px; }\",\".framer-8lyR2 .framer-1m2hc0z-container, .framer-8lyR2 .framer-13al1ri-container, .framer-8lyR2 .framer-13z7s43-container, .framer-8lyR2 .framer-1elkjvr-container, .framer-8lyR2 .framer-gt0zzx-container, .framer-8lyR2 .framer-x05wyd-container { flex: none; height: 192px; left: calc(50.00000000000002% - 157px / 2); position: absolute; top: calc(50.00000000000002% - 192px / 2); width: 157px; }\",\".framer-8lyR2 .framer-cv0gfv { flex: none; height: 327px; overflow: visible; position: relative; width: 268px; }\",\".framer-8lyR2 .framer-g5b821-container { flex: none; height: 225px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-be17y3 { align-content: flex-end; align-items: flex-end; background: radial-gradient(138% 124% at 50% 100%, rgba(255, 255, 255, 0.13) 0%, rgba(171, 171, 171, 0) 100%); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-8lyR2 .framer-ornjs9, .framer-8lyR2 .framer-1ncxzde { flex: none; height: 231px; overflow: visible; position: relative; width: 190px; }\",\".framer-8lyR2 .framer-1emfy69 { flex: none; height: 230px; overflow: visible; position: relative; width: 190px; }\",\".framer-8lyR2 .framer-vfrazy { 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: 180px 20px 180px 20px; position: relative; width: 100%; z-index: 2; }\",\".framer-8lyR2 .framer-1f1mcq8 { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 537px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-10k31ee { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 399px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-i6ruez { 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: 1000px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-27y5fz { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-370011fe-f455-4f36-bd1d-72d4dac0be54, #121212); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; grid-column: span 2; height: 437px; justify-content: flex-end; justify-self: start; min-height: 400px; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-gd344v { -webkit-filter: grayscale(0) blur(7px); -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 40%, rgba(0,0,0,1) 100%) add; aspect-ratio: 0.6665946879723602 / 1; bottom: -297px; filter: grayscale(0) blur(7px); flex: none; height: var(--framer-aspect-ratio-supported, 1194px); left: -143px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 40%, rgba(0,0,0,1) 100%) add; opacity: 0.35; overflow: visible; position: absolute; top: -515px; width: 125%; z-index: -1; }\",\".framer-8lyR2 .framer-1tribq1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-8lyR2 .framer-1wx46vz { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 70%, rgba(0,0,0,1) 100%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 70%, rgba(0,0,0,1) 100%) add; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 409px; }\",\".framer-8lyR2 .framer-1rnvzmn, .framer-8lyR2 .framer-a4h3mj { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.06); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 36%, rgba(0,0,0,1) 72.69601632882883%) add; align-content: flex-start; align-items: flex-start; background-color: rgba(0, 0, 0, 0.6); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: center; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 36%, rgba(0,0,0,1) 72.69601632882883%) add; opacity: 0.5; overflow: hidden; padding: 140px 20px 40px 20px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1lju46b, .framer-8lyR2 .framer-jkixfe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 20px; overflow: hidden; padding: 0px; position: absolute; right: 20px; top: 20px; z-index: 1; }\",\".framer-8lyR2 .framer-1c3qeyf, .framer-8lyR2 .framer-qf5vcj, .framer-8lyR2 .framer-gk8xjk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre; width: auto; }\",\".framer-8lyR2 .framer-s9zw2e, .framer-8lyR2 .framer-168b8d5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8lyR2 .framer-i8ikuu, .framer-8lyR2 .framer-1212qaf, .framer-8lyR2 .framer-1hrr0oa { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 7px 9px 7px 9px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-134wesm, .framer-8lyR2 .framer-kqwm1o, .framer-8lyR2 .framer-1ene9gs, .framer-8lyR2 .framer-1xejqmi { flex: none; height: 10px; position: relative; width: 10px; }\",\".framer-8lyR2 .framer-481nqc, .framer-8lyR2 .framer-wuv06o, .framer-8lyR2 .framer-1sg8rdw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8lyR2 .framer-1k0miov { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.06); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 36%, rgba(0,0,0,1) 60%) add; align-content: flex-start; align-items: flex-start; background-color: #1f312d; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: inset 0px 0px 40px 2px rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: center; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 36%, rgba(0,0,0,1) 60%) add; overflow: hidden; padding: 150px 20px 40px 20px; position: relative; text-decoration: none; width: 427px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1n3bdhd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 20px; overflow: hidden; padding: 0px; position: absolute; right: 20px; top: 20px; z-index: 2; }\",\".framer-8lyR2 .framer-ux93u2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-8lyR2 .framer-hboq0l-container { flex: none; height: 305px; left: calc(49.88290398126466% - 101.17096018735363% / 2); position: absolute; top: 34px; width: 101%; z-index: 1; }\",\".framer-8lyR2 .framer-1qvbkhq { -webkit-mask: linear-gradient(-90deg, rgba(0, 0, 0, 0) 70%, rgba(0,0,0,1) 100%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; mask: linear-gradient(-90deg, rgba(0, 0, 0, 0) 70%, rgba(0,0,0,1) 100%) add; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 409px; }\",\".framer-8lyR2 .framer-lew1qi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; opacity: 0; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8lyR2 .framer-188w0l3 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: rgba(187, 255, 230, 0.1); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 27px); justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 27px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-8lyR2 .framer-c14hlb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-8lyR2 .framer-2p0k28 { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 347px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-1lbyd2c { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 310px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-g0ayp7, .framer-8lyR2 .framer-11knxlu, .framer-8lyR2 .framer-19tt78f, .framer-8lyR2 .framer-rivsg4 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-370011fe-f455-4f36-bd1d-72d4dac0be54, #121212); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 437px; justify-content: flex-end; justify-self: start; min-height: 400px; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-seif34 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-8lyR2 .framer-1ngu8f8 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(3px); align-content: center; align-items: center; backdrop-filter: blur(3px); background-color: rgba(0, 0, 0, 0.19); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; bottom: 10px; box-shadow: 0px -20px 40px 0px rgba(0, 0, 0, 0.3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 10px 10px 10px 18px; position: absolute; right: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-8lyR2 .framer-81f8j0, .framer-8lyR2 .framer-1nejxcj, .framer-8lyR2 .framer-1d78wyg, .framer-8lyR2 .framer-hde63v, .framer-8lyR2 .framer-18u9ewi, .framer-8lyR2 .framer-1w8wz1y { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-1iekw2t { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.12); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 28px; overflow: visible; position: relative; width: 28px; }\",\".framer-8lyR2 .framer-40b0db { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 50%; position: absolute; top: 6px; transform: translateX(-50%); width: 16px; }\",\".framer-8lyR2 .framer-1ay7g7 { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.84) 75%, rgba(0,0,0,1) 93%) add; -webkit-user-select: none; aspect-ratio: 0.6976190476190476 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 364px); mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.84) 75%, rgba(0,0,0,1) 93%) add; opacity: 0.8; overflow: visible; position: relative; user-select: none; width: 100%; }\",\".framer-8lyR2 .framer-1vqxowv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-8lyR2 .framer-xunq95, .framer-8lyR2 .framer-19iexmj, .framer-8lyR2 .framer-lqu0h2, .framer-8lyR2 .framer-5cng6q, .framer-8lyR2 .framer-13mg2pa, .framer-8lyR2 .framer-uf7spm { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 267px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-z5a2u { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 222px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-y7bbwi { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-8lyR2 .framer-1k5rxuw { -webkit-mask: radial-gradient(100% 50% at 2.7% 11.600000000000001%, rgba(0, 0, 0, 0.9) 33.35796734234234%, rgba(0,0,0,0) 100%) add; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: -209px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: 0px; mask: radial-gradient(100% 50% at 2.7% 11.600000000000001%, rgba(0, 0, 0, 0.9) 33.35796734234234%, rgba(0,0,0,0) 100%) add; overflow: hidden; padding: 0px; position: absolute; right: -168px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-eoih1d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1s8r7eb { -webkit-mask: linear-gradient(-90deg, rgba(0, 0, 0, 0) 31%, rgba(0,0,0,1) 82%) add; -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; mask: linear-gradient(-90deg, rgba(0, 0, 0, 0) 31%, rgba(0,0,0,1) 82%) add; opacity: 0.8; overflow: hidden; padding: 0px; pointer-events: none; position: relative; user-select: none; width: 393px; }\",\".framer-8lyR2 .framer-1ch7gzv, .framer-8lyR2 .framer-gh5fw5, .framer-8lyR2 .framer-wq8lzu, .framer-8lyR2 .framer-16x2zwf, .framer-8lyR2 .framer-1fqb37s, .framer-8lyR2 .framer-11qshhi, .framer-8lyR2 .framer-1qk6qk7, .framer-8lyR2 .framer-bl5z0q, .framer-8lyR2 .framer-kj6zk3 { flex: none; height: auto; opacity: 0.4; position: relative; white-space: pre; width: auto; }\",\".framer-8lyR2 .framer-cd7ovn, .framer-8lyR2 .framer-1kvodo0, .framer-8lyR2 .framer-1koblj6, .framer-8lyR2 .framer-nxyql8, .framer-8lyR2 .framer-7y1vg8, .framer-8lyR2 .framer-rpo5en, .framer-8lyR2 .framer-17aa2if { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-10gvtj-container { bottom: 0px; flex: none; height: 220px; left: calc(49.90619136960602% - 101.31332082551594% / 2); position: absolute; width: 101%; z-index: 5; }\",\".framer-8lyR2 .framer-1y3fdxc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-8lyR2 .framer-1l4kz1k { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 207px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-jekdxa { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1v4ofol { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.06); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-mask: radial-gradient(100% 54% at 2.7% 11.600000000000001%, #000000 33.35796734234234%, rgba(0,0,0,0) 100%) add; align-content: flex-start; align-items: flex-start; background-color: rgba(0, 0, 0, 0.7); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: -209px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: 0px; mask: radial-gradient(100% 54% at 2.7% 11.600000000000001%, #000000 33.35796734234234%, rgba(0,0,0,0) 100%) add; overflow: hidden; padding: 0px; position: absolute; right: -167px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-di30sk { align-content: center; align-items: center; background-color: #0d0d0d; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 82px; }\",\".framer-8lyR2 .framer-g284rl { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #1c1c1c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 52px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-q7l14g { flex: none; height: 19px; position: relative; width: 25px; }\",\".framer-8lyR2 .framer-tg9t2a { background-color: #ffffff; flex: none; height: 1px; opacity: 0.1; overflow: hidden; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-uvgrfk { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-659fd5f4-75cf-4cf2-8be2-e9f0c5965188, #8df0cc); border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 52px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-cjynyu { flex: none; height: 12px; position: relative; width: 34px; }\",\".framer-8lyR2 .framer-1lcf6k { --border-bottom-width: 2px; --border-color: #111e1e; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #da363c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 17px); justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -1px; width: 17px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-8lyR2 .framer-1qom020, .framer-8lyR2 .framer-nc07cd, .framer-8lyR2 .framer-y3jy7i { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #1c1c1c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 52px); justify-content: center; opacity: 0.7; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1apsxjs { background-color: #596e68; border-bottom-right-radius: 20px; border-top-right-radius: 20px; flex: none; height: 41px; left: 0px; overflow: hidden; position: absolute; top: calc(23.700623700623723% - 41px / 2); width: 4px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-8lyR2 .framer-1a4stxy { align-content: flex-start; align-items: flex-start; background-color: #1a1a1a; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 15px; position: relative; width: 269px; }\",\".framer-8lyR2 .framer-nwywym { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-s7hjc3 { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-8lyR2 .framer-1jr31d9 { background-color: #ffffff; flex: none; height: 1px; opacity: 0; overflow: hidden; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1rekmro { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1pfoufg, .framer-8lyR2 .framer-lqnnbb { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; opacity: 0.04; overflow: hidden; padding: 0px; position: relative; width: 133px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-14bvd6u { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; opacity: 0.04; overflow: hidden; padding: 0px; position: relative; width: 170px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-gzi64l, .framer-8lyR2 .framer-lo5oyl { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; opacity: 0.04; overflow: hidden; padding: 0px; position: relative; width: 146px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1vyu1hd { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; opacity: 0.04; overflow: hidden; padding: 0px; position: relative; width: 87px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-198ssay { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-rrl9ks { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-14c4tvi { -webkit-mask: radial-gradient(56.99999999999999% 45% at 50% 50%, #000000 11.032516891891891%, rgba(0,0,0,0) 90.50358952702703%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 368px; justify-content: center; mask: radial-gradient(56.99999999999999% 45% at 50% 50%, #000000 11.032516891891891%, rgba(0,0,0,0) 90.50358952702703%) add; overflow: visible; padding: 0px; position: relative; width: 331px; }\",\".framer-8lyR2 .framer-3p0f3f, .framer-8lyR2 .framer-rtn451, .framer-8lyR2 .framer-5t7k05, .framer-8lyR2 .framer-1eawppo { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8lyR2 .framer-1kv93kn, .framer-8lyR2 .framer-129j69f, .framer-8lyR2 .framer-xipiej, .framer-8lyR2 .framer-1w2hgnm, .framer-8lyR2 .framer-278aho, .framer-8lyR2 .framer-18rv8v6, .framer-8lyR2 .framer-of7rsv, .framer-8lyR2 .framer-vqfq1t, .framer-8lyR2 .framer-1qtj6cz, .framer-8lyR2 .framer-15nbnho, .framer-8lyR2 .framer-1qq4ihw, .framer-8lyR2 .framer-1oj4mar, .framer-8lyR2 .framer-126waw2, .framer-8lyR2 .framer-ixte2l, .framer-8lyR2 .framer-1pd1h7u, .framer-8lyR2 .framer-1je3nr1, .framer-8lyR2 .framer-2noyrx, .framer-8lyR2 .framer-14lnaat, .framer-8lyR2 .framer-1w3cw7v, .framer-8lyR2 .framer-xiasum { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: rgba(141, 240, 204, 0.06); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1aq0mfo, .framer-8lyR2 .framer-1tvs82g, .framer-8lyR2 .framer-117fpkr, .framer-8lyR2 .framer-1890c27, .framer-8lyR2 .framer-2tork9, .framer-8lyR2 .framer-phpxqd, .framer-8lyR2 .framer-vs7uok, .framer-8lyR2 .framer-1lktss8, .framer-8lyR2 .framer-3eniwn, .framer-8lyR2 .framer-1oi31ac, .framer-8lyR2 .framer-jtnkft { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-8lyR2 .framer-10ad89p, .framer-8lyR2 .framer-61xbr1, .framer-8lyR2 .framer-5hwsct, .framer-8lyR2 .framer-1dp3nem, .framer-8lyR2 .framer-2akwoj { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-8lyR2 .framer-1lg5kc8 { -webkit-mask: linear-gradient(316deg, rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,1) 67%) add; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: rgba(141, 240, 204, 0.06); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; mask: linear-gradient(316deg, rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,1) 67%) add; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-tri9vl { -webkit-mask: linear-gradient(225deg, rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,1) 67%) add; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: rgba(141, 240, 204, 0.06); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; mask: linear-gradient(225deg, rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,1) 67%) add; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-1mtgdna { 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: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-8lyR2 .framer-aoaxd7 { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,1) 67%) add; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: rgba(141, 240, 204, 0.06); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; mask: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,1) 67%) add; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-i04j63 { flex: none; height: 76px; overflow: visible; position: relative; width: 76px; }\",\".framer-8lyR2 .framer-3mqfb7 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #20332f; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 1px 40px 0px rgba(142, 240, 204, 0.15); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-8lyR2 .framer-1p1sb8v { flex: none; height: 19px; position: relative; width: 53px; }\",\".framer-8lyR2 .framer-1e40uoi { aspect-ratio: 1 / 1; background: radial-gradient(50% 50% at 50% 50%, #0b1012 0%, rgba(75, 109, 122, 0) 100%); bottom: -76px; flex: none; height: var(--framer-aspect-ratio-supported, 226px); left: -75px; opacity: 0.4; overflow: hidden; position: absolute; right: -75px; }\",\".framer-8lyR2 .framer-s6v8gf { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,1) 67%) add; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: rgba(141, 240, 204, 0.06); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; mask: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,1) 67%) add; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-f6fft1 { -webkit-mask: linear-gradient(43deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: rgba(141, 240, 204, 0.06); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; mask: linear-gradient(43deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-9g0qsk { -webkit-mask: linear-gradient(129deg, rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,1) 67%) add; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: rgba(141, 240, 204, 0.06); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; mask: linear-gradient(129deg, rgba(0, 0, 0, 0.3) 0%, rgba(0,0,0,1) 67%) add; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8lyR2 .framer-16z4qf6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-17wtekz { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 220px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-tcz1v1 { 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: 180px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1yawznx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1kf85to { flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 379px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-1c67rm7 { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 11.08178490990991%, rgba(0, 0, 0, 1) 88.18447353603604%, rgba(0, 0, 0, 0) 98.64864864864865%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 11.08178490990991%, rgba(0, 0, 0, 1) 88.18447353603604%, rgba(0, 0, 0, 0) 98.64864864864865%) add; max-width: 1600px; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1oo87sn-container { aspect-ratio: 1.2796780684104627 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 497px); max-width: 100%; position: relative; width: 636px; z-index: 2; }\",\".framer-8lyR2 .framer-g592kj-container, .framer-8lyR2 .framer-1icohbm-container, .framer-8lyR2 .framer-f1q2wk-container, .framer-8lyR2 .framer-44sri4-container, .framer-8lyR2 .framer-2ft3zn-container, .framer-8lyR2 .framer-1a644zm-container, .framer-8lyR2 .framer-1umd3t8-container { aspect-ratio: 1.2943327239488116 / 1; height: var(--framer-aspect-ratio-supported, 547px); position: relative; width: 708px; }\",\".framer-8lyR2 .framer-aldap4-container { aspect-ratio: 1.2796780684104627 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 233px); max-width: 100%; position: relative; width: 307px; z-index: 2; }\",\".framer-8lyR2 .framer-12pzg5a-container, .framer-8lyR2 .framer-1llvoa9-container, .framer-8lyR2 .framer-11bxdki-container, .framer-8lyR2 .framer-3n4vqp-container, .framer-8lyR2 .framer-k7pqfd-container, .framer-8lyR2 .framer-sb38hw-container, .framer-8lyR2 .framer-g63gi-container { height: auto; position: relative; width: 441px; }\",\".framer-8lyR2 .framer-v2mwyw { 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: 0px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-9oj8lm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 710px; justify-content: center; max-width: 1400px; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-8lyR2 .framer-1867qt3 { align-content: center; align-items: center; 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: 100%; z-index: 4; }\",\".framer-8lyR2 .framer-4j156h { 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: 4px; position: relative; width: min-content; }\",\".framer-8lyR2 .framer-1tx64t6 { flex: none; height: 19px; position: relative; width: 56px; }\",\".framer-8lyR2 .framer-4yv4zd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 394px; word-break: break-word; word-wrap: break-word; }\",\".framer-8lyR2 .framer-1s1e3gv { -webkit-filter: grayscale(1); -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0,0,0,1) 79%) add; aspect-ratio: 1 / 1; filter: grayscale(1); flex: none; height: var(--framer-aspect-ratio-supported, 1220px); left: 35px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0,0,0,1) 79%) add; opacity: 0.8; overflow: visible; position: absolute; right: 35px; top: 75%; transform: translateY(-50%); z-index: 0; }\",\".framer-8lyR2 .framer-7swmi3 { -webkit-mask: radial-gradient(50% 47% at 50% 46.6%, rgba(0, 0, 0, 0) 6.103955518018017%, rgba(0, 0, 0, 0.1) 22.726632882882882%, rgba(0,0,0,1) 64.53582488738738%, rgba(0,0,0,0) 100%) add; bottom: 201px; flex: none; left: 34px; mask: radial-gradient(50% 47% at 50% 46.6%, rgba(0, 0, 0, 0) 6.103955518018017%, rgba(0, 0, 0, 0.1) 22.726632882882882%, rgba(0,0,0,1) 64.53582488738738%, rgba(0,0,0,0) 100%) add; overflow: visible; position: absolute; right: 34px; top: -133px; z-index: 1; }\",\".framer-8lyR2 .framer-4a60x8 { background: linear-gradient(180deg, rgba(23, 23, 23, 0) 0%, rgb(10, 10, 10) 100%); bottom: 0px; flex: none; height: 193px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-8lyR2[data-border=\"true\"]::after, .framer-8lyR2 [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: 990px) and (max-width: 1289px) { .framer-8lyR2.framer-ogrxa2 { width: 990px; } .framer-8lyR2 .framer-bqedbi { height: 153px; } .framer-8lyR2 .framer-1mtwkhg { width: 286px; } .framer-8lyR2 .framer-1ebuhv8 { width: 284px; } .framer-8lyR2 .framer-1n2jfom { width: var(--framer-aspect-ratio-supported, 1107px); } .framer-8lyR2 .framer-9ga0ao, .framer-8lyR2 .framer-62vhys, .framer-8lyR2 .framer-ykrr5z, .framer-8lyR2 .framer-1sf1rga { height: var(--framer-aspect-ratio-supported, 37px); } .framer-8lyR2 .framer-5bxzic { max-width: 400px; } .framer-8lyR2 .framer-gd344v { height: var(--framer-aspect-ratio-supported, 1131px); } .framer-8lyR2 .framer-1ay7g7 { height: var(--framer-aspect-ratio-supported, 340px); } .framer-8lyR2 .framer-4yv4zd { width: 339px; } .framer-8lyR2 .framer-1s1e3gv { height: var(--framer-aspect-ratio-supported, 920px); }}\",\"@media (max-width: 989px) { .framer-8lyR2.framer-ogrxa2 { width: 390px; } .framer-8lyR2 .framer-bqedbi { height: 140px; } .framer-8lyR2 .framer-1mtwkhg { width: 222px; } .framer-8lyR2 .framer-1ebuhv8 { width: 234px; } .framer-8lyR2 .framer-1klalke { align-content: unset; align-items: unset; display: grid; gap: 30px 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 90%; } .framer-8lyR2 .framer-1vg77zl, .framer-8lyR2 .framer-o671qm, .framer-8lyR2 .framer-19b9g4t, .framer-8lyR2 .framer-m7n5t9, .framer-8lyR2 .framer-1kewbwq, .framer-8lyR2 .framer-cyrv3z, .framer-8lyR2 .framer-1ktjx8b, .framer-8lyR2 .framer-e0y3e3 { align-self: start; flex: none; justify-self: start; width: 100%; } .framer-8lyR2 .framer-1n2jfom { bottom: -193px; top: -133px; width: var(--framer-aspect-ratio-supported, 1084px); } .framer-8lyR2 .framer-jnmit4, .framer-8lyR2 .framer-vfrazy { padding: 80px 20px 80px 20px; } .framer-8lyR2 .framer-1gau6p9 { grid-template-columns: repeat(1, minmax(50px, 1fr)); height: 2970px; padding: 0px; } .framer-8lyR2 .framer-1tgobm9, .framer-8lyR2 .framer-1toj9o8, .framer-8lyR2 .framer-9b309g, .framer-8lyR2 .framer-1lhlei9, .framer-8lyR2 .framer-vanzss, .framer-8lyR2 .framer-27y5fz { grid-column: span 1; } .framer-8lyR2 .framer-9ga0ao, .framer-8lyR2 .framer-62vhys, .framer-8lyR2 .framer-ykrr5z, .framer-8lyR2 .framer-1sf1rga { height: var(--framer-aspect-ratio-supported, 69px); } .framer-8lyR2 .framer-mreqao { bottom: 11px; right: 44px; } .framer-8lyR2 .framer-6d9ymn { gap: 30px; padding: 80px 20px 80px 20px; } .framer-8lyR2 .framer-1jsklrr { width: 289px; } .framer-8lyR2 .framer-1llao5z { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-8lyR2 .framer-vxuij5 { align-self: start; flex: none; grid-column: span 2; justify-self: start; width: 100%; } .framer-8lyR2 .framer-1hdb66r { align-content: unset; align-items: unset; display: grid; gap: 5px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-8lyR2 .framer-cw3eim, .framer-8lyR2 .framer-11nyxef, .framer-8lyR2 .framer-gqk8gg, .framer-8lyR2 .framer-tlv9rs { align-self: start; justify-self: start; width: 100%; } .framer-8lyR2 .framer-4nvp4l { flex-direction: column; gap: 6px; } .framer-8lyR2 .framer-o3q7b4 { white-space: pre-wrap; width: 218px; word-break: break-word; word-wrap: break-word; } .framer-8lyR2 .framer-u7xzqd, .framer-8lyR2 .framer-tcz1v1 { padding: 80px 0px 80px 0px; } .framer-8lyR2 .framer-11uoqpi { order: 0; } .framer-8lyR2 .framer-1t0ev0b { order: 2; } .framer-8lyR2 .framer-g5b821-container { order: 1; } .framer-8lyR2 .framer-i6ruez { grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 0px; } .framer-8lyR2 .framer-gd344v { height: var(--framer-aspect-ratio-supported, 656px); } .framer-8lyR2 .framer-1k0miov { width: 293px; } .framer-8lyR2 .framer-1ay7g7 { height: var(--framer-aspect-ratio-supported, 416px); } .framer-8lyR2 .framer-1kf85to { width: 316px; } .framer-8lyR2 .framer-aldap4-container { aspect-ratio: unset; height: 233px; } .framer-8lyR2 .framer-9oj8lm { height: min-content; } .framer-8lyR2 .framer-1867qt3 { gap: 20px; } .framer-8lyR2 .framer-1tx64t6 { height: 15px; width: 44px; } .framer-8lyR2 .framer-4yv4zd { width: 223px; } .framer-8lyR2 .framer-ez60if-container { width: 100%; } .framer-8lyR2 .framer-1s1e3gv { height: var(--framer-aspect-ratio-supported, 710px); left: -160px; right: -160px; top: 75%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8273.5\n * @framerIntrinsicWidth 1290\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QdjPMfI8v\":{\"layout\":[\"fixed\",\"auto\"]},\"AWrfk7SmU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"dd7GSkMJO\":{\"pattern\":\":dd7GSkMJO\",\"name\":\"examples\"},\"skVhFBsCT\":{\"pattern\":\":skVhFBsCT\",\"name\":\"sponsors\"},\"RyRBrinRM\":{\"pattern\":\":RyRBrinRM\",\"name\":\"courses\"},\"W4ykTebJl\":{\"pattern\":\":W4ykTebJl\",\"name\":\"motion+\"},\"nmjjig7UQ\":{\"pattern\":\":nmjjig7UQ\",\"name\":\"features-v0\"},\"fihICu4ao\":{\"pattern\":\":fihICu4ao\",\"name\":\"features-ui\"},\"nSFtSZx7m\":{\"pattern\":\":nSFtSZx7m\",\"name\":\"gallery\"},\"LXFPtOl4K\":{\"pattern\":\":LXFPtOl4K\",\"name\":\"pivot\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-8lyR2\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8273.5,width:1290};const variationAxes=[{defaultValue:14,maxValue:32,minValue:14,name:\"Optical size\",tag:\"opsz\"},{defaultValue:400,maxValue:900,minValue:100,name:\"Weight\",tag:\"wght\"}];addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mYcqTSergLb16PdbJJQMl9ebYm4.woff2\",variationAxes,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/ZRl8AlxwsX1m7xS1eJCiSPbztg.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/nhSQpBRqFmXNUBY2p5SENQ8NplQ.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/DYHjxG0qXjopUuruoacfl5SA.woff2\",variationAxes,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/s7NH6sl7w4NU984r5hcmo1tPSYo.woff2\",variationAxes,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/7lw0VWkeXrGYJT05oB3DsFy8BaY.woff2\",variationAxes,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/wx5nfqEgOXnxuFaxB0Mn9OhmcZA.woff2\",variationAxes,weight:\"400\"},{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:\"Azeret Mono\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/H2CH5X247WOB4WHOIRWQAUKL2TT7SHCU/S3EAO5FK5CWWN2B4UGQLSNLG4LKJ4PPJ/7GATDCIWKUNWWA7R3JOEWHUIADJRXY63.woff2\",weight:\"500\"},{family:\"Azeret Mono\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ANLMHTNB6D2O5I43CFASACQGGIK5JLDZ/IGISU5CKQGLCD252CUY5AVZQ4UQRDFWC/BUAFC2XP3YCVWDC5LF3GWTKRIOZXURVB.woff2\",weight:\"400\"}]},...LogoFonts,...CopyFonts,...ButtonFonts,...BadgeFonts,...CopyPasteFonts,...IconJSFonts,...IconReactFonts,...IconVueFonts,...HomeExitFonts,...HomeLayoutFonts,...CTAFonts,...DBookFonts,...TickerFonts,...TypewriterFonts,...BlurGradientFonts,...SlideFonts,...SlideshowFonts,...DocsQuickStartMenuFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QdjPMfI8v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AWrfk7SmU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"8273.5\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1290\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"dd7GSkMJO\\\":{\\\"pattern\\\":\\\":dd7GSkMJO\\\",\\\"name\\\":\\\"examples\\\"},\\\"skVhFBsCT\\\":{\\\"pattern\\\":\\\":skVhFBsCT\\\",\\\"name\\\":\\\"sponsors\\\"},\\\"RyRBrinRM\\\":{\\\"pattern\\\":\\\":RyRBrinRM\\\",\\\"name\\\":\\\"courses\\\"},\\\"W4ykTebJl\\\":{\\\"pattern\\\":\\\":W4ykTebJl\\\",\\\"name\\\":\\\"motion+\\\"},\\\"nmjjig7UQ\\\":{\\\"pattern\\\":\\\":nmjjig7UQ\\\",\\\"name\\\":\\\"features-v0\\\"},\\\"fihICu4ao\\\":{\\\"pattern\\\":\\\":fihICu4ao\\\",\\\"name\\\":\\\"features-ui\\\"},\\\"nSFtSZx7m\\\":{\\\"pattern\\\":\\\":nSFtSZx7m\\\",\\\"name\\\":\\\"gallery\\\"},\\\"LXFPtOl4K\\\":{\\\"pattern\\\":\\\":LXFPtOl4K\\\",\\\"name\\\":\\\"pivot\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}