{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/nz5u3i2griIMbgLYCT2L/An30nZsbbQuw8jE9iRNZ/B_jXsSCoi.js", "ssg:https://ga.jspm.io/npm:canvas-confetti@1.4.0/src/confetti.js", "ssg:https://framerusercontent.com/modules/AU1Ll2ZhQDnjLk4PtfJo/uBB8gvml9KSU5S02BAoi/Confetti_animation.js", "ssg:https://jspm.dev/npm:twemoji-parser@14.0.0/dist/lib/regex!cjs", "ssg:https://jspm.dev/npm:twemoji-parser@14.0.0!cjs", "ssg:https://framerusercontent.com/modules/xwmmLiR3CC4FXXYz8XsN/lYH3CKjOKcdUfcu0ZKf2/Twemoji.js", "ssg:https://framerusercontent.com/modules/1RJ5VebbRVM6NW1ijsCK/YiqSKO2utXRtH03jDzri/PbNHhXzAT.js", "ssg:https://framerusercontent.com/modules/NOnLVL8zEonBqFMhn5VC/PEwIUWGIOsUKnJ9AarQD/QqxvQiaKL.js", "ssg:https://framerusercontent.com/modules/mpC6Bk7J49hgQZ21MmAG/McSWMjTLWhmFMpL9K2u5/Custom_Video_Component.js", "ssg:https://framerusercontent.com/modules/QnmXUA5tb8BS6PZQY1WR/LGy0XQ2lPiFyaF24HCYg/udlV2DjFT.js"],
  "sourcesContent": ["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:\"\u2B50\uFE0F\"}),/*#__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\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 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", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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 Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"mnpCFVlTm\",\"FHq9YLayk\",\"rKT1h3ghC\",\"KdWvxtbef\",\"fVTrbR57n\"];const serializationHash=\"framer-jJnB2\";const variantClassNames={FHq9YLayk:\"framer-v-1gxjbtm\",fVTrbR57n:\"framer-v-ohr3md\",KdWvxtbef:\"framer-v-1dy89xf\",mnpCFVlTm:\"framer-v-1r0zduj\",rKT1h3ghC:\"framer-v-10bep8c\"};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 animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.05,duration:1,type:\"spring\"};const textEffect={effect:animation,startDelay:1,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation,startDelay:2,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const textEffect2={effect:animation,repeat:false,startDelay:1,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const textEffect3={effect:animation,startDelay:1.5,tokenization:\"character\",transition:transition2,trigger:\"onMount\",type:\"appear\"};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={\"Large Desktop\":\"mnpCFVlTm\",\"Phone - Balance Heading\":\"fVTrbR57n\",\"Small Desktop\":\"FHq9YLayk\",Phone:\"KdWvxtbef\",Tablet:\"rKT1h3ghC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mnpCFVlTm\"};};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:\"mnpCFVlTm\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"KdWvxtbef\")return true;return false;};const isDisplayed1=()=>{if([\"FHq9YLayk\",\"rKT1h3ghC\",\"KdWvxtbef\",\"fVTrbR57n\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"rKT1h3ghC\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"FHq9YLayk\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"fVTrbR57n\")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-1r0zduj\",className,classNames),\"data-framer-name\":\"Large Desktop\",layoutDependency:layoutDependency,layoutId:\"mnpCFVlTm\",ref:refBinding,style:{...style},...addPropertyOverrides({FHq9YLayk:{\"data-framer-name\":\"Small Desktop\"},fVTrbR57n:{\"data-framer-name\":\"Phone - Balance Heading\"},KdWvxtbef:{\"data-framer-name\":\"Phone\"},rKT1h3ghC:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Magically\"})}),className:\"framer-9g8f77\",\"data-framer-name\":\"Magically convert Your Accounts\",effect:textEffect,fonts:[\"FS;Poppins-bold\"],layoutDependency:layoutDependency,layoutId:\"Lj9_P1p87\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FHq9YLayk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Magically\"})})},fVTrbR57n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Magically\"})})},KdWvxtbef:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Magically\"})})},rKT1h3ghC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Magically\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Convert\"})}),className:\"framer-117pjrn\",\"data-framer-name\":\"Magically convert Your Accounts\",effect:textEffect1,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"gWcWI1g7y\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FHq9YLayk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Convert\"})})},fVTrbR57n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Convert\"})})},KdWvxtbef:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Convert\"})})},rKT1h3ghC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Convert\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ms7nti\",layoutDependency:layoutDependency,layoutId:\"CnUjf3C4w\",...addPropertyOverrides({fVTrbR57n:{transformTemplate:transformTemplate1},KdWvxtbef:{transformTemplate:transformTemplate1},rKT1h3ghC:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Magically\"})}),className:\"framer-167spyg\",\"data-framer-name\":\"Magically convert Your Accounts\",effect:textEffect,fonts:[\"FS;Poppins-bold\"],layoutDependency:layoutDependency,layoutId:\"wZ1Hw1o8z\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FHq9YLayk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Magically\"})})},fVTrbR57n:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Magically\"})})},KdWvxtbef:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Magically\"})})},rKT1h3ghC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Magically\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vjm17w-container\",\"data-framer-name\":\"Phone\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cdoO3Ul0o-container\",name:\"Phone\",nodeId:\"cdoO3Ul0o\",rendersWithMotion:true,scopeId:\"B_jXsSCoi\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"top\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"cdoO3Ul0o\",intervalControl:2,itemAmount:1,layoutId:\"cdoO3Ul0o\",name:\"Phone\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8yjnam\",\"data-framer-name\":\"Retain\",layoutDependency:layoutDependency,layoutId:\"jX8Ryyxd4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Retain\"})}),className:\"framer-9n25mw\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"y0gDRgxZS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gdztkj\",\"data-framer-name\":\"Expand\",layoutDependency:layoutDependency,layoutId:\"UmuY6tScj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Expand\"})}),className:\"framer-13ejkk6\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"wFQownJ3N\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1clxjk0\",\"data-framer-name\":\"Convert\",layoutDependency:layoutDependency,layoutId:\"Ljhc90IKW\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Convert\"})}),className:\"framer-crpxx6\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"AqJ2SPWYW\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m1gh1d\",\"data-framer-name\":\"Activate\",layoutDependency:layoutDependency,layoutId:\"e_wtBGQ8L\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Activate\"})}),className:\"framer-1pi5p4x\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"YxkYnf6BB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cnzx0f-container\",\"data-framer-name\":\"Large Desktop SS\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Li36sYgZ0-container\",name:\"Large Desktop SS\",nodeId:\"Li36sYgZ0\",rendersWithMotion:true,scopeId:\"B_jXsSCoi\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"top\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"Li36sYgZ0\",intervalControl:2,itemAmount:1,layoutId:\"Li36sYgZ0\",name:\"Large Desktop SS\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bwbezn\",\"data-framer-name\":\"Retain\",layoutDependency:layoutDependency,layoutId:\"VSD3oREqg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Retain\"})}),className:\"framer-11098jv\",effect:textEffect3,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"DDrbc9AvW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-113zalm\",\"data-framer-name\":\"Expand\",layoutDependency:layoutDependency,layoutId:\"AEflqeUwL\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Expand\"})}),className:\"framer-10m3r2u\",effect:textEffect3,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"GPKzlaZuQ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2klgo5\",\"data-framer-name\":\"Convert\",layoutDependency:layoutDependency,layoutId:\"mhZ1XyRYV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Convert\"})}),className:\"framer-fn4r7h\",effect:textEffect3,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"AMRMDT_3e\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tz33o8\",\"data-framer-name\":\"Activate\",layoutDependency:layoutDependency,layoutId:\"bTjI5j28U\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Activate\"})}),className:\"framer-pd4a4e\",effect:textEffect3,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"i3BDsq6Kd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c6mdxu-container\",\"data-framer-name\":\"Tablet SS\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wpIgVEL3b-container\",name:\"Tablet SS\",nodeId:\"wpIgVEL3b\",rendersWithMotion:true,scopeId:\"B_jXsSCoi\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"top\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"wpIgVEL3b\",intervalControl:2,itemAmount:1,layoutId:\"wpIgVEL3b\",name:\"Tablet SS\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c6p7pe\",\"data-framer-name\":\"Retain\",layoutDependency:layoutDependency,layoutId:\"Mb3UFIe4n\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Retain\"})}),className:\"framer-9r3qja\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"rVLV5yUd_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13p0ydp\",\"data-framer-name\":\"Expand\",layoutDependency:layoutDependency,layoutId:\"ILv1kGbGr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Expand\"})}),className:\"framer-6tilik\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"xIHTwci_N\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9yq8gd\",\"data-framer-name\":\"Convert\",layoutDependency:layoutDependency,layoutId:\"VLpff3oVc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Convert\"})}),className:\"framer-opmuwd\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"N1QslMGmI\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6r2sx0\",\"data-framer-name\":\"Activate\",layoutDependency:layoutDependency,layoutId:\"a7iSNwJyK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Activate\"})}),className:\"framer-hpw9x2\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"OV2RvAO6F\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n9ddhe-container\",\"data-framer-name\":\"Small Desktop SS\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EIUSQOhJ7-container\",name:\"Small Desktop SS\",nodeId:\"EIUSQOhJ7\",rendersWithMotion:true,scopeId:\"B_jXsSCoi\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"top\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"EIUSQOhJ7\",intervalControl:2,itemAmount:1,layoutId:\"EIUSQOhJ7\",name:\"Small Desktop SS\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1676gc3\",\"data-framer-name\":\"Retain\",layoutDependency:layoutDependency,layoutId:\"zfoEQ3p8K\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Retain\"})}),className:\"framer-18eshin\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"f2gW56Dlq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mgeodh\",\"data-framer-name\":\"Expand\",layoutDependency:layoutDependency,layoutId:\"I_gyf9Hnu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Expand\"})}),className:\"framer-1tkmsnc\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"c_SAnCabS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1453a2v\",\"data-framer-name\":\"Convert\",layoutDependency:layoutDependency,layoutId:\"JVDa8oPmO\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Convert\"})}),className:\"framer-7nhv7k\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"zdggTctH8\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13y5rw7\",\"data-framer-name\":\"Activate\",layoutDependency:layoutDependency,layoutId:\"Ugq9dmGeF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Activate\"})}),className:\"framer-4kduup\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"WdfAHxpea\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kgspvb-container\",\"data-framer-name\":\"Phone - Balance Heading\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"V22KIq2TG-container\",name:\"Phone - Balance Heading\",nodeId:\"V22KIq2TG\",rendersWithMotion:true,scopeId:\"B_jXsSCoi\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"top\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"V22KIq2TG\",intervalControl:2,itemAmount:1,layoutId:\"V22KIq2TG\",name:\"Phone - Balance Heading\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gg878w\",\"data-framer-name\":\"Retain\",layoutDependency:layoutDependency,layoutId:\"oWjV4pGFy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Retain\"})}),className:\"framer-s7in3o\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"lDotavWER\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tqe8ng\",\"data-framer-name\":\"Expand\",layoutDependency:layoutDependency,layoutId:\"OCA7Pxp5k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Expand\"})}),className:\"framer-1vbuc5r\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"k1RU8t8I9\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13iro29\",\"data-framer-name\":\"Convert\",layoutDependency:layoutDependency,layoutId:\"lsN5ZXZ5h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Convert\"})}),className:\"framer-b2yfal\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"jXg5FWC0L\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jhzpo7\",\"data-framer-name\":\"Activate\",layoutDependency:layoutDependency,layoutId:\"Ws79i20NA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZCBpdGFsaWM=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"inherit\"},children:\"Activate\"})}),className:\"framer-1lazzv2\",effect:textEffect2,fonts:[\"FS;Poppins-semibold italic\"],layoutDependency:layoutDependency,layoutId:\"VRFbalR_8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({fVTrbR57n:{alignment:\"center\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jJnB2.framer-l0iq71, .framer-jJnB2 .framer-l0iq71 { display: block; }\",\".framer-jJnB2.framer-1r0zduj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 23px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: 708px; }\",\".framer-jJnB2 .framer-9g8f77, .framer-jJnB2 .framer-117pjrn, .framer-jJnB2 .framer-167spyg, .framer-jJnB2 .framer-9n25mw, .framer-jJnB2 .framer-13ejkk6, .framer-jJnB2 .framer-crpxx6, .framer-jJnB2 .framer-1pi5p4x, .framer-jJnB2 .framer-11098jv, .framer-jJnB2 .framer-10m3r2u, .framer-jJnB2 .framer-fn4r7h, .framer-jJnB2 .framer-pd4a4e, .framer-jJnB2 .framer-9r3qja, .framer-jJnB2 .framer-6tilik, .framer-jJnB2 .framer-opmuwd, .framer-jJnB2 .framer-hpw9x2, .framer-jJnB2 .framer-18eshin, .framer-jJnB2 .framer-1tkmsnc, .framer-jJnB2 .framer-7nhv7k, .framer-jJnB2 .framer-4kduup, .framer-jJnB2 .framer-s7in3o, .framer-jJnB2 .framer-1vbuc5r, .framer-jJnB2 .framer-b2yfal, .framer-jJnB2 .framer-1lazzv2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jJnB2 .framer-ms7nti { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 23px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 9px; width: 105%; z-index: 1; }\",\".framer-jJnB2 .framer-vjm17w-container { flex: none; height: 41px; position: relative; width: 185px; z-index: 1; }\",\".framer-jJnB2 .framer-8yjnam, .framer-jJnB2 .framer-gdztkj, .framer-jJnB2 .framer-bwbezn, .framer-jJnB2 .framer-113zalm, .framer-jJnB2 .framer-1c6p7pe, .framer-jJnB2 .framer-13p0ydp, .framer-jJnB2 .framer-1676gc3, .framer-jJnB2 .framer-mgeodh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 86px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jJnB2 .framer-1clxjk0, .framer-jJnB2 .framer-1m1gh1d, .framer-jJnB2 .framer-2klgo5, .framer-jJnB2 .framer-1tz33o8, .framer-jJnB2 .framer-9yq8gd, .framer-jJnB2 .framer-6r2sx0, .framer-jJnB2 .framer-1453a2v, .framer-jJnB2 .framer-13y5rw7 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 86px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jJnB2 .framer-cnzx0f-container { flex: none; height: 72px; position: relative; width: 322px; z-index: 1; }\",\".framer-jJnB2 .framer-c6mdxu-container { flex: none; height: 72px; position: relative; width: 290px; z-index: 1; }\",\".framer-jJnB2 .framer-n9ddhe-container, .framer-jJnB2 .framer-kgspvb-container { flex: none; height: 60px; position: relative; width: 253px; z-index: 1; }\",\".framer-jJnB2 .framer-1gg878w, .framer-jJnB2 .framer-1tqe8ng { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 86px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jJnB2 .framer-13iro29, .framer-jJnB2 .framer-jhzpo7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 86px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jJnB2.framer-1r0zduj, .framer-jJnB2 .framer-ms7nti, .framer-jJnB2 .framer-8yjnam, .framer-jJnB2 .framer-gdztkj, .framer-jJnB2 .framer-1clxjk0, .framer-jJnB2 .framer-1m1gh1d, .framer-jJnB2 .framer-bwbezn, .framer-jJnB2 .framer-113zalm, .framer-jJnB2 .framer-2klgo5, .framer-jJnB2 .framer-1tz33o8, .framer-jJnB2 .framer-1c6p7pe, .framer-jJnB2 .framer-13p0ydp, .framer-jJnB2 .framer-9yq8gd, .framer-jJnB2 .framer-6r2sx0, .framer-jJnB2 .framer-1676gc3, .framer-jJnB2 .framer-mgeodh, .framer-jJnB2 .framer-1453a2v, .framer-jJnB2 .framer-13y5rw7, .framer-jJnB2 .framer-1gg878w, .framer-jJnB2 .framer-1tqe8ng, .framer-jJnB2 .framer-13iro29, .framer-jJnB2 .framer-jhzpo7 { gap: 0px; } .framer-jJnB2.framer-1r0zduj > *, .framer-jJnB2 .framer-ms7nti > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-jJnB2.framer-1r0zduj > :first-child, .framer-jJnB2 .framer-ms7nti > :first-child, .framer-jJnB2 .framer-8yjnam > :first-child, .framer-jJnB2 .framer-gdztkj > :first-child, .framer-jJnB2 .framer-bwbezn > :first-child, .framer-jJnB2 .framer-113zalm > :first-child, .framer-jJnB2 .framer-1c6p7pe > :first-child, .framer-jJnB2 .framer-13p0ydp > :first-child, .framer-jJnB2 .framer-1676gc3 > :first-child, .framer-jJnB2 .framer-mgeodh > :first-child, .framer-jJnB2 .framer-1gg878w > :first-child, .framer-jJnB2 .framer-1tqe8ng > :first-child { margin-left: 0px; } .framer-jJnB2.framer-1r0zduj > :last-child, .framer-jJnB2 .framer-ms7nti > :last-child, .framer-jJnB2 .framer-8yjnam > :last-child, .framer-jJnB2 .framer-gdztkj > :last-child, .framer-jJnB2 .framer-bwbezn > :last-child, .framer-jJnB2 .framer-113zalm > :last-child, .framer-jJnB2 .framer-1c6p7pe > :last-child, .framer-jJnB2 .framer-13p0ydp > :last-child, .framer-jJnB2 .framer-1676gc3 > :last-child, .framer-jJnB2 .framer-mgeodh > :last-child, .framer-jJnB2 .framer-1gg878w > :last-child, .framer-jJnB2 .framer-1tqe8ng > :last-child { margin-right: 0px; } .framer-jJnB2 .framer-8yjnam > *, .framer-jJnB2 .framer-gdztkj > *, .framer-jJnB2 .framer-bwbezn > *, .framer-jJnB2 .framer-113zalm > *, .framer-jJnB2 .framer-1c6p7pe > *, .framer-jJnB2 .framer-13p0ydp > *, .framer-jJnB2 .framer-1676gc3 > *, .framer-jJnB2 .framer-mgeodh > *, .framer-jJnB2 .framer-1gg878w > *, .framer-jJnB2 .framer-1tqe8ng > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jJnB2 .framer-1clxjk0 > *, .framer-jJnB2 .framer-1m1gh1d > *, .framer-jJnB2 .framer-2klgo5 > *, .framer-jJnB2 .framer-1tz33o8 > *, .framer-jJnB2 .framer-9yq8gd > *, .framer-jJnB2 .framer-6r2sx0 > *, .framer-jJnB2 .framer-1453a2v > *, .framer-jJnB2 .framer-13y5rw7 > *, .framer-jJnB2 .framer-13iro29 > *, .framer-jJnB2 .framer-jhzpo7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jJnB2 .framer-1clxjk0 > :first-child, .framer-jJnB2 .framer-1m1gh1d > :first-child, .framer-jJnB2 .framer-2klgo5 > :first-child, .framer-jJnB2 .framer-1tz33o8 > :first-child, .framer-jJnB2 .framer-9yq8gd > :first-child, .framer-jJnB2 .framer-6r2sx0 > :first-child, .framer-jJnB2 .framer-1453a2v > :first-child, .framer-jJnB2 .framer-13y5rw7 > :first-child, .framer-jJnB2 .framer-13iro29 > :first-child, .framer-jJnB2 .framer-jhzpo7 > :first-child { margin-top: 0px; } .framer-jJnB2 .framer-1clxjk0 > :last-child, .framer-jJnB2 .framer-1m1gh1d > :last-child, .framer-jJnB2 .framer-2klgo5 > :last-child, .framer-jJnB2 .framer-1tz33o8 > :last-child, .framer-jJnB2 .framer-9yq8gd > :last-child, .framer-jJnB2 .framer-6r2sx0 > :last-child, .framer-jJnB2 .framer-1453a2v > :last-child, .framer-jJnB2 .framer-13y5rw7 > :last-child, .framer-jJnB2 .framer-13iro29 > :last-child, .framer-jJnB2 .framer-jhzpo7 > :last-child { margin-bottom: 0px; } }\",\".framer-jJnB2.framer-v-1gxjbtm.framer-1r0zduj { gap: 20px; width: 563px; }\",\".framer-jJnB2.framer-v-1gxjbtm .framer-ms7nti { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jJnB2.framer-v-1gxjbtm.framer-1r0zduj, .framer-jJnB2.framer-v-1gxjbtm .framer-ms7nti { gap: 0px; } .framer-jJnB2.framer-v-1gxjbtm.framer-1r0zduj > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-jJnB2.framer-v-1gxjbtm.framer-1r0zduj > :first-child, .framer-jJnB2.framer-v-1gxjbtm .framer-ms7nti > :first-child { margin-left: 0px; } .framer-jJnB2.framer-v-1gxjbtm.framer-1r0zduj > :last-child, .framer-jJnB2.framer-v-1gxjbtm .framer-ms7nti > :last-child { margin-right: 0px; } .framer-jJnB2.framer-v-1gxjbtm .framer-ms7nti > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-jJnB2.framer-v-10bep8c.framer-1r0zduj { justify-content: center; width: 641px; }\",\".framer-jJnB2.framer-v-10bep8c .framer-ms7nti { justify-content: center; left: 50%; width: 106%; }\",\".framer-jJnB2.framer-v-1dy89xf.framer-1r0zduj { flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: 458px; }\",\".framer-jJnB2.framer-v-1dy89xf .framer-ms7nti { flex-wrap: nowrap; gap: 10px; justify-content: center; left: 50%; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jJnB2.framer-v-1dy89xf.framer-1r0zduj, .framer-jJnB2.framer-v-1dy89xf .framer-ms7nti { gap: 0px; } .framer-jJnB2.framer-v-1dy89xf.framer-1r0zduj > *, .framer-jJnB2.framer-v-1dy89xf .framer-ms7nti > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jJnB2.framer-v-1dy89xf.framer-1r0zduj > :first-child, .framer-jJnB2.framer-v-1dy89xf .framer-ms7nti > :first-child { margin-left: 0px; } .framer-jJnB2.framer-v-1dy89xf.framer-1r0zduj > :last-child, .framer-jJnB2.framer-v-1dy89xf .framer-ms7nti > :last-child { margin-right: 0px; } }\",\".framer-jJnB2.framer-v-ohr3md.framer-1r0zduj { flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: 269px; }\",\".framer-jJnB2.framer-v-ohr3md .framer-ms7nti { flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 50%; top: 0px; width: 100%; }\",\".framer-jJnB2.framer-v-ohr3md .framer-kgspvb-container { height: 39px; width: 176px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jJnB2.framer-v-ohr3md.framer-1r0zduj, .framer-jJnB2.framer-v-ohr3md .framer-ms7nti { gap: 0px; } .framer-jJnB2.framer-v-ohr3md.framer-1r0zduj > *, .framer-jJnB2.framer-v-ohr3md .framer-ms7nti > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jJnB2.framer-v-ohr3md.framer-1r0zduj > :first-child, .framer-jJnB2.framer-v-ohr3md .framer-ms7nti > :first-child { margin-top: 0px; } .framer-jJnB2.framer-v-ohr3md.framer-1r0zduj > :last-child, .framer-jJnB2.framer-v-ohr3md .framer-ms7nti > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 94\n * @framerIntrinsicWidth 708\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FHq9YLayk\":{\"layout\":[\"fixed\",\"auto\"]},\"rKT1h3ghC\":{\"layout\":[\"fixed\",\"auto\"]},\"KdWvxtbef\":{\"layout\":[\"fixed\",\"auto\"]},\"fVTrbR57n\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerB_jXsSCoi=withCSS(Component,css,\"framer-jJnB2\");export default FramerB_jXsSCoi;FramerB_jXsSCoi.displayName=\"Changing Text\";FramerB_jXsSCoi.defaultProps={height:94,width:708};addPropertyControls(FramerB_jXsSCoi,{variant:{options:[\"mnpCFVlTm\",\"FHq9YLayk\",\"rKT1h3ghC\",\"KdWvxtbef\",\"fVTrbR57n\"],optionTitles:[\"Large Desktop\",\"Small Desktop\",\"Tablet\",\"Phone\",\"Phone - Balance Heading\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerB_jXsSCoi,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/UIZNW6TUIPHAJY7PGO5Z3D35Q2C3IESY/VMTPLIFREYY73Z7SYHLS2AWXATFX2ZHJ/3Y2FFVDRGJIJT6SO3BLMSB5PFJTFIJG2.woff2\",weight:\"600\"}]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB_jXsSCoi\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FHq9YLayk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rKT1h3ghC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KdWvxtbef\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fVTrbR57n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"94\",\"framerIntrinsicWidth\":\"708\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./B_jXsSCoi.map", "var e=\"undefined\"!==typeof globalThis?globalThis:\"undefined\"!==typeof self?self:global;var t={};var r={exports:t};(function main(e,t,r,n){var a=!!(e.Worker&&e.Blob&&e.Promise&&e.OffscreenCanvas&&e.OffscreenCanvasRenderingContext2D&&e.HTMLCanvasElement&&e.HTMLCanvasElement.prototype.transferControlToOffscreen&&e.URL&&e.URL.createObjectURL);function noop(){}function promise(r){var n=t.exports.Promise;var a=void 0!==n?n:e.Promise;if(\"function\"===typeof a)return new a(r);r(noop,noop);return null}var o=function(){var e=Math.floor(1e3/60);var t,r;var n={};var a=0;if(\"function\"===typeof requestAnimationFrame&&\"function\"===typeof cancelAnimationFrame){t=function(t){var r=Math.random();n[r]=requestAnimationFrame((function onFrame(o){if(a===o||a+e-1<o){a=o;delete n[r];t()}else n[r]=requestAnimationFrame(onFrame)}));return r};r=function(e){n[e]&&cancelAnimationFrame(n[e])}}else{t=function(t){return setTimeout(t,e)};r=function(e){return clearTimeout(e)}}return{frame:t,cancel:r}}();var i=function(){var e;var t;var n={};function decorate(e){function execute(t,r){e.postMessage({options:t||{},callback:r})}e.init=function initWorker(t){var r=t.transferControlToOffscreen();e.postMessage({canvas:r},[r])};e.fire=function fireWorker(r,a,o){if(t){execute(r,null);return t}var i=Math.random().toString(36).slice(2);t=promise((function(a){function workerDone(r){if(r.data.callback===i){delete n[i];e.removeEventListener(\"message\",workerDone);t=null;o();a()}}e.addEventListener(\"message\",workerDone);execute(r,i);n[i]=workerDone.bind(null,{data:{callback:i}})}));return t};e.reset=function resetWorker(){e.postMessage({reset:true});for(var t in n){n[t]();delete n[t]}}}return function(){if(e)return e;if(!r&&a){var t=[\"var CONFETTI, SIZE = {}, module = {};\",\"(\"+main.toString()+\")(this, module, true, SIZE);\",\"onmessage = function(msg) {\",\"  if (msg.data.options) {\",\"    CONFETTI(msg.data.options).then(function () {\",\"      if (msg.data.callback) {\",\"        postMessage({ callback: msg.data.callback });\",\"      }\",\"    });\",\"  } else if (msg.data.reset) {\",\"    CONFETTI.reset();\",\"  } else if (msg.data.resize) {\",\"    SIZE.width = msg.data.resize.width;\",\"    SIZE.height = msg.data.resize.height;\",\"  } else if (msg.data.canvas) {\",\"    SIZE.width = msg.data.canvas.width;\",\"    SIZE.height = msg.data.canvas.height;\",\"    CONFETTI = module.exports.create(msg.data.canvas);\",\"  }\",\"}\"].join(\"\\n\");try{e=new Worker(URL.createObjectURL(new Blob([t])))}catch(e){void 0!==typeof console&&\"function\"===typeof console.warn?console.warn(\"\uD83C\uDF8A Could not load worker\",e):null;return null}decorate(e)}return e}}();var l={particleCount:50,angle:90,spread:45,startVelocity:45,decay:.9,gravity:1,drift:0,ticks:200,x:.5,y:.5,shapes:[\"square\",\"circle\"],zIndex:100,colors:[\"#26ccff\",\"#a25afd\",\"#ff5e7e\",\"#88ff5a\",\"#fcff42\",\"#ffa62d\",\"#ff36ff\"],disableForReducedMotion:false,scalar:1};function convert(e,t){return t?t(e):e}function isOk(e){return!(null===e||void 0===e)}function prop(e,t,r){return convert(e&&isOk(e[t])?e[t]:l[t],r)}function onlyPositiveInt(e){return e<0?0:Math.floor(e)}function randomInt(e,t){return Math.floor(Math.random()*(t-e))+e}function toDecimal(e){return parseInt(e,16)}function colorsToRgb(e){return e.map(hexToRgb)}function hexToRgb(e){var t=String(e).replace(/[^0-9a-f]/gi,\"\");t.length<6&&(t=t[0]+t[0]+t[1]+t[1]+t[2]+t[2]);return{r:toDecimal(t.substring(0,2)),g:toDecimal(t.substring(2,4)),b:toDecimal(t.substring(4,6))}}function getOrigin(e){var t=prop(e,\"origin\",Object);t.x=prop(t,\"x\",Number);t.y=prop(t,\"y\",Number);return t}function setCanvasWindowSize(e){e.width=document.documentElement.clientWidth;e.height=document.documentElement.clientHeight}function setCanvasRectSize(e){var t=e.getBoundingClientRect();e.width=t.width;e.height=t.height}function getCanvas(e){var t=document.createElement(\"canvas\");t.style.position=\"fixed\";t.style.top=\"0px\";t.style.left=\"0px\";t.style.pointerEvents=\"none\";t.style.zIndex=e;return t}function ellipse(e,t,r,n,a,o,i,l,s){e.save();e.translate(t,r);e.rotate(o);e.scale(n,a);e.arc(0,0,1,i,l,s);e.restore()}function randomPhysics(e){var t=e.angle*(Math.PI/180);var r=e.spread*(Math.PI/180);return{x:e.x,y:e.y,wobble:10*Math.random(),velocity:.5*e.startVelocity+Math.random()*e.startVelocity,angle2D:-t+(.5*r-Math.random()*r),tiltAngle:Math.random()*Math.PI,color:e.color,shape:e.shape,tick:0,totalTicks:e.ticks,decay:e.decay,drift:e.drift,random:Math.random()+5,tiltSin:0,tiltCos:0,wobbleX:0,wobbleY:0,gravity:3*e.gravity,ovalScalar:.6,scalar:e.scalar}}function updateFetti(e,t){t.x+=Math.cos(t.angle2D)*t.velocity+t.drift;t.y+=Math.sin(t.angle2D)*t.velocity+t.gravity;t.wobble+=.1;t.velocity*=t.decay;t.tiltAngle+=.1;t.tiltSin=Math.sin(t.tiltAngle);t.tiltCos=Math.cos(t.tiltAngle);t.random=Math.random()+5;t.wobbleX=t.x+10*t.scalar*Math.cos(t.wobble);t.wobbleY=t.y+10*t.scalar*Math.sin(t.wobble);var r=t.tick++/t.totalTicks;var n=t.x+t.random*t.tiltCos;var a=t.y+t.random*t.tiltSin;var o=t.wobbleX+t.random*t.tiltCos;var i=t.wobbleY+t.random*t.tiltSin;e.fillStyle=\"rgba(\"+t.color.r+\", \"+t.color.g+\", \"+t.color.b+\", \"+(1-r)+\")\";e.beginPath();if(\"circle\"===t.shape)e.ellipse?e.ellipse(t.x,t.y,Math.abs(o-n)*t.ovalScalar,Math.abs(i-a)*t.ovalScalar,Math.PI/10*t.wobble,0,2*Math.PI):ellipse(e,t.x,t.y,Math.abs(o-n)*t.ovalScalar,Math.abs(i-a)*t.ovalScalar,Math.PI/10*t.wobble,0,2*Math.PI);else{e.moveTo(Math.floor(t.x),Math.floor(t.y));e.lineTo(Math.floor(t.wobbleX),Math.floor(a));e.lineTo(Math.floor(o),Math.floor(i));e.lineTo(Math.floor(n),Math.floor(t.wobbleY))}e.closePath();e.fill();return t.tick<t.totalTicks}function animate(e,t,a,i,l){var s=t.slice();var c=e.getContext(\"2d\");var f;var u;var d=promise((function(t){function onDone(){f=u=null;c.clearRect(0,0,i.width,i.height);l();t()}function update(){if(r&&!(i.width===n.width&&i.height===n.height)){i.width=e.width=n.width;i.height=e.height=n.height}if(!i.width&&!i.height){a(e);i.width=e.width;i.height=e.height}c.clearRect(0,0,i.width,i.height);s=s.filter((function(e){return updateFetti(c,e)}));s.length?f=o.frame(update):onDone()}f=o.frame(update);u=onDone}));return{addFettis:function(e){s=s.concat(e);return d},canvas:e,promise:d,reset:function(){f&&o.cancel(f);u&&u()}}}function confettiCannon(t,r){var n=!t;var o=!!prop(r||{},\"resize\");var l=prop(r,\"disableForReducedMotion\",Boolean);var s=a&&!!prop(r||{},\"useWorker\");var c=s?i():null;var f=n?setCanvasWindowSize:setCanvasRectSize;var u=!(!t||!c)&&!!t.__confetti_initialized;var d=\"function\"===typeof matchMedia&&matchMedia(\"(prefers-reduced-motion)\").matches;var h;function fireLocal(e,r,n){var a=prop(e,\"particleCount\",onlyPositiveInt);var o=prop(e,\"angle\",Number);var i=prop(e,\"spread\",Number);var l=prop(e,\"startVelocity\",Number);var s=prop(e,\"decay\",Number);var c=prop(e,\"gravity\",Number);var u=prop(e,\"drift\",Number);var d=prop(e,\"colors\",colorsToRgb);var v=prop(e,\"ticks\",Number);var p=prop(e,\"shapes\");var m=prop(e,\"scalar\");var g=getOrigin(e);var b=a;var y=[];var w=t.width*g.x;var M=t.height*g.y;while(b--)y.push(randomPhysics({x:w,y:M,angle:o,spread:i,startVelocity:l,color:d[b%d.length],shape:p[randomInt(0,p.length)],ticks:v,decay:s,gravity:c,drift:u,scalar:m}));if(h)return h.addFettis(y);h=animate(t,y,f,r,n);return h.promise}function fire(r){var a=l||prop(r,\"disableForReducedMotion\",Boolean);var i=prop(r,\"zIndex\",Number);if(a&&d)return promise((function(e){e()}));if(n&&h)t=h.canvas;else if(n&&!t){t=getCanvas(i);document.body.appendChild(t)}o&&!u&&f(t);var s={width:t.width,height:t.height};c&&!u&&c.init(t);u=true;c&&(t.__confetti_initialized=true);function onResize(){if(c){var e={getBoundingClientRect:function(){if(!n)return t.getBoundingClientRect()}};f(e);c.postMessage({resize:{width:e.width,height:e.height}})}else s.width=s.height=null}function done(){h=null;o&&e.removeEventListener(\"resize\",onResize);if(n&&t){document.body.removeChild(t);t=null;u=false}}o&&e.addEventListener(\"resize\",onResize,false);return c?c.fire(r,s,done):fireLocal(r,s,done)}fire.reset=function(){c&&c.reset();h&&h.reset()};return fire}t.exports=confettiCannon(null,{useWorker:true,resize:true});t.exports.create=confettiCannon})(function(){return\"undefined\"!==typeof window?window:\"undefined\"!==typeof self?self:this||e||{}}(),r,false);var n=r.exports;const a=r.exports.create;export default n;export{a as create};\n\n//# sourceMappingURL=confetti.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{Frame,addPropertyControls,ControlType}from\"framer\";import{useEffect,useRef,useState}from\"react\";import confetti from\"canvas-confetti\";import{useIsOnFramerCanvas}from\"framer\";// Helper functions\nfunction extractRGBColorFromString(str){const rgbRegex=/(rgba|rgb)\\(.*?\\)/g;const match=str.match(rgbRegex);return match?match[0]:str;}function rgbToHex(rgb){if(rgb.startsWith(\"#\"))return rgb;let[r,g,b]=rgb.match(/\\d+/g).map(Number);return\"#\"+[r,g,b].map(x=>{const hex=x.toString(16);return hex.length===1?\"0\"+hex:hex;}).join(\"\");}/**\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Confetti(props){const{delayInSeconds,amount,coverArea,explosion,color}=props;const frameRef=useRef(null);const[hasTriggered,setHasTriggered]=useState(false);const isOnCanvas=useIsOnFramerCanvas();useEffect(()=>{if(!hasTriggered&&!isOnCanvas){const timer=setTimeout(()=>{triggerConfetti();setHasTriggered(true);},delayInSeconds*1e3);return()=>clearTimeout(timer);}},[delayInSeconds,hasTriggered,isOnCanvas]);const triggerConfetti=()=>{if(!frameRef.current)return;const explosionSettings={S:{velocity:5,decay:.95},M:{velocity:15,decay:.95},L:{velocity:35,decay:.95},XL:{velocity:60,decay:.95}}[explosion];const rect=frameRef.current.getBoundingClientRect();const origin={x:(rect.left+rect.width/2)/window.innerWidth,y:(rect.top+rect.height/2)/window.innerHeight};confetti({particleCount:Math.floor(200*(amount/100)),spread:coverArea,startVelocity:explosionSettings.velocity,decay:explosionSettings.decay,scalar:1,origin,shapes:[\"circle\",\"square\"],colors:getColorConfig(color)});};function getColorConfig({mode,singleColor,colors}){if(mode===\"Random\")return undefined;if(mode===\"Single\"){const formattedColor=extractRGBColorFromString(singleColor);return[rgbToHex(formattedColor)];}return colors.map(color=>rgbToHex(extractRGBColorFromString(color)));}if(isOnCanvas){return /*#__PURE__*/_jsx(Frame,{style:{width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",color:\"#888\"},children:\"Confetti Component\"});}return /*#__PURE__*/_jsx(Frame,{ref:frameRef,style:{width:\"100%\",height:\"100%\",overflow:\"visible\",position:\"relative\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",boxSizing:\"border-box\",background:\"none\"}});}Confetti.displayName=\"Confetti\";Confetti.defaultProps={delayInSeconds:0,amount:30,coverArea:360,explosion:\"M\",color:{mode:\"Random\",singleColor:\"#2060DF\",colors:[\"#2060DF\",\"#986BEF\"]}};addPropertyControls(Confetti,{amount:{type:ControlType.Number,title:\"Amount\",min:1,max:200,defaultValue:30,step:1},coverArea:{type:ControlType.Number,title:\"Cover Area\",min:20,max:360,defaultValue:360,step:1,unit:\"\\xb0\"},explosion:{type:ControlType.Enum,title:\"Explosion\",options:[\"S\",\"M\",\"L\",\"XL\"],displaySegmentedControl:true,segmentedControlDirection:\"horizontal\"},color:{type:ControlType.Object,title:\"Color\",controls:{mode:{type:ControlType.Enum,title:\"Color Mode\",options:[\"Random\",\"Single\",\"Multi\"],defaultValue:\"Random\",displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},singleColor:{type:ControlType.Color,title:\"Single Color\",hidden:({mode})=>mode!==\"Single\"},colors:{type:ControlType.Array,title:\"Colors\",propertyControl:{type:ControlType.Color},hidden:({mode})=>mode!==\"Multi\"}}},delayInSeconds:{type:ControlType.Number,title:\"Delay\",min:0,max:10,step:.1,displayStepper:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Confetti\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Confetti_animation.map", "var exports = {};\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n}); // Copyright Twitter Inc. Licensed under MIT\n// https://github.com/twitter/twemoji-parser/blob/master/LICENSE.md\n// This file is generated by source/emoji/scripts/generate.sh\n\nexports.default = /(?:\\ud83d\\udc68\\ud83c\\udffb\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc68\\ud83c\\udffc\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc68\\ud83c\\udffd\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc68\\ud83c\\udffe\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc68\\ud83c\\udfff\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffb\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffb\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffc\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffc\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffd\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffd\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffe\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffe\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udfff\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udfff\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udfff]|\\ud83e\\uddd1\\ud83c\\udffb\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83e\\uddd1\\ud83c[\\udffc-\\udfff]|\\ud83e\\uddd1\\ud83c\\udffc\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83e\\uddd1\\ud83c[\\udffb\\udffd-\\udfff]|\\ud83e\\uddd1\\ud83c\\udffd\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83e\\uddd1\\ud83c[\\udffb\\udffc\\udffe\\udfff]|\\ud83e\\uddd1\\ud83c\\udffe\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83e\\uddd1\\ud83c[\\udffb-\\udffd\\udfff]|\\ud83e\\uddd1\\ud83c\\udfff\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83e\\uddd1\\ud83c[\\udffb-\\udffe]|\\ud83d\\udc68\\ud83c\\udffb\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc68\\ud83c\\udffb\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc68\\ud83c[\\udffc-\\udfff]|\\ud83d\\udc68\\ud83c\\udffc\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc68\\ud83c\\udffc\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc68\\ud83c[\\udffb\\udffd-\\udfff]|\\ud83d\\udc68\\ud83c\\udffd\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc68\\ud83c\\udffd\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc68\\ud83c[\\udffb\\udffc\\udffe\\udfff]|\\ud83d\\udc68\\ud83c\\udffe\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc68\\ud83c\\udffe\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udffd\\udfff]|\\ud83d\\udc68\\ud83c\\udfff\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc68\\ud83c\\udfff\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udffe]|\\ud83d\\udc69\\ud83c\\udffb\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffb\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffb\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc68\\ud83c[\\udffc-\\udfff]|\\ud83d\\udc69\\ud83c\\udffb\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc69\\ud83c[\\udffc-\\udfff]|\\ud83d\\udc69\\ud83c\\udffc\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffc\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffc\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc68\\ud83c[\\udffb\\udffd-\\udfff]|\\ud83d\\udc69\\ud83c\\udffc\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc69\\ud83c[\\udffb\\udffd-\\udfff]|\\ud83d\\udc69\\ud83c\\udffd\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffd\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffd\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc68\\ud83c[\\udffb\\udffc\\udffe\\udfff]|\\ud83d\\udc69\\ud83c\\udffd\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc69\\ud83c[\\udffb\\udffc\\udffe\\udfff]|\\ud83d\\udc69\\ud83c\\udffe\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffe\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udffe\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udffd\\udfff]|\\ud83d\\udc69\\ud83c\\udffe\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udffd\\udfff]|\\ud83d\\udc69\\ud83c\\udfff\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udfff\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc69\\ud83c\\udfff\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc68\\ud83c[\\udffb-\\udffe]|\\ud83d\\udc69\\ud83c\\udfff\\u200d\\ud83e\\udd1d\\u200d\\ud83d\\udc69\\ud83c[\\udffb-\\udffe]|\\ud83e\\uddd1\\ud83c\\udffb\\u200d\\u2764\\ufe0f\\u200d\\ud83e\\uddd1\\ud83c[\\udffc-\\udfff]|\\ud83e\\uddd1\\ud83c\\udffb\\u200d\\ud83e\\udd1d\\u200d\\ud83e\\uddd1\\ud83c[\\udffb-\\udfff]|\\ud83e\\uddd1\\ud83c\\udffc\\u200d\\u2764\\ufe0f\\u200d\\ud83e\\uddd1\\ud83c[\\udffb\\udffd-\\udfff]|\\ud83e\\uddd1\\ud83c\\udffc\\u200d\\ud83e\\udd1d\\u200d\\ud83e\\uddd1\\ud83c[\\udffb-\\udfff]|\\ud83e\\uddd1\\ud83c\\udffd\\u200d\\u2764\\ufe0f\\u200d\\ud83e\\uddd1\\ud83c[\\udffb\\udffc\\udffe\\udfff]|\\ud83e\\uddd1\\ud83c\\udffd\\u200d\\ud83e\\udd1d\\u200d\\ud83e\\uddd1\\ud83c[\\udffb-\\udfff]|\\ud83e\\uddd1\\ud83c\\udffe\\u200d\\u2764\\ufe0f\\u200d\\ud83e\\uddd1\\ud83c[\\udffb-\\udffd\\udfff]|\\ud83e\\uddd1\\ud83c\\udffe\\u200d\\ud83e\\udd1d\\u200d\\ud83e\\uddd1\\ud83c[\\udffb-\\udfff]|\\ud83e\\uddd1\\ud83c\\udfff\\u200d\\u2764\\ufe0f\\u200d\\ud83e\\uddd1\\ud83c[\\udffb-\\udffe]|\\ud83e\\uddd1\\ud83c\\udfff\\u200d\\ud83e\\udd1d\\u200d\\ud83e\\uddd1\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc68\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d\\udc68|\\ud83d\\udc69\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc8b\\u200d\\ud83d[\\udc68\\udc69]|\\ud83e\\udef1\\ud83c\\udffb\\u200d\\ud83e\\udef2\\ud83c[\\udffc-\\udfff]|\\ud83e\\udef1\\ud83c\\udffc\\u200d\\ud83e\\udef2\\ud83c[\\udffb\\udffd-\\udfff]|\\ud83e\\udef1\\ud83c\\udffd\\u200d\\ud83e\\udef2\\ud83c[\\udffb\\udffc\\udffe\\udfff]|\\ud83e\\udef1\\ud83c\\udffe\\u200d\\ud83e\\udef2\\ud83c[\\udffb-\\udffd\\udfff]|\\ud83e\\udef1\\ud83c\\udfff\\u200d\\ud83e\\udef2\\ud83c[\\udffb-\\udffe]|\\ud83d\\udc68\\u200d\\u2764\\ufe0f\\u200d\\ud83d\\udc68|\\ud83d\\udc69\\u200d\\u2764\\ufe0f\\u200d\\ud83d[\\udc68\\udc69]|\\ud83e\\uddd1\\u200d\\ud83e\\udd1d\\u200d\\ud83e\\uddd1|\\ud83d\\udc6b\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc6c\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc6d\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc8f\\ud83c[\\udffb-\\udfff]|\\ud83d\\udc91\\ud83c[\\udffb-\\udfff]|\\ud83e\\udd1d\\ud83c[\\udffb-\\udfff]|\\ud83d[\\udc6b-\\udc6d\\udc8f\\udc91]|\\ud83e\\udd1d)|(?:\\ud83d[\\udc68\\udc69]|\\ud83e\\uddd1)(?:\\ud83c[\\udffb-\\udfff])?\\u200d(?:\\u2695\\ufe0f|\\u2696\\ufe0f|\\u2708\\ufe0f|\\ud83c[\\udf3e\\udf73\\udf7c\\udf84\\udf93\\udfa4\\udfa8\\udfeb\\udfed]|\\ud83d[\\udcbb\\udcbc\\udd27\\udd2c\\ude80\\ude92]|\\ud83e[\\uddaf-\\uddb3\\uddbc\\uddbd])|(?:\\ud83c[\\udfcb\\udfcc]|\\ud83d[\\udd74\\udd75]|\\u26f9)((?:\\ud83c[\\udffb-\\udfff]|\\ufe0f)\\u200d[\\u2640\\u2642]\\ufe0f)|(?:\\ud83c[\\udfc3\\udfc4\\udfca]|\\ud83d[\\udc6e\\udc70\\udc71\\udc73\\udc77\\udc81\\udc82\\udc86\\udc87\\ude45-\\ude47\\ude4b\\ude4d\\ude4e\\udea3\\udeb4-\\udeb6]|\\ud83e[\\udd26\\udd35\\udd37-\\udd39\\udd3d\\udd3e\\uddb8\\uddb9\\uddcd-\\uddcf\\uddd4\\uddd6-\\udddd])(?:\\ud83c[\\udffb-\\udfff])?\\u200d[\\u2640\\u2642]\\ufe0f|(?:\\ud83d\\udc68\\u200d\\ud83d\\udc68\\u200d\\ud83d\\udc66\\u200d\\ud83d\\udc66|\\ud83d\\udc68\\u200d\\ud83d\\udc68\\u200d\\ud83d\\udc67\\u200d\\ud83d[\\udc66\\udc67]|\\ud83d\\udc68\\u200d\\ud83d\\udc69\\u200d\\ud83d\\udc66\\u200d\\ud83d\\udc66|\\ud83d\\udc68\\u200d\\ud83d\\udc69\\u200d\\ud83d\\udc67\\u200d\\ud83d[\\udc66\\udc67]|\\ud83d\\udc69\\u200d\\ud83d\\udc69\\u200d\\ud83d\\udc66\\u200d\\ud83d\\udc66|\\ud83d\\udc69\\u200d\\ud83d\\udc69\\u200d\\ud83d\\udc67\\u200d\\ud83d[\\udc66\\udc67]|\\ud83d\\udc68\\u200d\\ud83d\\udc66\\u200d\\ud83d\\udc66|\\ud83d\\udc68\\u200d\\ud83d\\udc67\\u200d\\ud83d[\\udc66\\udc67]|\\ud83d\\udc68\\u200d\\ud83d\\udc68\\u200d\\ud83d[\\udc66\\udc67]|\\ud83d\\udc68\\u200d\\ud83d\\udc69\\u200d\\ud83d[\\udc66\\udc67]|\\ud83d\\udc69\\u200d\\ud83d\\udc66\\u200d\\ud83d\\udc66|\\ud83d\\udc69\\u200d\\ud83d\\udc67\\u200d\\ud83d[\\udc66\\udc67]|\\ud83d\\udc69\\u200d\\ud83d\\udc69\\u200d\\ud83d[\\udc66\\udc67]|\\ud83c\\udff3\\ufe0f\\u200d\\u26a7\\ufe0f|\\ud83c\\udff3\\ufe0f\\u200d\\ud83c\\udf08|\\ud83d\\ude36\\u200d\\ud83c\\udf2b\\ufe0f|\\u2764\\ufe0f\\u200d\\ud83d\\udd25|\\u2764\\ufe0f\\u200d\\ud83e\\ude79|\\ud83c\\udff4\\u200d\\u2620\\ufe0f|\\ud83d\\udc15\\u200d\\ud83e\\uddba|\\ud83d\\udc3b\\u200d\\u2744\\ufe0f|\\ud83d\\udc41\\u200d\\ud83d\\udde8|\\ud83d\\udc68\\u200d\\ud83d[\\udc66\\udc67]|\\ud83d\\udc69\\u200d\\ud83d[\\udc66\\udc67]|\\ud83d\\udc6f\\u200d\\u2640\\ufe0f|\\ud83d\\udc6f\\u200d\\u2642\\ufe0f|\\ud83d\\ude2e\\u200d\\ud83d\\udca8|\\ud83d\\ude35\\u200d\\ud83d\\udcab|\\ud83e\\udd3c\\u200d\\u2640\\ufe0f|\\ud83e\\udd3c\\u200d\\u2642\\ufe0f|\\ud83e\\uddde\\u200d\\u2640\\ufe0f|\\ud83e\\uddde\\u200d\\u2642\\ufe0f|\\ud83e\\udddf\\u200d\\u2640\\ufe0f|\\ud83e\\udddf\\u200d\\u2642\\ufe0f|\\ud83d\\udc08\\u200d\\u2b1b)|[#*0-9]\\ufe0f?\\u20e3|(?:[\u00A9\u00AE\\u2122\\u265f]\\ufe0f)|(?:\\ud83c[\\udc04\\udd70\\udd71\\udd7e\\udd7f\\ude02\\ude1a\\ude2f\\ude37\\udf21\\udf24-\\udf2c\\udf36\\udf7d\\udf96\\udf97\\udf99-\\udf9b\\udf9e\\udf9f\\udfcd\\udfce\\udfd4-\\udfdf\\udff3\\udff5\\udff7]|\\ud83d[\\udc3f\\udc41\\udcfd\\udd49\\udd4a\\udd6f\\udd70\\udd73\\udd76-\\udd79\\udd87\\udd8a-\\udd8d\\udda5\\udda8\\uddb1\\uddb2\\uddbc\\uddc2-\\uddc4\\uddd1-\\uddd3\\udddc-\\uddde\\udde1\\udde3\\udde8\\uddef\\uddf3\\uddfa\\udecb\\udecd-\\udecf\\udee0-\\udee5\\udee9\\udef0\\udef3]|[\\u203c\\u2049\\u2139\\u2194-\\u2199\\u21a9\\u21aa\\u231a\\u231b\\u2328\\u23cf\\u23ed-\\u23ef\\u23f1\\u23f2\\u23f8-\\u23fa\\u24c2\\u25aa\\u25ab\\u25b6\\u25c0\\u25fb-\\u25fe\\u2600-\\u2604\\u260e\\u2611\\u2614\\u2615\\u2618\\u2620\\u2622\\u2623\\u2626\\u262a\\u262e\\u262f\\u2638-\\u263a\\u2640\\u2642\\u2648-\\u2653\\u2660\\u2663\\u2665\\u2666\\u2668\\u267b\\u267f\\u2692-\\u2697\\u2699\\u269b\\u269c\\u26a0\\u26a1\\u26a7\\u26aa\\u26ab\\u26b0\\u26b1\\u26bd\\u26be\\u26c4\\u26c5\\u26c8\\u26cf\\u26d1\\u26d3\\u26d4\\u26e9\\u26ea\\u26f0-\\u26f5\\u26f8\\u26fa\\u26fd\\u2702\\u2708\\u2709\\u270f\\u2712\\u2714\\u2716\\u271d\\u2721\\u2733\\u2734\\u2744\\u2747\\u2757\\u2763\\u2764\\u27a1\\u2934\\u2935\\u2b05-\\u2b07\\u2b1b\\u2b1c\\u2b50\\u2b55\\u3030\\u303d\\u3297\\u3299])(?:\\ufe0f|(?!\\ufe0e))|(?:(?:\\ud83c[\\udfcb\\udfcc]|\\ud83d[\\udd74\\udd75\\udd90]|[\\u261d\\u26f7\\u26f9\\u270c\\u270d])(?:\\ufe0f|(?!\\ufe0e))|(?:\\ud83c[\\udf85\\udfc2-\\udfc4\\udfc7\\udfca]|\\ud83d[\\udc42\\udc43\\udc46-\\udc50\\udc66-\\udc69\\udc6e\\udc70-\\udc78\\udc7c\\udc81-\\udc83\\udc85-\\udc87\\udcaa\\udd7a\\udd95\\udd96\\ude45-\\ude47\\ude4b-\\ude4f\\udea3\\udeb4-\\udeb6\\udec0\\udecc]|\\ud83e[\\udd0c\\udd0f\\udd18-\\udd1c\\udd1e\\udd1f\\udd26\\udd30-\\udd39\\udd3d\\udd3e\\udd77\\uddb5\\uddb6\\uddb8\\uddb9\\uddbb\\uddcd-\\uddcf\\uddd1-\\udddd\\udec3-\\udec5\\udef0-\\udef6]|[\\u270a\\u270b]))(?:\\ud83c[\\udffb-\\udfff])?|(?:\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc65\\udb40\\udc6e\\udb40\\udc67\\udb40\\udc7f|\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc73\\udb40\\udc63\\udb40\\udc74\\udb40\\udc7f|\\ud83c\\udff4\\udb40\\udc67\\udb40\\udc62\\udb40\\udc77\\udb40\\udc6c\\udb40\\udc73\\udb40\\udc7f|\\ud83c\\udde6\\ud83c[\\udde8-\\uddec\\uddee\\uddf1\\uddf2\\uddf4\\uddf6-\\uddfa\\uddfc\\uddfd\\uddff]|\\ud83c\\udde7\\ud83c[\\udde6\\udde7\\udde9-\\uddef\\uddf1-\\uddf4\\uddf6-\\uddf9\\uddfb\\uddfc\\uddfe\\uddff]|\\ud83c\\udde8\\ud83c[\\udde6\\udde8\\udde9\\uddeb-\\uddee\\uddf0-\\uddf5\\uddf7\\uddfa-\\uddff]|\\ud83c\\udde9\\ud83c[\\uddea\\uddec\\uddef\\uddf0\\uddf2\\uddf4\\uddff]|\\ud83c\\uddea\\ud83c[\\udde6\\udde8\\uddea\\uddec\\udded\\uddf7-\\uddfa]|\\ud83c\\uddeb\\ud83c[\\uddee-\\uddf0\\uddf2\\uddf4\\uddf7]|\\ud83c\\uddec\\ud83c[\\udde6\\udde7\\udde9-\\uddee\\uddf1-\\uddf3\\uddf5-\\uddfa\\uddfc\\uddfe]|\\ud83c\\udded\\ud83c[\\uddf0\\uddf2\\uddf3\\uddf7\\uddf9\\uddfa]|\\ud83c\\uddee\\ud83c[\\udde8-\\uddea\\uddf1-\\uddf4\\uddf6-\\uddf9]|\\ud83c\\uddef\\ud83c[\\uddea\\uddf2\\uddf4\\uddf5]|\\ud83c\\uddf0\\ud83c[\\uddea\\uddec-\\uddee\\uddf2\\uddf3\\uddf5\\uddf7\\uddfc\\uddfe\\uddff]|\\ud83c\\uddf1\\ud83c[\\udde6-\\udde8\\uddee\\uddf0\\uddf7-\\uddfb\\uddfe]|\\ud83c\\uddf2\\ud83c[\\udde6\\udde8-\\udded\\uddf0-\\uddff]|\\ud83c\\uddf3\\ud83c[\\udde6\\udde8\\uddea-\\uddec\\uddee\\uddf1\\uddf4\\uddf5\\uddf7\\uddfa\\uddff]|\\ud83c\\uddf4\\ud83c\\uddf2|\\ud83c\\uddf5\\ud83c[\\udde6\\uddea-\\udded\\uddf0-\\uddf3\\uddf7-\\uddf9\\uddfc\\uddfe]|\\ud83c\\uddf6\\ud83c\\udde6|\\ud83c\\uddf7\\ud83c[\\uddea\\uddf4\\uddf8\\uddfa\\uddfc]|\\ud83c\\uddf8\\ud83c[\\udde6-\\uddea\\uddec-\\uddf4\\uddf7-\\uddf9\\uddfb\\uddfd-\\uddff]|\\ud83c\\uddf9\\ud83c[\\udde6\\udde8\\udde9\\uddeb-\\udded\\uddef-\\uddf4\\uddf7\\uddf9\\uddfb\\uddfc\\uddff]|\\ud83c\\uddfa\\ud83c[\\udde6\\uddec\\uddf2\\uddf3\\uddf8\\uddfe\\uddff]|\\ud83c\\uddfb\\ud83c[\\udde6\\udde8\\uddea\\uddec\\uddee\\uddf3\\uddfa]|\\ud83c\\uddfc\\ud83c[\\uddeb\\uddf8]|\\ud83c\\uddfd\\ud83c\\uddf0|\\ud83c\\uddfe\\ud83c[\\uddea\\uddf9]|\\ud83c\\uddff\\ud83c[\\udde6\\uddf2\\uddfc]|\\ud83c[\\udccf\\udd8e\\udd91-\\udd9a\\udde6-\\uddff\\ude01\\ude32-\\ude36\\ude38-\\ude3a\\ude50\\ude51\\udf00-\\udf20\\udf2d-\\udf35\\udf37-\\udf7c\\udf7e-\\udf84\\udf86-\\udf93\\udfa0-\\udfc1\\udfc5\\udfc6\\udfc8\\udfc9\\udfcf-\\udfd3\\udfe0-\\udff0\\udff4\\udff8-\\udfff]|\\ud83d[\\udc00-\\udc3e\\udc40\\udc44\\udc45\\udc51-\\udc65\\udc6a\\udc6f\\udc79-\\udc7b\\udc7d-\\udc80\\udc84\\udc88-\\udc8e\\udc90\\udc92-\\udca9\\udcab-\\udcfc\\udcff-\\udd3d\\udd4b-\\udd4e\\udd50-\\udd67\\udda4\\uddfb-\\ude44\\ude48-\\ude4a\\ude80-\\udea2\\udea4-\\udeb3\\udeb7-\\udebf\\udec1-\\udec5\\uded0-\\uded2\\uded5-\\uded7\\udedd-\\udedf\\udeeb\\udeec\\udef4-\\udefc\\udfe0-\\udfeb\\udff0]|\\ud83e[\\udd0d\\udd0e\\udd10-\\udd17\\udd20-\\udd25\\udd27-\\udd2f\\udd3a\\udd3c\\udd3f-\\udd45\\udd47-\\udd76\\udd78-\\uddb4\\uddb7\\uddba\\uddbc-\\uddcc\\uddd0\\uddde-\\uddff\\ude70-\\ude74\\ude78-\\ude7c\\ude80-\\ude86\\ude90-\\udeac\\udeb0-\\udeba\\udec0-\\udec2\\uded0-\\uded9\\udee0-\\udee7]|[\\u23e9-\\u23ec\\u23f0\\u23f3\\u267e\\u26ce\\u2705\\u2728\\u274c\\u274e\\u2753-\\u2755\\u2795-\\u2797\\u27b0\\u27bf\\ue50a])|\\ufe0f/g;\nconst __esModule = exports.__esModule;\n\nexport { __esModule, exports as default };\n\n//# sourceMappingURL=regex!cjs.map", "import exports$1 from './npm:twemoji-parser@14.0.0/dist/lib/regex!cjs';\n\nvar exports = {};\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nexports.TypeName = undefined;\nexports.parse = parse;\nexports.toCodePoints = toCodePoints;\nvar _regex = exports$1;\n\nvar _regex2 = _interopRequireDefault(_regex);\n\nfunction _interopRequireDefault(obj) {\n  return obj && obj.__esModule ? obj : {\n    default: obj\n  };\n}\n\nvar TypeName = exports.TypeName = \"emoji\"; // Copyright Twitter Inc. Licensed under MIT\n// https://github.com/twitter/twemoji-parser/blob/master/LICENSE.md\n\nfunction parse(text, options) {\n  var assetType = options && options.assetType ? options.assetType : \"svg\";\n  var getTwemojiUrl = options && options.buildUrl ? options.buildUrl : function (codepoints, assetType) {\n    return assetType === \"png\" ? \"https://twemoji.maxcdn.com/v/latest/72x72/\" + codepoints + \".png\" : \"https://twemoji.maxcdn.com/v/latest/svg/\" + codepoints + \".svg\";\n  };\n  var entities = [];\n  _regex2.default.lastIndex = 0;\n\n  while (true) {\n    var result = _regex2.default.exec(text);\n\n    if (!result) {\n      break;\n    }\n\n    var emojiText = result[0];\n    var codepoints = toCodePoints(removeVS16s(emojiText)).join(\"-\");\n    entities.push({\n      url: codepoints ? getTwemojiUrl(codepoints, assetType) : \"\",\n      indices: [result.index, _regex2.default.lastIndex],\n      text: emojiText,\n      type: TypeName\n    });\n  }\n\n  return entities;\n}\n\nvar vs16RegExp = /\\uFE0F/g; // avoid using a string literal like '\\u200D' here because minifiers expand it inline\n\nvar zeroWidthJoiner = String.fromCharCode(8205);\n\nvar removeVS16s = function removeVS16s(rawEmoji) {\n  return rawEmoji.indexOf(zeroWidthJoiner) < 0 ? rawEmoji.replace(vs16RegExp, \"\") : rawEmoji;\n};\n\nfunction toCodePoints(unicodeSurrogates) {\n  var points = [];\n  var char = 0;\n  var previous = 0;\n  var i = 0;\n\n  while (i < unicodeSurrogates.length) {\n    char = unicodeSurrogates.charCodeAt(i++);\n\n    if (previous) {\n      points.push((65536 + (previous - 55296 << 10) + (char - 56320)).toString(16));\n      previous = 0;\n    } else if (char > 55296 && char <= 56319) {\n      previous = char;\n    } else {\n      points.push(char.toString(16));\n    }\n  }\n\n  return points;\n}\nconst __esModule = exports.__esModule;\nconst _TypeName = exports.TypeName,\n      _parse = exports.parse,\n      _toCodePoints = exports.toCodePoints;\n\nexport { _TypeName as TypeName, __esModule, exports as default, _parse as parse, _toCodePoints as toCodePoints };\n\n//# sourceMappingURL=npm:twemoji-parser@14.0.0!cjs.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMemo}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import twemojiParser from\"https://jspm.dev/twemoji-parser@14.0.0\";const fireSrc=\"https://cdnjs.cloudflare.com/ajax/libs/twemoji/14.0.2/svg/1f525.svg\";const baseURL=\"https://cdnjs.cloudflare.com/ajax/libs/twemoji/14.0.2/svg/\";/**\n * TWEMOJI\n *\n * Convert any emoji into a Twemoji from Twitter. Choose a preset or type in your emoji and the Twemoji will automatically appear on the canvas.\n *\n * ```jsx\n * <Twemoji search=\"\uD83C\uDF50\" />\n * ```\n *\n * @framerIntrinsicWidth 100\n * @framerIntrinsicHeight 100\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Twemoji(props){const{search,isSelection,selection,style}=props;const emoji=useMemo(()=>{if(isSelection)return selection;if(!search)return\"\u2B50\uFE0F\";return search;},[search,isSelection,selection]);const src=useMemo(()=>{const parsedTwemoji=twemojiParser.parse(emoji,{buildUrl:icon=>`${baseURL}${icon}.svg`});return parsedTwemoji[0].url;},[emoji]);return /*#__PURE__*/ _jsx(\"div\",{style:containerStyle,children:/*#__PURE__*/ _jsx(\"img\",{src:src,style:containerStyle})});}Twemoji.defaultProps={width:100,height:100,search:\"\u2B50\uFE0F\"};addPropertyControls(Twemoji,{isSelection:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"Preset\",disabledTitle:\"Search\"},selection:{type:ControlType.Enum,title:\" \",options:[\"\uD83D\uDD25\",\"\uD83D\uDC96\",\"\uD83D\uDE06\",\"\uD83D\uDC4D\",\"\uD83D\uDC4E\"],defaultValue:\"\uD83D\uDD25\",displaySegmentedControl:true,hidden:({isSelection})=>!isSelection},search:{type:ControlType.String,title:\" \",placeholder:\"Paste Emoji\u2026\",hidden:({isSelection})=>isSelection}});const containerStyle={height:\"100%\",width:\"100%\",objectFit:\"contain\",textAlign:\"center\",overflow:\"hidden\",backgroundColor:\"transparent\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Twemoji\":{\"type\":\"reactComponent\",\"name\":\"Twemoji\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"100\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"100\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Twemoji.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Confetti from\"https://framerusercontent.com/modules/AU1Ll2ZhQDnjLk4PtfJo/uBB8gvml9KSU5S02BAoi/Confetti_animation.js\";import{Twemoji}from\"https://framerusercontent.com/modules/xwmmLiR3CC4FXXYz8XsN/lYH3CKjOKcdUfcu0ZKf2/Twemoji.js\";const ConfettiFonts=getFonts(Confetti);const TwemojiFonts=getFonts(Twemoji);const cycleOrder=[\"ObsjWFQdh\",\"gjRmvV4fA\",\"PJXfuEL2b\",\"Svn4vEccZ\",\"GA5KiXQTB\",\"uW0kWUR3j\",\"b_pBvpa9B\",\"JxQLdScWv\",\"agsjlTrhu\"];const serializationHash=\"framer-UhmCu\";const variantClassNames={agsjlTrhu:\"framer-v-83z7xh\",b_pBvpa9B:\"framer-v-1leumq8\",GA5KiXQTB:\"framer-v-hjc6zu\",gjRmvV4fA:\"framer-v-14dcs8h\",JxQLdScWv:\"framer-v-dt6uyq\",ObsjWFQdh:\"framer-v-8vxz77\",PJXfuEL2b:\"framer-v-1yuvj8d\",Svn4vEccZ:\"framer-v-1c2mmfn\",uW0kWUR3j:\"framer-v-1vkarg7\"};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={\"01\":\"ObsjWFQdh\",\"02\":\"Svn4vEccZ\",\"03\":\"JxQLdScWv\",\"04\":\"gjRmvV4fA\",\"05\":\"PJXfuEL2b\",\"06\":\"GA5KiXQTB\",\"07\":\"agsjlTrhu\",\"Variant 7\":\"b_pBvpa9B\"};const getProps=({confetti,height,id,rupertLogo,width,...props})=>{return{...props,Mbq64GG2V:confetti??props.Mbq64GG2V??true,mQjnmXplY:rupertLogo??props.mQjnmXplY,variant:humanReadableVariantMap[props.variant]??props.variant??\"ObsjWFQdh\"};};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,Mbq64GG2V,mQjnmXplY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ObsjWFQdh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"gjRmvV4fA\",\"PJXfuEL2b\",\"Svn4vEccZ\",\"GA5KiXQTB\",\"uW0kWUR3j\",\"b_pBvpa9B\",\"JxQLdScWv\",\"agsjlTrhu\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"gjRmvV4fA\")return true;return false;};const isDisplayed2=value=>{if(baseVariant===\"gjRmvV4fA\")return value;return true;};const isDisplayed3=()=>{if(baseVariant===\"PJXfuEL2b\")return true;return false;};const isDisplayed4=value=>{if(baseVariant===\"PJXfuEL2b\")return value;return true;};const isDisplayed5=()=>{if(baseVariant===\"Svn4vEccZ\")return true;return false;};const isDisplayed6=value=>{if(baseVariant===\"Svn4vEccZ\")return value;return true;};const isDisplayed7=()=>{if(baseVariant===\"GA5KiXQTB\")return true;return false;};const isDisplayed8=value=>{if(baseVariant===\"GA5KiXQTB\")return value;return true;};const isDisplayed9=()=>{if([\"uW0kWUR3j\",\"agsjlTrhu\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"uW0kWUR3j\")return true;return false;};const isDisplayed11=value=>{if(baseVariant===\"uW0kWUR3j\")return value;return true;};const isDisplayed12=()=>{if([\"b_pBvpa9B\",\"JxQLdScWv\"].includes(baseVariant))return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"JxQLdScWv\")return true;return false;};const isDisplayed14=value=>{if(baseVariant===\"JxQLdScWv\")return value;return true;};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-8vxz77\",className,classNames),\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"ObsjWFQdh\",ref:refBinding,style:{...style},...addPropertyOverrides({agsjlTrhu:{\"data-framer-name\":\"07\"},b_pBvpa9B:{\"data-framer-name\":\"Variant 7\"},GA5KiXQTB:{\"data-framer-name\":\"06\"},gjRmvV4fA:{\"data-framer-name\":\"04\"},JxQLdScWv:{\"data-framer-name\":\"03\"},PJXfuEL2b:{\"data-framer-name\":\"05\"},Svn4vEccZ:{\"data-framer-name\":\"02\"},uW0kWUR3j:{\"data-framer-name\":\"07\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r79448\",\"data-border\":true,\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"qam5qyN1C\",style:{\"--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\",backgroundColor:\"rgb(119, 99, 191)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3yb2ny\",layoutDependency:layoutDependency,layoutId:\"VgohKUW9F\",children:[mQjnmXplY&&/*#__PURE__*/_jsx(SVG,{className:\"framer-14nzs2a\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"tnWcH7vro\",svg:'<svg width=\"23\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16.427 17.088a8.14 8.14 0 0 0 4.425-4.546 8.128 8.128 0 0 0 .552-2.951c0-4.49-3.636-8.131-8.122-8.131l-11.78.003h-.75v23.731h18.026c.931 0 1.772-.369 2.248-1.001.242-.321.392-.719.375-1.15-.018-.438-.204-.844-.517-1.18l-4.457-4.775Z\" fill=\"#D9D9D9\" stroke=\"#fff\" stroke-width=\"1.5\"/><path d=\"M20.652 9.59c0 .945-.178 1.848-.502 2.68a7.39 7.39 0 0 1-5.069 4.478L1.5 2.21h11.78c4.071 0 7.372 3.304 7.372 7.38Z\" fill=\"#F9895C\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".98\" d=\"M20.15 12.27a7.39 7.39 0 0 1-5.069 4.478L1.5 2.21l18.65 10.06Z\" fill=\"url(#a)\"/><path d=\"m20.335 22.376-5.256-5.627L1.5 2.213v22.231h17.276c1.494 0 2.384-1.184 1.558-2.068h.001Z\" fill=\"#FE5C5D\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".83\" d=\"M1.5 16.97v7.473l12.597-7.473H1.5Z\" fill=\"url(#b)\"/><path d=\"M1.5 2.213v14.76h11.78c.621 0 1.224-.076 1.801-.223L1.501 2.214 1.5 2.213Z\" fill=\"#F89685\"/><defs><linearGradient id=\"a\" x1=\"11.856\" y1=\"10.806\" x2=\"23.338\" y2=\"15.072\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#474747\"/><stop offset=\"1\" stop-color=\"#474747\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"7.623\" y1=\"17.713\" x2=\"6.17\" y2=\"23.848\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#474747\"/><stop offset=\"1\" stop-color=\"#474747\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1quzd7b-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nD6afNUsM-container\",nodeId:\"nD6afNUsM\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",style:{opacity:0},children:/*#__PURE__*/_jsx(Confetti,{amount:30,color:{colors:[\"rgb(97, 69, 255)\",\"rgb(43, 255, 216)\",\"rgb(0, 13, 158)\"],mode:\"Multi\",singleColor:\"rgb(32, 96, 223)\"},coverArea:360,delayInSeconds:0,explosion:\"M\",height:\"100%\",id:\"nD6afNUsM\",layoutId:\"nD6afNUsM\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),Mbq64GG2V&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m99rco-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"J3hmRXJ8O-container\",nodeId:\"J3hmRXJ8O\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",children:/*#__PURE__*/_jsx(Twemoji,{height:\"100%\",id:\"J3hmRXJ8O\",isSelection:false,layoutId:\"J3hmRXJ8O\",search:\"\uD83C\uDF89\",selection:\"\uD83D\uDD25\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o4cyzg\",layoutDependency:layoutDependency,layoutId:\"eQ7NBaZJk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"You've secured your spot on the waitlist for Rupert AI. In the meantime, feel free to spread the word\u2026 but only to those who deserve the edge. \uD83D\uDE09\"})}),className:\"framer-16g2rjx\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"coSkPolo6\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gjhbqx\",\"data-border\":true,\"data-framer-name\":\"04\",layoutDependency:layoutDependency,layoutId:\"ofqlQifVm\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(194, 156, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(119, 99, 191, 0.39)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nv35te\",layoutDependency:layoutDependency,layoutId:\"ZWlMMQWt6\",children:[isDisplayed2(mQjnmXplY)&&/*#__PURE__*/_jsx(SVG,{className:\"framer-fpep1e\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:31,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"r0vR5QcMX\",svg:'<svg width=\"26\" height=\"31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M25.896 10.118a9.95 9.95 0 0 1-2.108 6.114 9.983 9.983 0 0 1-5.424 3.534L0 .176h15.929a9.981 9.981 0 0 1 7.045 2.913 9.942 9.942 0 0 1 2.922 7.029Z\" fill=\"#FF8959\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".98\" d=\"M25.218 13.729a9.978 9.978 0 0 1-2.695 3.846 10.007 10.007 0 0 1-4.159 2.19L0 .178 25.218 13.73Z\" fill=\"url(#a)\"/><path d=\"m25.47 27.354-7.11-7.588L0 .176V30.15h23.364c2.022-.01 3.225-1.606 2.106-2.796Z\" fill=\"#FF5C5D\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".83\" d=\"M0 20.067v10.077l17.035-10.077H0Z\" fill=\"url(#b)\"/><path d=\"M0 .177V20.08h15.929a9.83 9.83 0 0 0 2.449-.3L0 .177Z\" fill=\"#FF9684\"/><defs><linearGradient id=\"a\" x1=\"14.001\" y1=\"11.756\" x2=\"29.521\" y2=\"17.537\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"117837\" y1=\"77059.9\" x2=\"117802\" y2=\"77307.3\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed2(Mbq64GG2V)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2i52ir-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vr2fvxtyj-container\",nodeId:\"vr2fvxtyj\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",children:/*#__PURE__*/_jsx(Twemoji,{height:\"100%\",id:\"vr2fvxtyj\",isSelection:false,layoutId:\"vr2fvxtyj\",search:\"\uD83C\uDF89\",selection:\"\uD83D\uDD25\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mhmisd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ijJUbcNMz-container\",nodeId:\"ijJUbcNMz\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",style:{opacity:0},children:/*#__PURE__*/_jsx(Confetti,{amount:30,color:{colors:[\"rgb(97, 69, 255)\",\"rgb(43, 255, 216)\",\"rgb(0, 13, 158)\"],mode:\"Multi\",singleColor:\"rgb(32, 96, 223)\"},coverArea:360,delayInSeconds:0,explosion:\"M\",height:\"100%\",id:\"ijJUbcNMz\",layoutId:\"ijJUbcNMz\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ctfp69\",layoutDependency:layoutDependency,layoutId:\"qvnP8dCQF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"You've secured your spot on the waitlist for Rupert AI. In the meantime, feel free to spread the word\u2026 but only to those who deserve the edge. \uD83D\uDE09\"})}),className:\"framer-qtoylc\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"jUD2PFCTS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wzxre5\",\"data-framer-name\":\"05\",layoutDependency:layoutDependency,layoutId:\"PElnLvvAh\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ei36xr\",layoutDependency:layoutDependency,layoutId:\"cgZ5YPSH_\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hgtvte\",layoutDependency:layoutDependency,layoutId:\"mF5jY8hcY\",children:[isDisplayed4(mQjnmXplY)&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1yxmp0t\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:31,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"aheIAJPT2\",svg:'<svg width=\"26\" height=\"31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M25.896 10.118a9.95 9.95 0 0 1-2.108 6.114 9.983 9.983 0 0 1-5.424 3.534L0 .176h15.929a9.981 9.981 0 0 1 7.045 2.913 9.942 9.942 0 0 1 2.922 7.029Z\" fill=\"#FF8959\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".98\" d=\"M25.218 13.729a9.978 9.978 0 0 1-2.695 3.846 10.007 10.007 0 0 1-4.159 2.19L0 .178 25.218 13.73Z\" fill=\"url(#a)\"/><path d=\"m25.47 27.354-7.11-7.588L0 .176V30.15h23.364c2.022-.01 3.225-1.606 2.106-2.796Z\" fill=\"#FF5C5D\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".83\" d=\"M0 20.067v10.077l17.035-10.077H0Z\" fill=\"url(#b)\"/><path d=\"M0 .177V20.08h15.929a9.83 9.83 0 0 0 2.449-.3L0 .177Z\" fill=\"#FF9684\"/><defs><linearGradient id=\"a\" x1=\"14.001\" y1=\"11.756\" x2=\"29.521\" y2=\"17.537\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"117837\" y1=\"77059.9\" x2=\"117802\" y2=\"77307.3\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed4(Mbq64GG2V)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1103gw1-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"R7yj_VVWb-container\",nodeId:\"R7yj_VVWb\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",children:/*#__PURE__*/_jsx(Twemoji,{height:\"100%\",id:\"R7yj_VVWb\",isSelection:false,layoutId:\"R7yj_VVWb\",search:\"\uD83C\uDF89\",selection:\"\uD83D\uDD25\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n8cpc3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sIVFKcmtO-container\",nodeId:\"sIVFKcmtO\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",style:{opacity:0},children:/*#__PURE__*/_jsx(Confetti,{amount:30,color:{colors:[\"rgb(97, 69, 255)\",\"rgb(43, 255, 216)\",\"rgb(0, 13, 158)\"],mode:\"Multi\",singleColor:\"rgb(32, 96, 223)\"},coverArea:360,delayInSeconds:0,explosion:\"M\",height:\"100%\",id:\"sIVFKcmtO\",layoutId:\"sIVFKcmtO\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17p4ppy\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"z2VAAWGGm\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.09)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(121, 101, 188)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\"},children:\"You've secured your spot on the waitlist for Rupert AI. In the meantime, feel free to spread the word\u2026 but only to those who deserve the edge. \uD83D\uDE09\"})}),className:\"framer-as6v6r\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"EU5HpBqmd\",style:{\"--extracted-r6o4lv\":\"rgb(222, 222, 222)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3xmvjc\",\"data-border\":true,\"data-framer-name\":\"02\",layoutDependency:layoutDependency,layoutId:\"O1mGAe6oi\",style:{\"--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\",backgroundColor:\"rgb(119, 99, 191)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nmtgnn\",layoutDependency:layoutDependency,layoutId:\"H_7CVwvT8\",children:[isDisplayed6(mQjnmXplY)&&/*#__PURE__*/_jsx(SVG,{className:\"framer-22hzjb\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:31,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"V7n3hje0S\",svg:'<svg width=\"26\" height=\"31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M25.896 10.118a9.95 9.95 0 0 1-2.108 6.114 9.983 9.983 0 0 1-5.424 3.534L0 .176h15.929a9.981 9.981 0 0 1 7.045 2.913 9.942 9.942 0 0 1 2.922 7.029Z\" fill=\"#FF8959\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".98\" d=\"M25.218 13.729a9.978 9.978 0 0 1-2.695 3.846 10.007 10.007 0 0 1-4.159 2.19L0 .178 25.218 13.73Z\" fill=\"url(#a)\"/><path d=\"m25.47 27.354-7.11-7.588L0 .176V30.15h23.364c2.022-.01 3.225-1.606 2.106-2.796Z\" fill=\"#FF5C5D\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".83\" d=\"M0 20.067v10.077l17.035-10.077H0Z\" fill=\"url(#b)\"/><path d=\"M0 .177V20.08h15.929a9.83 9.83 0 0 0 2.449-.3L0 .177Z\" fill=\"#FF9684\"/><defs><linearGradient id=\"a\" x1=\"14.001\" y1=\"11.756\" x2=\"29.521\" y2=\"17.537\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"117837\" y1=\"77059.9\" x2=\"117802\" y2=\"77307.3\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed6(Mbq64GG2V)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v9z29p-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"L8SIlqT_C-container\",nodeId:\"L8SIlqT_C\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",children:/*#__PURE__*/_jsx(Twemoji,{height:\"100%\",id:\"L8SIlqT_C\",isSelection:false,layoutId:\"L8SIlqT_C\",search:\"\uD83C\uDF89\",selection:\"\uD83D\uDD25\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oc3uf3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EUsG4o_7T-container\",nodeId:\"EUsG4o_7T\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",style:{opacity:0},children:/*#__PURE__*/_jsx(Confetti,{amount:30,color:{colors:[\"rgb(97, 69, 255)\",\"rgb(43, 255, 216)\",\"rgb(0, 13, 158)\"],mode:\"Multi\",singleColor:\"rgb(32, 96, 223)\"},coverArea:360,delayInSeconds:0,explosion:\"M\",height:\"100%\",id:\"EUsG4o_7T\",layoutId:\"EUsG4o_7T\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w3xms8\",layoutDependency:layoutDependency,layoutId:\"myH23Y9DE\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"You've secured your spot on the waitlist for Rupert AI. In the meantime, feel free to spread the word\u2026 but only to those who deserve the edge. \uD83D\uDE09\"})}),className:\"framer-wwhhfp\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"Nepv4bixm\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z2csyh\",\"data-framer-name\":\"06\",layoutDependency:layoutDependency,layoutId:\"X5M8C18VY\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lx2a3n\",layoutDependency:layoutDependency,layoutId:\"fMSlsApbG\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-74jn2f\",layoutDependency:layoutDependency,layoutId:\"MNKYwYoQ2\",children:[isDisplayed8(mQjnmXplY)&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1v0eqx9\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:31,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"CcShKEkgK\",svg:'<svg width=\"26\" height=\"31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M25.896 10.118a9.95 9.95 0 0 1-2.108 6.114 9.983 9.983 0 0 1-5.424 3.534L0 .176h15.929a9.981 9.981 0 0 1 7.045 2.913 9.942 9.942 0 0 1 2.922 7.029Z\" fill=\"#FF8959\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".98\" d=\"M25.218 13.729a9.978 9.978 0 0 1-2.695 3.846 10.007 10.007 0 0 1-4.159 2.19L0 .178 25.218 13.73Z\" fill=\"url(#a)\"/><path d=\"m25.47 27.354-7.11-7.588L0 .176V30.15h23.364c2.022-.01 3.225-1.606 2.106-2.796Z\" fill=\"#FF5C5D\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".83\" d=\"M0 20.067v10.077l17.035-10.077H0Z\" fill=\"url(#b)\"/><path d=\"M0 .177V20.08h15.929a9.83 9.83 0 0 0 2.449-.3L0 .177Z\" fill=\"#FF9684\"/><defs><linearGradient id=\"a\" x1=\"14.001\" y1=\"11.756\" x2=\"29.521\" y2=\"17.537\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"117837\" y1=\"77059.9\" x2=\"117802\" y2=\"77307.3\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed8(Mbq64GG2V)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1by16u8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KjKflViVy-container\",nodeId:\"KjKflViVy\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",children:/*#__PURE__*/_jsx(Twemoji,{height:\"100%\",id:\"KjKflViVy\",isSelection:false,layoutId:\"KjKflViVy\",search:\"\uD83C\uDF89\",selection:\"\uD83D\uDD25\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zw5ndp-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"a6jMAlRLP-container\",nodeId:\"a6jMAlRLP\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",style:{opacity:0},children:/*#__PURE__*/_jsx(Confetti,{amount:30,color:{colors:[\"rgb(97, 69, 255)\",\"rgb(43, 255, 216)\",\"rgb(0, 13, 158)\"],mode:\"Multi\",singleColor:\"rgb(32, 96, 223)\"},coverArea:360,delayInSeconds:0,explosion:\"M\",height:\"100%\",id:\"a6jMAlRLP\",layoutId:\"a6jMAlRLP\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bmnnp7\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Jw6rWPCkp\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(194, 156, 255, 0.3)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(119, 99, 191, 0.39)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\"},children:\"You've secured your spot on the waitlist for Rupert AI. In the meantime, feel free to spread the word\u2026 but only to those who deserve the edge. \uD83D\uDE09\"})}),className:\"framer-1frjktc\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"nlh85LiFy\",style:{\"--extracted-r6o4lv\":\"rgb(222, 222, 222)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sjg2pb\",\"data-border\":true,\"data-framer-name\":\"07\",layoutDependency:layoutDependency,layoutId:\"mKKvmmGew\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(121, 101, 188)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(47, 54, 61, 0.32)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},variants:{agsjlTrhu:{\"--border-color\":\"rgb(116, 87, 212)\",backgroundColor:\"rgba(119, 99, 191, 0.32)\"}},children:[isDisplayed10()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i17hcl\",layoutDependency:layoutDependency,layoutId:\"EXIlgogV4\",children:[isDisplayed11(mQjnmXplY)&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vfsstg\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:31,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"RmUgHGAPu\",svg:'<svg width=\"26\" height=\"31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M25.896 10.118a9.95 9.95 0 0 1-2.108 6.114 9.983 9.983 0 0 1-5.424 3.534L0 .176h15.929a9.981 9.981 0 0 1 7.045 2.913 9.942 9.942 0 0 1 2.922 7.029Z\" fill=\"#FF8959\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".98\" d=\"M25.218 13.729a9.978 9.978 0 0 1-2.695 3.846 10.007 10.007 0 0 1-4.159 2.19L0 .178 25.218 13.73Z\" fill=\"url(#a)\"/><path d=\"m25.47 27.354-7.11-7.588L0 .176V30.15h23.364c2.022-.01 3.225-1.606 2.106-2.796Z\" fill=\"#FF5C5D\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".83\" d=\"M0 20.067v10.077l17.035-10.077H0Z\" fill=\"url(#b)\"/><path d=\"M0 .177V20.08h15.929a9.83 9.83 0 0 0 2.449-.3L0 .177Z\" fill=\"#FF9684\"/><defs><linearGradient id=\"a\" x1=\"14.001\" y1=\"11.756\" x2=\"29.521\" y2=\"17.537\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"117837\" y1=\"77059.9\" x2=\"117802\" y2=\"77307.3\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed11(Mbq64GG2V)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jr0vj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"utvu2csvE-container\",nodeId:\"utvu2csvE\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",children:/*#__PURE__*/_jsx(Twemoji,{height:\"100%\",id:\"utvu2csvE\",isSelection:false,layoutId:\"utvu2csvE\",search:\"\uD83C\uDF89\",selection:\"\uD83D\uDD25\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fdrcf6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mR6H_jYJT-container\",nodeId:\"mR6H_jYJT\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",style:{opacity:0},children:/*#__PURE__*/_jsx(Confetti,{amount:30,color:{colors:[\"rgb(97, 69, 255)\",\"rgb(43, 255, 216)\",\"rgb(0, 13, 158)\"],mode:\"Multi\",singleColor:\"rgb(32, 96, 223)\"},coverArea:360,delayInSeconds:0,explosion:\"M\",height:\"100%\",id:\"mR6H_jYJT\",layoutId:\"mR6H_jYJT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ldmx2\",layoutDependency:layoutDependency,layoutId:\"dKaXAysWx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\"},children:\"You've secured your spot on the waitlist for Rupert AI. In the meantime, feel free to spread the word\u2026 but only to those who deserve the edge. \uD83D\uDE09\"})}),className:\"framer-1xj7pfp\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"Ua8HtBAMU\",style:{\"--extracted-r6o4lv\":\"rgb(222, 222, 222)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({agsjlTrhu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\"},children:\"You've secured your spot on the waitlist for Rupert AI. In the meantime, feel free to spread the word\u2026 but only to those who deserve the edge. \uD83D\uDE09\"})})},uW0kWUR3j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\"},children:\"You've secured your spot on the waitlist for Rupert AI. In the meantime, feel free to spread the word\u2026 but only to those who deserve the edge. \uD83D\uDE09\"})})}},baseVariant,gestureVariant)})})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i0q0kt\",\"data-framer-name\":\"03\",layoutDependency:layoutDependency,layoutId:\"CvWbsE0zT\",style:{backgroundColor:\"rgba(47, 54, 61, 0.32)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[isDisplayed13()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3zw7xn\",layoutDependency:layoutDependency,layoutId:\"priOkYYC8\",children:[isDisplayed14(mQjnmXplY)&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1pawyyk\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:31,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"c9r75CPq0\",svg:'<svg width=\"26\" height=\"31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M25.896 10.118a9.95 9.95 0 0 1-2.108 6.114 9.983 9.983 0 0 1-5.424 3.534L0 .176h15.929a9.981 9.981 0 0 1 7.045 2.913 9.942 9.942 0 0 1 2.922 7.029Z\" fill=\"#FF8959\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".98\" d=\"M25.218 13.729a9.978 9.978 0 0 1-2.695 3.846 10.007 10.007 0 0 1-4.159 2.19L0 .178 25.218 13.73Z\" fill=\"url(#a)\"/><path d=\"m25.47 27.354-7.11-7.588L0 .176V30.15h23.364c2.022-.01 3.225-1.606 2.106-2.796Z\" fill=\"#FF5C5D\"/><path style=\"mix-blend-mode:soft-light\" opacity=\".83\" d=\"M0 20.067v10.077l17.035-10.077H0Z\" fill=\"url(#b)\"/><path d=\"M0 .177V20.08h15.929a9.83 9.83 0 0 0 2.449-.3L0 .177Z\" fill=\"#FF9684\"/><defs><linearGradient id=\"a\" x1=\"14.001\" y1=\"11.756\" x2=\"29.521\" y2=\"17.537\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"b\" x1=\"117837\" y1=\"77059.9\" x2=\"117802\" y2=\"77307.3\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#454545\"/><stop offset=\"1\" stop-color=\"#454545\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed14(Mbq64GG2V)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o2j1yu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LFAoMqR7t-container\",nodeId:\"LFAoMqR7t\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",children:/*#__PURE__*/_jsx(Twemoji,{height:\"100%\",id:\"LFAoMqR7t\",isSelection:false,layoutId:\"LFAoMqR7t\",search:\"\uD83C\uDF89\",selection:\"\uD83D\uDD25\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mk2td6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UXjSgZ1bD-container\",nodeId:\"UXjSgZ1bD\",rendersWithMotion:true,scopeId:\"PbNHhXzAT\",style:{opacity:0},children:/*#__PURE__*/_jsx(Confetti,{amount:30,color:{colors:[\"rgb(97, 69, 255)\",\"rgb(43, 255, 216)\",\"rgb(0, 13, 158)\"],mode:\"Multi\",singleColor:\"rgb(32, 96, 223)\"},coverArea:360,delayInSeconds:0,explosion:\"M\",height:\"100%\",id:\"UXjSgZ1bD\",layoutId:\"UXjSgZ1bD\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m959ua\",layoutDependency:layoutDependency,layoutId:\"jQZxhHNm_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\"},children:\"You've secured your spot on the waitlist for Rupert AI. In the meantime, feel free to spread the word\u2026 but only to those who deserve the edge. \uD83D\uDE09\"})}),className:\"framer-k6c28w\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"DBQRbsq1R\",style:{\"--extracted-r6o4lv\":\"rgb(222, 222, 222)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({JxQLdScWv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 222, 222))\"},children:\"You've secured your spot on the waitlist for Rupert AI. In the meantime, feel free to spread the word\u2026 but only to those who deserve the edge. \uD83D\uDE09\"})})}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UhmCu.framer-17baktb, .framer-UhmCu .framer-17baktb { display: block; }\",\".framer-UhmCu.framer-8vxz77 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 467px; }\",\".framer-UhmCu .framer-r79448 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 24px 10px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UhmCu .framer-3yb2ny { flex: none; height: 38px; overflow: hidden; position: relative; width: 33px; }\",\".framer-UhmCu .framer-14nzs2a { aspect-ratio: 0.8846153846153846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); left: 0px; position: absolute; right: -1px; top: 0px; }\",\".framer-UhmCu .framer-1quzd7b-container, .framer-UhmCu .framer-1mhmisd-container, .framer-UhmCu .framer-1n8cpc3-container, .framer-UhmCu .framer-1oc3uf3-container, .framer-UhmCu .framer-zw5ndp-container, .framer-UhmCu .framer-1fdrcf6-container, .framer-UhmCu .framer-1mk2td6-container { bottom: -23px; flex: none; left: -10px; position: absolute; right: -36px; top: -6px; z-index: 1; }\",\".framer-UhmCu .framer-m99rco-container, .framer-UhmCu .framer-2i52ir-container, .framer-UhmCu .framer-1v9z29p-container, .framer-UhmCu .framer-jr0vj-container, .framer-UhmCu .framer-o2j1yu-container { flex: none; height: 35px; left: 0px; position: absolute; top: 0px; width: 35px; }\",\".framer-UhmCu .framer-1o4cyzg, .framer-UhmCu .framer-ctfp69, .framer-UhmCu .framer-w3xms8, .framer-UhmCu .framer-7ldmx2, .framer-UhmCu .framer-1m959ua { 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: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UhmCu .framer-16g2rjx, .framer-UhmCu .framer-qtoylc, .framer-UhmCu .framer-as6v6r, .framer-UhmCu .framer-wwhhfp, .framer-UhmCu .framer-1frjktc, .framer-UhmCu .framer-1xj7pfp, .framer-UhmCu .framer-k6c28w { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-UhmCu .framer-gjhbqx, .framer-UhmCu .framer-1sjg2pb, .framer-UhmCu .framer-i0q0kt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 24px 10px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UhmCu .framer-1nv35te, .framer-UhmCu .framer-nmtgnn, .framer-UhmCu .framer-i17hcl, .framer-UhmCu .framer-3zw7xn { flex: none; height: 36px; overflow: visible; position: relative; width: 30px; }\",\".framer-UhmCu .framer-fpep1e, .framer-UhmCu .framer-22hzjb { aspect-ratio: 0.8387096774193549 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-UhmCu .framer-wzxre5, .framer-UhmCu .framer-z2csyh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 24px 10px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UhmCu .framer-ei36xr, .framer-UhmCu .framer-1lx2a3n { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: min-content; }\",\".framer-UhmCu .framer-hgtvte, .framer-UhmCu .framer-74jn2f { flex: none; height: 30px; overflow: visible; position: relative; width: 26px; }\",\".framer-UhmCu .framer-1yxmp0t, .framer-UhmCu .framer-1v0eqx9 { aspect-ratio: 0.8387096774193549 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-UhmCu .framer-1103gw1-container, .framer-UhmCu .framer-1by16u8-container { flex: none; height: 28px; left: 0px; position: absolute; top: 0px; width: 28px; }\",\".framer-UhmCu .framer-17p4ppy, .framer-UhmCu .framer-bmnnp7 { 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: hidden; padding: 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UhmCu .framer-3xmvjc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 24px 10px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UhmCu .framer-vfsstg { aspect-ratio: 0.8387096774193549 / 1; bottom: -115px; flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: 0px; position: absolute; width: 29px; }\",\".framer-UhmCu .framer-1pawyyk { aspect-ratio: 0.8387096774193549 / 1; bottom: -37px; flex: none; height: var(--framer-aspect-ratio-supported, 35px); left: 0px; position: absolute; width: 29px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UhmCu.framer-8vxz77, .framer-UhmCu .framer-r79448, .framer-UhmCu .framer-1o4cyzg, .framer-UhmCu .framer-gjhbqx, .framer-UhmCu .framer-ctfp69, .framer-UhmCu .framer-wzxre5, .framer-UhmCu .framer-ei36xr, .framer-UhmCu .framer-17p4ppy, .framer-UhmCu .framer-3xmvjc, .framer-UhmCu .framer-w3xms8, .framer-UhmCu .framer-z2csyh, .framer-UhmCu .framer-1lx2a3n, .framer-UhmCu .framer-bmnnp7, .framer-UhmCu .framer-1sjg2pb, .framer-UhmCu .framer-7ldmx2, .framer-UhmCu .framer-i0q0kt, .framer-UhmCu .framer-1m959ua { gap: 0px; } .framer-UhmCu.framer-8vxz77 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UhmCu.framer-8vxz77 > :first-child { margin-top: 0px; } .framer-UhmCu.framer-8vxz77 > :last-child { margin-bottom: 0px; } .framer-UhmCu .framer-r79448 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-UhmCu .framer-r79448 > :first-child, .framer-UhmCu .framer-1o4cyzg > :first-child, .framer-UhmCu .framer-gjhbqx > :first-child, .framer-UhmCu .framer-ctfp69 > :first-child, .framer-UhmCu .framer-wzxre5 > :first-child, .framer-UhmCu .framer-ei36xr > :first-child, .framer-UhmCu .framer-17p4ppy > :first-child, .framer-UhmCu .framer-3xmvjc > :first-child, .framer-UhmCu .framer-w3xms8 > :first-child, .framer-UhmCu .framer-z2csyh > :first-child, .framer-UhmCu .framer-1lx2a3n > :first-child, .framer-UhmCu .framer-bmnnp7 > :first-child, .framer-UhmCu .framer-1sjg2pb > :first-child, .framer-UhmCu .framer-7ldmx2 > :first-child, .framer-UhmCu .framer-i0q0kt > :first-child, .framer-UhmCu .framer-1m959ua > :first-child { margin-left: 0px; } .framer-UhmCu .framer-r79448 > :last-child, .framer-UhmCu .framer-1o4cyzg > :last-child, .framer-UhmCu .framer-gjhbqx > :last-child, .framer-UhmCu .framer-ctfp69 > :last-child, .framer-UhmCu .framer-wzxre5 > :last-child, .framer-UhmCu .framer-ei36xr > :last-child, .framer-UhmCu .framer-17p4ppy > :last-child, .framer-UhmCu .framer-3xmvjc > :last-child, .framer-UhmCu .framer-w3xms8 > :last-child, .framer-UhmCu .framer-z2csyh > :last-child, .framer-UhmCu .framer-1lx2a3n > :last-child, .framer-UhmCu .framer-bmnnp7 > :last-child, .framer-UhmCu .framer-1sjg2pb > :last-child, .framer-UhmCu .framer-7ldmx2 > :last-child, .framer-UhmCu .framer-i0q0kt > :last-child, .framer-UhmCu .framer-1m959ua > :last-child { margin-right: 0px; } .framer-UhmCu .framer-1o4cyzg > *, .framer-UhmCu .framer-ctfp69 > *, .framer-UhmCu .framer-ei36xr > *, .framer-UhmCu .framer-17p4ppy > *, .framer-UhmCu .framer-w3xms8 > *, .framer-UhmCu .framer-1lx2a3n > *, .framer-UhmCu .framer-bmnnp7 > *, .framer-UhmCu .framer-7ldmx2 > *, .framer-UhmCu .framer-1m959ua > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UhmCu .framer-gjhbqx > *, .framer-UhmCu .framer-3xmvjc > *, .framer-UhmCu .framer-1sjg2pb > *, .framer-UhmCu .framer-i0q0kt > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-UhmCu .framer-wzxre5 > *, .framer-UhmCu .framer-z2csyh > * { margin: 0px; margin-left: calc(21px / 2); margin-right: calc(21px / 2); } }\",\".framer-UhmCu.framer-v-14dcs8h .framer-1nv35te, .framer-UhmCu.framer-v-1c2mmfn .framer-nmtgnn, .framer-UhmCu.framer-v-1vkarg7 .framer-i17hcl, .framer-UhmCu.framer-v-dt6uyq .framer-3zw7xn { height: 35px; width: 29px; }\",\".framer-UhmCu.framer-v-1yuvj8d .framer-hgtvte, .framer-UhmCu.framer-v-hjc6zu .framer-74jn2f { height: 29px; width: 24px; }\",\".framer-UhmCu.framer-v-1vkarg7 .framer-vfsstg, .framer-UhmCu.framer-v-dt6uyq .framer-1pawyyk { bottom: unset; left: 0px; right: 0px; top: 0px; width: unset; }\",'.framer-UhmCu[data-border=\"true\"]::after, .framer-UhmCu [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 75\n * @framerIntrinsicWidth 467\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gjRmvV4fA\":{\"layout\":[\"fixed\",\"auto\"]},\"PJXfuEL2b\":{\"layout\":[\"fixed\",\"auto\"]},\"Svn4vEccZ\":{\"layout\":[\"fixed\",\"auto\"]},\"GA5KiXQTB\":{\"layout\":[\"fixed\",\"auto\"]},\"uW0kWUR3j\":{\"layout\":[\"fixed\",\"auto\"]},\"b_pBvpa9B\":{\"layout\":[\"fixed\",\"auto\"]},\"JxQLdScWv\":{\"layout\":[\"fixed\",\"auto\"]},\"agsjlTrhu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Mbq64GG2V\":\"confetti\",\"mQjnmXplY\":\"rupertLogo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPbNHhXzAT=withCSS(Component,css,\"framer-UhmCu\");export default FramerPbNHhXzAT;FramerPbNHhXzAT.displayName=\"Waitlist Inline Notification\";FramerPbNHhXzAT.defaultProps={height:75,width:467};addPropertyControls(FramerPbNHhXzAT,{variant:{options:[\"ObsjWFQdh\",\"gjRmvV4fA\",\"PJXfuEL2b\",\"Svn4vEccZ\",\"GA5KiXQTB\",\"uW0kWUR3j\",\"b_pBvpa9B\",\"JxQLdScWv\",\"agsjlTrhu\"],optionTitles:[\"01\",\"04\",\"05\",\"02\",\"06\",\"07\",\"Variant 7\",\"03\",\"07\"],title:\"Variant\",type:ControlType.Enum},Mbq64GG2V:{defaultValue:true,title:\"Confetti\",type:ControlType.Boolean},mQjnmXplY:{defaultValue:false,title:\"Rupert Logo\",type:ControlType.Boolean}});addFonts(FramerPbNHhXzAT,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...ConfettiFonts,...TwemojiFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPbNHhXzAT\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gjRmvV4fA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PJXfuEL2b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Svn4vEccZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GA5KiXQTB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uW0kWUR3j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b_pBvpa9B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JxQLdScWv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"agsjlTrhu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"Mbq64GG2V\\\":\\\"confetti\\\",\\\"mQjnmXplY\\\":\\\"rupertLogo\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"467\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"75\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PbNHhXzAT.map", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HubSpotForm from\"https://framerusercontent.com/modules/dbtqlnbUCGkN19sY2cQY/r5LXsG8ZHdqhKOnf9N2L/Hubspot_form.js\";import WaitlistInlineNotification from\"https://framerusercontent.com/modules/1RJ5VebbRVM6NW1ijsCK/YiqSKO2utXRtH03jDzri/PbNHhXzAT.js\";const HubSpotFormFonts=getFonts(HubSpotForm);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const WaitlistInlineNotificationFonts=getFonts(WaitlistInlineNotification);const cycleOrder=[\"qfNWbvH5i\",\"dEDaCGMi2\",\"NQ8Zouz62\"];const serializationHash=\"framer-tlQ2r\";const variantClassNames={dEDaCGMi2:\"framer-v-1o4ye3a\",NQ8Zouz62:\"framer-v-zr4wk1\",qfNWbvH5i:\"framer-v-1hfjtge\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={delay:.8,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};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 humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Success Message\":\"NQ8Zouz62\",\"Variant 1\":\"qfNWbvH5i\",Mobile:\"dEDaCGMi2\"};const getProps=({distribute,height,id,width,...props})=>{return{...props,dprGW5kNk:humanReadableEnumMap[distribute]??distribute??props.dprGW5kNk??\"flex-start\",variant:humanReadableVariantMap[props.variant]??props.variant??\"qfNWbvH5i\"};};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,dprGW5kNk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qfNWbvH5i\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onSubmit1f6n51k=activeVariantCallback(async(...args)=>{setVariant(\"NQ8Zouz62\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"NQ8Zouz62\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"NQ8Zouz62\")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-1hfjtge\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qfNWbvH5i\",ref:refBinding,style:{\"--1qogkwz\":dprGW5kNk,...style},...addPropertyOverrides({dEDaCGMi2:{\"data-framer-name\":\"Mobile\"},NQ8Zouz62:{\"data-framer-name\":\"Success Message\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1jvy2x0-container\",\"data-framer-appear-id\":\"1jvy2x0\",initial:animation1,isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"QGHMUx_MH-container\",nodeId:\"QGHMUx_MH\",optimized:true,rendersWithMotion:true,scopeId:\"QqxvQiaKL\",children:/*#__PURE__*/_jsx(HubSpotForm,{backgroundColor:\"rgba(47, 54, 61, 0.74)\",borderRadius:10,buttonColor:\"rgb(117, 97, 194)\",buttonPadding:{bottom:15,left:20,right:20,top:15},buttonWidth:\"fill\",containerHeight:\"100%\",containerPadding:{bottom:4,left:4,right:4,top:4},errorColor:\"rgb(230, 64, 64)\",flexDirection:\"row\",focusColor:\"rgba(48, 221, 255, 0.43)\",font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"italic\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.2em\"},formId:\"521d36a8-733d-408e-a20f-23c2ba2f96df\",height:\"100%\",id:\"QGHMUx_MH\",inputBackground:\"rgba(47, 54, 61, 0)\",inputFontWeight:300,inputPadding:{bottom:10,left:10,right:10,top:10},inputTextColor:\"rgb(235, 249, 255)\",inputWidth:\"fill\",layoutId:\"QGHMUx_MH\",onSubmit:onSubmit1f6n51k,placeholderColor:\"rgb(161, 161, 161)\",placeholderText:\"Business email*\",portalId:\"7765956\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},textColor:\"rgba(255, 255, 255, 0.86)\",width:\"100%\",...addPropertyOverrides({dEDaCGMi2:{backgroundColor:\"rgba(47, 54, 61, 0)\",buttonPadding:{bottom:24,left:20,right:20,top:24},flexDirection:\"column\",font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"italic\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.2em\"},inputBackground:\"rgba(47, 54, 61, 0.45)\",inputPadding:{bottom:26,left:10,right:10,top:26}}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({NQ8Zouz62:{height:75,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 469px)`,y:(componentViewport?.y||0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nloona-container\",layoutDependency:layoutDependency,layoutId:\"kakUVUsu8-container\",nodeId:\"kakUVUsu8\",rendersWithMotion:true,scopeId:\"QqxvQiaKL\",children:/*#__PURE__*/_jsx(WaitlistInlineNotification,{height:\"100%\",id:\"kakUVUsu8\",layoutId:\"kakUVUsu8\",Mbq64GG2V:true,mQjnmXplY:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"gjRmvV4fA\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tlQ2r.framer-8xzxnw, .framer-tlQ2r .framer-8xzxnw { display: block; }\",\".framer-tlQ2r.framer-1hfjtge { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 75px; justify-content: var(--1qogkwz); overflow: visible; padding: 0px; position: relative; width: 454px; }\",\".framer-tlQ2r .framer-1jvy2x0-container { flex: 1 0 0px; height: 58px; max-width: 454px; position: relative; width: 1px; }\",\".framer-tlQ2r .framer-1nloona-container { flex: 1 0 0px; height: auto; max-width: 469px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tlQ2r.framer-1hfjtge { gap: 0px; } .framer-tlQ2r.framer-1hfjtge > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tlQ2r.framer-1hfjtge > :first-child { margin-left: 0px; } .framer-tlQ2r.framer-1hfjtge > :last-child { margin-right: 0px; } }\",\".framer-tlQ2r.framer-v-1o4ye3a.framer-1hfjtge { width: 390px; }\",\".framer-tlQ2r.framer-v-zr4wk1.framer-1hfjtge { align-content: flex-start; align-items: flex-start; width: 475px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 75\n * @framerIntrinsicWidth 454\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dEDaCGMi2\":{\"layout\":[\"fixed\",\"fixed\"]},\"NQ8Zouz62\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"dprGW5kNk\":\"distribute\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQqxvQiaKL=withCSS(Component,css,\"framer-tlQ2r\");export default FramerQqxvQiaKL;FramerQqxvQiaKL.displayName=\"Hubspot Custom Form\";FramerQqxvQiaKL.defaultProps={height:75,width:454};addPropertyControls(FramerQqxvQiaKL,{variant:{options:[\"qfNWbvH5i\",\"dEDaCGMi2\",\"NQ8Zouz62\"],optionTitles:[\"Variant 1\",\"Mobile\",\"Success Message\"],title:\"Variant\",type:ControlType.Enum},dprGW5kNk:{defaultValue:\"flex-start\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum}});addFonts(FramerQqxvQiaKL,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/4HH4RITHYMRL7VREMN2WV2L6LQZKPRWE/ZWMGJ4LKTJ4NT5NKCHS5WLI6CRRRO2SE/OFRM3ATAEVJKZWGG6S4JN4P6SBPN2BLD.woff2\",weight:\"500\"}]},...HubSpotFormFonts,...WaitlistInlineNotificationFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQqxvQiaKL\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"75\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"dprGW5kNk\\\":\\\"distribute\\\"}\",\"framerIntrinsicWidth\":\"454\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dEDaCGMi2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NQ8Zouz62\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useState,useRef}from\"react\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function VideoComponent(props){const[videoSrc,setVideoSrc]=useState(\"\");const videoRef=useRef(null);useEffect(()=>{const isApple=/Mac|iPhone|iPad|iPod/i.test(navigator.userAgent);const movSource=props.movUrl||props.movFile;const webmSource=props.webmUrl||props.webmFile;if(props.forceAppleCheck){setVideoSrc(isApple?movSource:webmSource);}else{setVideoSrc(webmSource||movSource);}},[props.movUrl,props.movFile,props.webmUrl,props.webmFile,props.forceAppleCheck]);useEffect(()=>{const videoElement=videoRef.current;if(!videoElement)return;const handleTimeUpdate=()=>{if(props.maxDuration>0&&videoElement.currentTime>=props.maxDuration){videoElement.currentTime=0// Restart the video\n;videoElement.play();}};videoElement.addEventListener(\"timeupdate\",handleTimeUpdate);return()=>{videoElement.removeEventListener(\"timeupdate\",handleTimeUpdate);};},[props.maxDuration]);return /*#__PURE__*/_jsx(\"video\",{ref:videoRef,style:{...props.style},src:videoSrc,autoPlay:props.autoPlay,loop:props.loop,muted:props.muted,controls:props.controls,playsInline:true});}VideoComponent.displayName=\"Video Component\";addPropertyControls(VideoComponent,{webmFile:{type:ControlType.File,allowedFileTypes:[\".webm\"],title:\"WebM File\"},webmUrl:{type:ControlType.String,title:\"WebM URL\"},movFile:{type:ControlType.File,allowedFileTypes:[\".mov\"],title:\"MOV File\"},movUrl:{type:ControlType.String,title:\"MOV URL\"},forceAppleCheck:{type:ControlType.Boolean,defaultValue:true,title:\"Force Apple Check\"},autoPlay:{type:ControlType.Boolean,defaultValue:true,title:\"Autoplay\"},loop:{type:ControlType.Boolean,defaultValue:true,title:\"Loop\"},muted:{type:ControlType.Boolean,defaultValue:true,title:\"Muted\"},controls:{type:ControlType.Boolean,defaultValue:true,title:\"Show Controls\"},maxDuration:{type:ControlType.Number,title:\"Max Duration (sec)\",min:0,step:1,defaultValue:0,displayStepper:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"VideoComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Custom_Video_Component.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ChangingText from\"#framer/local/canvasComponent/B_jXsSCoi/B_jXsSCoi.js\";import Footer from\"#framer/local/canvasComponent/gWCowD53F/gWCowD53F.js\";import Navbar from\"#framer/local/canvasComponent/jcQOrFYDT/jcQOrFYDT.js\";import HubspotCustomForm from\"#framer/local/canvasComponent/QqxvQiaKL/QqxvQiaKL.js\";import VideoComponent from\"#framer/local/codeFile/I7qhyLf/Custom_Video_Component.js\";import metadataProvider from\"#framer/local/webPageMetadata/udlV2DjFT/udlV2DjFT.js\";const MotionDivWithFX=withFX(motion.div);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ChangingTextFonts=getFonts(ChangingText);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const HubspotCustomFormFonts=getFonts(HubspotCustomForm);const VideoComponentFonts=getFonts(VideoComponent);const FooterFonts=getFonts(Footer);const NavbarFonts=getFonts(Navbar);const ContainerWithFX=withFX(Container);const breakpoints={bqN2G_MwE:\"(min-width: 1800px)\",gZgQGKG9w:\"(min-width: 1025px) and (max-width: 1799px)\",HoT1gLxZ1:\"(min-width: 490px) and (max-width: 767px)\",hwanoSY5G:\"(min-width: 768px) and (max-width: 1024px)\",zWLxZZFDx:\"(max-width: 489px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Sw4Ae\";const variantClassNames={bqN2G_MwE:\"framer-v-6xja6j\",gZgQGKG9w:\"framer-v-1074ag1\",HoT1gLxZ1:\"framer-v-8yu80j\",hwanoSY5G:\"framer-v-1i2mp52\",zWLxZZFDx:\"framer-v-12ng4s0\"};const transition1={delay:1.2,duration:1.2,ease:[.44,0,.56,1],type:\"tween\"};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:0};const transition2={delay:0,duration:2.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:.7,rotate:10,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={delay:0,duration:.9,ease:[.44,0,.56,1],type:\"tween\"};const transition5={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const transition6={delay:0,duration:1.2,ease:[.44,0,.56,1],type:\"tween\"};const transition7={delay:0,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:.7,rotate:20,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:0,y:0};const transition8={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:.4,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition9={delay:0,duration:4,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:2,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation7={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:0,y:0};const animation8={opacity:.6,rotate:8,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const animation9={opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:.2,skewX:0,skewY:0,x:0,y:0};const animation10={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition10={bounce:0,delay:.05,duration:1,type:\"spring\"};const textEffect={effect:animation10,startDelay:1,tokenization:\"character\",transition:transition10,trigger:\"onMount\",type:\"appear\"};const transition11={delay:.6,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition12={damping:60,delay:.7,mass:1,stiffness:200,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"gZgQGKG9w\",\"Phone - Heading anim\":\"zWLxZZFDx\",\"Phone Alt\":\"HoT1gLxZ1\",Desktop:\"bqN2G_MwE\",Tablet:\"hwanoSY5G\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bqN2G_MwE\"};};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 sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"hwanoSY5G\",\"zWLxZZFDx\",\"HoT1gLxZ1\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"hwanoSY5G\",\"zWLxZZFDx\",\"HoT1gLxZ1\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"bqN2G_MwE\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-6xja6j\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZgQGKG9w:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:819.5324675324675,intrinsicWidth:516.987012987013,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:986,pixelWidth:622,sizes:\"389.16px\",src:\"https://framerusercontent.com/images/GxZwJaf38248qxuFwUanr1rKtyQ.svg\",srcSet:\"https://framerusercontent.com/images/GxZwJaf38248qxuFwUanr1rKtyQ.svg 622w\"}},HoT1gLxZ1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:819.5324675324675,intrinsicWidth:516.987012987013,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:986,pixelWidth:622,sizes:\"208.84px\",src:\"https://framerusercontent.com/images/GxZwJaf38248qxuFwUanr1rKtyQ.svg\",srcSet:\"https://framerusercontent.com/images/GxZwJaf38248qxuFwUanr1rKtyQ.svg 622w\"}},hwanoSY5G:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:819.5324675324675,intrinsicWidth:516.987012987013,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:986,pixelWidth:622,sizes:\"347.58px\",src:\"https://framerusercontent.com/images/GxZwJaf38248qxuFwUanr1rKtyQ.svg\",srcSet:\"https://framerusercontent.com/images/GxZwJaf38248qxuFwUanr1rKtyQ.svg 622w\"}},zWLxZZFDx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:819.5324675324675,intrinsicWidth:516.987012987013,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:986,pixelWidth:622,sizes:\"208.84px\",src:\"https://framerusercontent.com/images/GxZwJaf38248qxuFwUanr1rKtyQ.svg\",srcSet:\"https://framerusercontent.com/images/GxZwJaf38248qxuFwUanr1rKtyQ.svg 622w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:819.5324675324675,intrinsicWidth:516.987012987013,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:986,pixelWidth:622,sizes:\"517px\",src:\"https://framerusercontent.com/images/GxZwJaf38248qxuFwUanr1rKtyQ.svg\",srcSet:\"https://framerusercontent.com/images/GxZwJaf38248qxuFwUanr1rKtyQ.svg 622w\"},className:\"framer-1hebrp3\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-116gpz3\",\"data-framer-name\":\"Body\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9eyah\",\"data-framer-name\":\"Body Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1czpy4w\",\"data-framer-name\":\"Hero Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mqjlbg\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ykhwyq\",\"data-framer-appear-id\":\"ykhwyq\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:.2,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-188pkfu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15of1z9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 29\"><path d=\"M 22.683 16.972 C 16.546 16.373 16.034 16.41 15.008 17.522 C 14.479 18.095 14.122 18.92 12.58 23.132 C 11.584 25.847 10.746 28.185 10.715 28.326 C 10.683 28.468 10.63 28.54 10.598 28.487 C 10.562 28.43 10.768 25.995 11.053 23.067 C 11.462 18.853 11.523 17.557 11.345 16.836 C 10.962 15.278 10.575 15.05 4.673 12.898 C 1.142 11.61 -0.32 11.01 0.058 11.003 C 0.362 10.996 2.754 11.206 5.374 11.466 C 7.993 11.728 10.449 11.886 10.831 11.821 C 11.751 11.661 12.661 11.1 13.039 10.457 C 13.207 10.171 14.155 7.718 15.145 5.007 C 16.135 2.295 16.991 0.047 17.048 0.011 C 17.105 -0.024 17.133 0.031 17.109 0.136 C 16.951 0.836 16.088 10.763 16.148 11.196 C 16.253 11.95 16.811 12.82 17.521 13.336 C 17.853 13.576 20.15 14.502 22.627 15.391 C 25.104 16.281 27.354 17.12 27.628 17.256 C 27.967 17.424 26.382 17.333 22.683 16.972 Z M 25.926 8.585 C 24.354 8.428 23.976 8.638 23.549 9.905 C 23.361 10.464 23.155 10.871 23.094 10.81 C 23.032 10.748 23.04 10.218 23.112 9.63 C 23.259 8.41 23.052 8.043 22.072 7.786 C 21.676 7.678 21.288 7.538 20.914 7.369 C 20.481 7.16 20.598 7.142 21.638 7.256 C 23.268 7.434 23.498 7.314 23.919 6.069 C 24.109 5.507 24.331 5.025 24.413 4.997 C 24.494 4.967 24.5 5.463 24.422 6.095 C 24.346 6.727 24.347 7.342 24.422 7.463 C 24.499 7.583 25.132 7.911 25.832 8.192 L 27.102 8.702 Z M 2.986 21.995 C 2.331 21.87 2.073 22.01 1.846 22.608 L 1.645 23.135 L 1.635 22.51 C 1.627 22.05 1.507 21.829 1.173 21.672 C 0.433 21.325 0.359 21.252 0.843 21.342 C 1.461 21.458 1.703 21.342 2.079 20.751 L 2.397 20.25 L 2.276 20.84 C 2.176 21.329 2.24 21.467 2.631 21.653 C 3.395 22.013 3.472 22.086 2.986 21.995 Z\" fill=\"rgba(255,255,255,0.92)\"></path></svg>',svgContentId:10951695506,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9l0w32\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-789zqz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12qt9bi\",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.172 6.751 C 2.912 5.869 3.51 5.135 3.498 5.119 C 3.489 5.104 3.121 5.119 2.686 5.153 C 2.251 5.187 1.886 5.203 1.875 5.188 C 1.865 5.173 2.212 5.071 2.649 4.963 C 3.086 4.854 3.437 4.751 3.429 4.733 C 3.425 4.715 2.637 4.219 1.686 3.63 C 0.734 3.04 -0.024 2.554 0.001 2.55 C 0.023 2.546 0.891 2.883 1.924 3.301 C 2.956 3.72 3.804 4.044 3.808 4.022 C 3.811 4 3.69 3.68 3.538 3.31 C 3.386 2.94 3.242 2.573 3.218 2.494 C 3.168 2.334 3.222 2.417 3.768 3.299 C 4.086 3.816 4.181 3.919 4.202 3.772 C 4.237 3.532 5.094 0.085 5.142 0.002 C 5.172 -0.053 5.132 0.814 5.053 1.929 C 4.973 3.044 4.926 3.959 4.948 3.963 C 4.971 3.967 5.284 3.72 5.645 3.416 C 6.005 3.111 6.299 2.874 6.296 2.89 C 6.294 2.905 6.059 3.196 5.774 3.536 C 5.489 3.876 5.24 4.181 5.22 4.216 C 5.198 4.251 6.036 4.216 7.208 4.13 C 8.321 4.049 9.258 3.989 9.291 3.997 C 9.36 4.013 9.435 3.993 7.161 4.562 C 6.562 4.709 5.966 4.862 5.371 5.02 C 5.32 5.05 5.468 5.156 6.117 5.547 C 6.459 5.754 6.757 5.944 6.779 5.97 C 6.802 5.995 6.45 5.868 5.999 5.688 C 5.549 5.508 5.171 5.368 5.159 5.375 C 5.142 5.388 6.119 7.824 6.641 9.073 C 6.688 9.186 6.716 9.277 6.703 9.275 C 6.689 9.273 6.18 8.472 5.569 7.495 L 4.46 5.719 L 4.388 5.932 C 4.348 6.049 4.251 6.428 4.174 6.774 C 4.009 7.502 3.961 7.429 4.035 6.563 C 4.12 5.567 4.157 5.584 3.37 6.249 C 1.55 7.783 0.86 8.358 0.843 8.357 C 0.834 8.355 1.431 7.632 2.172 6.751 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9510682308,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1klah8d\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h7up2r\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 7\"><path d=\"M 5.8 3.898 C 5.035 3.738 4.405 3.615 4.399 3.628 C 4.394 3.638 4.519 3.853 4.679 4.103 C 4.839 4.353 4.965 4.566 4.96 4.577 C 4.956 4.588 4.783 4.412 4.577 4.185 C 4.372 3.959 4.197 3.782 4.19 3.792 C 4.18 3.802 4.136 4.432 4.088 5.19 C 4.04 5.948 3.992 6.558 3.982 6.544 C 3.972 6.531 3.896 5.904 3.815 5.152 C 3.735 4.4 3.657 3.788 3.643 3.793 C 3.523 3.917 3.41 4.048 3.303 4.183 C 3.13 4.393 2.957 4.597 2.918 4.636 C 2.838 4.717 2.869 4.658 3.223 4.049 C 3.431 3.693 3.463 3.603 3.367 3.639 C 3.213 3.695 0.874 4.285 0.809 4.284 C 0.764 4.283 1.298 4.028 1.991 3.719 C 2.684 3.409 3.247 3.144 3.242 3.129 C 3.238 3.115 2.989 3.007 2.692 2.889 C 2.514 2.823 2.339 2.749 2.168 2.667 C 2.177 2.663 2.428 2.711 2.722 2.772 C 3.016 2.834 3.279 2.885 3.306 2.886 C 3.333 2.887 3.045 2.397 2.618 1.724 C 2.362 1.327 2.113 0.925 1.87 0.52 C 1.857 0.473 1.822 0.434 2.892 1.614 C 3.346 2.115 3.728 2.531 3.739 2.538 C 3.775 2.558 3.789 2.436 3.816 1.923 C 3.829 1.651 3.847 1.412 3.856 1.391 C 3.866 1.37 3.901 1.62 3.938 1.947 C 3.974 2.275 4.011 2.547 4.02 2.551 C 4.033 2.557 5.178 1.191 5.758 0.479 C 5.811 0.414 5.857 0.369 5.859 0.377 C 5.862 0.385 5.546 0.947 5.157 1.626 L 4.45 2.859 L 4.6 2.834 C 4.793 2.794 4.984 2.746 5.173 2.692 C 5.663 2.558 5.633 2.61 5.091 2.842 C 4.468 3.111 4.466 3.083 5.118 3.342 C 6.618 3.939 7.185 4.167 7.189 4.178 C 6.725 4.092 6.262 3.998 5.801 3.898 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:12052030051,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1arw36\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6qjkuy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 206 42\"><path d=\"M 203.473 5.515 C 202.172 5.797 201.107 6.046 201.107 6.068 C 201.106 6.09 201.451 6.335 201.873 6.612 C 202.295 6.889 202.64 7.132 202.64 7.154 C 202.639 7.176 202.249 7.021 201.772 6.812 C 201.296 6.602 200.902 6.448 200.896 6.47 C 200.887 6.491 201.257 7.5 201.71 8.713 C 202.164 9.924 202.513 10.905 202.487 10.892 C 202.46 10.878 201.91 9.957 201.261 8.844 C 200.612 7.731 200.066 6.834 200.048 6.852 C 200.03 6.87 199.914 7.249 199.791 7.694 C 199.668 8.14 199.54 8.578 199.507 8.667 C 199.439 8.847 199.446 8.733 199.574 7.542 C 199.648 6.844 199.635 6.682 199.511 6.802 C 199.31 6.999 196.087 9.542 195.985 9.585 C 195.917 9.613 196.566 8.848 197.428 7.885 C 198.29 6.922 198.981 6.118 198.963 6.1 C 198.945 6.08 198.485 6.084 197.939 6.108 C 197.394 6.131 196.958 6.139 196.972 6.127 C 196.985 6.115 197.406 6.015 197.906 5.906 C 198.406 5.797 198.851 5.694 198.893 5.676 C 198.938 5.658 198.147 5.099 197.015 4.348 C 195.94 3.635 195.041 3.028 195.016 2.997 C 194.965 2.933 194.882 2.898 197.365 3.987 C 198.42 4.45 199.301 4.831 199.324 4.833 C 199.393 4.842 199.333 4.641 199.015 3.824 C 198.849 3.393 198.71 3.008 198.708 2.969 C 198.706 2.931 198.937 3.295 199.222 3.779 C 199.506 4.262 199.752 4.658 199.769 4.659 C 199.791 4.659 200.623 1.741 201.03 0.23 C 201.066 0.093 201.106 -0.01 201.116 0.001 C 201.125 0.012 201.027 1.106 200.893 2.431 L 200.651 4.839 L 200.868 4.695 C 200.987 4.616 201.343 4.338 201.659 4.078 C 202.325 3.528 202.318 3.628 201.637 4.368 C 200.855 5.218 200.833 5.176 202.023 5.126 C 204.771 5.009 205.81 4.971 205.824 4.986 C 205.833 4.994 204.774 5.233 203.473 5.515 Z M 1.682 37.854 C 2.443 37.594 3.065 37.37 3.064 37.357 C 3.064 37.344 2.839 37.221 2.566 37.084 C 2.293 36.947 2.069 36.825 2.068 36.812 C 2.068 36.799 2.312 36.864 2.613 36.957 C 2.913 37.05 3.161 37.115 3.163 37.101 C 3.165 37.088 2.874 36.507 2.518 35.811 C 2.161 35.116 1.883 34.551 1.899 34.557 C 1.915 34.564 2.311 35.078 2.779 35.701 C 3.245 36.324 3.635 36.824 3.645 36.813 C 3.685 36.64 3.717 36.465 3.741 36.289 C 3.783 36.013 3.83 35.741 3.844 35.685 C 3.872 35.572 3.876 35.641 3.882 36.365 C 3.886 36.79 3.907 36.886 3.972 36.805 C 4.078 36.673 5.836 34.921 5.895 34.889 C 5.933 34.867 5.597 35.372 5.147 36.01 C 4.696 36.648 4.337 37.179 4.349 37.189 C 4.362 37.199 4.638 37.165 4.964 37.113 C 5.289 37.061 5.55 37.025 5.543 37.034 C 5.363 37.106 5.181 37.171 4.997 37.231 C 4.804 37.296 4.611 37.365 4.421 37.438 C 4.396 37.452 4.909 37.733 5.641 38.105 C 6.076 38.321 6.508 38.545 6.935 38.777 C 6.97 38.812 7.023 38.827 5.456 38.346 C 5.046 38.217 4.634 38.093 4.221 37.974 C 4.179 37.974 4.231 38.09 4.476 38.559 C 4.606 38.806 4.716 39.027 4.72 39.05 C 4.723 39.074 4.56 38.871 4.356 38.601 C 4.234 38.431 4.104 38.267 3.966 38.11 C 3.95 38.111 3.656 39.921 3.517 40.857 C 3.505 40.942 3.489 41.006 3.481 41 C 3.462 40.509 3.451 40.017 3.446 39.526 L 3.424 38.063 L 3.304 38.165 C 3.238 38.22 3.044 38.412 2.872 38.591 C 2.51 38.967 2.508 38.906 2.866 38.415 C 3.276 37.85 3.292 37.873 2.581 37.987 C 0.939 38.248 0.318 38.343 0.309 38.336 C 0.764 38.168 1.222 38.007 1.682 37.854 Z\" fill=\"rgba(255,255,255,0.57)\"></path></svg>',svgContentId:9776375305,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vt0woc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12r6paf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><g transform=\"translate(1 0.001)\" id=\"ss9353829728_1\"><path d=\"M 7.724 7.99 C 6.677 7.23 5.807 6.62 5.791 6.636 C 5.775 6.65 5.832 7.074 5.917 7.576 C 6.001 8.079 6.058 8.501 6.043 8.516 C 6.026 8.53 5.879 8.136 5.712 7.641 C 5.546 7.146 5.394 6.749 5.375 6.761 C 5.356 6.77 4.898 7.741 4.355 8.915 C 3.812 10.089 3.362 11.027 3.354 10.999 C 3.349 10.971 3.623 9.926 3.97 8.676 C 4.316 7.426 4.58 6.403 4.555 6.402 C 4.531 6.4 4.193 6.579 3.804 6.798 C 3.415 7.018 3.028 7.228 2.944 7.264 C 2.775 7.34 2.858 7.266 3.767 6.532 C 4.299 6.102 4.402 5.98 4.238 5.973 C 3.971 5.961 0.099 5.359 0.003 5.314 C -0.061 5.284 0.894 5.23 2.125 5.194 C 3.357 5.159 4.365 5.109 4.367 5.082 C 4.368 5.056 4.064 4.72 3.691 4.336 C 3.317 3.951 3.027 3.637 3.044 3.638 C 3.06 3.639 3.406 3.879 3.809 4.171 C 4.212 4.464 4.574 4.718 4.614 4.737 C 4.656 4.757 4.526 3.787 4.305 2.435 C 4.095 1.151 3.927 0.067 3.932 0.029 C 3.943 -0.053 3.913 -0.139 4.783 2.441 C 5.153 3.538 5.467 4.45 5.48 4.469 C 5.519 4.525 5.618 4.341 5.977 3.541 C 6.167 3.119 6.342 2.751 6.368 2.722 C 6.392 2.694 6.292 3.116 6.144 3.661 C 5.995 4.206 5.882 4.661 5.892 4.674 C 5.909 4.693 8.472 3.276 9.785 2.526 C 9.904 2.458 10.001 2.416 10 2.431 C 9.999 2.446 9.176 3.131 8.172 3.953 L 6.345 5.448 L 6.586 5.508 C 6.719 5.54 7.145 5.609 7.532 5.66 C 8.349 5.768 8.274 5.832 7.316 5.845 C 6.215 5.86 6.23 5.815 7.044 6.655 C 8.923 8.593 9.63 9.33 9.629 9.35 C 9.629 9.361 8.771 8.75 7.724 7.99 Z\" fill=\"rgba(255,255,255,0.57)\"></path></g></svg>',svgContentId:9353829728,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o0tdx9\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jrun5k\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6 6\"><path d=\"M 2.66 4.092 C 2.522 3.472 2.399 2.965 2.388 2.965 C 2.295 3.082 2.209 3.205 2.132 3.333 C 2.055 3.461 1.969 3.584 1.876 3.7 C 1.866 3.7 1.938 3.513 2.036 3.285 C 2.134 3.057 2.206 2.869 2.196 2.866 C 2.186 2.863 1.706 3.042 1.129 3.263 C 0.552 3.483 0.086 3.653 0.092 3.641 C 0.096 3.629 0.536 3.361 1.064 3.048 C 1.594 2.735 2.019 2.471 2.011 2.463 C 1.879 2.416 1.744 2.376 1.608 2.343 C 1.452 2.302 1.297 2.258 1.143 2.211 C 1.056 2.179 1.111 2.182 1.68 2.239 C 2.013 2.272 2.09 2.265 2.032 2.207 C 1.574 1.658 1.128 1.1 0.692 0.534 C 0.679 0.501 1.046 0.809 1.509 1.217 C 1.971 1.624 2.357 1.951 2.366 1.943 C 2.375 1.934 2.371 1.714 2.357 1.454 C 2.346 1.301 2.342 1.147 2.344 0.993 C 2.348 0.998 2.398 1.199 2.452 1.438 C 2.506 1.676 2.557 1.888 2.565 1.908 C 2.575 1.928 2.839 1.55 3.193 1.008 C 3.529 0.492 3.816 0.06 3.83 0.048 C 3.862 0.024 3.877 -0.016 3.366 1.172 C 3.23 1.483 3.098 1.796 2.969 2.11 C 2.965 2.143 3.06 2.113 3.449 1.96 C 3.655 1.879 3.838 1.811 3.856 1.81 C 3.874 1.809 3.702 1.92 3.472 2.058 C 3.329 2.139 3.189 2.227 3.054 2.322 C 3.054 2.334 4.449 2.719 5.171 2.908 C 5.237 2.925 5.286 2.944 5.281 2.948 C 5.277 2.953 4.754 2.909 4.121 2.851 L 2.971 2.744 L 3.041 2.847 C 3.076 2.903 3.213 3.072 3.338 3.222 C 3.602 3.538 3.554 3.535 3.199 3.212 C 2.791 2.842 2.81 2.832 2.839 3.399 C 2.904 4.709 2.926 5.206 2.919 5.212 C 2.915 5.216 2.8 4.712 2.661 4.092 Z\" fill=\"rgba(255,255,255,0.57)\"></path></svg>',svgContentId:10699620644,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition7,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oxzo3p\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7d289p\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15 15\"><path d=\"M 6.286 0.904 C 6.389 1.4 7.984 6.704 8.043 6.741 C 8.09 6.771 9.341 6.758 10.822 6.712 C 13.736 6.624 14.11 6.618 14.078 6.662 C 14.064 6.678 12.776 7.058 11.211 7.506 C 9.645 7.954 8.337 8.354 8.304 8.394 C 8.236 8.475 8.237 8.679 8.326 12.061 C 8.362 13.368 8.377 14.452 8.362 14.471 C 8.349 14.491 7.962 13.199 7.504 11.599 C 7.047 9.999 6.644 8.671 6.609 8.647 C 6.573 8.622 6.167 8.617 5.707 8.634 C 4.065 8.695 0.494 8.772 0.514 8.746 C 0.523 8.733 1.775 8.363 3.293 7.928 C 4.81 7.494 6.13 7.108 6.225 7.073 C 6.387 7.012 6.392 6.813 6.313 3.979 C 6.242 1.444 6.235 0.652 6.286 0.904 Z\" fill=\"rgba(255,255,255,0.57)\"></path></svg>',svgContentId:10309234227,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lr5n01\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ibf5lu\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 10\"><path d=\"M 8.218 5.046 C 7.104 5.413 6.194 5.728 6.195 5.748 C 6.197 5.767 6.522 5.95 6.917 6.154 C 7.312 6.358 7.636 6.54 7.638 6.559 C 7.639 6.578 7.283 6.479 6.847 6.339 C 6.41 6.199 6.051 6.099 6.048 6.119 C 6.044 6.139 6.459 6.989 6.967 8.009 C 7.475 9.029 7.87 9.856 7.847 9.847 C 7.824 9.837 7.255 9.081 6.585 8.166 C 5.915 7.25 5.354 6.515 5.34 6.531 C 5.326 6.548 5.258 6.891 5.192 7.293 C 5.125 7.695 5.053 8.09 5.032 8.171 C 4.987 8.335 4.985 8.234 4.987 7.179 C 4.989 6.561 4.96 6.42 4.865 6.537 C 4.707 6.727 2.116 9.251 2.031 9.297 C 1.974 9.328 2.473 8.599 3.14 7.677 C 3.806 6.753 4.338 5.987 4.321 5.971 C 4.303 5.957 3.9 6.002 3.424 6.072 C 2.949 6.142 2.568 6.19 2.579 6.178 C 2.588 6.166 2.948 6.04 3.377 5.898 C 3.805 5.758 4.185 5.626 4.22 5.608 C 4.256 5.588 3.514 5.169 2.454 4.616 C 1.447 4.09 0.603 3.639 0.579 3.615 C 0.528 3.564 0.452 3.541 2.727 4.267 C 3.693 4.577 4.501 4.829 4.521 4.829 C 4.582 4.831 4.512 4.66 4.158 3.974 C 3.973 3.611 3.816 3.287 3.811 3.253 C 3.807 3.219 4.041 3.517 4.335 3.914 C 4.628 4.312 4.88 4.636 4.895 4.635 C 4.917 4.634 5.376 2.001 5.594 0.641 C 5.612 0.517 5.639 0.423 5.649 0.432 C 5.658 0.441 5.671 1.408 5.676 2.58 L 5.685 4.713 L 5.862 4.567 C 5.959 4.487 6.246 4.211 6.498 3.953 C 7.032 3.411 7.034 3.5 6.503 4.21 C 5.896 5.026 5.873 4.992 6.911 4.839 C 9.307 4.485 10.215 4.356 10.228 4.368 C 10.237 4.374 9.332 4.68 8.218 5.046 Z\" fill=\"rgba(255, 255, 255, 0.5)\"></path></svg>',svgContentId:12590365366,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:.2,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19zi098\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-52xy7y\",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 12.252 10.625 C 10.631 9.787 9.288 9.119 9.268 9.142 C 9.25 9.164 9.398 9.725 9.603 10.386 C 9.807 11.048 9.958 11.606 9.939 11.629 C 9.921 11.651 9.642 11.147 9.322 10.509 C 9.002 9.872 8.719 9.365 8.695 9.383 C 8.668 9.4 8.175 10.787 7.595 12.463 C 7.016 14.139 6.529 15.48 6.513 15.443 C 6.499 15.408 6.719 13.952 7.006 12.209 C 7.293 10.467 7.499 9.043 7.465 9.046 C 7.429 9.048 6.976 9.347 6.457 9.711 C 5.938 10.075 5.421 10.425 5.308 10.49 C 5.078 10.622 5.185 10.507 6.361 9.36 C 7.049 8.688 7.176 8.505 6.941 8.524 C 6.557 8.556 0.93 8.427 0.785 8.384 C 0.689 8.354 2.043 8.113 3.795 7.848 C 5.547 7.584 6.978 7.338 6.976 7.303 C 6.974 7.267 6.484 6.869 5.887 6.417 C 5.29 5.965 4.823 5.594 4.848 5.592 C 4.871 5.591 5.404 5.852 6.028 6.175 C 6.652 6.497 7.211 6.776 7.271 6.795 C 7.334 6.815 6.987 5.532 6.448 3.751 C 5.935 2.059 5.516 0.631 5.517 0.578 C 5.518 0.465 5.46 0.355 7.132 3.675 C 7.842 5.085 8.442 6.258 8.462 6.281 C 8.528 6.35 8.639 6.084 9.019 4.945 C 9.219 4.344 9.409 3.817 9.441 3.774 C 9.472 3.731 9.401 4.317 9.277 5.077 C 9.155 5.837 9.069 6.47 9.087 6.485 C 9.113 6.507 12.537 4.149 14.287 2.908 C 14.445 2.795 14.576 2.721 14.578 2.742 C 14.579 2.762 13.518 3.83 12.22 5.113 L 9.86 7.446 L 10.216 7.484 C 10.411 7.504 11.03 7.522 11.591 7.522 C 12.775 7.524 12.679 7.623 11.313 7.81 C 9.744 8.024 9.758 7.961 11.059 8.947 C 14.064 11.225 15.196 12.092 15.197 12.119 C 15.198 12.134 13.873 11.463 12.252 10.625 Z\" fill=\"rgba(255, 255, 255, 0.5)\"></path></svg>',svgContentId:9382652265,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoT1gLxZ1:{__targetOpacity:.2},zWLxZZFDx:{__targetOpacity:.2}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition8,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xczw1d\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oziihl\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 12.735 4.872 C 11.873 7.018 11.193 8.792 11.224 8.815 C 11.255 8.837 11.944 8.58 12.754 8.243 C 13.563 7.906 14.25 7.648 14.28 7.669 C 14.311 7.691 13.708 8.102 12.942 8.583 C 12.176 9.063 11.571 9.48 11.597 9.509 C 11.619 9.539 13.431 9.995 15.615 10.525 C 17.799 11.055 19.55 11.508 19.505 11.532 C 19.461 11.555 17.599 11.452 15.365 11.3 C 13.133 11.147 11.312 11.058 11.319 11.102 C 11.328 11.145 11.759 11.682 12.279 12.292 C 12.663 12.736 13.037 13.189 13.401 13.649 C 13.595 13.923 13.437 13.801 11.848 12.457 C 10.918 11.669 10.671 11.531 10.725 11.826 C 10.81 12.306 11.325 19.421 11.287 19.609 C 11.26 19.734 10.795 18.055 10.25 15.876 C 9.706 13.697 9.223 11.921 9.179 11.928 C 9.134 11.935 8.691 12.601 8.192 13.408 C 7.694 14.216 7.282 14.85 7.277 14.818 C 7.273 14.788 7.539 14.085 7.87 13.26 C 8.202 12.434 8.486 11.694 8.502 11.616 C 8.52 11.534 6.944 12.126 4.762 13.022 C 2.689 13.872 0.937 14.573 0.87 14.579 C 0.728 14.59 0.596 14.676 4.583 12.167 C 6.277 11.101 7.684 10.205 7.71 10.175 C 7.79 10.084 7.441 9.977 5.958 9.635 C 5.176 9.454 4.488 9.278 4.43 9.243 C 4.372 9.208 5.12 9.231 6.094 9.293 C 7.067 9.356 7.876 9.388 7.893 9.364 C 7.92 9.33 4.531 5.292 2.755 3.234 C 2.593 3.047 2.483 2.891 2.51 2.887 C 2.537 2.882 4.01 4.092 5.785 5.575 L 9.013 8.271 L 9.017 7.819 C 9.02 7.57 8.967 6.788 8.9 6.079 C 8.76 4.585 8.896 4.695 9.296 6.396 C 9.756 8.349 9.675 8.339 10.762 6.579 C 13.274 2.514 14.232 0.982 14.266 0.976 C 14.284 0.973 13.598 2.726 12.736 4.872 Z\" fill=\"rgba(255,255,255,0.91)\"></path></svg>',svgContentId:10026266037,withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vcdcvb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-rwkk9y\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 37 50\"><path d=\"M 35.287 2.016 C 34.832 2.492 34.464 2.889 34.47 2.899 C 34.474 2.908 34.685 2.913 34.935 2.909 C 35.185 2.906 35.394 2.91 35.399 2.919 C 35.404 2.929 35.202 2.973 34.949 3.019 C 34.695 3.065 34.491 3.111 34.495 3.122 C 34.498 3.132 34.928 3.444 35.45 3.816 C 35.971 4.186 36.386 4.492 36.372 4.494 C 36.358 4.495 35.876 4.271 35.302 3.994 C 34.727 3.717 34.255 3.501 34.252 3.514 C 34.25 3.525 34.307 3.713 34.381 3.93 C 34.454 4.147 34.523 4.361 34.533 4.407 C 34.556 4.5 34.529 4.451 34.249 3.927 C 34.086 3.621 34.036 3.558 34.019 3.642 C 33.809 4.352 33.583 5.058 33.344 5.759 C 33.326 5.789 33.379 5.296 33.464 4.662 C 33.551 4.029 33.612 3.508 33.599 3.505 C 33.586 3.502 33.399 3.632 33.181 3.792 C 32.964 3.952 32.788 4.077 32.791 4.068 C 32.792 4.06 32.937 3.902 33.112 3.718 C 33.287 3.535 33.44 3.37 33.453 3.351 C 33.467 3.331 32.987 3.321 32.315 3.326 C 31.677 3.332 31.14 3.332 31.121 3.326 C 31.081 3.314 31.039 3.323 32.359 3.082 C 32.705 3.021 33.051 2.955 33.396 2.886 C 33.428 2.87 33.346 2.805 32.99 2.558 C 32.866 2.474 32.745 2.386 32.628 2.292 C 32.614 2.277 32.812 2.362 33.062 2.482 C 33.312 2.602 33.523 2.695 33.53 2.691 C 33.54 2.685 33.072 1.258 32.82 0.526 C 32.798 0.46 32.785 0.406 32.794 0.408 C 32.803 0.41 33.063 0.886 33.375 1.466 L 33.943 2.52 L 33.993 2.401 C 34.049 2.245 34.1 2.088 34.146 1.929 C 34.266 1.519 34.291 1.562 34.216 2.055 C 34.131 2.62 34.111 2.608 34.585 2.258 C 35.679 1.449 36.095 1.146 36.105 1.148 C 36.109 1.149 35.742 1.54 35.287 2.016 Z M 4.26 47.56 C 4.074 46.571 3.908 45.762 3.891 45.761 C 3.873 45.76 3.682 46.015 3.465 46.329 C 3.247 46.642 3.055 46.897 3.039 46.897 C 3.021 46.896 3.148 46.604 3.316 46.248 C 3.484 45.893 3.608 45.598 3.592 45.594 C 3.574 45.588 2.806 45.845 1.882 46.162 C 0.957 46.48 0.208 46.724 0.219 46.705 C 0.228 46.686 0.937 46.287 1.791 45.82 C 2.645 45.353 3.334 44.959 3.321 44.945 C 3.307 44.93 3.024 44.835 2.69 44.733 C 2.445 44.66 2.202 44.582 1.961 44.499 C 1.826 44.444 1.912 44.451 2.81 44.572 C 3.335 44.643 3.458 44.636 3.37 44.54 C 3.226 44.384 1.37 41.896 1.34 41.819 C 1.322 41.767 1.885 42.273 2.595 42.944 C 3.305 43.615 3.897 44.154 3.912 44.141 C 3.925 44.127 3.934 43.779 3.925 43.367 C 3.921 42.954 3.921 42.625 3.93 42.635 C 3.939 42.645 4.006 42.965 4.078 43.345 C 4.15 43.726 4.218 44.064 4.231 44.096 C 4.244 44.13 4.683 43.544 5.273 42.705 C 5.619 42.205 5.973 41.71 6.335 41.222 C 6.385 41.185 6.413 41.122 5.539 42.976 C 5.307 43.461 5.08 43.949 4.859 44.439 C 4.849 44.491 5.004 44.449 5.628 44.227 C 5.842 44.147 6.06 44.075 6.28 44.012 C 6.311 44.012 6.03 44.179 5.658 44.384 C 5.287 44.589 4.983 44.767 4.982 44.779 C 4.981 44.798 7.169 45.485 8.302 45.823 C 8.405 45.854 8.482 45.885 8.472 45.893 C 8.464 45.901 7.64 45.802 6.642 45.675 L 4.828 45.442 L 4.932 45.609 C 4.989 45.701 5.192 45.976 5.382 46.22 C 5.784 46.734 5.708 46.726 5.162 46.196 C 4.537 45.588 4.569 45.573 4.582 46.473 C 4.614 48.551 4.622 49.337 4.609 49.347 C 4.605 49.353 4.447 48.549 4.261 47.56 Z\" fill=\"rgba(255, 255, 255, 0.5)\"></path></svg>',svgContentId:11509798119,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y7lope\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10f96m8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 8\"><path d=\"M 5.766 4.665 C 5.087 4.29 4.525 3.992 4.517 4.003 C 4.51 4.013 4.577 4.275 4.669 4.584 C 4.76 4.893 4.829 5.154 4.821 5.164 C 4.813 5.175 4.693 4.941 4.554 4.645 C 4.415 4.349 4.293 4.115 4.283 4.123 C 4.271 4.131 4.083 4.79 3.861 5.585 C 3.639 6.38 3.452 7.017 3.445 7 C 3.439 6.983 3.514 6.296 3.614 5.473 C 3.715 4.65 3.785 3.978 3.771 3.979 C 3.629 4.08 3.492 4.188 3.361 4.304 C 3.15 4.481 2.94 4.653 2.894 4.684 C 2.801 4.749 2.844 4.694 3.318 4.14 C 3.595 3.816 3.646 3.728 3.548 3.74 C 3.39 3.76 1.062 3.767 1.002 3.748 C 0.962 3.735 1.519 3.606 2.241 3.46 C 2.962 3.315 3.551 3.182 3.55 3.165 C 3.549 3.149 3.342 2.967 3.091 2.762 C 2.939 2.644 2.792 2.518 2.652 2.386 C 2.662 2.386 2.885 2.502 3.146 2.646 C 3.408 2.79 3.642 2.915 3.667 2.923 C 3.693 2.931 3.536 2.333 3.294 1.501 C 3.064 0.711 2.876 0.045 2.876 0.02 C 2.875 -0.033 2.85 -0.084 3.577 1.457 C 3.885 2.112 4.145 2.657 4.154 2.667 C 4.182 2.698 4.225 2.572 4.37 2.032 C 4.446 1.746 4.519 1.496 4.532 1.476 C 4.545 1.456 4.521 1.732 4.478 2.091 C 4.447 2.311 4.426 2.533 4.414 2.755 C 4.425 2.765 5.816 1.615 6.526 1.01 C 6.59 0.955 6.644 0.919 6.645 0.928 C 6.646 0.938 6.218 1.453 5.695 2.072 L 4.744 3.198 L 4.891 3.212 C 4.972 3.219 5.228 3.22 5.46 3.213 C 5.95 3.2 5.911 3.247 5.348 3.352 C 4.702 3.472 4.707 3.442 5.256 3.89 C 6.522 4.925 6.999 5.32 7 5.332 C 7.001 5.339 6.445 5.039 5.766 4.664 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11152138461,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tic7nc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ybikzm\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13 13\"><path d=\"M 0.744 8.075 C 0.891 8.011 2.106 7.611 3.443 7.187 C 4.781 6.763 5.895 6.387 5.92 6.353 C 5.942 6.318 5.755 5.01 5.499 3.447 C 5.083 0.91 4.97 0.056 5.143 0.753 C 5.174 0.881 5.567 2.113 6.014 3.492 C 6.462 4.87 6.838 6.036 6.85 6.082 C 6.863 6.136 7.828 6.005 9.529 5.718 C 10.99 5.471 12.277 5.273 12.387 5.278 C 12.498 5.284 11.369 5.678 9.879 6.154 C 8.389 6.629 7.156 7.042 7.138 7.071 C 7.111 7.114 7.399 8.971 7.922 12.134 C 7.987 12.527 8.027 12.84 8.011 12.83 C 7.993 12.82 7.585 11.58 7.1 10.073 C 6.499 8.208 6.182 7.322 6.106 7.296 C 6.045 7.275 5.814 7.298 5.594 7.348 C 4.635 7.566 0.494 8.186 0.744 8.076 Z\" fill=\"rgba(255,255,255,0.93)\"></path></svg>',svgContentId:9892441783,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uxcfna\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-78idlj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11 11\"><path d=\"M 8.415 0.205 C 8.209 0.588 6.334 4.962 6.353 5.019 C 6.366 5.064 7.198 5.745 8.199 6.533 C 10.168 8.083 10.417 8.285 10.371 8.296 C 10.353 8.3 9.295 7.838 8.017 7.27 C 6.738 6.702 5.656 6.244 5.612 6.252 C 5.522 6.268 5.411 6.402 3.603 8.68 C 2.905 9.559 2.318 10.282 2.297 10.287 C 2.279 10.292 2.736 9.227 3.317 7.921 C 3.898 6.615 4.366 5.518 4.356 5.482 C 4.347 5.448 4.082 5.22 3.769 4.977 C 2.654 4.111 0.259 2.192 0.286 2.185 C 0.3 2.182 1.328 2.629 2.568 3.18 C 3.807 3.73 4.889 4.205 4.972 4.234 C 5.112 4.284 5.225 4.155 6.737 2.244 C 8.088 0.535 8.52 0.01 8.415 0.204 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:12702171611,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation9,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:1,className:\"framer-crf7k\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-e2pf40\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 17\"><path d=\"M 7.942 13.08 C 8.069 10.99 8.146 9.271 8.112 9.261 C 8.082 9.251 7.562 9.669 6.962 10.19 C 6.364 10.711 5.847 11.13 5.815 11.12 C 5.784 11.11 6.183 10.584 6.703 9.952 C 7.223 9.32 7.624 8.789 7.593 8.772 C 7.563 8.752 5.879 8.879 3.852 9.048 C 1.824 9.218 0.19 9.33 0.222 9.296 C 0.252 9.264 1.882 8.819 3.844 8.312 C 5.806 7.804 7.396 7.359 7.377 7.324 C 7.359 7.288 6.834 6.952 6.211 6.576 C 5.754 6.305 5.304 6.024 4.86 5.732 C 4.615 5.552 4.785 5.611 6.535 6.312 C 7.559 6.722 7.811 6.77 7.681 6.532 C 7.47 6.144 4.991 0.18 4.971 0.008 C 4.957 -0.108 5.838 1.202 6.929 2.918 C 8.02 4.633 8.943 6.021 8.979 6.002 C 9.015 5.983 9.206 5.284 9.403 4.448 C 9.6 3.612 9.773 2.95 9.786 2.975 C 9.799 2.999 9.772 3.68 9.722 4.484 C 9.673 5.288 9.641 6.004 9.649 6.076 C 9.658 6.152 10.842 5.193 12.46 3.799 C 13.998 2.475 15.302 1.372 15.358 1.349 C 15.476 1.298 15.565 1.186 12.858 4.482 C 11.708 5.882 10.756 7.055 10.742 7.088 C 10.702 7.188 11.03 7.181 12.402 7.051 C 13.125 6.982 13.767 6.937 13.826 6.951 C 13.886 6.964 13.236 7.158 12.383 7.383 C 11.529 7.608 10.825 7.812 10.817 7.836 C 10.803 7.873 14.87 10.373 16.984 11.633 C 17.176 11.747 17.315 11.85 17.294 11.861 C 17.272 11.872 15.661 11.255 13.712 10.489 L 10.168 9.096 L 10.293 9.486 C 10.361 9.7 10.63 10.357 10.891 10.946 C 11.439 12.19 11.291 12.135 10.461 10.788 C 9.507 9.242 9.579 9.228 9.149 11.05 C 8.154 15.26 7.769 16.85 7.741 16.865 C 7.728 16.873 7.815 15.17 7.942 13.08 Z\" fill=\"rgba(255, 255, 255, 0.5)\"></path></svg>',svgContentId:9871570081,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sjjbys\",\"data-framer-name\":\"Frame 906\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w13p9q\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ukpnpx\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-n2fhw3\",\"data-framer-name\":\"Changing Te xt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZgQGKG9w:{y:(componentViewport?.y||0)+0+0+139+0+0+0+0+0+0+0+0+0+0+8},HoT1gLxZ1:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 510px), 1px)`,y:(componentViewport?.y||0)+0+0+100+0+0+0+0+0+0+0+0+0+0+0+0+8},hwanoSY5G:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 768px), 1px)`,y:(componentViewport?.y||0)+0+0+140+0+0+0+0+0+0+0+0+0+0+0+0+8},zWLxZZFDx:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 510px), 1px)`,y:(componentViewport?.y||0)+0+0+100+0+0+0+0+0+0+0+0+0+0+0+0+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1500px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+96+0+0+0+0+0+0+0+0+0+0+8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n6w4e8-container\",nodeId:\"RU5yQ6NAF\",scopeId:\"udlV2DjFT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZgQGKG9w:{variant:\"FHq9YLayk\"},HoT1gLxZ1:{variant:\"KdWvxtbef\"},hwanoSY5G:{variant:\"rKT1h3ghC\"},zWLxZZFDx:{variant:\"fVTrbR57n\"}},children:/*#__PURE__*/_jsx(ChangingText,{height:\"100%\",id:\"RU5yQ6NAF\",layoutId:\"RU5yQ6NAF\",style:{width:\"100%\"},variant:\"mnpCFVlTm\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZgQGKG9w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:[\"Your Accounts\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(142, 119, 233)\"},children:\" \"})]})})},HoT1gLxZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:[\"Your Accounts\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(142, 119, 233)\"},children:\" \"})]})})},hwanoSY5G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:[\"Your Accounts\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(142, 119, 233)\"},children:\" \"})]})})},zWLxZZFDx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:[\"Your Accounts\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(142, 119, 233)\"},children:\" \"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"inherit\"},children:[\"Your Accounts\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(142, 119, 233)\"},children:\" \"})]})}),className:\"framer-1o7g19z\",\"data-framer-name\":\"Magically convert Your Accounts\",effect:textEffect,fonts:[\"FS;Poppins-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZgQGKG9w:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Team your CSMs & AMs up with agents that never miss an opportunity to identify and capitalize on churn-risks or $$ generation.\"})})},HoT1gLxZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Team your CSMs & AMs up with agents that never miss an opportunity to identify and capitalize on churn-risks or $$ generation.\"})})},hwanoSY5G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Team your CSMs & AMs up with agents that never miss an opportunity to identify and capitalize on churn-risks or $$ generation.\"})})},zWLxZZFDx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Team your CSMs & AMs up with agents that never miss an opportunity to identify and capitalize on churn-risks or $$ generation.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation11,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Team your CSMs & AMs up with agents that never miss an opportunity to identify and capitalize on churn-risks or $$ generation.\"})}),className:\"framer-14g6m5u\",\"data-framer-appear-id\":\"14g6m5u\",\"data-framer-name\":\"Team your CSMs & AMs up with agents that never miss an opportunity to identify and capitalize on churn-risks or $$ generation.\",fonts:[\"FS;Poppins-regular\"],initial:animation12,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZgQGKG9w:{y:(componentViewport?.y||0)+0+0+139+0+0+0+0+688},HoT1gLxZ1:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 510px)`,y:(componentViewport?.y||0)+0+0+100+0+0+0+0+0+0+569},hwanoSY5G:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 768px)`,y:(componentViewport?.y||0)+0+0+140+0+0+0+0+0+0+726},zWLxZZFDx:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 510px)`,y:(componentViewport?.y||0)+0+0+100+0+0+0+0+0+0+525}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1500px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+96+0+0+0+0+774,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kswc2n-container\",nodeId:\"HmIlRLuHS\",scopeId:\"udlV2DjFT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoT1gLxZ1:{variant:\"dEDaCGMi2\"},hwanoSY5G:{dprGW5kNk:\"center\"},zWLxZZFDx:{variant:\"dEDaCGMi2\"}},children:/*#__PURE__*/_jsx(HubspotCustomForm,{dprGW5kNk:\"flex-start\",height:\"100%\",id:\"HmIlRLuHS\",layoutId:\"HmIlRLuHS\",style:{height:\"100%\",width:\"100%\"},variant:\"qfNWbvH5i\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1805kly\",\"data-framer-appear-id\":\"1805kly\",\"data-framer-name\":\"Motion Graphic\",initial:animation13,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yjl5ic\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vn962n\",\"data-framer-name\":\"Rupert Motion Graphic Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ewcld2-container\",isAuthoredByUser:true,nodeId:\"tgrpCUaO3\",scopeId:\"udlV2DjFT\",children:/*#__PURE__*/_jsx(VideoComponent,{autoPlay:true,controls:false,forceAppleCheck:true,height:\"100%\",id:\"tgrpCUaO3\",layoutId:\"tgrpCUaO3\",loop:true,maxDuration:122,movUrl:\"https://res.cloudinary.com/dskb6u2bk/video/upload/v1742487853/Rupert_Animation_-_Final_V3_-_Alert_text_Animation_Modified_e97yrt.mov\",muted:true,style:{width:\"100%\"},webmUrl:\"https://res.cloudinary.com/dskb6u2bk/video/upload/v1742487845/Rupert_Animation_-_Final_V3_-_Alert_text_Animation_Modified_dgdqct.webm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a34dga\",\"data-framer-name\":\"Workflow Automation\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hkj90n\",\"data-framer-name\":\"Frame 907\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZgQGKG9w:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 250, 244)\",\"--framer-text-transform\":\"inherit\"},children:\"Workflow automation for next-best action,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 250, 244)\",\"--framer-text-transform\":\"inherit\"},children:\"triggered by predictive signals.\"})]})},HoT1gLxZ1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 250, 244)\",\"--framer-text-transform\":\"inherit\"},children:\"Workflow automation for next-best action,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 250, 244)\",\"--framer-text-transform\":\"inherit\"},children:\"triggered by predictive signals.\"})]})},hwanoSY5G:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 250, 244)\",\"--framer-text-transform\":\"inherit\"},children:\"Workflow automation for next-best action,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 250, 244)\",\"--framer-text-transform\":\"inherit\"},children:\"triggered by predictive signals.\"})]})},zWLxZZFDx:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 250, 244)\",\"--framer-text-transform\":\"inherit\"},children:\"Workflow automation for next-best action,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 250, 244)\",\"--framer-text-transform\":\"inherit\"},children:\"triggered by predictive signals.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(251, 250, 244)\",\"--framer-text-transform\":\"inherit\"},children:\"Workflow automation for next-best action, triggered by predictive signals.\"})}),className:\"framer-1chc92w\",\"data-framer-name\":\"Workflow automation for next-best action. triggered by predictive signals.\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12w8z8q\",\"data-framer-name\":\"Background lines\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16p4bnv\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y8582q\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m1qx78\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n70ogv\",\"data-border\":true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wklw76\",\"data-border\":true})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoT1gLxZ1:{height:142,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+100+1376},hwanoSY5G:{height:142,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+0+140+1534},zWLxZZFDx:{height:142,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+100+1332}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1orgofm-container hidden-6xja6j hidden-1074ag1\",nodeId:\"AntS0rQPD\",scopeId:\"udlV2DjFT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoT1gLxZ1:{variant:\"IkBBynmFM\"},hwanoSY5G:{variant:\"IkBBynmFM\"},zWLxZZFDx:{variant:\"rHrqWYJKo\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"AntS0rQPD\",layoutId:\"AntS0rQPD\",style:{width:\"100%\"},variant:\"fEf0lFeH6\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gZgQGKG9w:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:391.4805194805195,intrinsicWidth:323.3246753246753,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1e3-262.35),pixelHeight:471,pixelWidth:389,src:\"https://framerusercontent.com/images/kivqyclTyGkHuUA4vHv2xr1Ok.svg\"}},HoT1gLxZ1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:391.4805194805195,intrinsicWidth:323.3246753246753,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1618-214.25),pixelHeight:471,pixelWidth:389,src:\"https://framerusercontent.com/images/kivqyclTyGkHuUA4vHv2xr1Ok.svg\"}},hwanoSY5G:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:391.4805194805195,intrinsicWidth:323.3246753246753,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1816-294),pixelHeight:471,pixelWidth:389,src:\"https://framerusercontent.com/images/kivqyclTyGkHuUA4vHv2xr1Ok.svg\"}},zWLxZZFDx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:391.4805194805195,intrinsicWidth:323.3246753246753,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1574-214.25),pixelHeight:471,pixelWidth:389,src:\"https://framerusercontent.com/images/kivqyclTyGkHuUA4vHv2xr1Ok.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:391.4805194805195,intrinsicWidth:323.3246753246753,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+1e3-392),pixelHeight:471,pixelWidth:389,src:\"https://framerusercontent.com/images/kivqyclTyGkHuUA4vHv2xr1Ok.svg\"},className:\"framer-1dyyjvl\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3yss3u\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o1vtir-container\",layoutScroll:true,nodeId:\"T2MuEWTyo\",rendersWithMotion:true,scopeId:\"udlV2DjFT\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HoT1gLxZ1:{variant:\"iAKT0IbG6\"},hwanoSY5G:{variant:\"fiXMdYSVM\"},zWLxZZFDx:{variant:\"iAKT0IbG6\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"T2MuEWTyo\",layoutId:\"T2MuEWTyo\",style:{width:\"100%\"},variant:\"HJTdMnrMN\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:componentViewport?.width||\"100vw\",y:858,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ptgn1p-container hidden-1i2mp52 hidden-12ng4s0 hidden-8yu80j\",layoutScroll:true,nodeId:\"MhZCB6Eem\",rendersWithMotion:true,scopeId:\"udlV2DjFT\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"MhZCB6Eem\",layoutId:\"MhZCB6Eem\",style:{width:\"100%\"},variant:\"fEf0lFeH6\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Sw4Ae.framer-1v9ijgm, .framer-Sw4Ae .framer-1v9ijgm { display: block; }\",\".framer-Sw4Ae.framer-6xja6j { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1800px; }\",\".framer-Sw4Ae .framer-1hebrp3 { aspect-ratio: 0.6308316430020284 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 820px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 517px; z-index: 1; }\",\".framer-Sw4Ae .framer-116gpz3 { align-content: center; align-items: center; background: linear-gradient(0.7980132669530491deg, #14161a 6.05347779420045%, rgba(35, 48, 63, 1) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: 100vh; justify-content: center; overflow: hidden; padding: 40px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-Sw4Ae .framer-1c9eyah { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1500px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-Sw4Ae .framer-1czpy4w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Sw4Ae .framer-1mqjlbg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sw4Ae .framer-ykhwyq { flex: none; height: 74px; left: -65px; overflow: visible; position: absolute; top: -27px; width: 371px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-Sw4Ae .framer-188pkfu { flex: none; height: 29px; left: calc(14.016172506738567% - 28px / 2); overflow: hidden; position: absolute; top: calc(77.02702702702705% - 29px / 2); width: 28px; }\",\".framer-Sw4Ae .framer-15of1z9 { flex: none; height: 29px; left: calc(50.00000000000002% - 28px / 2); position: absolute; top: calc(48.275862068965544% - 29px / 2); width: 28px; }\",\".framer-Sw4Ae .framer-9l0w32 { flex: none; height: 65px; left: calc(49.865229110512146% - 371px / 2); overflow: hidden; position: absolute; top: calc(41.891891891891916% - 65px / 2); width: 371px; }\",\".framer-Sw4Ae .framer-789zqz { flex: none; height: 10px; left: calc(1.3477088948787286% - 10px / 2); overflow: hidden; position: absolute; top: calc(10.769230769230791% - 10px / 2); width: 10px; }\",\".framer-Sw4Ae .framer-12qt9bi { flex: none; height: 10px; left: calc(50.00000000000002% - 10px / 2); position: absolute; top: calc(50.00000000000002% - 10px / 2); width: 10px; }\",\".framer-Sw4Ae .framer-1klah8d { flex: none; height: 31px; left: calc(14.016172506738567% - 44px / 2); overflow: hidden; position: absolute; top: calc(24.615384615384638% - 31px / 2); width: 44px; }\",\".framer-Sw4Ae .framer-1h7up2r { flex: none; height: 7px; left: calc(90.90909090909093% - 8px / 2); position: absolute; top: calc(87.09677419354841% - 7px / 2); width: 8px; }\",\".framer-Sw4Ae .framer-1arw36 { flex: none; height: 60px; left: calc(38.54447439353102% - 261px / 2); overflow: hidden; position: absolute; top: calc(53.84615384615387% - 60px / 2); width: 261px; }\",\".framer-Sw4Ae .framer-6qjkuy { flex: none; height: 42px; left: calc(39.46360153256707% - 206px / 2); position: absolute; top: calc(65.00000000000003% - 42px / 2); width: 206px; }\",\".framer-Sw4Ae .framer-vt0woc { -webkit-filter: blur(1px); filter: blur(1px); flex: none; height: 12px; left: calc(41.509433962264175% - 12px / 2); overflow: hidden; position: absolute; top: calc(73.84615384615387% - 12px / 2); width: 12px; }\",\".framer-Sw4Ae .framer-12r6paf { flex: none; height: 12px; left: calc(50.00000000000002% - 12px / 2); position: absolute; top: calc(50.00000000000002% - 12px / 2); width: 12px; }\",\".framer-Sw4Ae .framer-1o0tdx9 { flex: none; height: 6px; left: calc(14.82479784366579% - 6px / 2); overflow: hidden; position: absolute; top: calc(61.53846153846156% - 6px / 2); width: 6px; }\",\".framer-Sw4Ae .framer-jrun5k { flex: none; height: 6px; left: calc(50.00000000000002% - 6px / 2); position: absolute; top: calc(50.00000000000002% - 6px / 2); width: 6px; }\",\".framer-Sw4Ae .framer-oxzo3p { flex: none; height: 15px; left: calc(97.84366576819409% - 15px / 2); overflow: hidden; position: absolute; top: calc(56.92307692307694% - 15px / 2); width: 15px; }\",\".framer-Sw4Ae .framer-7d289p { flex: none; height: 15px; left: calc(46.66666666666669% - 15px / 2); position: absolute; top: calc(46.66666666666669% - 15px / 2); width: 15px; }\",\".framer-Sw4Ae .framer-1lr5n01 { -webkit-filter: blur(1px); filter: blur(1px); flex: none; height: 10px; left: calc(68.46361185983831% - 11px / 2); overflow: hidden; position: absolute; top: calc(33.783783783783804% - 10px / 2); width: 11px; }\",\".framer-Sw4Ae .framer-ibf5lu { flex: none; height: 10px; left: calc(45.454545454545475% - 11px / 2); position: absolute; top: calc(50.00000000000002% - 10px / 2); width: 11px; }\",\".framer-Sw4Ae .framer-19zi098 { -webkit-filter: blur(1px); filter: blur(1px); flex: none; height: 16px; left: calc(25.60646900269544% - 16px / 2); overflow: hidden; position: absolute; top: calc(52.70270270270272% - 16px / 2); width: 16px; }\",\".framer-Sw4Ae .framer-52xy7y { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-Sw4Ae .framer-1xczw1d { flex: none; height: 20px; left: calc(3.5040431266846586% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-Sw4Ae .framer-oziihl { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-Sw4Ae .framer-1vcdcvb { flex: none; height: 50px; left: calc(6.738544474393553% - 37px / 2); overflow: hidden; position: absolute; top: calc(66.21621621621624% - 50px / 2); width: 37px; }\",\".framer-Sw4Ae .framer-rwkk9y { flex: none; height: 50px; left: calc(48.648648648648674% - 37px / 2); position: absolute; top: calc(50.00000000000002% - 50px / 2); width: 37px; }\",\".framer-Sw4Ae .framer-y7lope { flex: none; height: 8px; left: calc(68.73315363881403% - 8px / 2); overflow: hidden; position: absolute; top: calc(60.810810810810835% - 8px / 2); width: 8px; }\",\".framer-Sw4Ae .framer-10f96m8 { flex: none; height: 8px; left: calc(50.00000000000002% - 8px / 2); position: absolute; top: calc(50.00000000000002% - 8px / 2); width: 8px; }\",\".framer-Sw4Ae .framer-tic7nc { flex: none; height: 13px; left: calc(35.849056603773604% - 13px / 2); overflow: hidden; position: absolute; top: calc(48.648648648648674% - 13px / 2); width: 13px; }\",\".framer-Sw4Ae .framer-ybikzm { flex: none; height: 13px; left: calc(46.15384615384618% - 13px / 2); position: absolute; top: calc(46.15384615384618% - 13px / 2); width: 13px; }\",\".framer-Sw4Ae .framer-uxcfna { flex: none; height: 11px; left: calc(48.247978436657704% - 11px / 2); overflow: hidden; position: absolute; top: calc(60.810810810810835% - 11px / 2); width: 11px; }\",\".framer-Sw4Ae .framer-78idlj { flex: none; height: 11px; left: calc(45.454545454545475% - 11px / 2); position: absolute; top: calc(45.454545454545475% - 11px / 2); width: 11px; }\",\".framer-Sw4Ae .framer-crf7k { -webkit-filter: blur(2px); filter: blur(2px); flex: none; height: 17px; left: calc(8.625336927223742% - 18px / 2); overflow: hidden; position: absolute; top: calc(10.810810810810834% - 17px / 2); width: 18px; }\",\".framer-Sw4Ae .framer-e2pf40 { flex: none; height: 17px; left: calc(50.00000000000002% - 18px / 2); position: absolute; top: calc(47.05882352941179% - 17px / 2); width: 18px; }\",\".framer-Sw4Ae .framer-sjjbys { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sw4Ae .framer-1w13p9q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sw4Ae .framer-ukpnpx { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sw4Ae .framer-n2fhw3 { 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: 8px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-Sw4Ae .framer-n6w4e8-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Sw4Ae .framer-1o7g19z { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Sw4Ae .framer-14g6m5u { --framer-paragraph-spacing: 0px; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-Sw4Ae .framer-1kswc2n-container { flex: none; height: 74px; position: relative; width: 100%; }\",\".framer-Sw4Ae .framer-1805kly { 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; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Sw4Ae .framer-yjl5ic { 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-Sw4Ae .framer-vn962n { aspect-ratio: 1.1659192825112108 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 633px); overflow: visible; position: relative; width: 1px; }\",\".framer-Sw4Ae .framer-1ewcld2-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-Sw4Ae .framer-1a34dga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; max-width: 95%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Sw4Ae .framer-hkj90n { align-content: center; align-items: center; 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: min-content; justify-content: center; max-width: 1002px; overflow: hidden; padding: 10px 0px 20px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sw4Ae .framer-1chc92w { --framer-paragraph-spacing: 0px; --framer-text-wrap: balance; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Sw4Ae .framer-12w8z8q { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: calc(50.00000000000002% - min(1600px, 1600px) / 2); max-width: 1600px; opacity: 0.1; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 1600px; }\",\".framer-Sw4Ae .framer-16p4bnv, .framer-Sw4Ae .framer-y8582q, .framer-Sw4Ae .framer-1m1qx78, .framer-Sw4Ae .framer-1n70ogv, .framer-Sw4Ae .framer-wklw76 { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.51); --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 0px; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-Sw4Ae .framer-1orgofm-container { flex: none; height: auto; position: relative; width: 768px; z-index: 1; }\",\".framer-Sw4Ae .framer-1dyyjvl { aspect-ratio: 0.8259023354564755 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 392px); overflow: visible; position: absolute; right: -91px; width: 324px; }\",\".framer-Sw4Ae .framer-3yss3u { background: conic-gradient(from 0deg at 0% 0%, rgba(255, 255, 255, 0) 141.92000105574326deg, rgb(17, 20, 26) 360deg); flex: none; height: 1158px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 1328px; }\",\".framer-Sw4Ae .framer-1o1vtir-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 4; }\",\".framer-Sw4Ae .framer-1ptgn1p-container { bottom: 0px; flex: none; height: auto; left: 0px; position: fixed; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Sw4Ae.framer-6xja6j, .framer-Sw4Ae .framer-116gpz3, .framer-Sw4Ae .framer-1c9eyah, .framer-Sw4Ae .framer-1czpy4w, .framer-Sw4Ae .framer-1mqjlbg, .framer-Sw4Ae .framer-sjjbys, .framer-Sw4Ae .framer-1w13p9q, .framer-Sw4Ae .framer-ukpnpx, .framer-Sw4Ae .framer-n2fhw3, .framer-Sw4Ae .framer-1805kly, .framer-Sw4Ae .framer-yjl5ic, .framer-Sw4Ae .framer-1a34dga, .framer-Sw4Ae .framer-hkj90n, .framer-Sw4Ae .framer-12w8z8q { gap: 0px; } .framer-Sw4Ae.framer-6xja6j > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Sw4Ae.framer-6xja6j > :first-child, .framer-Sw4Ae .framer-1czpy4w > :first-child, .framer-Sw4Ae .framer-1mqjlbg > :first-child, .framer-Sw4Ae .framer-sjjbys > :first-child, .framer-Sw4Ae .framer-1w13p9q > :first-child, .framer-Sw4Ae .framer-1805kly > :first-child, .framer-Sw4Ae .framer-1a34dga > :first-child { margin-top: 0px; } .framer-Sw4Ae.framer-6xja6j > :last-child, .framer-Sw4Ae .framer-1czpy4w > :last-child, .framer-Sw4Ae .framer-1mqjlbg > :last-child, .framer-Sw4Ae .framer-sjjbys > :last-child, .framer-Sw4Ae .framer-1w13p9q > :last-child, .framer-Sw4Ae .framer-1805kly > :last-child, .framer-Sw4Ae .framer-1a34dga > :last-child { margin-bottom: 0px; } .framer-Sw4Ae .framer-116gpz3 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-Sw4Ae .framer-116gpz3 > :first-child, .framer-Sw4Ae .framer-1c9eyah > :first-child, .framer-Sw4Ae .framer-ukpnpx > :first-child, .framer-Sw4Ae .framer-n2fhw3 > :first-child, .framer-Sw4Ae .framer-yjl5ic > :first-child, .framer-Sw4Ae .framer-hkj90n > :first-child, .framer-Sw4Ae .framer-12w8z8q > :first-child { margin-left: 0px; } .framer-Sw4Ae .framer-116gpz3 > :last-child, .framer-Sw4Ae .framer-1c9eyah > :last-child, .framer-Sw4Ae .framer-ukpnpx > :last-child, .framer-Sw4Ae .framer-n2fhw3 > :last-child, .framer-Sw4Ae .framer-yjl5ic > :last-child, .framer-Sw4Ae .framer-hkj90n > :last-child, .framer-Sw4Ae .framer-12w8z8q > :last-child { margin-right: 0px; } .framer-Sw4Ae .framer-1c9eyah > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Sw4Ae .framer-1czpy4w > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Sw4Ae .framer-1mqjlbg > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-Sw4Ae .framer-sjjbys > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-Sw4Ae .framer-1w13p9q > *, .framer-Sw4Ae .framer-1805kly > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Sw4Ae .framer-ukpnpx > *, .framer-Sw4Ae .framer-n2fhw3 > *, .framer-Sw4Ae .framer-yjl5ic > *, .framer-Sw4Ae .framer-hkj90n > *, .framer-Sw4Ae .framer-12w8z8q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Sw4Ae .framer-1a34dga > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }\",'.framer-Sw4Ae[data-border=\"true\"]::after, .framer-Sw4Ae [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: 1025px) and (max-width: 1799px) { .framer-Sw4Ae.framer-6xja6j { width: 1025px; } .framer-Sw4Ae .framer-1hebrp3 { height: var(--framer-aspect-ratio-supported, 617px); width: 389px; } .framer-Sw4Ae .framer-1mqjlbg { gap: 28px; } .framer-Sw4Ae .framer-ykhwyq { left: -73px; top: -18px; } .framer-Sw4Ae .framer-sjjbys { gap: 40px; } .framer-Sw4Ae .framer-1w13p9q { gap: 8px; } .framer-Sw4Ae .framer-vn962n { height: var(--framer-aspect-ratio-supported, 361px); } .framer-Sw4Ae .framer-1dyyjvl { bottom: 0px; height: var(--framer-aspect-ratio-supported, 263px); right: -91px; width: 217px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Sw4Ae .framer-1mqjlbg, .framer-Sw4Ae .framer-sjjbys, .framer-Sw4Ae .framer-1w13p9q { gap: 0px; } .framer-Sw4Ae .framer-1mqjlbg > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-Sw4Ae .framer-1mqjlbg > :first-child, .framer-Sw4Ae .framer-sjjbys > :first-child, .framer-Sw4Ae .framer-1w13p9q > :first-child { margin-top: 0px; } .framer-Sw4Ae .framer-1mqjlbg > :last-child, .framer-Sw4Ae .framer-sjjbys > :last-child, .framer-Sw4Ae .framer-1w13p9q > :last-child { margin-bottom: 0px; } .framer-Sw4Ae .framer-sjjbys > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Sw4Ae .framer-1w13p9q > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\",\"@media (min-width: 768px) and (max-width: 1024px) { .framer-Sw4Ae.framer-6xja6j { width: 768px; } .framer-Sw4Ae .framer-1hebrp3 { height: var(--framer-aspect-ratio-supported, 551px); width: 348px; } .framer-Sw4Ae .framer-116gpz3 { flex-direction: column; gap: 0px; height: min-content; padding: 140px 40px 0px 40px; } .framer-Sw4Ae .framer-1c9eyah { flex: none; flex-direction: column; gap: 32px; max-width: 768px; width: 100%; } .framer-Sw4Ae .framer-1czpy4w { align-content: center; align-items: center; flex: none; width: 100%; } .framer-Sw4Ae .framer-1mqjlbg, .framer-Sw4Ae .framer-sjjbys, .framer-Sw4Ae .framer-1w13p9q { align-content: center; align-items: center; } .framer-Sw4Ae .framer-ykhwyq { left: calc(18.023255813953508% - 371px / 2); } .framer-Sw4Ae .framer-1805kly { flex: none; width: 100%; } .framer-Sw4Ae .framer-vn962n { height: var(--framer-aspect-ratio-supported, 590px); } .framer-Sw4Ae .framer-1orgofm-container { width: 100%; } .framer-Sw4Ae .framer-1dyyjvl { height: var(--framer-aspect-ratio-supported, 294px); right: -93px; width: 243px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Sw4Ae .framer-116gpz3, .framer-Sw4Ae .framer-1c9eyah { gap: 0px; } .framer-Sw4Ae .framer-116gpz3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Sw4Ae .framer-116gpz3 > :first-child, .framer-Sw4Ae .framer-1c9eyah > :first-child { margin-top: 0px; } .framer-Sw4Ae .framer-116gpz3 > :last-child, .framer-Sw4Ae .framer-1c9eyah > :last-child { margin-bottom: 0px; } .framer-Sw4Ae .framer-1c9eyah > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (max-width: 489px) { .framer-Sw4Ae.framer-6xja6j { width: 390px; } .framer-Sw4Ae .framer-1hebrp3 { height: var(--framer-aspect-ratio-supported, 331px); width: 209px; } .framer-Sw4Ae .framer-116gpz3 { flex-direction: column; gap: 0px; height: min-content; padding: 100px 20px 0px 20px; } .framer-Sw4Ae .framer-1c9eyah { flex: none; flex-direction: column; gap: 79px; max-width: 510px; width: 100%; } .framer-Sw4Ae .framer-1czpy4w { flex: none; gap: 32px; width: 100%; } .framer-Sw4Ae .framer-1mqjlbg { align-content: center; align-items: center; gap: 24px; } .framer-Sw4Ae .framer-ykhwyq { left: 13px; top: -34px; } .framer-Sw4Ae .framer-188pkfu { top: calc(47.29729729729732% - 29px / 2); } .framer-Sw4Ae .framer-789zqz { left: 108px; top: 43px; } .framer-Sw4Ae .framer-oxzo3p { left: calc(77.35849056603776% - 15px / 2); top: calc(66.15384615384617% - 15px / 2); } .framer-Sw4Ae .framer-19zi098 { left: calc(78.70619946091647% - 16px / 2); top: 72px; } .framer-Sw4Ae .framer-1xczw1d { -webkit-filter: blur(1px); filter: blur(1px); opacity: 0.2; } .framer-Sw4Ae .framer-1vcdcvb { left: calc(19.40700808625339% - 37px / 2); top: calc(85.13513513513516% - 50px / 2); } .framer-Sw4Ae .framer-y7lope { -webkit-filter: blur(1px); filter: blur(1px); } .framer-Sw4Ae .framer-sjjbys { gap: 24px; } .framer-Sw4Ae .framer-1w13p9q { gap: 0px; } .framer-Sw4Ae .framer-1805kly { flex: none; width: 100%; } .framer-Sw4Ae .framer-vn962n { height: var(--framer-aspect-ratio-supported, 300px); } .framer-Sw4Ae .framer-1orgofm-container { width: 100%; } .framer-Sw4Ae .framer-1dyyjvl { bottom: 0px; height: var(--framer-aspect-ratio-supported, 215px); right: -91px; width: 177px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Sw4Ae .framer-116gpz3, .framer-Sw4Ae .framer-1c9eyah, .framer-Sw4Ae .framer-1czpy4w, .framer-Sw4Ae .framer-1mqjlbg, .framer-Sw4Ae .framer-sjjbys, .framer-Sw4Ae .framer-1w13p9q { gap: 0px; } .framer-Sw4Ae .framer-116gpz3 > *, .framer-Sw4Ae .framer-1w13p9q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Sw4Ae .framer-116gpz3 > :first-child, .framer-Sw4Ae .framer-1c9eyah > :first-child, .framer-Sw4Ae .framer-1czpy4w > :first-child, .framer-Sw4Ae .framer-1mqjlbg > :first-child, .framer-Sw4Ae .framer-sjjbys > :first-child, .framer-Sw4Ae .framer-1w13p9q > :first-child { margin-top: 0px; } .framer-Sw4Ae .framer-116gpz3 > :last-child, .framer-Sw4Ae .framer-1c9eyah > :last-child, .framer-Sw4Ae .framer-1czpy4w > :last-child, .framer-Sw4Ae .framer-1mqjlbg > :last-child, .framer-Sw4Ae .framer-sjjbys > :last-child, .framer-Sw4Ae .framer-1w13p9q > :last-child { margin-bottom: 0px; } .framer-Sw4Ae .framer-1c9eyah > * { margin: 0px; margin-bottom: calc(79px / 2); margin-top: calc(79px / 2); } .framer-Sw4Ae .framer-1czpy4w > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Sw4Ae .framer-1mqjlbg > *, .framer-Sw4Ae .framer-sjjbys > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (min-width: 490px) and (max-width: 767px) { .framer-Sw4Ae.framer-6xja6j { width: 490px; } .framer-Sw4Ae .framer-1hebrp3 { height: var(--framer-aspect-ratio-supported, 331px); width: 209px; } .framer-Sw4Ae .framer-116gpz3 { flex-direction: column; gap: 0px; height: min-content; padding: 100px 20px 0px 20px; } .framer-Sw4Ae .framer-1c9eyah { flex: none; flex-direction: column; gap: 79px; max-width: 510px; width: 100%; } .framer-Sw4Ae .framer-1czpy4w { flex: none; gap: 32px; width: 100%; } .framer-Sw4Ae .framer-1mqjlbg { align-content: center; align-items: center; gap: 24px; } .framer-Sw4Ae .framer-ykhwyq { left: -17px; top: -25px; } .framer-Sw4Ae .framer-188pkfu { top: calc(47.29729729729732% - 29px / 2); } .framer-Sw4Ae .framer-789zqz { left: 108px; top: 43px; } .framer-Sw4Ae .framer-oxzo3p { left: calc(77.35849056603776% - 15px / 2); top: calc(66.15384615384617% - 15px / 2); } .framer-Sw4Ae .framer-19zi098 { left: calc(78.70619946091647% - 16px / 2); top: 72px; } .framer-Sw4Ae .framer-1xczw1d { -webkit-filter: blur(1px); filter: blur(1px); opacity: 0.2; } .framer-Sw4Ae .framer-1vcdcvb { left: calc(19.40700808625339% - 37px / 2); top: calc(85.13513513513516% - 50px / 2); } .framer-Sw4Ae .framer-y7lope { -webkit-filter: blur(1px); filter: blur(1px); } .framer-Sw4Ae .framer-sjjbys { gap: 24px; } .framer-Sw4Ae .framer-1w13p9q { gap: 20px; } .framer-Sw4Ae .framer-1805kly { flex: none; width: 100%; } .framer-Sw4Ae .framer-vn962n { height: var(--framer-aspect-ratio-supported, 386px); } .framer-Sw4Ae .framer-1orgofm-container { width: 100%; } .framer-Sw4Ae .framer-1dyyjvl { bottom: 0px; height: var(--framer-aspect-ratio-supported, 214px); right: -91px; width: 177px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Sw4Ae .framer-116gpz3, .framer-Sw4Ae .framer-1c9eyah, .framer-Sw4Ae .framer-1czpy4w, .framer-Sw4Ae .framer-1mqjlbg, .framer-Sw4Ae .framer-sjjbys, .framer-Sw4Ae .framer-1w13p9q { gap: 0px; } .framer-Sw4Ae .framer-116gpz3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Sw4Ae .framer-116gpz3 > :first-child, .framer-Sw4Ae .framer-1c9eyah > :first-child, .framer-Sw4Ae .framer-1czpy4w > :first-child, .framer-Sw4Ae .framer-1mqjlbg > :first-child, .framer-Sw4Ae .framer-sjjbys > :first-child, .framer-Sw4Ae .framer-1w13p9q > :first-child { margin-top: 0px; } .framer-Sw4Ae .framer-116gpz3 > :last-child, .framer-Sw4Ae .framer-1c9eyah > :last-child, .framer-Sw4Ae .framer-1czpy4w > :last-child, .framer-Sw4Ae .framer-1mqjlbg > :last-child, .framer-Sw4Ae .framer-sjjbys > :last-child, .framer-Sw4Ae .framer-1w13p9q > :last-child { margin-bottom: 0px; } .framer-Sw4Ae .framer-1c9eyah > * { margin: 0px; margin-bottom: calc(79px / 2); margin-top: calc(79px / 2); } .framer-Sw4Ae .framer-1czpy4w > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Sw4Ae .framer-1mqjlbg > *, .framer-Sw4Ae .framer-sjjbys > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Sw4Ae .framer-1w13p9q > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1158\n * @framerIntrinsicWidth 1800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gZgQGKG9w\":{\"layout\":[\"fixed\",\"auto\"]},\"hwanoSY5G\":{\"layout\":[\"fixed\",\"auto\"]},\"zWLxZZFDx\":{\"layout\":[\"fixed\",\"auto\"]},\"HoT1gLxZ1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerudlV2DjFT=withCSS(Component,css,\"framer-Sw4Ae\");export default FramerudlV2DjFT;FramerudlV2DjFT.displayName=\"Page\";FramerudlV2DjFT.defaultProps={height:1158,width:1800};addFonts(FramerudlV2DjFT,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"}]},...ChangingTextFonts,...HubspotCustomFormFonts,...VideoComponentFonts,...FooterFonts,...NavbarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerudlV2DjFT\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gZgQGKG9w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hwanoSY5G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zWLxZZFDx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HoT1gLxZ1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1800\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1158\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SlideshowFonts", "getFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "textEffect1", "transformTemplate1", "_", "t", "textEffect2", "textEffect3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerB_jXsSCoi", "withCSS", "B_jXsSCoi_default", "addPropertyControls", "ControlType", "addFonts", "e", "global", "t", "r", "main", "n", "a", "noop", "promise", "o", "onFrame", "i", "decorate", "execute", "workerDone", "l", "convert", "isOk", "prop", "onlyPositiveInt", "randomInt", "toDecimal", "colorsToRgb", "hexToRgb", "getOrigin", "setCanvasWindowSize", "setCanvasRectSize", "getCanvas", "ellipse", "s", "randomPhysics", "updateFetti", "animate", "c", "f", "u", "d", "onDone", "update", "confettiCannon", "h", "fireLocal", "v", "p", "m", "g", "b", "y", "w", "M", "fire", "onResize", "done", "window", "confetti_default", "extractRGBColorFromString", "str", "rgbRegex", "match", "rgbToHex", "rgb", "r", "g", "b", "x", "hex", "Confetti", "props", "delayInSeconds", "amount", "coverArea", "explosion", "color", "frameRef", "pe", "hasTriggered", "setHasTriggered", "ye", "isOnCanvas", "useIsOnFramerCanvas", "ue", "timer", "triggerConfetti", "explosionSettings", "rect", "origin", "window", "confetti_default", "getColorConfig", "mode", "singleColor", "colors", "formattedColor", "p", "Frame", "addPropertyControls", "ControlType", "exports", "__esModule", "exports", "parse", "toCodePoints", "_regex", "_regex2", "_interopRequireDefault", "obj", "TypeName", "text", "options", "assetType", "getTwemojiUrl", "codepoints", "entities", "result", "emojiText", "removeVS16s", "vs16RegExp", "zeroWidthJoiner", "rawEmoji", "unicodeSurrogates", "points", "char", "previous", "i", "__esModule", "_TypeName", "_parse", "_toCodePoints", "baseURL", "Twemoji", "props", "search", "isSelection", "selection", "style", "emoji", "se", "src", "exports", "icon", "p", "containerStyle", "addPropertyControls", "ControlType", "ConfettiFonts", "getFonts", "Confetti", "TwemojiFonts", "Twemoji", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "confetti", "height", "id", "rupertLogo", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Mbq64GG2V", "mQjnmXplY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerPbNHhXzAT", "withCSS", "PbNHhXzAT_default", "addPropertyControls", "ControlType", "addFonts", "HubSpotFormFonts", "getFonts", "HubSpotForm", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "WaitlistInlineNotificationFonts", "PbNHhXzAT_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "distribute", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "dprGW5kNk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmit1f6n51k", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerQqxvQiaKL", "withCSS", "QqxvQiaKL_default", "addPropertyControls", "ControlType", "addFonts", "VideoComponent", "props", "videoSrc", "setVideoSrc", "ye", "videoRef", "pe", "ue", "isApple", "navigator", "movSource", "webmSource", "videoElement", "handleTimeUpdate", "p", "addPropertyControls", "ControlType", "MotionDivWithFX", "withFX", "motion", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "ChangingTextFonts", "getFonts", "B_jXsSCoi_default", "RichTextWithOptimizedAppearEffect", "RichText2", "HubspotCustomFormFonts", "QqxvQiaKL_default", "VideoComponentFonts", "VideoComponent", "FooterFonts", "gWCowD53F_default", "NavbarFonts", "jcQOrFYDT_default", "ContainerWithFX", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "transition5", "transition6", "transition7", "animation4", "transition8", "animation5", "transition9", "animation6", "animation7", "animation8", "animation9", "animation10", "transition10", "textEffect", "transition11", "animation11", "animation12", "animation13", "animation14", "transition12", "animation15", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "SVG", "ComponentViewportProvider", "x", "css", "FramerudlV2DjFT", "withCSS", "udlV2DjFT_default", "addFonts", "__FramerMetadata__"]
}
