{"version":3,"file":"VCEyjXJFMc6F1-8n_H_fM_1nK6iTpTYmZ0DeH_xdKpE.BGV70Xfp.mjs","names":["size","Image","MotionDivWithFX","serializationHash","variantClassNames","transition1","transition2","animation","animation1","animation2","transition3","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","_Fragment","css","serializationHash","variantClassNames","transition1","toResponsiveImage","getProps","Component","className","Image","css","Navbar","Particles","Image","Button","TitleIndicator","Cards","TestimonialSingle","FooterSection","metadata","className","PropertyOverrides","Blog","_Fragment","jc3P9Jk_yzSwL6ipea","Ma3hv0k5EzSwL6ipea","x2FFMkwM_zSwL6ipea","EgBFr6Jb7zSwL6ipea","ankh18qopzSwL6ipea","idzSwL6ipea","jc3P9Jk_yUHp_XAws3","Ma3hv0k5EUHp_XAws3","x2FFMkwM_UHp_XAws3","EgBFr6Jb7UHp_XAws3","idUHp_XAws3","css"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js","https:/framerusercontent.com/modules/ZjAATt509bXLyAZKY84N/H78ALywRvS1l08SqHyBV/bx2HjV4HF.js","https:/framerusercontent.com/modules/pRfor1iuBDEfxJjuKOqM/tqnTxOXCtayrQ6Kv20hr/Yk318TWyj.js","https:/framerusercontent.com/modules/ghJKLmSi5ZNPkLAxaS7k/pvCzCzQxqWUXFqfJ6lFy/augiA20Il.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (15813d8)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Floating,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rfdWPAoTAHcJg2GZmTPy/KKRBNUHwwpDT3k3vSU9t/IWiRiyhIZ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pKWvgr6wrGYk4BVS2DUH/68rnW9VIfUFkfhFvscKL/vSBjhgXTp.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const MotionDivWithFX=withFX(motion.div);const enabledGestures={DbChmD_L6:{hover:true},lNWobqNjt:{hover:true},nCiKvzL0q:{hover:true},OoLO3e5OG:{hover:true},PfZJB8ARA:{hover:true},u8E2rQSIH:{hover:true}};const cycleOrder=[\"DbChmD_L6\",\"PfZJB8ARA\",\"u8E2rQSIH\",\"OoLO3e5OG\",\"nCiKvzL0q\",\"lNWobqNjt\"];const serializationHash=\"framer-IH3Lc\";const variantClassNames={DbChmD_L6:\"framer-v-hn8cu1\",lNWobqNjt:\"framer-v-9j1ljj\",nCiKvzL0q:\"framer-v-13hge0f\",OoLO3e5OG:\"framer-v-nqozlf\",PfZJB8ARA:\"framer-v-npl2hj\",u8E2rQSIH:\"framer-v-1i515si\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};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:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition3={damping:30,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition4={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:50};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition6={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Drag n Drop\":\"PfZJB8ARA\",\"Quick actions\":\"lNWobqNjt\",\"Type Magical\":\"DbChmD_L6\",Insights:\"OoLO3e5OG\",List:\"u8E2rQSIH\",Toggles:\"nCiKvzL0q\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"DbChmD_L6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DbChmD_L6\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap190l75s=activeVariantCallback(async(...args)=>{setVariant(\"OoLO3e5OG\");});const onMouseEnterizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"PfZJB8ARA-hover\",\"u8E2rQSIH-hover\",\"OoLO3e5OG-hover\",\"nCiKvzL0q-hover\",\"lNWobqNjt-hover\"].includes(gestureVariant))return false;if([\"PfZJB8ARA\",\"u8E2rQSIH\",\"OoLO3e5OG\",\"nCiKvzL0q\",\"lNWobqNjt\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"DbChmD_L6-hover\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"DbChmD_L6-hover\")return false;return true;};const isDisplayed3=()=>{if(gestureVariant===\"PfZJB8ARA-hover\")return true;if(baseVariant===\"PfZJB8ARA\")return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"PfZJB8ARA-hover\")return false;return true;};const isDisplayed5=()=>{if(gestureVariant===\"PfZJB8ARA-hover\")return true;return false;};const isDisplayed6=()=>{if(gestureVariant===\"u8E2rQSIH-hover\")return true;if(baseVariant===\"u8E2rQSIH\")return true;return false;};const isDisplayed7=()=>{if(gestureVariant===\"u8E2rQSIH-hover\")return false;return true;};const isDisplayed8=()=>{if(gestureVariant===\"u8E2rQSIH-hover\")return true;if(baseVariant===\"u8E2rQSIH\")return false;return true;};const isDisplayed9=()=>{if(gestureVariant===\"OoLO3e5OG-hover\")return true;if(baseVariant===\"OoLO3e5OG\")return true;return false;};const isDisplayed10=()=>{if(gestureVariant===\"OoLO3e5OG-hover\")return false;return true;};const isDisplayed11=()=>{if(gestureVariant===\"OoLO3e5OG-hover\")return true;if(baseVariant===\"OoLO3e5OG\")return false;return true;};const isDisplayed12=()=>{if(gestureVariant===\"nCiKvzL0q-hover\")return true;if(baseVariant===\"nCiKvzL0q\")return true;return false;};const isDisplayed13=()=>{if(gestureVariant===\"nCiKvzL0q-hover\")return false;return true;};const isDisplayed14=()=>{if(gestureVariant===\"nCiKvzL0q-hover\")return true;return false;};const isDisplayed15=()=>{if(gestureVariant===\"lNWobqNjt-hover\")return true;if(baseVariant===\"lNWobqNjt\")return true;return false;};const isDisplayed16=()=>{if(gestureVariant===\"lNWobqNjt-hover\")return false;return true;};const isDisplayed17=()=>{if(gestureVariant===\"lNWobqNjt-hover\")return true;if(baseVariant===\"lNWobqNjt\")return false;return true;};const ref2=React.useRef(null);const isDisplayed18=()=>{if(gestureVariant===\"lNWobqNjt-hover\")return false;if(baseVariant===\"lNWobqNjt\")return false;return true;};const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hn8cu1\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Type Magical\",layoutDependency:layoutDependency,layoutId:\"DbChmD_L6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(53, 55, 68)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(31, 33, 46)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({\"DbChmD_L6-hover\":{\"data-framer-name\":undefined},\"lNWobqNjt-hover\":{\"data-framer-name\":undefined},\"nCiKvzL0q-hover\":{\"data-framer-name\":undefined},\"OoLO3e5OG-hover\":{\"data-framer-name\":undefined},\"PfZJB8ARA-hover\":{\"data-framer-name\":undefined},\"u8E2rQSIH-hover\":{\"data-framer-name\":undefined},lNWobqNjt:{\"data-framer-name\":\"Quick actions\"},nCiKvzL0q:{\"data-framer-name\":\"Toggles\"},OoLO3e5OG:{\"data-framer-name\":\"Insights\"},PfZJB8ARA:{\"data-framer-name\":\"Drag n Drop\"},u8E2rQSIH:{\"data-framer-name\":\"List\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2kp23r\",\"data-framer-name\":\"Type magical\",layoutDependency:layoutDependency,layoutId:\"zUqkBVvsk\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1maql6g\",\"data-framer-name\":\"_drag-n-drop-file-upload\",layoutDependency:layoutDependency,layoutId:\"iNYCtG1C1\",style:{backgroundColor:\"rgb(53, 55, 68)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-tbm0vq\",\"data-framer-appear-id\":\"tbm0vq\",\"data-framer-name\":\"Frame 3334\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"pYW14Xfuq\",optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ejkahi\",\"data-framer-name\":\"Frame 3332\",layoutDependency:layoutDependency,layoutId:\"m2RH3dyvI\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/rSLZYC2BS6c1cxS2EB9O25s7pA.png\"},className:\"framer-sozl3t\",\"data-framer-name\":\"Group 16\",layoutDependency:layoutDependency,layoutId:\"Dw24q_vsb\",...addPropertyOverrides({\"DbChmD_L6-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+24+0+24+0+0+18.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/rSLZYC2BS6c1cxS2EB9O25s7pA.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nxerk8\",\"data-framer-name\":\"Frame 3340\",layoutDependency:layoutDependency,layoutId:\"x_2ui3_QI\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Agent Manager\"})}),className:\"framer-1sal1we\",\"data-framer-name\":\"Liam\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"pdl78M1b6\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wl4z4e\",\"data-framer-name\":\"Frame 3333\",layoutDependency:layoutDependency,layoutId:\"SRHq6uewG\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/waLWqgyIgPyBANw0tHTWuvdnI.png\"},className:\"framer-sa56kk\",\"data-framer-name\":\"Group 16\",layoutDependency:layoutDependency,layoutId:\"LHO0PVFFr\",...addPropertyOverrides({\"DbChmD_L6-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+24+0+24+0+121+18.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/waLWqgyIgPyBANw0tHTWuvdnI.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d2sjov\",\"data-framer-name\":\"Frame 3340\",layoutDependency:layoutDependency,layoutId:\"EHdCYsRUM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Data Analyst\"})}),className:\"framer-9pgeou\",\"data-framer-name\":\"Alexander\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"fReMzd_bV\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i02083\",layoutDependency:layoutDependency,layoutId:\"vvW0tqEvi\",children:/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+24+0+24+0),positionX:\"center\",positionY:\"center\",sizes:\"214px\",src:\"https://framerusercontent.com/images/cXPwfcdAKjcvEo8vpgTjbSRz4U.png\",srcSet:\"https://framerusercontent.com/images/cXPwfcdAKjcvEo8vpgTjbSRz4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/cXPwfcdAKjcvEo8vpgTjbSRz4U.png 856w\"},className:\"framer-gk13bu\",\"data-framer-appear-id\":\"gk13bu\",\"data-framer-name\":\"Frame 3334\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Ky2muYg0l\",optimized:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u9dnf1\",\"data-framer-name\":\"Frame 427319039\",layoutDependency:layoutDependency,layoutId:\"CXLF5Aiqu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-3pdqv1\",\"data-styles-preset\":\"IWiRiyhIZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"A team of experts\"})}),className:\"framer-1rx60va\",\"data-framer-name\":\"Type your magical ideas\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XUfdo4Fyo\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get 10+ AI Agents that specialize in different data tasks like querying and feature expansion.\"})}),className:\"framer-14g3lcq\",\"data-framer-name\":\"Unleash your creativity with our intuitive idea typing feature.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mYzID7cBI\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mga8dc\",\"data-framer-name\":\"Drag n Drop\",layoutDependency:layoutDependency,layoutId:\"s50HDtOIN\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-161bkg0\",\"data-framer-name\":\"Frame 427319042\",layoutDependency:layoutDependency,layoutId:\"dPSVq1VTh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-3pdqv1\",\"data-styles-preset\":\"IWiRiyhIZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Automated collaboration\"})}),className:\"framer-1xl2y2s\",\"data-framer-name\":\"Drag’n drop files\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mvUdErzTu\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-alignment\":\"center\"},children:\"Agents plan how to solve your requests and then break the work into tasks and work together.\"})}),className:\"framer-xrxy3d\",\"data-framer-name\":\"Effortlessly upload and organize files with our convenient drag-and-drop feature.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ikcrlPAwv\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-15ofptc\",\"data-framer-appear-id\":\"15ofptc\",\"data-framer-name\":\"_drag-n-drop-file-upload\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"lfdP2DxMb\",optimized:true,style:{backgroundColor:\"rgb(53, 55, 68)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1bqljng\",\"data-border\":true,\"data-framer-appear-id\":\"1bqljng\",\"data-framer-name\":\"Switch Group\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"F1ANQuC3Q\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(74, 77, 85)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(67, 58, 91)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-id0ciz\",layoutDependency:layoutDependency,layoutId:\"J4qEZ6kYv\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Hey there! I broke your request into ten different tasks.\"})}),className:\"framer-1uuv6c6\",\"data-framer-appear-id\":\"1uuv6c6\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-500\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"TNPUv4Vss\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"Agent Manager\"})}),className:\"framer-a57xqi\",\"data-framer-appear-id\":\"a57xqi\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-700\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"BGqRTUoO3\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dadkqk\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"l7tjcuS5s\",style:{backgroundColor:\"rgb(110, 107, 112)\",borderBottomLeftRadius:78,borderBottomRightRadius:78,borderTopLeftRadius:78,borderTopRightRadius:78},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/xzZwBwJd5I7isRhSXViTrSEaIw.png\",srcSet:\"https://framerusercontent.com/images/xzZwBwJd5I7isRhSXViTrSEaIw.png?scale-down-to=512 512w,https://framerusercontent.com/images/xzZwBwJd5I7isRhSXViTrSEaIw.png 1000w\"},className:\"framer-r2dxuf\",\"data-framer-name\":\"image 4\",layoutDependency:layoutDependency,layoutId:\"nPsZ8aYEz\"})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1nnymcz\",\"data-framer-appear-id\":\"1nnymcz\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"jc08vIvCA\",optimized:true,children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-8lg53x\",\"data-border\":true,\"data-framer-appear-id\":\"8lg53x\",\"data-framer-name\":\"Switch Group\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"TN0uFEAMM\",optimized:true,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(74, 77, 85)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(67, 58, 91)\",borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-549tez\",layoutDependency:layoutDependency,layoutId:\"pTC3U7S6p\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"I need CLTV fields for...\"})}),className:\"framer-17tp8sg\",\"data-framer-appear-id\":\"17tp8sg\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-500\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"DdVvTjqHE\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"Data Query Expert\"})}),className:\"framer-1uiepi7\",\"data-framer-appear-id\":\"1uiepi7\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-700\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"GmAPImNuC\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7iz4ks\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"HAbarftua\",style:{backgroundColor:\"rgb(110, 107, 112)\",borderBottomLeftRadius:78,borderBottomRightRadius:78,borderTopLeftRadius:78,borderTopRightRadius:78},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1e3,pixelWidth:1e3,sizes:\"43px\",src:\"https://framerusercontent.com/images/OpzMnmzb5YDGBxIe6N9LoECGkw.png\",srcSet:\"https://framerusercontent.com/images/OpzMnmzb5YDGBxIe6N9LoECGkw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OpzMnmzb5YDGBxIe6N9LoECGkw.png 1000w\"},className:\"framer-1binj6l\",\"data-framer-name\":\"image 5\",layoutDependency:layoutDependency,layoutId:\"V7GdT4K9Z\",...addPropertyOverrides({\"PfZJB8ARA-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+24+0+24+-160+0+0+93+0+7),pixelHeight:1e3,pixelWidth:1e3,sizes:\"43px\",src:\"https://framerusercontent.com/images/OpzMnmzb5YDGBxIe6N9LoECGkw.png\",srcSet:\"https://framerusercontent.com/images/OpzMnmzb5YDGBxIe6N9LoECGkw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OpzMnmzb5YDGBxIe6N9LoECGkw.png 1000w\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-e8mip6\",\"data-border\":true,\"data-framer-appear-id\":\"e8mip6\",\"data-framer-name\":\"Switch Group\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ICwxzJhTP\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(74, 77, 85)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(67, 58, 91)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-obwjo3\",layoutDependency:layoutDependency,layoutId:\"KJAoQuzNM\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"I found 4 relevant fields…\"})}),className:\"framer-qchef8\",\"data-framer-appear-id\":\"qchef8\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-500\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"S_QIqiZuQ\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"Data Field Expert\"})}),className:\"framer-i8k7bx\",\"data-framer-appear-id\":\"i8k7bx\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-700\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"Pqq2HeVtP\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-whnua9\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"XFb2pKeD6\",style:{backgroundColor:\"rgb(110, 107, 112)\",borderBottomLeftRadius:78,borderBottomRightRadius:78,borderTopLeftRadius:78,borderTopRightRadius:78},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1e3,pixelWidth:1e3,sizes:\"45px\",src:\"https://framerusercontent.com/images/foamFJke7g48VTcYHRi9cT6ZW4.png\",srcSet:\"https://framerusercontent.com/images/foamFJke7g48VTcYHRi9cT6ZW4.png?scale-down-to=512 512w,https://framerusercontent.com/images/foamFJke7g48VTcYHRi9cT6ZW4.png 1000w\"},className:\"framer-1bxmtao\",\"data-framer-name\":\"image 2\",layoutDependency:layoutDependency,layoutId:\"Q6_Ma8HH6\",...addPropertyOverrides({\"PfZJB8ARA-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+24+0+24+-160+0+236+93+0+5),pixelHeight:1e3,pixelWidth:1e3,sizes:\"45px\",src:\"https://framerusercontent.com/images/foamFJke7g48VTcYHRi9cT6ZW4.png\",srcSet:\"https://framerusercontent.com/images/foamFJke7g48VTcYHRi9cT6ZW4.png?scale-down-to=512 512w,https://framerusercontent.com/images/foamFJke7g48VTcYHRi9cT6ZW4.png 1000w\"}}},baseVariant,gestureVariant)})})]})]})]})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3y9c3g\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"S1I9ZZd_j\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d4so5c\",\"data-framer-name\":\"Frame 427319043\",layoutDependency:layoutDependency,layoutId:\"VYxWtnEIz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-3pdqv1\",\"data-styles-preset\":\"IWiRiyhIZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Create specialized agents\"})}),className:\"framer-18usmfk\",\"data-framer-name\":\"List your customers\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lMkFJutf0\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-alignment\":\"center\"},children:\"Create agents that specialize in your important KPIs — similar to hiring analysts for individual teams.\"})}),className:\"framer-da7nyc\",\"data-framer-name\":\"Easily manage and keep track of your customer database.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Sq_Osqz5B\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1s8mw1k\",\"data-framer-appear-id\":\"1s8mw1k\",\"data-framer-name\":\"Card\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ocfuetDp5\",optimized:true,style:{backgroundColor:\"rgb(48, 48, 59)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[isDisplayed7()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1x4e1u4\",\"data-border\":true,\"data-framer-appear-id\":\"1x4e1u4\",\"data-framer-name\":\"Button\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"UzMOkwWZC\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(101, 49, 217)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(101, 49, 217)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"CREATE NEW AGENT\"})}),className:\"framer-gvd06w\",\"data-framer-name\":\"Button\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"I3311:10271;5654:121925\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-r4ecwq\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"YEpj2CFrQ\",style:{backgroundColor:\"rgb(48, 48, 59)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-18rhhmp\",\"data-framer-appear-id\":\"18rhhmp\",\"data-framer-name\":\"Frame 3261\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"EmvXctQ66\",optimized:true,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xstrj1\",\"data-framer-name\":\"Frame 3262\",layoutDependency:layoutDependency,layoutId:\"UfTk_KWSn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kaxl3f\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"yFW_qcC7t\",style:{backgroundColor:\"rgb(110, 107, 112)\",borderBottomLeftRadius:78,borderBottomRightRadius:78,borderTopLeftRadius:78,borderTopRightRadius:78},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1e3,pixelWidth:1e3,sizes:\"45px\",src:\"https://framerusercontent.com/images/uBKcNCjI75rKPv59dupToAhBR4.png\",srcSet:\"https://framerusercontent.com/images/uBKcNCjI75rKPv59dupToAhBR4.png?scale-down-to=512 512w,https://framerusercontent.com/images/uBKcNCjI75rKPv59dupToAhBR4.png 1000w\"},className:\"framer-cmo2pn\",\"data-framer-name\":\"image 4\",layoutDependency:layoutDependency,layoutId:\"Z3SljcKHf\",...addPropertyOverrides({\"u8E2rQSIH-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+24+0+0+0+0+0+24+0+0+0+0+5),pixelHeight:1e3,pixelWidth:1e3,sizes:\"45px\",src:\"https://framerusercontent.com/images/uBKcNCjI75rKPv59dupToAhBR4.png\",srcSet:\"https://framerusercontent.com/images/uBKcNCjI75rKPv59dupToAhBR4.png?scale-down-to=512 512w,https://framerusercontent.com/images/uBKcNCjI75rKPv59dupToAhBR4.png 1000w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1drch4x\",\"data-framer-name\":\"Frame 3329\",layoutDependency:layoutDependency,layoutId:\"lIh7rv5q4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Churn Reduction Analyst\"})}),className:\"framer-1n2jfmy\",\"data-framer-name\":\"Title\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"XvcaBCApt\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Since our last conversation, I've analyzed 5,322 new rows.\"})}),className:\"framer-kesfgw\",\"data-framer-name\":\"Chart Title\",fonts:[\"GF;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"NtdO2fafK\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-itau7v\",layoutDependency:layoutDependency,layoutId:\"wGNPjenna\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p6lquh\",\"data-framer-name\":\"Frame 3232\",layoutDependency:layoutDependency,layoutId:\"VHu7GbHIp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"58%\"})}),className:\"framer-eccne6\",\"data-framer-name\":\"Chart Title\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"gVrkoYJtH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mh3p64\",\"data-framer-name\":\"Badge\",layoutDependency:layoutDependency,layoutId:\"d4AyB0kd8\",style:{backgroundColor:\"rgb(242, 242, 242)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 37, 43))\"},children:\"Month to Date\"})}),className:\"framer-11hpyt9\",\"data-framer-name\":\"Text\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"vZzCFMtvI\",style:{\"--extracted-r6o4lv\":\"rgb(42, 37, 43)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ddcdfh\",\"data-framer-name\":\"Frame 3263\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:95,intrinsicWidth:91,layoutDependency:layoutDependency,layoutId:\"abpZ_G2ZI\",svg:'<svg width=\"91\" height=\"95\" viewBox=\"0 0 91 95\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_3655_9781)\">\\n<path d=\"M6.51179 24.2033L3.44851 24.8636C1.62903 25.2558 0.328125 26.8838 0.328125 28.7684V91.0078C0.328125 93.2126 2.09231 95 4.26854 95H259.278C261.5 95 263.286 93.1461 263.237 90.8955C263.066 82.9929 262.787 60.0567 263.326 44.626C263.333 44.4069 263.323 44.1891 263.296 43.9716L259.418 13.5672C259.089 10.9921 255.632 10.4727 254.58 12.8406C254.396 13.256 254.106 13.6144 253.74 13.8791L253.642 13.95C253.069 14.3644 252.659 14.9703 252.485 15.6609L248.552 31.2012C248.431 31.6793 248.005 32.0137 247.518 32.0137C247.204 32.0137 246.906 32.1537 246.704 32.3964L246.129 33.0843C244.522 35.0082 241.434 34.2132 240.928 31.7456L238.683 20.7836C238.167 18.2654 234.933 17.5865 233.472 19.6898C233.249 20.0105 232.965 20.2827 232.637 20.4905L232.587 20.5219C231.813 21.0119 231.284 21.8143 231.132 22.7261L227.526 44.4475C227.444 44.9394 227.272 45.4114 227.019 45.8392L226.488 46.7361C226.218 47.1911 226.041 47.696 225.966 48.2211L224.243 54.3498L222.52 60.4785C222.285 62.1284 220.89 63.3531 219.245 63.3531C217.507 63.3531 216.065 61.9909 215.944 60.2343L212.269 18.9245C212.071 16.0421 208.081 15.5756 207.24 18.3363C206.906 19.4298 205.909 20.1756 204.779 20.1756H202.772C201.181 20.1756 199.794 19.0786 199.409 17.5147C198.511 13.8763 193.364 14.0042 192.644 17.6829L191.842 21.7758C191.287 24.6089 187.42 24.9424 186.4 22.2451C186.117 21.4953 185.537 20.8995 184.802 20.6014L184.32 20.4061C183.943 20.2534 183.592 20.0426 183.278 19.7811L180.478 17.4446C180.171 17.1886 179.786 17.0486 179.388 17.0486C179.07 17.0486 178.757 16.9586 178.486 16.7886L178.051 16.5153C176.122 15.3054 173.583 16.2365 172.866 18.4173L170.385 25.9584C170.191 26.5462 169.775 27.0321 169.228 27.3092C168.649 27.6027 168.218 28.1295 168.041 28.7609L166.556 34.0641C165.776 36.8494 161.856 36.7813 161.171 33.9705C160.518 31.2946 156.855 31.0555 155.869 33.6245L154.674 36.7375C154.527 37.1214 154.162 37.3743 153.755 37.3743C153.362 37.3743 153.006 37.6114 152.85 37.9775L152.196 39.5131C150.888 42.5851 146.493 42.2761 145.617 39.0505L144.267 34.0837C144.136 33.6014 143.916 33.1484 143.62 32.7482L142.65 31.4377C142.278 30.9358 142.033 30.3499 141.934 29.7305L140.885 23.1266C140.369 19.8798 135.741 19.9285 135.292 23.1854C134.831 26.5248 130.046 26.455 129.681 23.1035L129.192 18.6287C128.862 15.6014 124.626 15.3161 123.903 18.2725C123.248 20.9531 119.527 21.0627 118.719 18.4251L117.903 15.7614C117.713 15.1426 117.358 14.5891 116.877 14.1625L116.836 14.1264C116.198 13.5608 115.774 12.788 115.637 11.9404L114.178 2.91165C113.584 -0.761302 108.476 -1.04258 107.493 2.54353C107.334 3.12049 107.032 3.6462 106.614 4.06963L106.212 4.47633C105.599 5.09735 105.206 5.90582 105.092 6.77651L104.154 13.9757C103.567 18.4777 97.1647 18.5574 96.4689 14.0713L96.36 13.3695C96.0558 11.408 94.1252 10.1589 92.2408 10.7044L91.8701 10.8117C90.5649 11.1895 89.1801 10.5651 88.5834 9.32981C87.3672 6.81195 83.6679 7.4135 83.2905 10.1905L81.7597 21.455C81.3725 24.3044 77.5154 24.8029 76.4345 22.1433L76.0894 21.2943C75.8692 20.7526 75.3481 20.399 74.7699 20.399C74.1557 20.399 73.6104 20.0008 73.4162 19.4104L73.0097 18.1752C72.0612 15.2922 68.0754 15.185 66.9772 18.0129L65.1539 22.708C65.0146 23.0668 64.6728 23.3027 64.2922 23.3027C63.996 23.3027 63.7176 23.4463 63.5433 23.689L60.8484 27.4433C60.4996 27.9291 59.9425 28.2166 59.3496 28.2166C58.5887 28.2166 57.9051 28.6878 57.6258 29.4048L55.1045 35.8759C54.9098 36.3758 54.4333 36.7042 53.9028 36.7042C53.3696 36.7042 52.8911 37.0362 52.6983 37.5399L49.0616 47.0421C48.9216 47.4078 48.5743 47.6488 48.1871 47.6488C47.8969 47.6488 47.6231 47.7849 47.4455 48.0174L46.7469 48.9315C45.0452 51.1585 41.5501 50.3492 40.9723 47.5943L38.8817 37.6266C38.7547 37.0214 38.4799 36.458 38.0825 35.9882C37.6149 35.4355 37.3186 34.7553 37.2309 34.0328L35.6862 21.3171C35.1914 17.244 29.6724 16.5043 28.1494 20.307C27.8348 21.0923 27.281 21.7553 26.5686 22.1995L26.4624 22.2657C25.4144 22.9191 24.7279 24.0309 24.6064 25.2715L22.2857 48.9647C22.0856 51.0069 20.39 52.5627 18.3645 52.5627H17.8997C15.9195 52.5627 14.2469 51.0738 13.992 49.0843L11.2395 27.5943C10.9433 25.2822 8.76271 23.7181 6.51179 24.2033Z\" fill=\"url(#paint0_linear_3655_9781)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M113.2 4.05173C112.776 1.44687 109.136 1.24739 108.436 3.79066C108.232 4.52991 107.842 5.20349 107.304 5.74601L106.903 6.15077C106.443 6.61432 106.147 7.21779 106.062 7.8677L105.124 15.0326C104.388 20.65 96.3608 20.7493 95.4884 15.1518L95.3796 14.4535C95.1672 13.0907 93.8194 12.2229 92.5038 12.6019L92.1332 12.7087C90.369 13.2169 88.4972 12.377 87.6907 10.7154C86.902 9.09044 84.5029 9.47866 84.2582 11.2708L82.7273 22.4817C82.2029 26.3223 76.9787 26.9943 75.5147 23.4095L75.1696 22.5644C75.1014 22.3975 74.9401 22.2885 74.761 22.2885C73.7227 22.2885 72.8009 21.6186 72.4725 20.6255L72.0661 19.3961C71.4086 17.4074 68.6457 17.3334 67.8845 19.2842L66.0611 23.9569C65.7772 24.6844 65.0861 25.1659 64.3128 25.1781L61.6352 28.8902C61.101 29.6307 60.2477 30.0689 59.3395 30.0689C58.983 30.0689 58.6628 30.2885 58.5319 30.6229L56.0105 37.0631C55.6672 37.9399 54.8273 38.5161 53.8923 38.5161C53.7657 38.5161 53.652 38.5946 53.6062 38.7136L49.9692 48.1706C49.6851 48.9095 48.9839 49.3989 48.1994 49.4084L47.5148 50.3C45.2994 53.1851 40.7494 52.1366 39.9972 48.5675L37.9064 38.6473C37.8137 38.2074 37.613 37.7981 37.3228 37.4566C36.7289 36.7582 36.3527 35.8985 36.2413 34.9855L34.6965 22.3303C34.3257 19.2934 30.1909 18.7419 29.0498 21.5772C28.6563 22.5548 27.9635 23.3802 27.0723 23.9331L26.9661 23.999C26.1801 24.4867 25.6651 25.3166 25.574 26.2426L23.2531 49.823C23.003 52.3635 20.8834 54.2991 18.3513 54.2991H17.8864C15.411 54.2991 13.3201 52.4468 13.0015 49.9717L10.2487 28.5841C10.0266 26.8583 8.39099 25.6908 6.70267 26.053L1.51853 27.3796C0.986341 27.4937 0.463128 27.1513 0.349897 26.6147C0.236666 26.0782 0.576296 25.5506 1.10848 25.4365L6.29263 24.1098C9.10648 23.5062 11.8324 25.452 12.2027 28.3285L14.9555 49.7161C15.1466 51.2011 16.4011 52.3125 17.8864 52.3125H18.3513C19.8705 52.3125 21.1423 51.1511 21.2924 49.6268L23.6133 26.0464C23.7652 24.5031 24.6234 23.1199 25.9334 22.3071L26.0397 22.2412C26.5734 21.91 26.9883 21.4157 27.224 20.8302C29.1293 16.0963 36.0331 17.0171 36.6521 22.0876L38.1969 34.7428C38.261 35.2678 38.4773 35.7621 38.8188 36.1638C39.3235 36.7575 39.6725 37.4694 39.8337 38.2344L41.9245 48.1545C42.328 50.0689 44.7685 50.6314 45.9568 49.0838L46.6555 48.174C47.0131 47.7083 47.5608 47.4321 48.1437 47.4222L51.7691 37.9954C52.109 37.1118 52.9524 36.5295 53.8923 36.5295C54.0183 36.5295 54.1315 36.4519 54.1778 36.3337L56.6992 29.8934C57.1271 28.8005 58.1741 28.0823 59.3395 28.0823C59.6173 28.0823 59.8783 27.9483 60.0417 27.7218L62.7368 23.9854C63.0885 23.4978 63.6458 23.2049 64.2421 23.1922L66.0509 18.5568C67.4862 14.8788 72.6957 15.0182 73.9353 18.7679L74.3418 19.9973C74.4019 20.1792 74.5708 20.3019 74.761 20.3019C75.7385 20.3019 76.6194 20.8967 76.9916 21.808L77.3367 22.6531C78.0347 24.3622 80.5253 24.0418 80.7754 22.2108L82.3063 10.9999C82.8164 7.26448 87.8166 6.45535 89.4605 9.84216C89.8474 10.6394 90.7455 11.0423 91.5919 10.7985L91.9625 10.6917C94.4162 9.98491 96.9299 11.6033 97.326 14.1451L97.4349 14.8434C97.9542 18.1754 102.732 18.1162 103.17 14.7724L104.109 7.60758C104.251 6.52439 104.743 5.51861 105.509 4.74603L105.911 4.34127C106.209 4.04098 106.424 3.66814 106.537 3.25896C107.803 -1.33583 114.38 -0.975434 115.144 3.73062L116.604 12.7164C116.704 13.3323 117.013 13.8939 117.479 14.3049L117.52 14.3409C118.138 14.8864 118.595 15.5941 118.838 16.3853L119.654 19.0364C120.167 20.7008 122.526 20.6317 122.942 18.94C123.929 14.9211 129.716 15.3089 130.167 19.4242L130.655 23.8778C130.893 26.0514 134.012 26.0966 134.312 23.9309C134.918 19.5603 141.158 19.495 141.854 23.8519L142.903 30.4243C142.976 30.8819 143.158 31.3146 143.434 31.6854L144.404 32.9897C144.775 33.4875 145.049 34.0511 145.213 34.651L146.563 39.5942C147.193 41.8998 150.349 42.1206 151.289 39.9249L151.943 38.3966C152.254 37.6682 152.966 37.1964 153.753 37.1964L154.948 34.0977C156.283 30.6369 161.242 30.959 162.125 34.5639C162.568 36.3722 165.102 36.416 165.606 34.6241L167.092 29.3461C167.344 28.4493 167.959 27.7009 168.786 27.284C169.099 27.1261 169.338 26.8491 169.448 26.5141L171.93 19.0088C172.848 16.2302 176.098 15.0439 178.568 16.5855L179.004 16.8575C179.119 16.9294 179.252 16.9675 179.388 16.9675C180.014 16.9675 180.62 17.1869 181.103 17.5881L183.904 19.9136C184.139 20.1087 184.402 20.2661 184.685 20.3801L185.167 20.5744C186.158 20.974 186.938 21.7725 187.32 22.7773C187.986 24.5312 190.513 24.3144 190.876 22.4721L191.678 18.3987C192.603 13.6974 199.212 13.5339 200.365 18.1838C200.641 19.298 201.634 20.0796 202.773 20.0796H204.78C205.478 20.0796 206.094 19.6213 206.3 18.9493C207.463 15.1507 212.979 15.7926 213.254 19.7585L216.928 59.8335C217.014 61.0612 218.026 62.0134 219.247 62.0134C220.402 62.0134 221.382 61.1574 221.547 60.0042L224.994 48.8433C225.087 48.1899 225.309 47.5619 225.646 46.9959L226.177 46.1032C226.367 45.7839 226.496 45.4316 226.557 45.0644L230.164 23.4465C230.362 22.2588 231.055 21.2136 232.068 20.5752L232.118 20.544C232.335 20.4074 232.522 20.2285 232.669 20.0178C234.627 17.2134 238.96 18.1186 239.651 21.4762L241.897 32.3859C242.236 34.0312 244.305 34.5612 245.381 33.2785L245.956 32.5939C246.346 32.1293 246.919 31.8613 247.522 31.8613C247.56 31.8613 247.592 31.8358 247.602 31.7992L251.535 16.333C251.767 15.419 252.312 14.6171 253.074 14.0687L253.172 13.9981C253.396 13.8368 253.574 13.6184 253.687 13.3652C255.146 10.0951 259.944 10.8124 260.4 14.3687L264.32 44.9536C264.39 45.4976 264.009 45.9957 263.469 46.066C262.929 46.1363 262.436 45.7522 262.366 45.2081L258.446 14.6233C258.245 13.0539 256.127 12.7374 255.483 14.1804C255.227 14.7541 254.825 15.249 254.317 15.6147L254.219 15.6853C253.835 15.9617 253.561 16.3658 253.444 16.8265L249.51 32.2927C249.278 33.2079 248.46 33.8479 247.522 33.8479C247.508 33.8479 247.493 33.8519 247.481 33.8592C247.473 33.8638 247.466 33.8699 247.46 33.8771L246.885 34.5617C244.748 37.1084 240.64 36.0561 239.968 32.7896L237.722 21.8799C237.381 20.225 235.245 19.7788 234.281 21.1611C233.982 21.5886 233.602 21.9515 233.162 22.2286L233.113 22.2599C232.578 22.5969 232.212 23.1489 232.107 23.776L228.5 45.3939C228.398 46.0059 228.183 46.5932 227.866 47.1253L227.335 48.018C227.133 48.3576 227 48.7344 226.944 49.1264L223.497 60.2874C223.193 62.4183 221.382 64 219.247 64C216.991 64 215.12 62.2406 214.963 59.9719L211.288 19.8969C211.166 18.1256 208.702 17.8389 208.182 19.5355C207.721 21.0401 206.342 22.0662 204.78 22.0662H202.773C200.73 22.0662 198.949 20.6642 198.453 18.6656C197.811 16.0733 194.126 16.1645 193.61 18.7854L192.808 22.8588C192.061 26.6557 186.853 27.1027 185.48 23.4878C185.295 23.0002 184.916 22.6128 184.435 22.4189L183.953 22.2246C183.482 22.0346 183.043 21.7723 182.651 21.4471L179.851 19.1216C179.72 19.0133 179.557 18.9541 179.388 18.9541C178.886 18.9541 178.394 18.813 177.967 18.5466L177.531 18.2746C176.143 17.4079 174.315 18.0749 173.799 19.6371L171.318 27.1423C171.042 27.9772 170.448 28.6673 169.667 29.0609C169.335 29.2282 169.089 29.5286 168.987 29.8884L167.502 35.1665C166.446 38.9186 161.14 38.8268 160.212 35.0404C159.79 33.3188 157.422 33.165 156.785 34.8177L155.59 37.9159C155.295 38.6798 154.566 39.183 153.753 39.183L153.098 40.7117C151.421 44.6307 145.787 44.2365 144.663 40.1216L143.313 35.1785C143.215 34.8185 143.05 34.4803 142.828 34.1816L141.858 32.8773C141.391 32.249 141.082 31.5156 140.958 30.7402L139.908 24.1677C139.572 22.0621 136.556 22.0936 136.263 24.2059C135.642 28.6872 129.19 28.5935 128.697 24.096L128.209 19.6425C127.999 17.732 125.313 17.552 124.854 19.4177C123.959 23.0617 118.876 23.2107 117.772 19.6252L116.956 16.9742C116.821 16.5337 116.567 16.1397 116.223 15.8359L116.182 15.8C115.372 15.0853 114.833 14.1086 114.659 13.0375L113.2 4.05173Z\" fill=\"#68DEF1\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_3655_9781\" x1=\"129.304\" y1=\"0\" x2=\"129.304\" y2=\"95\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#68DEF1\" stop-opacity=\"0.45\"/>\\n<stop offset=\"1\" stop-color=\"#68DEF1\" stop-opacity=\"0.2\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_3655_9781\">\\n<rect x=\"0.328125\" width=\"90\" height=\"95\" rx=\"8\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-m4vo2o\",\"data-framer-appear-id\":\"m4vo2o\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"T8Bgm3YcE\",optimized:true,children:isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-iwch5m\",\"data-framer-name\":\"Frame 15\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:245,intrinsicWidth:129,layoutDependency:layoutDependency,layoutId:\"j53jDvHpp\",svg:'<svg width=\"129\" height=\"245\" viewBox=\"0 0 129 245\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.7872 16.9688L110.239 109.505C113.842 112.927 111.42 118.993 106.452 118.993H57.6456C54.524 118.993 51.5153 120.161 49.2113 122.268L12.7111 155.637L15.0037 158.145L12.7111 155.637C9.18164 158.864 3.5 156.36 3.5 151.578V20.9571C3.5 16.1255 9.28347 13.6418 12.7872 16.9688Z\" fill=\"#2A252B\" stroke=\"white\" stroke-width=\"7\"/>\\n<rect x=\"56\" y=\"172\" width=\"73\" height=\"73\" rx=\"36.5\" fill=\"#008365\"/>\\n<line x1=\"72\" y1=\"207.624\" x2=\"113\" y2=\"207.624\" stroke=\"white\" stroke-width=\"6\"/>\\n<line x1=\"92.1094\" y1=\"229\" x2=\"92.1094\" y2=\"188\" stroke=\"white\" stroke-width=\"6\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xteovm\",\"data-framer-name\":\"Insights\",layoutDependency:layoutDependency,layoutId:\"sXmGDSR7B\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r728sg\",\"data-framer-name\":\"Frame 427319043\",layoutDependency:layoutDependency,layoutId:\"iF2gpA8Kj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-3pdqv1\",\"data-styles-preset\":\"IWiRiyhIZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get actionable insights\"})}),className:\"framer-qn4ck9\",\"data-framer-name\":\"View your insights\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"un0lQEDED\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-alignment\":\"center\"},children:\"Agents identify actionable insights for you and can help you plan how to act on them.\"})}),className:\"framer-xiyiux\",\"data-framer-name\":\"Gain valuable insights and analytics for informed decision-making.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vR2_R2n2b\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t9sejm\",\"data-framer-name\":\"_drag-n-drop-file-upload\",layoutDependency:layoutDependency,layoutId:\"yevvqXQeM\",style:{backgroundColor:\"rgb(53, 55, 68)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[isDisplayed10()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-rpsdns\",\"data-framer-appear-id\":\"rpsdns\",\"data-framer-name\":\"Frame 3338\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Oac3_A73Z\",optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gc5ogm\",\"data-framer-name\":\"Frame 3339\",layoutDependency:layoutDependency,layoutId:\"bjl89HIF1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Actionable Records\"})}),className:\"framer-1d01fx9\",\"data-framer-name\":\"Title\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"lisPthiNV\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1fd17e29-743c-4e6c-a884-ed9558fe121f, rgb(234, 230, 255)))\"},children:\"1230/2282 Actionable\"})}),className:\"framer-8kebrw\",\"data-framer-name\":\"Chart Title\",fonts:[\"GF;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"eMV4n_EHm\",style:{\"--extracted-r6o4lv\":\"var(--token-1fd17e29-743c-4e6c-a884-ed9558fe121f, rgb(234, 230, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bqna50\",\"data-framer-name\":\"Frame 3337\",layoutDependency:layoutDependency,layoutId:\"oba9tszwp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vtrvq8\",\"data-framer-name\":\"Frame 3335\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jGuF8v2sL\",onTap:onTap190l75s,style:{backgroundColor:\"var(--token-7d83949f-a967-48a3-8f07-15e8bd6e7d88, rgb(153, 123, 255))\",borderBottomLeftRadius:4,borderTopLeftRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ad1f0f62-7edb-4a0e-83cc-532215fdd7d2, rgb(25, 26, 34)))\"},children:\"52%\"})}),className:\"framer-x47i5q\",\"data-framer-name\":\"Title\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"wdr9Hp7pV\",style:{\"--extracted-r6o4lv\":\"var(--token-ad1f0f62-7edb-4a0e-83cc-532215fdd7d2, rgb(25, 26, 34))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-spzwr3\",\"data-framer-name\":\"Frame 3336\",layoutDependency:layoutDependency,layoutId:\"RwdcNzkFP\",style:{backgroundColor:\"var(--token-edc1ce34-4563-4783-bd2f-b7dff73ad716, rgb(215, 208, 255))\",borderBottomRightRadius:4,borderTopRightRadius:4}})]})]}),isDisplayed11()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rctso9\",layoutDependency:layoutDependency,layoutId:\"O9ltzr9Pa\",children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-44hl2k\",\"data-border\":true,\"data-framer-appear-id\":\"44hl2k\",\"data-framer-name\":\"Switch Group\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"HUzBlfZwo\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(74, 77, 85)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-354856ba-79e2-41e2-899f-fb2d039ec067, rgb(74, 77, 85))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z83k3v\",layoutDependency:layoutDependency,layoutId:\"GdROhnLOJ\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Offer eBill Credit\"})}),className:\"framer-1ua8ylc\",\"data-framer-appear-id\":\"1ua8ylc\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-500\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"RDtll4g8q\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gvhzsr\",\"data-framer-name\":\"Donut Chart\",layoutDependency:layoutDependency,layoutId:\"XKuJw_YYw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-tey7si\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"I3666:178162;220:100517\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"-1 -1 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-outside-1_3666_178163\" maskUnits=\"userSpaceOnUse\" x=\"-0.461792\" y=\"-0.461548\" width=\"39\" height=\"39\" fill=\"black\">\\n<rect fill=\"white\" x=\"-0.461792\" y=\"-0.461548\" width=\"39\" height=\"39\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.87 0.53891C22.1351 0.51592 25.3479 1.35931 28.1808 2.98307C31.0136 4.60684 33.3651 6.95287 34.9955 9.78191C36.6258 12.611 37.4767 15.8218 37.4613 19.087C37.4459 22.3521 36.5649 25.5548 34.9079 28.3684L34.9067 28.3704C34.8429 28.4787 34.7779 28.5864 34.7119 28.6935C34.7115 28.6941 34.7112 28.6947 34.7108 28.6952C34.3943 29.2082 34.0539 29.7036 33.6914 30.18C33.6914 30.18 33.6914 30.18 33.6914 30.18C33.6001 30.2999 33.5075 30.4186 33.4134 30.5361C33.1337 30.8856 32.8417 31.2244 32.5382 31.5517C30.7352 33.4965 28.5293 35.0353 26.0664 36.0558L26.0534 36.061C25.9449 36.1058 25.8359 36.1497 25.7264 36.1926L25.7123 36.1982C21.9638 37.6613 17.8399 37.8596 13.9684 36.7629C10.0968 35.6662 6.68952 33.3347 4.26517 30.1231L4.25713 30.1121C4.15419 29.9755 4.05306 29.8374 3.9538 29.6978L3.94582 29.6869C1.11153 25.6943 -0.0206251 20.7394 0.798405 15.9121L0.800127 15.9027C0.826439 15.7481 0.854713 15.5938 0.884937 15.44L0.886569 15.4311C1.46436 12.4988 2.74543 9.75061 4.6197 7.42264C6.49397 5.09467 8.90541 3.25654 11.6468 2.06618L12.6762 4.43694C10.3186 5.46066 8.24479 7.04145 6.63292 9.0435C6.09167 9.71576 5.60795 10.4288 5.18533 11.1748L5.18536 11.1749C4.34243 12.663 3.74828 14.2725 3.42077 15.9398L3.34834 16.3349C3.22732 17.0457 3.1545 17.7659 3.13124 18.4908C3.0488 21.0598 3.5913 23.6103 4.71211 25.9234L4.90046 26.2993C5.24453 26.9639 5.63301 27.5994 6.06179 28.2023L6.31964 28.5544C8.28854 31.1675 11.0321 33.1272 14.1915 34.1313L14.6366 34.2656C17.9639 35.2166 21.5108 35.0545 24.7375 33.804C24.754 33.7976 24.7705 33.7911 24.787 33.7847L25.0634 33.6735C27.3498 32.7287 29.3741 31.2668 30.9837 29.4148C31.2039 29.1614 31.4164 28.9007 31.6207 28.633C31.6253 28.6269 31.6299 28.6209 31.6345 28.6148C31.9486 28.2021 32.2414 27.7754 32.5122 27.3364L32.6797 27.0587C33.7798 25.1911 34.4894 23.1119 34.7569 20.9476C35.1013 18.1608 34.7004 15.3324 33.5952 12.751C32.4899 10.1696 30.7197 7.9275 28.4653 6.25339L28.4655 6.25315C27.9644 5.88105 27.4403 5.53772 26.8955 5.22544C24.4592 3.82901 21.6962 3.10369 18.8882 3.12346L18.87 0.53891Z\"/>\\n</mask>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.87 0.53891C22.1351 0.51592 25.3479 1.35931 28.1808 2.98307C31.0136 4.60684 33.3651 6.95287 34.9955 9.78191C36.6258 12.611 37.4767 15.8218 37.4613 19.087C37.4459 22.3521 36.5649 25.5548 34.9079 28.3684L34.9067 28.3704C34.8429 28.4787 34.7779 28.5864 34.7119 28.6935C34.7115 28.6941 34.7112 28.6947 34.7108 28.6952C34.3943 29.2082 34.0539 29.7036 33.6914 30.18C33.6914 30.18 33.6914 30.18 33.6914 30.18C33.6001 30.2999 33.5075 30.4186 33.4134 30.5361C33.1337 30.8856 32.8417 31.2244 32.5382 31.5517C30.7352 33.4965 28.5293 35.0353 26.0664 36.0558L26.0534 36.061C25.9449 36.1058 25.8359 36.1497 25.7264 36.1926L25.7123 36.1982C21.9638 37.6613 17.8399 37.8596 13.9684 36.7629C10.0968 35.6662 6.68952 33.3347 4.26517 30.1231L4.25713 30.1121C4.15419 29.9755 4.05306 29.8374 3.9538 29.6978L3.94582 29.6869C1.11153 25.6943 -0.0206251 20.7394 0.798405 15.9121L0.800127 15.9027C0.826439 15.7481 0.854713 15.5938 0.884937 15.44L0.886569 15.4311C1.46436 12.4988 2.74543 9.75061 4.6197 7.42264C6.49397 5.09467 8.90541 3.25654 11.6468 2.06618L12.6762 4.43694C10.3186 5.46066 8.24479 7.04145 6.63292 9.0435C6.09167 9.71576 5.60795 10.4288 5.18533 11.1748L5.18536 11.1749C4.34243 12.663 3.74828 14.2725 3.42077 15.9398L3.34834 16.3349C3.22732 17.0457 3.1545 17.7659 3.13124 18.4908C3.0488 21.0598 3.5913 23.6103 4.71211 25.9234L4.90046 26.2993C5.24453 26.9639 5.63301 27.5994 6.06179 28.2023L6.31964 28.5544C8.28854 31.1675 11.0321 33.1272 14.1915 34.1313L14.6366 34.2656C17.9639 35.2166 21.5108 35.0545 24.7375 33.804C24.754 33.7976 24.7705 33.7911 24.787 33.7847L25.0634 33.6735C27.3498 32.7287 29.3741 31.2668 30.9837 29.4148C31.2039 29.1614 31.4164 28.9007 31.6207 28.633C31.6253 28.6269 31.6299 28.6209 31.6345 28.6148C31.9486 28.2021 32.2414 27.7754 32.5122 27.3364L32.6797 27.0587C33.7798 25.1911 34.4894 23.1119 34.7569 20.9476C35.1013 18.1608 34.7004 15.3324 33.5952 12.751C32.4899 10.1696 30.7197 7.9275 28.4653 6.25339L28.4655 6.25315C27.9644 5.88105 27.4403 5.53772 26.8955 5.22544C24.4592 3.82901 21.6962 3.10369 18.8882 3.12346L18.87 0.53891Z\" fill=\"#D4C7FD\"/>\\n<path d=\"M28.1808 2.98307L28.6781 2.11549L28.6781 2.11549L28.1808 2.98307ZM18.87 0.53891L18.863 -0.461065L17.863 -0.454025L17.87 0.54595L18.87 0.53891ZM34.9955 9.78191L35.8619 9.2826L35.8619 9.2826L34.9955 9.78191ZM37.4613 19.087L36.4613 19.0822L37.4613 19.087ZM34.9079 28.3684L35.7645 28.8845L35.7696 28.8758L34.9079 28.3684ZM34.9067 28.3704L34.0501 27.8543L34.0451 27.8629L34.9067 28.3704ZM34.7119 28.6935L33.8608 28.1684L33.8606 28.1688L34.7119 28.6935ZM34.7108 28.6952L35.5618 29.2204L35.5621 29.22L34.7108 28.6952ZM33.6914 30.18L34.4723 30.8047L34.4798 30.7952L34.4872 30.7855L33.6914 30.18ZM33.6914 30.18L32.9105 29.5553L32.9029 29.5648L32.8956 29.5744L33.6914 30.18ZM33.4134 30.5361L34.1942 31.161L34.1942 31.1609L33.4134 30.5361ZM32.5382 31.5517L31.8049 30.8718L31.8049 30.8719L32.5382 31.5517ZM26.0664 36.0558L26.4396 36.9836L26.4492 36.9796L26.0664 36.0558ZM26.0534 36.061L25.6803 35.1332L25.6714 35.1368L26.0534 36.061ZM25.7264 36.1926L25.362 35.2612L25.3532 35.2648L25.7264 36.1926ZM25.7123 36.1982L26.0759 37.1298L26.0855 37.126L25.7123 36.1982ZM13.9684 36.7629L14.2409 35.8008L14.2409 35.8008L13.9684 36.7629ZM4.26517 30.1231L3.45832 30.7139L3.46264 30.7197L3.46704 30.7256L4.26517 30.1231ZM4.25713 30.1121L5.06406 29.5213L5.0557 29.5102L4.25713 30.1121ZM3.9538 29.6978L4.76888 29.1183L4.76066 29.1071L3.9538 29.6978ZM3.94582 29.6869L3.13039 30.2658L3.13463 30.2717L3.13896 30.2776L3.94582 29.6869ZM0.798405 15.9121L-0.18529 15.7317L-0.187505 15.7448L0.798405 15.9121ZM0.800127 15.9027L1.78381 16.083L1.78595 16.0704L0.800127 15.9027ZM0.884937 15.44L1.86625 15.6329L1.86855 15.6203L0.884937 15.44ZM0.886569 15.4311L-0.0946513 15.2378L-0.0970406 15.2508L0.886569 15.4311ZM4.6197 7.42264L3.84077 6.79552L3.84077 6.79552L4.6197 7.42264ZM11.6468 2.06618L12.5641 1.66789L12.1658 0.750631L11.2485 1.14892L11.6468 2.06618ZM12.6762 4.43694L13.0745 5.3542L13.9918 4.95592L13.5935 4.03866L12.6762 4.43694ZM6.63292 9.0435L7.41184 9.67062L7.41184 9.67062L6.63292 9.0435ZM5.18533 11.1748L4.31523 10.682L3.8242 11.5488L4.68919 12.0431L5.18533 11.1748ZM5.18536 11.1749L6.05547 11.6677L6.54647 10.8009L5.6815 10.3066L5.18536 11.1749ZM3.42077 15.9398L2.43944 15.7471L2.43716 15.7595L3.42077 15.9398ZM3.34834 16.3349L2.36465 16.1546L2.36253 16.1671L3.34834 16.3349ZM3.13124 18.4908L2.13175 18.4587L2.13175 18.4587L3.13124 18.4908ZM4.71211 25.9234L3.81211 26.3595L3.81805 26.3713L4.71211 25.9234ZM4.90046 26.2993L4.00632 26.7473L4.01241 26.759L4.90046 26.2993ZM6.06179 28.2023L5.2468 28.7819L5.25493 28.793L6.06179 28.2023ZM6.31964 28.5544L5.51271 29.1452L5.52098 29.1562L6.31964 28.5544ZM14.1915 34.1313L13.8887 35.0843L13.8956 35.0865L13.9026 35.0886L14.1915 34.1313ZM14.6366 34.2656L14.3477 35.2229L14.3547 35.225L14.3618 35.227L14.6366 34.2656ZM24.7375 33.804L25.0989 34.7364L25.099 34.7363L24.7375 33.804ZM24.787 33.7847L25.1515 34.7159L25.1602 34.7125L24.787 33.7847ZM25.0634 33.6735L25.4366 34.6013L25.4453 34.5977L25.0634 33.6735ZM30.9837 29.4148L30.2289 28.7588L30.2289 28.7588L30.9837 29.4148ZM31.6207 28.633L32.4156 29.2397L32.4157 29.2396L31.6207 28.633ZM31.6345 28.6148L30.8388 28.0092L30.8387 28.0093L31.6345 28.6148ZM32.5122 27.3364L33.3633 27.8615L33.3686 27.8527L32.5122 27.3364ZM32.6797 27.0587L33.5361 27.575L33.5413 27.5662L32.6797 27.0587ZM34.7569 20.9476L35.7493 21.0703L35.7493 21.0703L34.7569 20.9476ZM33.5952 12.751L34.5144 12.3574L34.5144 12.3574L33.5952 12.751ZM28.4653 6.25339L27.6616 5.65831L27.0673 6.46088L27.8691 7.05624L28.4653 6.25339ZM28.4655 6.25315L29.2691 6.84822L29.8634 6.04565L29.0616 5.4503L28.4655 6.25315ZM26.8955 5.22544L26.3982 6.09303L26.3982 6.09303L26.8955 5.22544ZM18.8882 3.12346L17.8882 3.1305L17.8953 4.13048L18.8952 4.12344L18.8882 3.12346ZM28.6781 2.11549C25.6918 0.403776 22.305 -0.4853 18.863 -0.461065L18.8771 1.53889C21.9653 1.51714 25.0041 2.31485 27.6835 3.85066L28.6781 2.11549ZM35.8619 9.2826C34.1432 6.30032 31.6643 3.82721 28.6781 2.11549L27.6835 3.85066C30.3629 5.38646 32.587 7.60542 34.129 10.2812L35.8619 9.2826ZM38.4613 19.0917C38.4775 15.6496 37.5806 12.2649 35.8619 9.2826L34.129 10.2812C35.6711 12.957 36.4759 15.9939 36.4613 19.0822L38.4613 19.0917ZM35.7696 28.8758C37.5163 25.9099 38.4451 22.5337 38.4613 19.0917L36.4613 19.0822C36.4468 22.1706 35.6134 25.1998 34.0462 27.8609L35.7696 28.8758ZM35.7632 28.8865L35.7644 28.8845L34.0514 27.8522L34.0502 27.8543L35.7632 28.8865ZM35.563 29.2185C35.6326 29.1057 35.701 28.9922 35.7683 28.878L34.0451 27.8629C33.9847 27.9653 33.9233 28.0672 33.8608 28.1684L35.563 29.2185ZM35.5621 29.22C35.5649 29.2155 35.5671 29.2118 35.5684 29.2096C35.5691 29.2084 35.5697 29.2074 35.5701 29.2068C35.5704 29.2063 35.5707 29.2058 35.5707 29.2058C35.5709 29.2054 35.57 29.2069 35.569 29.2087C35.5678 29.2107 35.5657 29.214 35.5632 29.2182L33.8606 28.1688C33.8579 28.1732 33.8557 28.1769 33.8543 28.1792C33.8536 28.1803 33.853 28.1813 33.8527 28.1819C33.8523 28.1825 33.852 28.183 33.852 28.183C33.8518 28.1834 33.8527 28.1819 33.8538 28.1801C33.855 28.1781 33.857 28.1747 33.8596 28.1705L35.5621 29.22ZM34.4872 30.7855C34.8694 30.2833 35.2281 29.7611 35.5618 29.2204L33.8598 28.1701C33.5604 28.6553 33.2385 29.1238 32.8956 29.5744L34.4872 30.7855ZM34.4722 30.8047C34.3906 30.9067 34.3025 30.976 34.2312 31.0218C34.1954 31.0447 34.1621 31.0628 34.1333 31.077C34.1046 31.0912 34.0787 31.1022 34.057 31.1107C34.0353 31.1192 34.0163 31.1259 34.001 31.1308C33.9857 31.1358 33.9727 31.1396 33.963 31.1424C33.9534 31.1451 33.9456 31.1471 33.9411 31.1483C33.9369 31.1494 33.9333 31.1503 33.9339 31.1501C33.9339 31.1501 33.9339 31.1501 33.9339 31.1501C33.9339 31.1501 33.9339 31.1501 33.9339 31.1501C33.934 31.1501 33.934 31.1501 33.934 31.1501C33.9341 31.1501 33.9342 31.15 33.9344 31.15C33.9346 31.1499 33.9351 31.1498 33.9357 31.1497C33.9368 31.1494 33.9387 31.1489 33.9411 31.1483C33.9456 31.1471 33.9534 31.1451 33.963 31.1424C33.9727 31.1396 33.9857 31.1358 34.001 31.1308C34.0163 31.1259 34.0354 31.1192 34.057 31.1107C34.0787 31.1022 34.1046 31.0912 34.1334 31.077C34.1621 31.0628 34.1954 31.0447 34.2312 31.0217C34.3025 30.976 34.3907 30.9067 34.4723 30.8047L32.9105 29.5553C32.9921 29.4533 33.0803 29.3839 33.1516 29.3382C33.1874 29.3152 33.2207 29.2971 33.2494 29.2829C33.2782 29.2688 33.3041 29.2577 33.3257 29.2492C33.3474 29.2407 33.3665 29.2341 33.3818 29.2291C33.3971 29.2241 33.4101 29.2203 33.4197 29.2176C33.4294 29.2149 33.4371 29.2128 33.4417 29.2116C33.4459 29.2106 33.4495 29.2097 33.4488 29.2098C33.4488 29.2098 33.4488 29.2098 33.4488 29.2098C33.4488 29.2098 33.4488 29.2098 33.4488 29.2098C33.4488 29.2098 33.4488 29.2098 33.4487 29.2099C33.4487 29.2099 33.4485 29.2099 33.4484 29.2099C33.4481 29.21 33.4476 29.2101 33.4471 29.2103C33.4459 29.2106 33.444 29.211 33.4417 29.2117C33.4371 29.2128 33.4293 29.2149 33.4197 29.2176C33.4101 29.2203 33.397 29.2241 33.3817 29.2291C33.3665 29.2341 33.3474 29.2407 33.3257 29.2492C33.3041 29.2577 33.2781 29.2688 33.2494 29.283C33.2206 29.2971 33.1874 29.3152 33.1515 29.3382C33.0803 29.3839 32.9921 29.4533 32.9105 29.5553L34.4722 30.8047ZM34.1942 31.1609C34.2933 31.0371 34.391 30.9119 34.4871 30.7855L32.8956 29.5744C32.8092 29.6879 32.7216 29.8002 32.6327 29.9112L34.1942 31.1609ZM33.2715 32.2316C33.5914 31.8865 33.8992 31.5295 34.1942 31.161L32.6327 29.9112C32.3681 30.2418 32.0919 30.5622 31.8049 30.8718L33.2715 32.2316ZM26.4492 36.9796C29.0455 35.9039 31.3709 34.2817 33.2715 32.2316L31.8049 30.8719C30.0996 32.7112 28.0131 34.1668 25.6837 35.1319L26.4492 36.9796ZM26.4266 36.9888L26.4396 36.9835L25.6933 35.128L25.6803 35.1332L26.4266 36.9888ZM26.0907 37.1238C26.2062 37.0786 26.3211 37.0324 26.4355 36.9851L25.6714 35.1368C25.5687 35.1793 25.4656 35.2208 25.362 35.2613L26.0907 37.1238ZM26.0855 37.126L26.0995 37.1203L25.3532 35.2648L25.3391 35.2704L26.0855 37.126ZM13.6958 37.725C17.7771 38.8811 22.1244 38.6721 26.0759 37.1298L25.3487 35.2667C21.8033 36.6505 17.9028 36.838 14.2409 35.8008L13.6958 37.725ZM3.46704 30.7256C6.02272 34.1111 9.61454 36.569 13.6958 37.725L14.2409 35.8008C10.579 34.7635 7.35633 32.5582 5.06329 29.5206L3.46704 30.7256ZM3.45029 30.7029L3.45832 30.7139L5.07201 29.5323L5.06398 29.5214L3.45029 30.7029ZM3.13879 30.2773C3.24344 30.4244 3.35004 30.57 3.45856 30.714L5.0557 29.5102C4.95833 29.381 4.86269 29.2504 4.7688 29.1183L3.13879 30.2773ZM3.13896 30.2776L3.14693 30.2885L4.76066 29.1071L4.75268 29.0962L3.13896 30.2776ZM-0.187505 15.7448C-1.0509 20.8336 0.142584 26.0569 3.13039 30.2658L4.76124 29.108C2.08048 25.3317 1.00965 20.6452 1.78431 16.0793L-0.187505 15.7448ZM-0.183481 15.7223L-0.185203 15.7317L1.78201 16.0924L1.78373 16.083L-0.183481 15.7223ZM-0.0962944 15.2472C-0.128156 15.4093 -0.157961 15.5719 -0.185699 15.7349L1.78595 16.0704C1.81084 15.9242 1.83758 15.7783 1.86617 15.6329L-0.0962944 15.2472ZM-0.0970406 15.2508L-0.0986729 15.2597L1.86855 15.6203L1.87018 15.6114L-0.0970406 15.2508ZM3.84077 6.79552C1.86498 9.24959 0.514524 12.1467 -0.0945652 15.2378L1.8677 15.6245C2.4142 12.851 3.62587 10.2516 5.39862 8.04976L3.84077 6.79552ZM11.2485 1.14892C8.35863 2.40376 5.81657 4.34145 3.84077 6.79552L5.39862 8.04976C7.17137 5.84789 9.45219 4.10932 12.0451 2.98344L11.2485 1.14892ZM13.5935 4.03866L12.5641 1.66789L10.7296 2.46447L11.759 4.83523L13.5935 4.03866ZM7.41184 9.67062C8.92219 7.79467 10.8654 6.31344 13.0745 5.3542L12.278 3.51968C9.77184 4.60787 7.56739 6.28823 5.85399 8.41638L7.41184 9.67062ZM6.05543 11.6677C6.45143 10.9686 6.90468 10.3005 7.41184 9.67062L5.85399 8.41638C5.27866 9.13098 4.76447 9.88891 4.31523 10.682L6.05543 11.6677ZM5.6815 10.3066L5.68147 10.3066L4.68919 12.0431L4.68922 12.0431L5.6815 10.3066ZM4.40202 16.1326C4.7089 14.5703 5.26563 13.0621 6.05547 11.6677L4.31525 10.682C3.41922 12.2639 2.78766 13.9747 2.43952 15.7471L4.40202 16.1326ZM4.33195 16.5152L4.40438 16.1201L2.43716 15.7595L2.36473 16.1546L4.33195 16.5152ZM4.13072 18.5229C4.15252 17.8436 4.22075 17.1688 4.33415 16.5028L2.36253 16.1671C2.23388 16.9226 2.15648 17.6882 2.13175 18.4587L4.13072 18.5229ZM5.61202 25.4873C4.56181 23.3199 4.05348 20.93 4.13072 18.5229L2.13175 18.4587C2.04413 21.1895 2.62079 23.9007 3.81219 26.3594L5.61202 25.4873ZM5.79453 25.8514L5.60617 25.4754L3.81805 26.3713L4.0064 26.7472L5.79453 25.8514ZM6.8767 27.6227C6.47495 27.0578 6.11093 26.4624 5.78851 25.8396L4.01241 26.759C4.37812 27.4655 4.79108 28.141 5.24688 28.7818L6.8767 27.6227ZM7.12651 27.9637L6.86865 27.6115L5.25493 28.793L5.51278 29.1452L7.12651 27.9637ZM14.4944 33.1782C11.534 32.2374 8.96321 30.4012 7.11831 27.9527L5.52098 29.1562C7.61387 31.9338 10.5302 34.017 13.8887 35.0843L14.4944 33.1782ZM14.9255 33.3082L14.4804 33.1739L13.9026 35.0886L14.3477 35.2229L14.9255 33.3082ZM24.3761 32.8715C21.3527 34.0433 18.0292 34.1952 14.9114 33.3041L14.3618 35.227C17.8986 36.238 21.669 36.0657 25.0989 34.7364L24.3761 32.8715ZM24.4224 32.8535C24.4071 32.8595 24.3916 32.8655 24.3761 32.8716L25.099 34.7363C25.1164 34.7296 25.1339 34.7228 25.1515 34.7159L24.4224 32.8535ZM24.6902 32.7457L24.4138 32.8569L25.1602 34.7125L25.4366 34.6012L24.6902 32.7457ZM30.2289 28.7588C28.7207 30.4942 26.8239 31.864 24.6815 32.7493L25.4453 34.5977C27.8757 33.5934 30.0275 32.0395 31.7385 30.0707L30.2289 28.7588ZM30.8258 28.0263C30.6344 28.2771 30.4353 28.5214 30.2289 28.7588L31.7385 30.0707C31.9726 29.8014 32.1985 29.5242 32.4156 29.2397L30.8258 28.0263ZM30.8387 28.0093C30.8332 28.0165 30.8298 28.021 30.8257 28.0263L32.4157 29.2396C32.4209 29.2329 32.4267 29.2252 32.4304 29.2203L30.8387 28.0093ZM31.6612 26.8113C31.4074 27.2227 31.133 27.6225 30.8388 28.0092L32.4303 29.2204C32.7642 28.7817 33.0754 28.3281 33.3633 27.8615L31.6612 26.8113ZM31.8233 26.5423L31.6558 26.8201L33.3686 27.8527L33.5361 27.575L31.8233 26.5423ZM33.7644 20.825C33.5138 22.853 32.8489 24.8011 31.8181 26.5511L33.5413 27.5662C34.7107 25.581 35.465 23.3709 35.7493 21.0703L33.7644 20.825ZM32.6759 13.1446C33.7115 15.5634 34.0871 18.2136 33.7644 20.825L35.7493 21.0703C36.1154 18.1079 35.6893 15.1014 34.5144 12.3574L32.6759 13.1446ZM27.8691 7.05624C29.9816 8.62491 31.6402 10.7258 32.6759 13.1446L34.5144 12.3574C33.3395 9.61339 31.4579 7.23009 29.0615 5.45053L27.8691 7.05624ZM27.6618 5.65808L27.6616 5.65831L29.2689 6.84846L29.2691 6.84822L27.6618 5.65808ZM26.3982 6.09303C26.9087 6.38563 27.3997 6.70734 27.8693 7.056L29.0616 5.4503C28.529 5.05476 27.9719 4.6898 27.3928 4.35786L26.3982 6.09303ZM18.8952 4.12344C21.5264 4.10491 24.1154 4.78454 26.3982 6.09303L27.3928 4.35786C24.8031 2.87347 21.866 2.10247 18.8812 2.12349L18.8952 4.12344ZM17.87 0.54595L17.8882 3.1305L19.8882 3.11642L19.87 0.53187L17.87 0.54595Z\" fill=\"#D4C7FD\" mask=\"url(#path-1-outside-1_3666_178163)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u6rf2d\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"I3666:178162;220:100520\",svg:'<svg width=\"12\" height=\"8\" viewBox=\"-1 -1 12 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-outside-1_3666_178166\" maskUnits=\"userSpaceOnUse\" x=\"-1.32605\" y=\"-1.45435\" width=\"12\" height=\"9\" fill=\"black\">\\n<rect fill=\"white\" x=\"-1.32605\" y=\"-1.45435\" width=\"12\" height=\"9\"/>\\n<path d=\"M9.48452 0.545654C6.38241 0.63231 3.35219 1.49956 0.67395 3.06725L1.9796 5.29783C4.28289 3.94962 6.88888 3.20379 9.5567 3.12926L9.48452 0.545654Z\"/>\\n</mask>\\n<path d=\"M9.48452 0.545654C6.38241 0.63231 3.35219 1.49956 0.67395 3.06725L1.9796 5.29783C4.28289 3.94962 6.88888 3.20379 9.5567 3.12926L9.48452 0.545654Z\" fill=\"#9664FA\"/>\\n<path d=\"M0.67395 3.06725L0.168787 2.20422L-0.694237 2.70938L-0.189074 3.57241L0.67395 3.06725ZM9.48452 0.545654L10.4841 0.517731L10.4562 -0.481879L9.4566 -0.453956L9.48452 0.545654ZM9.5567 3.12926L9.58462 4.12887L10.5842 4.10095L10.5563 3.10134L9.5567 3.12926ZM1.9796 5.29783L1.11658 5.80299L1.62174 6.66602L2.48476 6.16085L1.9796 5.29783ZM1.17911 3.93027C3.71229 2.4475 6.57837 1.62723 9.51245 1.54526L9.4566 -0.453956C6.18646 -0.362606 2.9921 0.551621 0.168787 2.20422L1.17911 3.93027ZM8.48491 0.573578L8.55709 3.15718L10.5563 3.10134L10.4841 0.517731L8.48491 0.573578ZM9.52877 2.12965C6.69292 2.20887 3.9228 3.00168 1.47444 4.4348L2.48476 6.16085C4.64298 4.89756 7.08483 4.1987 9.58462 4.12887L9.52877 2.12965ZM2.84263 4.79267L1.53697 2.56208L-0.189074 3.57241L1.11658 5.80299L2.84263 4.79267Z\" fill=\"#9664FA\" mask=\"url(#path-1-outside-1_3666_178166)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e58794ec-2a70-4d99-a68e-937f2c2cde7e, rgb(243, 241, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"14px\"},children:\"9\"}),\"%\"]})}),className:\"framer-7r2ee5\",\"data-framer-name\":\"Metric\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"I3666:178162;220:100524\",style:{\"--extracted-r6o4lv\":\"var(--token-e58794ec-2a70-4d99-a68e-937f2c2cde7e, rgb(243, 241, 255))\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-5syguk\",\"data-border\":true,\"data-framer-appear-id\":\"5syguk\",\"data-framer-name\":\"Switch Group\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"zcBqwvsFA\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(74, 77, 85)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-354856ba-79e2-41e2-899f-fb2d039ec067, rgb(74, 77, 85))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mdwgfy\",layoutDependency:layoutDependency,layoutId:\"byGllqLNo\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Waive Extra Data Charges\"})}),className:\"framer-f1o8rs\",\"data-framer-appear-id\":\"f1o8rs\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-500\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"A5_NVuk7x\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qhesee\",\"data-framer-name\":\"Donut Chart\",layoutDependency:layoutDependency,layoutId:\"sId1PVrbN\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1cnx2wn\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"es1OQHnaH\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"-1 -1 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-outside-1_3666_178163\" maskUnits=\"userSpaceOnUse\" x=\"-0.461792\" y=\"-0.461548\" width=\"39\" height=\"39\" fill=\"black\">\\n<rect fill=\"white\" x=\"-0.461792\" y=\"-0.461548\" width=\"39\" height=\"39\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.87 0.53891C22.1351 0.51592 25.3479 1.35931 28.1808 2.98307C31.0136 4.60684 33.3651 6.95287 34.9955 9.78191C36.6258 12.611 37.4767 15.8218 37.4613 19.087C37.4459 22.3521 36.5649 25.5548 34.9079 28.3684L34.9067 28.3704C34.8429 28.4787 34.7779 28.5864 34.7119 28.6935C34.7115 28.6941 34.7112 28.6947 34.7108 28.6952C34.3943 29.2082 34.0539 29.7036 33.6914 30.18C33.6914 30.18 33.6914 30.18 33.6914 30.18C33.6001 30.2999 33.5075 30.4186 33.4134 30.5361C33.1337 30.8856 32.8417 31.2244 32.5382 31.5517C30.7352 33.4965 28.5293 35.0353 26.0664 36.0558L26.0534 36.061C25.9449 36.1058 25.8359 36.1497 25.7264 36.1926L25.7123 36.1982C21.9638 37.6613 17.8399 37.8596 13.9684 36.7629C10.0968 35.6662 6.68952 33.3347 4.26517 30.1231L4.25713 30.1121C4.15419 29.9755 4.05306 29.8374 3.9538 29.6978L3.94582 29.6869C1.11153 25.6943 -0.0206251 20.7394 0.798405 15.9121L0.800127 15.9027C0.826439 15.7481 0.854713 15.5938 0.884937 15.44L0.886569 15.4311C1.46436 12.4988 2.74543 9.75061 4.6197 7.42264C6.49397 5.09467 8.90541 3.25654 11.6468 2.06618L12.6762 4.43694C10.3186 5.46066 8.24479 7.04145 6.63292 9.0435C6.09167 9.71576 5.60795 10.4288 5.18533 11.1748L5.18536 11.1749C4.34243 12.663 3.74828 14.2725 3.42077 15.9398L3.34834 16.3349C3.22732 17.0457 3.1545 17.7659 3.13124 18.4908C3.0488 21.0598 3.5913 23.6103 4.71211 25.9234L4.90046 26.2993C5.24453 26.9639 5.63301 27.5994 6.06179 28.2023L6.31964 28.5544C8.28854 31.1675 11.0321 33.1272 14.1915 34.1313L14.6366 34.2656C17.9639 35.2166 21.5108 35.0545 24.7375 33.804C24.754 33.7976 24.7705 33.7911 24.787 33.7847L25.0634 33.6735C27.3498 32.7287 29.3741 31.2668 30.9837 29.4148C31.2039 29.1614 31.4164 28.9007 31.6207 28.633C31.6253 28.6269 31.6299 28.6209 31.6345 28.6148C31.9486 28.2021 32.2414 27.7754 32.5122 27.3364L32.6797 27.0587C33.7798 25.1911 34.4894 23.1119 34.7569 20.9476C35.1013 18.1608 34.7004 15.3324 33.5952 12.751C32.4899 10.1696 30.7197 7.9275 28.4653 6.25339L28.4655 6.25315C27.9644 5.88105 27.4403 5.53772 26.8955 5.22544C24.4592 3.82901 21.6962 3.10369 18.8882 3.12346L18.87 0.53891Z\"/>\\n</mask>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.87 0.53891C22.1351 0.51592 25.3479 1.35931 28.1808 2.98307C31.0136 4.60684 33.3651 6.95287 34.9955 9.78191C36.6258 12.611 37.4767 15.8218 37.4613 19.087C37.4459 22.3521 36.5649 25.5548 34.9079 28.3684L34.9067 28.3704C34.8429 28.4787 34.7779 28.5864 34.7119 28.6935C34.7115 28.6941 34.7112 28.6947 34.7108 28.6952C34.3943 29.2082 34.0539 29.7036 33.6914 30.18C33.6914 30.18 33.6914 30.18 33.6914 30.18C33.6001 30.2999 33.5075 30.4186 33.4134 30.5361C33.1337 30.8856 32.8417 31.2244 32.5382 31.5517C30.7352 33.4965 28.5293 35.0353 26.0664 36.0558L26.0534 36.061C25.9449 36.1058 25.8359 36.1497 25.7264 36.1926L25.7123 36.1982C21.9638 37.6613 17.8399 37.8596 13.9684 36.7629C10.0968 35.6662 6.68952 33.3347 4.26517 30.1231L4.25713 30.1121C4.15419 29.9755 4.05306 29.8374 3.9538 29.6978L3.94582 29.6869C1.11153 25.6943 -0.0206251 20.7394 0.798405 15.9121L0.800127 15.9027C0.826439 15.7481 0.854713 15.5938 0.884937 15.44L0.886569 15.4311C1.46436 12.4988 2.74543 9.75061 4.6197 7.42264C6.49397 5.09467 8.90541 3.25654 11.6468 2.06618L12.6762 4.43694C10.3186 5.46066 8.24479 7.04145 6.63292 9.0435C6.09167 9.71576 5.60795 10.4288 5.18533 11.1748L5.18536 11.1749C4.34243 12.663 3.74828 14.2725 3.42077 15.9398L3.34834 16.3349C3.22732 17.0457 3.1545 17.7659 3.13124 18.4908C3.0488 21.0598 3.5913 23.6103 4.71211 25.9234L4.90046 26.2993C5.24453 26.9639 5.63301 27.5994 6.06179 28.2023L6.31964 28.5544C8.28854 31.1675 11.0321 33.1272 14.1915 34.1313L14.6366 34.2656C17.9639 35.2166 21.5108 35.0545 24.7375 33.804C24.754 33.7976 24.7705 33.7911 24.787 33.7847L25.0634 33.6735C27.3498 32.7287 29.3741 31.2668 30.9837 29.4148C31.2039 29.1614 31.4164 28.9007 31.6207 28.633C31.6253 28.6269 31.6299 28.6209 31.6345 28.6148C31.9486 28.2021 32.2414 27.7754 32.5122 27.3364L32.6797 27.0587C33.7798 25.1911 34.4894 23.1119 34.7569 20.9476C35.1013 18.1608 34.7004 15.3324 33.5952 12.751C32.4899 10.1696 30.7197 7.9275 28.4653 6.25339L28.4655 6.25315C27.9644 5.88105 27.4403 5.53772 26.8955 5.22544C24.4592 3.82901 21.6962 3.10369 18.8882 3.12346L18.87 0.53891Z\" fill=\"#D4C7FD\"/>\\n<path d=\"M28.1808 2.98307L28.6781 2.11549L28.6781 2.11549L28.1808 2.98307ZM18.87 0.53891L18.863 -0.461065L17.863 -0.454025L17.87 0.54595L18.87 0.53891ZM34.9955 9.78191L35.8619 9.2826L35.8619 9.2826L34.9955 9.78191ZM37.4613 19.087L36.4613 19.0822L37.4613 19.087ZM34.9079 28.3684L35.7645 28.8845L35.7696 28.8758L34.9079 28.3684ZM34.9067 28.3704L34.0501 27.8543L34.0451 27.8629L34.9067 28.3704ZM34.7119 28.6935L33.8608 28.1684L33.8606 28.1688L34.7119 28.6935ZM34.7108 28.6952L35.5618 29.2204L35.5621 29.22L34.7108 28.6952ZM33.6914 30.18L34.4723 30.8047L34.4798 30.7952L34.4872 30.7855L33.6914 30.18ZM33.6914 30.18L32.9105 29.5553L32.9029 29.5648L32.8956 29.5744L33.6914 30.18ZM33.4134 30.5361L34.1942 31.161L34.1942 31.1609L33.4134 30.5361ZM32.5382 31.5517L31.8049 30.8718L31.8049 30.8719L32.5382 31.5517ZM26.0664 36.0558L26.4396 36.9836L26.4492 36.9796L26.0664 36.0558ZM26.0534 36.061L25.6803 35.1332L25.6714 35.1368L26.0534 36.061ZM25.7264 36.1926L25.362 35.2612L25.3532 35.2648L25.7264 36.1926ZM25.7123 36.1982L26.0759 37.1298L26.0855 37.126L25.7123 36.1982ZM13.9684 36.7629L14.2409 35.8008L14.2409 35.8008L13.9684 36.7629ZM4.26517 30.1231L3.45832 30.7139L3.46264 30.7197L3.46704 30.7256L4.26517 30.1231ZM4.25713 30.1121L5.06406 29.5213L5.0557 29.5102L4.25713 30.1121ZM3.9538 29.6978L4.76888 29.1183L4.76066 29.1071L3.9538 29.6978ZM3.94582 29.6869L3.13039 30.2658L3.13463 30.2717L3.13896 30.2776L3.94582 29.6869ZM0.798405 15.9121L-0.18529 15.7317L-0.187505 15.7448L0.798405 15.9121ZM0.800127 15.9027L1.78381 16.083L1.78595 16.0704L0.800127 15.9027ZM0.884937 15.44L1.86625 15.6329L1.86855 15.6203L0.884937 15.44ZM0.886569 15.4311L-0.0946513 15.2378L-0.0970406 15.2508L0.886569 15.4311ZM4.6197 7.42264L3.84077 6.79552L3.84077 6.79552L4.6197 7.42264ZM11.6468 2.06618L12.5641 1.66789L12.1658 0.750631L11.2485 1.14892L11.6468 2.06618ZM12.6762 4.43694L13.0745 5.3542L13.9918 4.95592L13.5935 4.03866L12.6762 4.43694ZM6.63292 9.0435L7.41184 9.67062L7.41184 9.67062L6.63292 9.0435ZM5.18533 11.1748L4.31523 10.682L3.8242 11.5488L4.68919 12.0431L5.18533 11.1748ZM5.18536 11.1749L6.05547 11.6677L6.54647 10.8009L5.6815 10.3066L5.18536 11.1749ZM3.42077 15.9398L2.43944 15.7471L2.43716 15.7595L3.42077 15.9398ZM3.34834 16.3349L2.36465 16.1546L2.36253 16.1671L3.34834 16.3349ZM3.13124 18.4908L2.13175 18.4587L2.13175 18.4587L3.13124 18.4908ZM4.71211 25.9234L3.81211 26.3595L3.81805 26.3713L4.71211 25.9234ZM4.90046 26.2993L4.00632 26.7473L4.01241 26.759L4.90046 26.2993ZM6.06179 28.2023L5.2468 28.7819L5.25493 28.793L6.06179 28.2023ZM6.31964 28.5544L5.51271 29.1452L5.52098 29.1562L6.31964 28.5544ZM14.1915 34.1313L13.8887 35.0843L13.8956 35.0865L13.9026 35.0886L14.1915 34.1313ZM14.6366 34.2656L14.3477 35.2229L14.3547 35.225L14.3618 35.227L14.6366 34.2656ZM24.7375 33.804L25.0989 34.7364L25.099 34.7363L24.7375 33.804ZM24.787 33.7847L25.1515 34.7159L25.1602 34.7125L24.787 33.7847ZM25.0634 33.6735L25.4366 34.6013L25.4453 34.5977L25.0634 33.6735ZM30.9837 29.4148L30.2289 28.7588L30.2289 28.7588L30.9837 29.4148ZM31.6207 28.633L32.4156 29.2397L32.4157 29.2396L31.6207 28.633ZM31.6345 28.6148L30.8388 28.0092L30.8387 28.0093L31.6345 28.6148ZM32.5122 27.3364L33.3633 27.8615L33.3686 27.8527L32.5122 27.3364ZM32.6797 27.0587L33.5361 27.575L33.5413 27.5662L32.6797 27.0587ZM34.7569 20.9476L35.7493 21.0703L35.7493 21.0703L34.7569 20.9476ZM33.5952 12.751L34.5144 12.3574L34.5144 12.3574L33.5952 12.751ZM28.4653 6.25339L27.6616 5.65831L27.0673 6.46088L27.8691 7.05624L28.4653 6.25339ZM28.4655 6.25315L29.2691 6.84822L29.8634 6.04565L29.0616 5.4503L28.4655 6.25315ZM26.8955 5.22544L26.3982 6.09303L26.3982 6.09303L26.8955 5.22544ZM18.8882 3.12346L17.8882 3.1305L17.8953 4.13048L18.8952 4.12344L18.8882 3.12346ZM28.6781 2.11549C25.6918 0.403776 22.305 -0.4853 18.863 -0.461065L18.8771 1.53889C21.9653 1.51714 25.0041 2.31485 27.6835 3.85066L28.6781 2.11549ZM35.8619 9.2826C34.1432 6.30032 31.6643 3.82721 28.6781 2.11549L27.6835 3.85066C30.3629 5.38646 32.587 7.60542 34.129 10.2812L35.8619 9.2826ZM38.4613 19.0917C38.4775 15.6496 37.5806 12.2649 35.8619 9.2826L34.129 10.2812C35.6711 12.957 36.4759 15.9939 36.4613 19.0822L38.4613 19.0917ZM35.7696 28.8758C37.5163 25.9099 38.4451 22.5337 38.4613 19.0917L36.4613 19.0822C36.4468 22.1706 35.6134 25.1998 34.0462 27.8609L35.7696 28.8758ZM35.7632 28.8865L35.7644 28.8845L34.0514 27.8522L34.0502 27.8543L35.7632 28.8865ZM35.563 29.2185C35.6326 29.1057 35.701 28.9922 35.7683 28.878L34.0451 27.8629C33.9847 27.9653 33.9233 28.0672 33.8608 28.1684L35.563 29.2185ZM35.5621 29.22C35.5649 29.2155 35.5671 29.2118 35.5684 29.2096C35.5691 29.2084 35.5697 29.2074 35.5701 29.2068C35.5704 29.2063 35.5707 29.2058 35.5707 29.2058C35.5709 29.2054 35.57 29.2069 35.569 29.2087C35.5678 29.2107 35.5657 29.214 35.5632 29.2182L33.8606 28.1688C33.8579 28.1732 33.8557 28.1769 33.8543 28.1792C33.8536 28.1803 33.853 28.1813 33.8527 28.1819C33.8523 28.1825 33.852 28.183 33.852 28.183C33.8518 28.1834 33.8527 28.1819 33.8538 28.1801C33.855 28.1781 33.857 28.1747 33.8596 28.1705L35.5621 29.22ZM34.4872 30.7855C34.8694 30.2833 35.2281 29.7611 35.5618 29.2204L33.8598 28.1701C33.5604 28.6553 33.2385 29.1238 32.8956 29.5744L34.4872 30.7855ZM34.4722 30.8047C34.3906 30.9067 34.3025 30.976 34.2312 31.0218C34.1954 31.0447 34.1621 31.0628 34.1333 31.077C34.1046 31.0912 34.0787 31.1022 34.057 31.1107C34.0353 31.1192 34.0163 31.1259 34.001 31.1308C33.9857 31.1358 33.9727 31.1396 33.963 31.1424C33.9534 31.1451 33.9456 31.1471 33.9411 31.1483C33.9369 31.1494 33.9333 31.1503 33.9339 31.1501C33.9339 31.1501 33.9339 31.1501 33.9339 31.1501C33.9339 31.1501 33.9339 31.1501 33.9339 31.1501C33.934 31.1501 33.934 31.1501 33.934 31.1501C33.9341 31.1501 33.9342 31.15 33.9344 31.15C33.9346 31.1499 33.9351 31.1498 33.9357 31.1497C33.9368 31.1494 33.9387 31.1489 33.9411 31.1483C33.9456 31.1471 33.9534 31.1451 33.963 31.1424C33.9727 31.1396 33.9857 31.1358 34.001 31.1308C34.0163 31.1259 34.0354 31.1192 34.057 31.1107C34.0787 31.1022 34.1046 31.0912 34.1334 31.077C34.1621 31.0628 34.1954 31.0447 34.2312 31.0217C34.3025 30.976 34.3907 30.9067 34.4723 30.8047L32.9105 29.5553C32.9921 29.4533 33.0803 29.3839 33.1516 29.3382C33.1874 29.3152 33.2207 29.2971 33.2494 29.2829C33.2782 29.2688 33.3041 29.2577 33.3257 29.2492C33.3474 29.2407 33.3665 29.2341 33.3818 29.2291C33.3971 29.2241 33.4101 29.2203 33.4197 29.2176C33.4294 29.2149 33.4371 29.2128 33.4417 29.2116C33.4459 29.2106 33.4495 29.2097 33.4488 29.2098C33.4488 29.2098 33.4488 29.2098 33.4488 29.2098C33.4488 29.2098 33.4488 29.2098 33.4488 29.2098C33.4488 29.2098 33.4488 29.2098 33.4487 29.2099C33.4487 29.2099 33.4485 29.2099 33.4484 29.2099C33.4481 29.21 33.4476 29.2101 33.4471 29.2103C33.4459 29.2106 33.444 29.211 33.4417 29.2117C33.4371 29.2128 33.4293 29.2149 33.4197 29.2176C33.4101 29.2203 33.397 29.2241 33.3817 29.2291C33.3665 29.2341 33.3474 29.2407 33.3257 29.2492C33.3041 29.2577 33.2781 29.2688 33.2494 29.283C33.2206 29.2971 33.1874 29.3152 33.1515 29.3382C33.0803 29.3839 32.9921 29.4533 32.9105 29.5553L34.4722 30.8047ZM34.1942 31.1609C34.2933 31.0371 34.391 30.9119 34.4871 30.7855L32.8956 29.5744C32.8092 29.6879 32.7216 29.8002 32.6327 29.9112L34.1942 31.1609ZM33.2715 32.2316C33.5914 31.8865 33.8992 31.5295 34.1942 31.161L32.6327 29.9112C32.3681 30.2418 32.0919 30.5622 31.8049 30.8718L33.2715 32.2316ZM26.4492 36.9796C29.0455 35.9039 31.3709 34.2817 33.2715 32.2316L31.8049 30.8719C30.0996 32.7112 28.0131 34.1668 25.6837 35.1319L26.4492 36.9796ZM26.4266 36.9888L26.4396 36.9835L25.6933 35.128L25.6803 35.1332L26.4266 36.9888ZM26.0907 37.1238C26.2062 37.0786 26.3211 37.0324 26.4355 36.9851L25.6714 35.1368C25.5687 35.1793 25.4656 35.2208 25.362 35.2613L26.0907 37.1238ZM26.0855 37.126L26.0995 37.1203L25.3532 35.2648L25.3391 35.2704L26.0855 37.126ZM13.6958 37.725C17.7771 38.8811 22.1244 38.6721 26.0759 37.1298L25.3487 35.2667C21.8033 36.6505 17.9028 36.838 14.2409 35.8008L13.6958 37.725ZM3.46704 30.7256C6.02272 34.1111 9.61454 36.569 13.6958 37.725L14.2409 35.8008C10.579 34.7635 7.35633 32.5582 5.06329 29.5206L3.46704 30.7256ZM3.45029 30.7029L3.45832 30.7139L5.07201 29.5323L5.06398 29.5214L3.45029 30.7029ZM3.13879 30.2773C3.24344 30.4244 3.35004 30.57 3.45856 30.714L5.0557 29.5102C4.95833 29.381 4.86269 29.2504 4.7688 29.1183L3.13879 30.2773ZM3.13896 30.2776L3.14693 30.2885L4.76066 29.1071L4.75268 29.0962L3.13896 30.2776ZM-0.187505 15.7448C-1.0509 20.8336 0.142584 26.0569 3.13039 30.2658L4.76124 29.108C2.08048 25.3317 1.00965 20.6452 1.78431 16.0793L-0.187505 15.7448ZM-0.183481 15.7223L-0.185203 15.7317L1.78201 16.0924L1.78373 16.083L-0.183481 15.7223ZM-0.0962944 15.2472C-0.128156 15.4093 -0.157961 15.5719 -0.185699 15.7349L1.78595 16.0704C1.81084 15.9242 1.83758 15.7783 1.86617 15.6329L-0.0962944 15.2472ZM-0.0970406 15.2508L-0.0986729 15.2597L1.86855 15.6203L1.87018 15.6114L-0.0970406 15.2508ZM3.84077 6.79552C1.86498 9.24959 0.514524 12.1467 -0.0945652 15.2378L1.8677 15.6245C2.4142 12.851 3.62587 10.2516 5.39862 8.04976L3.84077 6.79552ZM11.2485 1.14892C8.35863 2.40376 5.81657 4.34145 3.84077 6.79552L5.39862 8.04976C7.17137 5.84789 9.45219 4.10932 12.0451 2.98344L11.2485 1.14892ZM13.5935 4.03866L12.5641 1.66789L10.7296 2.46447L11.759 4.83523L13.5935 4.03866ZM7.41184 9.67062C8.92219 7.79467 10.8654 6.31344 13.0745 5.3542L12.278 3.51968C9.77184 4.60787 7.56739 6.28823 5.85399 8.41638L7.41184 9.67062ZM6.05543 11.6677C6.45143 10.9686 6.90468 10.3005 7.41184 9.67062L5.85399 8.41638C5.27866 9.13098 4.76447 9.88891 4.31523 10.682L6.05543 11.6677ZM5.6815 10.3066L5.68147 10.3066L4.68919 12.0431L4.68922 12.0431L5.6815 10.3066ZM4.40202 16.1326C4.7089 14.5703 5.26563 13.0621 6.05547 11.6677L4.31525 10.682C3.41922 12.2639 2.78766 13.9747 2.43952 15.7471L4.40202 16.1326ZM4.33195 16.5152L4.40438 16.1201L2.43716 15.7595L2.36473 16.1546L4.33195 16.5152ZM4.13072 18.5229C4.15252 17.8436 4.22075 17.1688 4.33415 16.5028L2.36253 16.1671C2.23388 16.9226 2.15648 17.6882 2.13175 18.4587L4.13072 18.5229ZM5.61202 25.4873C4.56181 23.3199 4.05348 20.93 4.13072 18.5229L2.13175 18.4587C2.04413 21.1895 2.62079 23.9007 3.81219 26.3594L5.61202 25.4873ZM5.79453 25.8514L5.60617 25.4754L3.81805 26.3713L4.0064 26.7472L5.79453 25.8514ZM6.8767 27.6227C6.47495 27.0578 6.11093 26.4624 5.78851 25.8396L4.01241 26.759C4.37812 27.4655 4.79108 28.141 5.24688 28.7818L6.8767 27.6227ZM7.12651 27.9637L6.86865 27.6115L5.25493 28.793L5.51278 29.1452L7.12651 27.9637ZM14.4944 33.1782C11.534 32.2374 8.96321 30.4012 7.11831 27.9527L5.52098 29.1562C7.61387 31.9338 10.5302 34.017 13.8887 35.0843L14.4944 33.1782ZM14.9255 33.3082L14.4804 33.1739L13.9026 35.0886L14.3477 35.2229L14.9255 33.3082ZM24.3761 32.8715C21.3527 34.0433 18.0292 34.1952 14.9114 33.3041L14.3618 35.227C17.8986 36.238 21.669 36.0657 25.0989 34.7364L24.3761 32.8715ZM24.4224 32.8535C24.4071 32.8595 24.3916 32.8655 24.3761 32.8716L25.099 34.7363C25.1164 34.7296 25.1339 34.7228 25.1515 34.7159L24.4224 32.8535ZM24.6902 32.7457L24.4138 32.8569L25.1602 34.7125L25.4366 34.6012L24.6902 32.7457ZM30.2289 28.7588C28.7207 30.4942 26.8239 31.864 24.6815 32.7493L25.4453 34.5977C27.8757 33.5934 30.0275 32.0395 31.7385 30.0707L30.2289 28.7588ZM30.8258 28.0263C30.6344 28.2771 30.4353 28.5214 30.2289 28.7588L31.7385 30.0707C31.9726 29.8014 32.1985 29.5242 32.4156 29.2397L30.8258 28.0263ZM30.8387 28.0093C30.8332 28.0165 30.8298 28.021 30.8257 28.0263L32.4157 29.2396C32.4209 29.2329 32.4267 29.2252 32.4304 29.2203L30.8387 28.0093ZM31.6612 26.8113C31.4074 27.2227 31.133 27.6225 30.8388 28.0092L32.4303 29.2204C32.7642 28.7817 33.0754 28.3281 33.3633 27.8615L31.6612 26.8113ZM31.8233 26.5423L31.6558 26.8201L33.3686 27.8527L33.5361 27.575L31.8233 26.5423ZM33.7644 20.825C33.5138 22.853 32.8489 24.8011 31.8181 26.5511L33.5413 27.5662C34.7107 25.581 35.465 23.3709 35.7493 21.0703L33.7644 20.825ZM32.6759 13.1446C33.7115 15.5634 34.0871 18.2136 33.7644 20.825L35.7493 21.0703C36.1154 18.1079 35.6893 15.1014 34.5144 12.3574L32.6759 13.1446ZM27.8691 7.05624C29.9816 8.62491 31.6402 10.7258 32.6759 13.1446L34.5144 12.3574C33.3395 9.61339 31.4579 7.23009 29.0615 5.45053L27.8691 7.05624ZM27.6618 5.65808L27.6616 5.65831L29.2689 6.84846L29.2691 6.84822L27.6618 5.65808ZM26.3982 6.09303C26.9087 6.38563 27.3997 6.70734 27.8693 7.056L29.0616 5.4503C28.529 5.05476 27.9719 4.6898 27.3928 4.35786L26.3982 6.09303ZM18.8952 4.12344C21.5264 4.10491 24.1154 4.78454 26.3982 6.09303L27.3928 4.35786C24.8031 2.87347 21.866 2.10247 18.8812 2.12349L18.8952 4.12344ZM17.87 0.54595L17.8882 3.1305L19.8882 3.11642L19.87 0.53187L17.87 0.54595Z\" fill=\"#D4C7FD\" mask=\"url(#path-1-outside-1_3666_178163)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8gczoc\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"yKkDvF4TU\",svg:'<svg width=\"12\" height=\"8\" viewBox=\"-1 -1 12 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-outside-1_3666_178166\" maskUnits=\"userSpaceOnUse\" x=\"-1.32605\" y=\"-1.45435\" width=\"12\" height=\"9\" fill=\"black\">\\n<rect fill=\"white\" x=\"-1.32605\" y=\"-1.45435\" width=\"12\" height=\"9\"/>\\n<path d=\"M9.48452 0.545654C6.38241 0.63231 3.35219 1.49956 0.67395 3.06725L1.9796 5.29783C4.28289 3.94962 6.88888 3.20379 9.5567 3.12926L9.48452 0.545654Z\"/>\\n</mask>\\n<path d=\"M9.48452 0.545654C6.38241 0.63231 3.35219 1.49956 0.67395 3.06725L1.9796 5.29783C4.28289 3.94962 6.88888 3.20379 9.5567 3.12926L9.48452 0.545654Z\" fill=\"#9664FA\"/>\\n<path d=\"M0.67395 3.06725L0.168787 2.20422L-0.694237 2.70938L-0.189074 3.57241L0.67395 3.06725ZM9.48452 0.545654L10.4841 0.517731L10.4562 -0.481879L9.4566 -0.453956L9.48452 0.545654ZM9.5567 3.12926L9.58462 4.12887L10.5842 4.10095L10.5563 3.10134L9.5567 3.12926ZM1.9796 5.29783L1.11658 5.80299L1.62174 6.66602L2.48476 6.16085L1.9796 5.29783ZM1.17911 3.93027C3.71229 2.4475 6.57837 1.62723 9.51245 1.54526L9.4566 -0.453956C6.18646 -0.362606 2.9921 0.551621 0.168787 2.20422L1.17911 3.93027ZM8.48491 0.573578L8.55709 3.15718L10.5563 3.10134L10.4841 0.517731L8.48491 0.573578ZM9.52877 2.12965C6.69292 2.20887 3.9228 3.00168 1.47444 4.4348L2.48476 6.16085C4.64298 4.89756 7.08483 4.1987 9.58462 4.12887L9.52877 2.12965ZM2.84263 4.79267L1.53697 2.56208L-0.189074 3.57241L1.11658 5.80299L2.84263 4.79267Z\" fill=\"#9664FA\" mask=\"url(#path-1-outside-1_3666_178166)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e58794ec-2a70-4d99-a68e-937f2c2cde7e, rgb(243, 241, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"14px\"},children:\"7\"}),\"%\"]})}),className:\"framer-115628j\",\"data-framer-name\":\"Metric\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"tIPvn8k3Y\",style:{\"--extracted-r6o4lv\":\"var(--token-e58794ec-2a70-4d99-a68e-937f2c2cde7e, rgb(243, 241, 255))\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-a6s99w\",\"data-border\":true,\"data-framer-appear-id\":\"a6s99w\",\"data-framer-name\":\"Switch Group\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"X1PHkDvvB\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(74, 77, 85)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-354856ba-79e2-41e2-899f-fb2d039ec067, rgb(74, 77, 85))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-y3x2bu\",layoutDependency:layoutDependency,layoutId:\"AlcnPDVkq\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Senior Discount\"})}),className:\"framer-ocl1r2\",\"data-framer-appear-id\":\"ocl1r2\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-500\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"YeM6WCO10\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ygf1yu\",\"data-framer-name\":\"Donut Chart\",layoutDependency:layoutDependency,layoutId:\"aDq_7_AIj\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tiwfsn\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"LmFOns7a4\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"-1 -1 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-outside-1_3666_178163\" maskUnits=\"userSpaceOnUse\" x=\"-0.461792\" y=\"-0.461548\" width=\"39\" height=\"39\" fill=\"black\">\\n<rect fill=\"white\" x=\"-0.461792\" y=\"-0.461548\" width=\"39\" height=\"39\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.87 0.53891C22.1351 0.51592 25.3479 1.35931 28.1808 2.98307C31.0136 4.60684 33.3651 6.95287 34.9955 9.78191C36.6258 12.611 37.4767 15.8218 37.4613 19.087C37.4459 22.3521 36.5649 25.5548 34.9079 28.3684L34.9067 28.3704C34.8429 28.4787 34.7779 28.5864 34.7119 28.6935C34.7115 28.6941 34.7112 28.6947 34.7108 28.6952C34.3943 29.2082 34.0539 29.7036 33.6914 30.18C33.6914 30.18 33.6914 30.18 33.6914 30.18C33.6001 30.2999 33.5075 30.4186 33.4134 30.5361C33.1337 30.8856 32.8417 31.2244 32.5382 31.5517C30.7352 33.4965 28.5293 35.0353 26.0664 36.0558L26.0534 36.061C25.9449 36.1058 25.8359 36.1497 25.7264 36.1926L25.7123 36.1982C21.9638 37.6613 17.8399 37.8596 13.9684 36.7629C10.0968 35.6662 6.68952 33.3347 4.26517 30.1231L4.25713 30.1121C4.15419 29.9755 4.05306 29.8374 3.9538 29.6978L3.94582 29.6869C1.11153 25.6943 -0.0206251 20.7394 0.798405 15.9121L0.800127 15.9027C0.826439 15.7481 0.854713 15.5938 0.884937 15.44L0.886569 15.4311C1.46436 12.4988 2.74543 9.75061 4.6197 7.42264C6.49397 5.09467 8.90541 3.25654 11.6468 2.06618L12.6762 4.43694C10.3186 5.46066 8.24479 7.04145 6.63292 9.0435C6.09167 9.71576 5.60795 10.4288 5.18533 11.1748L5.18536 11.1749C4.34243 12.663 3.74828 14.2725 3.42077 15.9398L3.34834 16.3349C3.22732 17.0457 3.1545 17.7659 3.13124 18.4908C3.0488 21.0598 3.5913 23.6103 4.71211 25.9234L4.90046 26.2993C5.24453 26.9639 5.63301 27.5994 6.06179 28.2023L6.31964 28.5544C8.28854 31.1675 11.0321 33.1272 14.1915 34.1313L14.6366 34.2656C17.9639 35.2166 21.5108 35.0545 24.7375 33.804C24.754 33.7976 24.7705 33.7911 24.787 33.7847L25.0634 33.6735C27.3498 32.7287 29.3741 31.2668 30.9837 29.4148C31.2039 29.1614 31.4164 28.9007 31.6207 28.633C31.6253 28.6269 31.6299 28.6209 31.6345 28.6148C31.9486 28.2021 32.2414 27.7754 32.5122 27.3364L32.6797 27.0587C33.7798 25.1911 34.4894 23.1119 34.7569 20.9476C35.1013 18.1608 34.7004 15.3324 33.5952 12.751C32.4899 10.1696 30.7197 7.9275 28.4653 6.25339L28.4655 6.25315C27.9644 5.88105 27.4403 5.53772 26.8955 5.22544C24.4592 3.82901 21.6962 3.10369 18.8882 3.12346L18.87 0.53891Z\"/>\\n</mask>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.87 0.53891C22.1351 0.51592 25.3479 1.35931 28.1808 2.98307C31.0136 4.60684 33.3651 6.95287 34.9955 9.78191C36.6258 12.611 37.4767 15.8218 37.4613 19.087C37.4459 22.3521 36.5649 25.5548 34.9079 28.3684L34.9067 28.3704C34.8429 28.4787 34.7779 28.5864 34.7119 28.6935C34.7115 28.6941 34.7112 28.6947 34.7108 28.6952C34.3943 29.2082 34.0539 29.7036 33.6914 30.18C33.6914 30.18 33.6914 30.18 33.6914 30.18C33.6001 30.2999 33.5075 30.4186 33.4134 30.5361C33.1337 30.8856 32.8417 31.2244 32.5382 31.5517C30.7352 33.4965 28.5293 35.0353 26.0664 36.0558L26.0534 36.061C25.9449 36.1058 25.8359 36.1497 25.7264 36.1926L25.7123 36.1982C21.9638 37.6613 17.8399 37.8596 13.9684 36.7629C10.0968 35.6662 6.68952 33.3347 4.26517 30.1231L4.25713 30.1121C4.15419 29.9755 4.05306 29.8374 3.9538 29.6978L3.94582 29.6869C1.11153 25.6943 -0.0206251 20.7394 0.798405 15.9121L0.800127 15.9027C0.826439 15.7481 0.854713 15.5938 0.884937 15.44L0.886569 15.4311C1.46436 12.4988 2.74543 9.75061 4.6197 7.42264C6.49397 5.09467 8.90541 3.25654 11.6468 2.06618L12.6762 4.43694C10.3186 5.46066 8.24479 7.04145 6.63292 9.0435C6.09167 9.71576 5.60795 10.4288 5.18533 11.1748L5.18536 11.1749C4.34243 12.663 3.74828 14.2725 3.42077 15.9398L3.34834 16.3349C3.22732 17.0457 3.1545 17.7659 3.13124 18.4908C3.0488 21.0598 3.5913 23.6103 4.71211 25.9234L4.90046 26.2993C5.24453 26.9639 5.63301 27.5994 6.06179 28.2023L6.31964 28.5544C8.28854 31.1675 11.0321 33.1272 14.1915 34.1313L14.6366 34.2656C17.9639 35.2166 21.5108 35.0545 24.7375 33.804C24.754 33.7976 24.7705 33.7911 24.787 33.7847L25.0634 33.6735C27.3498 32.7287 29.3741 31.2668 30.9837 29.4148C31.2039 29.1614 31.4164 28.9007 31.6207 28.633C31.6253 28.6269 31.6299 28.6209 31.6345 28.6148C31.9486 28.2021 32.2414 27.7754 32.5122 27.3364L32.6797 27.0587C33.7798 25.1911 34.4894 23.1119 34.7569 20.9476C35.1013 18.1608 34.7004 15.3324 33.5952 12.751C32.4899 10.1696 30.7197 7.9275 28.4653 6.25339L28.4655 6.25315C27.9644 5.88105 27.4403 5.53772 26.8955 5.22544C24.4592 3.82901 21.6962 3.10369 18.8882 3.12346L18.87 0.53891Z\" fill=\"#D4C7FD\"/>\\n<path d=\"M28.1808 2.98307L28.6781 2.11549L28.6781 2.11549L28.1808 2.98307ZM18.87 0.53891L18.863 -0.461065L17.863 -0.454025L17.87 0.54595L18.87 0.53891ZM34.9955 9.78191L35.8619 9.2826L35.8619 9.2826L34.9955 9.78191ZM37.4613 19.087L36.4613 19.0822L37.4613 19.087ZM34.9079 28.3684L35.7645 28.8845L35.7696 28.8758L34.9079 28.3684ZM34.9067 28.3704L34.0501 27.8543L34.0451 27.8629L34.9067 28.3704ZM34.7119 28.6935L33.8608 28.1684L33.8606 28.1688L34.7119 28.6935ZM34.7108 28.6952L35.5618 29.2204L35.5621 29.22L34.7108 28.6952ZM33.6914 30.18L34.4723 30.8047L34.4798 30.7952L34.4872 30.7855L33.6914 30.18ZM33.6914 30.18L32.9105 29.5553L32.9029 29.5648L32.8956 29.5744L33.6914 30.18ZM33.4134 30.5361L34.1942 31.161L34.1942 31.1609L33.4134 30.5361ZM32.5382 31.5517L31.8049 30.8718L31.8049 30.8719L32.5382 31.5517ZM26.0664 36.0558L26.4396 36.9836L26.4492 36.9796L26.0664 36.0558ZM26.0534 36.061L25.6803 35.1332L25.6714 35.1368L26.0534 36.061ZM25.7264 36.1926L25.362 35.2612L25.3532 35.2648L25.7264 36.1926ZM25.7123 36.1982L26.0759 37.1298L26.0855 37.126L25.7123 36.1982ZM13.9684 36.7629L14.2409 35.8008L14.2409 35.8008L13.9684 36.7629ZM4.26517 30.1231L3.45832 30.7139L3.46264 30.7197L3.46704 30.7256L4.26517 30.1231ZM4.25713 30.1121L5.06406 29.5213L5.0557 29.5102L4.25713 30.1121ZM3.9538 29.6978L4.76888 29.1183L4.76066 29.1071L3.9538 29.6978ZM3.94582 29.6869L3.13039 30.2658L3.13463 30.2717L3.13896 30.2776L3.94582 29.6869ZM0.798405 15.9121L-0.18529 15.7317L-0.187505 15.7448L0.798405 15.9121ZM0.800127 15.9027L1.78381 16.083L1.78595 16.0704L0.800127 15.9027ZM0.884937 15.44L1.86625 15.6329L1.86855 15.6203L0.884937 15.44ZM0.886569 15.4311L-0.0946513 15.2378L-0.0970406 15.2508L0.886569 15.4311ZM4.6197 7.42264L3.84077 6.79552L3.84077 6.79552L4.6197 7.42264ZM11.6468 2.06618L12.5641 1.66789L12.1658 0.750631L11.2485 1.14892L11.6468 2.06618ZM12.6762 4.43694L13.0745 5.3542L13.9918 4.95592L13.5935 4.03866L12.6762 4.43694ZM6.63292 9.0435L7.41184 9.67062L7.41184 9.67062L6.63292 9.0435ZM5.18533 11.1748L4.31523 10.682L3.8242 11.5488L4.68919 12.0431L5.18533 11.1748ZM5.18536 11.1749L6.05547 11.6677L6.54647 10.8009L5.6815 10.3066L5.18536 11.1749ZM3.42077 15.9398L2.43944 15.7471L2.43716 15.7595L3.42077 15.9398ZM3.34834 16.3349L2.36465 16.1546L2.36253 16.1671L3.34834 16.3349ZM3.13124 18.4908L2.13175 18.4587L2.13175 18.4587L3.13124 18.4908ZM4.71211 25.9234L3.81211 26.3595L3.81805 26.3713L4.71211 25.9234ZM4.90046 26.2993L4.00632 26.7473L4.01241 26.759L4.90046 26.2993ZM6.06179 28.2023L5.2468 28.7819L5.25493 28.793L6.06179 28.2023ZM6.31964 28.5544L5.51271 29.1452L5.52098 29.1562L6.31964 28.5544ZM14.1915 34.1313L13.8887 35.0843L13.8956 35.0865L13.9026 35.0886L14.1915 34.1313ZM14.6366 34.2656L14.3477 35.2229L14.3547 35.225L14.3618 35.227L14.6366 34.2656ZM24.7375 33.804L25.0989 34.7364L25.099 34.7363L24.7375 33.804ZM24.787 33.7847L25.1515 34.7159L25.1602 34.7125L24.787 33.7847ZM25.0634 33.6735L25.4366 34.6013L25.4453 34.5977L25.0634 33.6735ZM30.9837 29.4148L30.2289 28.7588L30.2289 28.7588L30.9837 29.4148ZM31.6207 28.633L32.4156 29.2397L32.4157 29.2396L31.6207 28.633ZM31.6345 28.6148L30.8388 28.0092L30.8387 28.0093L31.6345 28.6148ZM32.5122 27.3364L33.3633 27.8615L33.3686 27.8527L32.5122 27.3364ZM32.6797 27.0587L33.5361 27.575L33.5413 27.5662L32.6797 27.0587ZM34.7569 20.9476L35.7493 21.0703L35.7493 21.0703L34.7569 20.9476ZM33.5952 12.751L34.5144 12.3574L34.5144 12.3574L33.5952 12.751ZM28.4653 6.25339L27.6616 5.65831L27.0673 6.46088L27.8691 7.05624L28.4653 6.25339ZM28.4655 6.25315L29.2691 6.84822L29.8634 6.04565L29.0616 5.4503L28.4655 6.25315ZM26.8955 5.22544L26.3982 6.09303L26.3982 6.09303L26.8955 5.22544ZM18.8882 3.12346L17.8882 3.1305L17.8953 4.13048L18.8952 4.12344L18.8882 3.12346ZM28.6781 2.11549C25.6918 0.403776 22.305 -0.4853 18.863 -0.461065L18.8771 1.53889C21.9653 1.51714 25.0041 2.31485 27.6835 3.85066L28.6781 2.11549ZM35.8619 9.2826C34.1432 6.30032 31.6643 3.82721 28.6781 2.11549L27.6835 3.85066C30.3629 5.38646 32.587 7.60542 34.129 10.2812L35.8619 9.2826ZM38.4613 19.0917C38.4775 15.6496 37.5806 12.2649 35.8619 9.2826L34.129 10.2812C35.6711 12.957 36.4759 15.9939 36.4613 19.0822L38.4613 19.0917ZM35.7696 28.8758C37.5163 25.9099 38.4451 22.5337 38.4613 19.0917L36.4613 19.0822C36.4468 22.1706 35.6134 25.1998 34.0462 27.8609L35.7696 28.8758ZM35.7632 28.8865L35.7644 28.8845L34.0514 27.8522L34.0502 27.8543L35.7632 28.8865ZM35.563 29.2185C35.6326 29.1057 35.701 28.9922 35.7683 28.878L34.0451 27.8629C33.9847 27.9653 33.9233 28.0672 33.8608 28.1684L35.563 29.2185ZM35.5621 29.22C35.5649 29.2155 35.5671 29.2118 35.5684 29.2096C35.5691 29.2084 35.5697 29.2074 35.5701 29.2068C35.5704 29.2063 35.5707 29.2058 35.5707 29.2058C35.5709 29.2054 35.57 29.2069 35.569 29.2087C35.5678 29.2107 35.5657 29.214 35.5632 29.2182L33.8606 28.1688C33.8579 28.1732 33.8557 28.1769 33.8543 28.1792C33.8536 28.1803 33.853 28.1813 33.8527 28.1819C33.8523 28.1825 33.852 28.183 33.852 28.183C33.8518 28.1834 33.8527 28.1819 33.8538 28.1801C33.855 28.1781 33.857 28.1747 33.8596 28.1705L35.5621 29.22ZM34.4872 30.7855C34.8694 30.2833 35.2281 29.7611 35.5618 29.2204L33.8598 28.1701C33.5604 28.6553 33.2385 29.1238 32.8956 29.5744L34.4872 30.7855ZM34.4722 30.8047C34.3906 30.9067 34.3025 30.976 34.2312 31.0218C34.1954 31.0447 34.1621 31.0628 34.1333 31.077C34.1046 31.0912 34.0787 31.1022 34.057 31.1107C34.0353 31.1192 34.0163 31.1259 34.001 31.1308C33.9857 31.1358 33.9727 31.1396 33.963 31.1424C33.9534 31.1451 33.9456 31.1471 33.9411 31.1483C33.9369 31.1494 33.9333 31.1503 33.9339 31.1501C33.9339 31.1501 33.9339 31.1501 33.9339 31.1501C33.9339 31.1501 33.9339 31.1501 33.9339 31.1501C33.934 31.1501 33.934 31.1501 33.934 31.1501C33.9341 31.1501 33.9342 31.15 33.9344 31.15C33.9346 31.1499 33.9351 31.1498 33.9357 31.1497C33.9368 31.1494 33.9387 31.1489 33.9411 31.1483C33.9456 31.1471 33.9534 31.1451 33.963 31.1424C33.9727 31.1396 33.9857 31.1358 34.001 31.1308C34.0163 31.1259 34.0354 31.1192 34.057 31.1107C34.0787 31.1022 34.1046 31.0912 34.1334 31.077C34.1621 31.0628 34.1954 31.0447 34.2312 31.0217C34.3025 30.976 34.3907 30.9067 34.4723 30.8047L32.9105 29.5553C32.9921 29.4533 33.0803 29.3839 33.1516 29.3382C33.1874 29.3152 33.2207 29.2971 33.2494 29.2829C33.2782 29.2688 33.3041 29.2577 33.3257 29.2492C33.3474 29.2407 33.3665 29.2341 33.3818 29.2291C33.3971 29.2241 33.4101 29.2203 33.4197 29.2176C33.4294 29.2149 33.4371 29.2128 33.4417 29.2116C33.4459 29.2106 33.4495 29.2097 33.4488 29.2098C33.4488 29.2098 33.4488 29.2098 33.4488 29.2098C33.4488 29.2098 33.4488 29.2098 33.4488 29.2098C33.4488 29.2098 33.4488 29.2098 33.4487 29.2099C33.4487 29.2099 33.4485 29.2099 33.4484 29.2099C33.4481 29.21 33.4476 29.2101 33.4471 29.2103C33.4459 29.2106 33.444 29.211 33.4417 29.2117C33.4371 29.2128 33.4293 29.2149 33.4197 29.2176C33.4101 29.2203 33.397 29.2241 33.3817 29.2291C33.3665 29.2341 33.3474 29.2407 33.3257 29.2492C33.3041 29.2577 33.2781 29.2688 33.2494 29.283C33.2206 29.2971 33.1874 29.3152 33.1515 29.3382C33.0803 29.3839 32.9921 29.4533 32.9105 29.5553L34.4722 30.8047ZM34.1942 31.1609C34.2933 31.0371 34.391 30.9119 34.4871 30.7855L32.8956 29.5744C32.8092 29.6879 32.7216 29.8002 32.6327 29.9112L34.1942 31.1609ZM33.2715 32.2316C33.5914 31.8865 33.8992 31.5295 34.1942 31.161L32.6327 29.9112C32.3681 30.2418 32.0919 30.5622 31.8049 30.8718L33.2715 32.2316ZM26.4492 36.9796C29.0455 35.9039 31.3709 34.2817 33.2715 32.2316L31.8049 30.8719C30.0996 32.7112 28.0131 34.1668 25.6837 35.1319L26.4492 36.9796ZM26.4266 36.9888L26.4396 36.9835L25.6933 35.128L25.6803 35.1332L26.4266 36.9888ZM26.0907 37.1238C26.2062 37.0786 26.3211 37.0324 26.4355 36.9851L25.6714 35.1368C25.5687 35.1793 25.4656 35.2208 25.362 35.2613L26.0907 37.1238ZM26.0855 37.126L26.0995 37.1203L25.3532 35.2648L25.3391 35.2704L26.0855 37.126ZM13.6958 37.725C17.7771 38.8811 22.1244 38.6721 26.0759 37.1298L25.3487 35.2667C21.8033 36.6505 17.9028 36.838 14.2409 35.8008L13.6958 37.725ZM3.46704 30.7256C6.02272 34.1111 9.61454 36.569 13.6958 37.725L14.2409 35.8008C10.579 34.7635 7.35633 32.5582 5.06329 29.5206L3.46704 30.7256ZM3.45029 30.7029L3.45832 30.7139L5.07201 29.5323L5.06398 29.5214L3.45029 30.7029ZM3.13879 30.2773C3.24344 30.4244 3.35004 30.57 3.45856 30.714L5.0557 29.5102C4.95833 29.381 4.86269 29.2504 4.7688 29.1183L3.13879 30.2773ZM3.13896 30.2776L3.14693 30.2885L4.76066 29.1071L4.75268 29.0962L3.13896 30.2776ZM-0.187505 15.7448C-1.0509 20.8336 0.142584 26.0569 3.13039 30.2658L4.76124 29.108C2.08048 25.3317 1.00965 20.6452 1.78431 16.0793L-0.187505 15.7448ZM-0.183481 15.7223L-0.185203 15.7317L1.78201 16.0924L1.78373 16.083L-0.183481 15.7223ZM-0.0962944 15.2472C-0.128156 15.4093 -0.157961 15.5719 -0.185699 15.7349L1.78595 16.0704C1.81084 15.9242 1.83758 15.7783 1.86617 15.6329L-0.0962944 15.2472ZM-0.0970406 15.2508L-0.0986729 15.2597L1.86855 15.6203L1.87018 15.6114L-0.0970406 15.2508ZM3.84077 6.79552C1.86498 9.24959 0.514524 12.1467 -0.0945652 15.2378L1.8677 15.6245C2.4142 12.851 3.62587 10.2516 5.39862 8.04976L3.84077 6.79552ZM11.2485 1.14892C8.35863 2.40376 5.81657 4.34145 3.84077 6.79552L5.39862 8.04976C7.17137 5.84789 9.45219 4.10932 12.0451 2.98344L11.2485 1.14892ZM13.5935 4.03866L12.5641 1.66789L10.7296 2.46447L11.759 4.83523L13.5935 4.03866ZM7.41184 9.67062C8.92219 7.79467 10.8654 6.31344 13.0745 5.3542L12.278 3.51968C9.77184 4.60787 7.56739 6.28823 5.85399 8.41638L7.41184 9.67062ZM6.05543 11.6677C6.45143 10.9686 6.90468 10.3005 7.41184 9.67062L5.85399 8.41638C5.27866 9.13098 4.76447 9.88891 4.31523 10.682L6.05543 11.6677ZM5.6815 10.3066L5.68147 10.3066L4.68919 12.0431L4.68922 12.0431L5.6815 10.3066ZM4.40202 16.1326C4.7089 14.5703 5.26563 13.0621 6.05547 11.6677L4.31525 10.682C3.41922 12.2639 2.78766 13.9747 2.43952 15.7471L4.40202 16.1326ZM4.33195 16.5152L4.40438 16.1201L2.43716 15.7595L2.36473 16.1546L4.33195 16.5152ZM4.13072 18.5229C4.15252 17.8436 4.22075 17.1688 4.33415 16.5028L2.36253 16.1671C2.23388 16.9226 2.15648 17.6882 2.13175 18.4587L4.13072 18.5229ZM5.61202 25.4873C4.56181 23.3199 4.05348 20.93 4.13072 18.5229L2.13175 18.4587C2.04413 21.1895 2.62079 23.9007 3.81219 26.3594L5.61202 25.4873ZM5.79453 25.8514L5.60617 25.4754L3.81805 26.3713L4.0064 26.7472L5.79453 25.8514ZM6.8767 27.6227C6.47495 27.0578 6.11093 26.4624 5.78851 25.8396L4.01241 26.759C4.37812 27.4655 4.79108 28.141 5.24688 28.7818L6.8767 27.6227ZM7.12651 27.9637L6.86865 27.6115L5.25493 28.793L5.51278 29.1452L7.12651 27.9637ZM14.4944 33.1782C11.534 32.2374 8.96321 30.4012 7.11831 27.9527L5.52098 29.1562C7.61387 31.9338 10.5302 34.017 13.8887 35.0843L14.4944 33.1782ZM14.9255 33.3082L14.4804 33.1739L13.9026 35.0886L14.3477 35.2229L14.9255 33.3082ZM24.3761 32.8715C21.3527 34.0433 18.0292 34.1952 14.9114 33.3041L14.3618 35.227C17.8986 36.238 21.669 36.0657 25.0989 34.7364L24.3761 32.8715ZM24.4224 32.8535C24.4071 32.8595 24.3916 32.8655 24.3761 32.8716L25.099 34.7363C25.1164 34.7296 25.1339 34.7228 25.1515 34.7159L24.4224 32.8535ZM24.6902 32.7457L24.4138 32.8569L25.1602 34.7125L25.4366 34.6012L24.6902 32.7457ZM30.2289 28.7588C28.7207 30.4942 26.8239 31.864 24.6815 32.7493L25.4453 34.5977C27.8757 33.5934 30.0275 32.0395 31.7385 30.0707L30.2289 28.7588ZM30.8258 28.0263C30.6344 28.2771 30.4353 28.5214 30.2289 28.7588L31.7385 30.0707C31.9726 29.8014 32.1985 29.5242 32.4156 29.2397L30.8258 28.0263ZM30.8387 28.0093C30.8332 28.0165 30.8298 28.021 30.8257 28.0263L32.4157 29.2396C32.4209 29.2329 32.4267 29.2252 32.4304 29.2203L30.8387 28.0093ZM31.6612 26.8113C31.4074 27.2227 31.133 27.6225 30.8388 28.0092L32.4303 29.2204C32.7642 28.7817 33.0754 28.3281 33.3633 27.8615L31.6612 26.8113ZM31.8233 26.5423L31.6558 26.8201L33.3686 27.8527L33.5361 27.575L31.8233 26.5423ZM33.7644 20.825C33.5138 22.853 32.8489 24.8011 31.8181 26.5511L33.5413 27.5662C34.7107 25.581 35.465 23.3709 35.7493 21.0703L33.7644 20.825ZM32.6759 13.1446C33.7115 15.5634 34.0871 18.2136 33.7644 20.825L35.7493 21.0703C36.1154 18.1079 35.6893 15.1014 34.5144 12.3574L32.6759 13.1446ZM27.8691 7.05624C29.9816 8.62491 31.6402 10.7258 32.6759 13.1446L34.5144 12.3574C33.3395 9.61339 31.4579 7.23009 29.0615 5.45053L27.8691 7.05624ZM27.6618 5.65808L27.6616 5.65831L29.2689 6.84846L29.2691 6.84822L27.6618 5.65808ZM26.3982 6.09303C26.9087 6.38563 27.3997 6.70734 27.8693 7.056L29.0616 5.4503C28.529 5.05476 27.9719 4.6898 27.3928 4.35786L26.3982 6.09303ZM18.8952 4.12344C21.5264 4.10491 24.1154 4.78454 26.3982 6.09303L27.3928 4.35786C24.8031 2.87347 21.866 2.10247 18.8812 2.12349L18.8952 4.12344ZM17.87 0.54595L17.8882 3.1305L19.8882 3.11642L19.87 0.53187L17.87 0.54595Z\" fill=\"#D4C7FD\" mask=\"url(#path-1-outside-1_3666_178163)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1smk980\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"HqEgcRxY7\",svg:'<svg width=\"12\" height=\"8\" viewBox=\"-1 -1 12 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-outside-1_3666_178166\" maskUnits=\"userSpaceOnUse\" x=\"-1.32605\" y=\"-1.45435\" width=\"12\" height=\"9\" fill=\"black\">\\n<rect fill=\"white\" x=\"-1.32605\" y=\"-1.45435\" width=\"12\" height=\"9\"/>\\n<path d=\"M9.48452 0.545654C6.38241 0.63231 3.35219 1.49956 0.67395 3.06725L1.9796 5.29783C4.28289 3.94962 6.88888 3.20379 9.5567 3.12926L9.48452 0.545654Z\"/>\\n</mask>\\n<path d=\"M9.48452 0.545654C6.38241 0.63231 3.35219 1.49956 0.67395 3.06725L1.9796 5.29783C4.28289 3.94962 6.88888 3.20379 9.5567 3.12926L9.48452 0.545654Z\" fill=\"#9664FA\"/>\\n<path d=\"M0.67395 3.06725L0.168787 2.20422L-0.694237 2.70938L-0.189074 3.57241L0.67395 3.06725ZM9.48452 0.545654L10.4841 0.517731L10.4562 -0.481879L9.4566 -0.453956L9.48452 0.545654ZM9.5567 3.12926L9.58462 4.12887L10.5842 4.10095L10.5563 3.10134L9.5567 3.12926ZM1.9796 5.29783L1.11658 5.80299L1.62174 6.66602L2.48476 6.16085L1.9796 5.29783ZM1.17911 3.93027C3.71229 2.4475 6.57837 1.62723 9.51245 1.54526L9.4566 -0.453956C6.18646 -0.362606 2.9921 0.551621 0.168787 2.20422L1.17911 3.93027ZM8.48491 0.573578L8.55709 3.15718L10.5563 3.10134L10.4841 0.517731L8.48491 0.573578ZM9.52877 2.12965C6.69292 2.20887 3.9228 3.00168 1.47444 4.4348L2.48476 6.16085C4.64298 4.89756 7.08483 4.1987 9.58462 4.12887L9.52877 2.12965ZM2.84263 4.79267L1.53697 2.56208L-0.189074 3.57241L1.11658 5.80299L2.84263 4.79267Z\" fill=\"#9664FA\" mask=\"url(#path-1-outside-1_3666_178166)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e58794ec-2a70-4d99-a68e-937f2c2cde7e, rgb(243, 241, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"14px\"},children:\"8\"}),\"%\"]})}),className:\"framer-14vqu06\",\"data-framer-name\":\"Metric\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"qNUgFV2lx\",style:{\"--extracted-r6o4lv\":\"var(--token-e58794ec-2a70-4d99-a68e-937f2c2cde7e, rgb(243, 241, 255))\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1olrv38\",\"data-framer-name\":\"Toggles\",layoutDependency:layoutDependency,layoutId:\"fk4lvffQq\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13qoa5k\",\"data-framer-name\":\"Frame 427319042\",layoutDependency:layoutDependency,layoutId:\"MrXg02Caz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-3pdqv1\",\"data-styles-preset\":\"IWiRiyhIZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Instantly answer questions\"})}),className:\"framer-uqdqum\",\"data-framer-name\":\"Open toggle as you wish\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GcQiI13xl\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ask questions about your data and get analyst-level responses within minutes.\"})}),className:\"framer-7c2xov\",\"data-framer-name\":\"Customize and control toggle settings according to your preferences.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kDyZpj2qS\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xn33st\",\"data-framer-name\":\"_drag-n-drop-file-upload\",layoutDependency:layoutDependency,layoutId:\"CoR4vjg9s\",style:{backgroundColor:\"rgb(53, 55, 68)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[isDisplayed13()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-112ankz\",\"data-border\":true,\"data-framer-appear-id\":\"112ankz\",\"data-framer-name\":\"Switch Group\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"pzL1wIt3w\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(78, 89, 101)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(74, 77, 85)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10qo0k0\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Dr_kbS_ET\",style:{backgroundColor:\"rgb(32, 32, 46)\",borderBottomLeftRadius:78,borderBottomRightRadius:78,borderTopLeftRadius:78,borderTopRightRadius:78},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"JS\"})}),className:\"framer-1i9ak7g\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"GCrJmvTW9\",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__*/_jsxs(motion.div,{className:\"framer-ihm3td\",layoutDependency:layoutDependency,layoutId:\"lQ8s43M3c\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Can you help me analyze my churn rate in CO last month?\"})}),className:\"framer-2rr7tp\",\"data-framer-appear-id\":\"2rr7tp\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-500\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"MrROo8bhV\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"John Smith\"})}),className:\"framer-ialx4b\",\"data-framer-appear-id\":\"ialx4b\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-700\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"cNzy_3mxY\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed14()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-zglcxw\",\"data-border\":true,\"data-framer-appear-id\":\"zglcxw\",\"data-framer-name\":\"Switch Group\",initial:animation7,layoutDependency:layoutDependency,layoutId:\"FynkAd_AP\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(74, 77, 85)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(67, 58, 91)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05000000074505806)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1msckc5\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"prBUbeCzd\",style:{backgroundColor:\"rgb(110, 107, 112)\",borderBottomLeftRadius:78,borderBottomRightRadius:78,borderTopLeftRadius:78,borderTopRightRadius:78},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/xzZwBwJd5I7isRhSXViTrSEaIw.png\",srcSet:\"https://framerusercontent.com/images/xzZwBwJd5I7isRhSXViTrSEaIw.png?scale-down-to=512 512w,https://framerusercontent.com/images/xzZwBwJd5I7isRhSXViTrSEaIw.png 1000w\"},className:\"framer-vvt4j0\",\"data-framer-name\":\"image 4\",layoutDependency:layoutDependency,layoutId:\"IdGUYr9vz\",...addPropertyOverrides({\"nCiKvzL0q-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+24+0+24+-50+101+0+10),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/xzZwBwJd5I7isRhSXViTrSEaIw.png\",srcSet:\"https://framerusercontent.com/images/xzZwBwJd5I7isRhSXViTrSEaIw.png?scale-down-to=512 512w,https://framerusercontent.com/images/xzZwBwJd5I7isRhSXViTrSEaIw.png 1000w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kum0ef\",layoutDependency:layoutDependency,layoutId:\"Gb2Ot0Rsk\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Sure, it was 23%. Would you like to see last year’s rate for comparison as well?\"})}),className:\"framer-e6wqyp\",\"data-framer-appear-id\":\"e6wqyp\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-500\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"mZjfDHzSr\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"Agent Manager\"})}),className:\"framer-lyak5h\",\"data-framer-appear-id\":\"lyak5h\",\"data-framer-name\":\"Let AI set up your product, easy.\",fonts:[\"GF;Plus Jakarta Sans-700\"],initial:animation2,layoutDependency:layoutDependency,layoutId:\"fHYMAe6rD\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed13()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oq8lq0\",\"data-framer-name\":\"Frame 1\",layoutDependency:layoutDependency,layoutId:\"VyjEzwtFv\",children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-ihx0bl\",\"data-framer-appear-id\":\"ihx0bl\",\"data-framer-name\":\"Ellipse 1\",initial:animation8,layoutDependency:layoutDependency,layoutId:\"lZIaOnC1j\",optimized:true,style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(101, 50, 217) 0%, rgb(65, 0, 196) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-186tqtt\",\"data-framer-appear-id\":\"186tqtt\",\"data-framer-name\":\"Ellipse 2\",initial:animation8,layoutDependency:layoutDependency,layoutId:\"m9noijuxn\",optimized:true,style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(101, 50, 217) 0%, rgb(65, 0, 196) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation9,className:\"framer-hs2kae\",\"data-framer-appear-id\":\"hs2kae\",\"data-framer-name\":\"Ellipse 3\",initial:animation8,layoutDependency:layoutDependency,layoutId:\"qUmJ3fmYD\",optimized:true,style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(101, 50, 217) 0%, rgb(65, 0, 196) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]})]})]}),isDisplayed15()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s93o7j\",\"data-framer-name\":\"Quick Actions\",layoutDependency:layoutDependency,layoutId:\"A3VcKtgNe\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lx56ig\",\"data-framer-name\":\"Types\",layoutDependency:layoutDependency,layoutId:\"tNQr57pV2\",style:{backgroundColor:\"rgb(53, 56, 68)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[isDisplayed16()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-n8epwh\",\"data-border\":true,\"data-framer-name\":\"Input\",layoutDependency:layoutDependency,layoutId:\"I673:17077;4188:18968;4186:34748\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(229, 231, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(84, 255, 46))\"},children:[\">\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(0, 0, 0))\"},children:\"s\"}),\"curl\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, rgb(0, 0, 0))\"},children:\"s\"}),\"https://unsupervised.app/kpis/churn_rate/predict?record_id=77812724\"]})}),className:\"framer-4jzje3\",\"data-framer-name\":\"Placeholder\",fonts:[\"GF;IBM Plex Mono-500\"],layoutDependency:layoutDependency,layoutId:\"I673:17077;4188:18968;4186:34711\",style:{\"--extracted-1w3ko1f\":\"rgb(0, 0, 0)\",\"--extracted-3sq8v0\":\"rgb(0, 0, 0)\",\"--extracted-r6o4lv\":\"rgb(84, 255, 46)\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed17()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-h421eo\",\"data-border\":true,\"data-framer-name\":\"Input\",layoutDependency:layoutDependency,layoutId:\"FlBjQCHqB\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(229, 231, 235)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(84, 255, 46))\"},children:\"record id = 77812724\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(84, 255, 46))\"},children:\"prediction = 78.87%\"})]}),className:\"framer-8fcpa0\",\"data-framer-name\":\"Placeholder\",fonts:[\"GF;IBM Plex Mono-500\"],layoutDependency:layoutDependency,layoutId:\"lN8jOpAAk\",style:{\"--extracted-2gxw0f\":\"rgb(84, 255, 46)\",\"--extracted-r6o4lv\":\"rgb(84, 255, 46)\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bbxcx4\",\"data-framer-name\":\"Frame 427319039\",layoutDependency:layoutDependency,layoutId:\"rzU_5arOx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-3pdqv1\",\"data-styles-preset\":\"IWiRiyhIZ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Easily make predictions\"})}),className:\"framer-1txhsrb\",\"data-framer-name\":\"Get quick actions\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"P1epj3qLt\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed18(),children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ask your analysts for predictions or use our beta Predictions API to make predictions at scale.\"})}),className:\"framer-16tuf36\",\"data-framer-name\":\"Access and perform tasks swiftly with our quick-action feature.\",\"data-highlight\":true,fonts:[\"Inter\"],id:`${layoutId}-16tuf36`,layoutDependency:layoutDependency,layoutId:\"oxWdsRaI5\",onMouseEnter:onMouseEnterizu9gt({overlay}),ref:ref2,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed18()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-16tuf36`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1wei7pz\",exit:animation10,initial:animation11,layoutDependency:layoutDependency,layoutId:\"E8oQvywys\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"}})})})]})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b1emoi\",layoutDependency:layoutDependency,layoutId:\"jHYQEBvx9\",style:{backgroundColor:\"rgba(153, 123, 255, 0.05)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,filter:\"blur(50px)\",WebkitFilter:\"blur(50px)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IH3Lc.framer-rdrgdc, .framer-IH3Lc .framer-rdrgdc { display: block; }\",\".framer-IH3Lc.framer-hn8cu1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 477px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IH3Lc .framer-2kp23r, .framer-IH3Lc .framer-1mga8dc, .framer-IH3Lc .framer-3y9c3g, .framer-IH3Lc .framer-xteovm, .framer-IH3Lc .framer-1olrv38, .framer-IH3Lc .framer-1s93o7j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 24px 24px 48px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-IH3Lc .framer-1maql6g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 200px; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-tbm0vq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 230px; }\",\".framer-IH3Lc .framer-ejkahi, .framer-IH3Lc .framer-wl4z4e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-sozl3t, .framer-IH3Lc .framer-sa56kk { flex: none; height: 68px; position: relative; width: 56px; }\",\".framer-IH3Lc .framer-nxerk8, .framer-IH3Lc .framer-1d2sjov { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 148px; }\",\".framer-IH3Lc .framer-1sal1we, .framer-IH3Lc .framer-9pgeou { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 148px; word-break: break-word; word-wrap: break-word; }\",\".framer-IH3Lc .framer-1i02083 { flex: none; height: 152px; overflow: visible; position: relative; width: 214px; }\",\".framer-IH3Lc .framer-gk13bu { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-IH3Lc .framer-1u9dnf1, .framer-IH3Lc .framer-161bkg0, .framer-IH3Lc .framer-d4so5c, .framer-IH3Lc .framer-r728sg, .framer-IH3Lc .framer-13qoa5k, .framer-IH3Lc .framer-bbxcx4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-1rx60va, .framer-IH3Lc .framer-14g3lcq, .framer-IH3Lc .framer-1xl2y2s, .framer-IH3Lc .framer-xrxy3d, .framer-IH3Lc .framer-1uuv6c6, .framer-IH3Lc .framer-a57xqi, .framer-IH3Lc .framer-17tp8sg, .framer-IH3Lc .framer-1uiepi7, .framer-IH3Lc .framer-qchef8, .framer-IH3Lc .framer-i8k7bx, .framer-IH3Lc .framer-18usmfk, .framer-IH3Lc .framer-da7nyc, .framer-IH3Lc .framer-1n2jfmy, .framer-IH3Lc .framer-kesfgw, .framer-IH3Lc .framer-qn4ck9, .framer-IH3Lc .framer-xiyiux, .framer-IH3Lc .framer-x47i5q, .framer-IH3Lc .framer-1ua8ylc, .framer-IH3Lc .framer-f1o8rs, .framer-IH3Lc .framer-ocl1r2, .framer-IH3Lc .framer-uqdqum, .framer-IH3Lc .framer-7c2xov, .framer-IH3Lc .framer-2rr7tp, .framer-IH3Lc .framer-ialx4b, .framer-IH3Lc .framer-e6wqyp, .framer-IH3Lc .framer-lyak5h, .framer-IH3Lc .framer-1txhsrb, .framer-IH3Lc .framer-16tuf36 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IH3Lc .framer-15ofptc, .framer-IH3Lc .framer-1s8mw1k, .framer-IH3Lc .framer-1t9sejm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 200px; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-1bqljng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-id0ciz, .framer-IH3Lc .framer-549tez, .framer-IH3Lc .framer-obwjo3, .framer-IH3Lc .framer-z83k3v, .framer-IH3Lc .framer-mdwgfy, .framer-IH3Lc .framer-y3x2bu, .framer-IH3Lc .framer-ihm3td, .framer-IH3Lc .framer-1kum0ef { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IH3Lc .framer-dadkqk, .framer-IH3Lc .framer-7iz4ks, .framer-IH3Lc .framer-whnua9, .framer-IH3Lc .framer-kaxl3f, .framer-IH3Lc .framer-1msckc5 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IH3Lc .framer-r2dxuf, .framer-IH3Lc .framer-vvt4j0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-IH3Lc .framer-1nnymcz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-8lg53x, .framer-IH3Lc .framer-e8mip6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-1binj6l { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); position: relative; width: 43px; }\",\".framer-IH3Lc .framer-1bxmtao, .framer-IH3Lc .framer-cmo2pn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 45px; }\",\".framer-IH3Lc .framer-1x4e1u4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 16px 10px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-IH3Lc .framer-gvd06w, .framer-IH3Lc .framer-eccne6, .framer-IH3Lc .framer-11hpyt9, .framer-IH3Lc .framer-1i9ak7g { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IH3Lc .framer-r4ecwq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 312px; }\",\".framer-IH3Lc .framer-18rhhmp { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-xstrj1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IH3Lc .framer-1drch4x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-itau7v { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 91px; z-index: 1; }\",\".framer-IH3Lc .framer-p6lquh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-IH3Lc .framer-mh3p64 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 2px 5px 2px 5px; position: relative; width: min-content; }\",\".framer-IH3Lc .framer-ddcdfh { flex: none; height: 99px; position: relative; width: 91px; }\",\".framer-IH3Lc .framer-m4vo2o { bottom: 32px; flex: none; height: 57px; overflow: visible; position: absolute; right: 88px; width: 30px; }\",\".framer-IH3Lc .framer-iwch5m { aspect-ratio: 0.5265306122448979 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-IH3Lc .framer-rpsdns { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-gc5ogm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 49px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-1d01fx9, .framer-IH3Lc .framer-8kebrw { flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 204px; word-break: break-word; word-wrap: break-word; }\",\".framer-IH3Lc .framer-1bqna50 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 40px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-1vtrvq8 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 52%; }\",\".framer-IH3Lc .framer-spzwr3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 1px; }\",\".framer-IH3Lc .framer-1rctso9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-44hl2k, .framer-IH3Lc .framer-5syguk, .framer-IH3Lc .framer-a6s99w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 6px 6px 16px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-gvhzsr, .framer-IH3Lc .framer-1qhesee, .framer-IH3Lc .framer-1ygf1yu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-IH3Lc .framer-tey7si, .framer-IH3Lc .framer-1cnx2wn, .framer-IH3Lc .framer-1tiwfsn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 0px; position: absolute; top: 0px; width: 40px; }\",\".framer-IH3Lc .framer-u6rf2d, .framer-IH3Lc .framer-8gczoc, .framer-IH3Lc .framer-1smk980 { flex: none; height: 8px; left: 9px; position: absolute; top: 0px; width: 12px; }\",\".framer-IH3Lc .framer-7r2ee5, .framer-IH3Lc .framer-115628j, .framer-IH3Lc .framer-14vqu06 { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-IH3Lc .framer-xn33st { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 200px; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-112ankz, .framer-IH3Lc .framer-zglcxw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-10qo0k0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IH3Lc .framer-1oq8lq0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-IH3Lc .framer-ihx0bl, .framer-IH3Lc .framer-186tqtt, .framer-IH3Lc .framer-hs2kae { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 12px; }\",\".framer-IH3Lc .framer-lx56ig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 200px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-IH3Lc .framer-n8epwh, .framer-IH3Lc .framer-h421eo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 82px; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-IH3Lc .framer-4jzje3, .framer-IH3Lc .framer-8fcpa0 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-IH3Lc .framer-1wei7pz { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IH3Lc .framer-1b1emoi { flex: none; height: 150px; left: -15px; overflow: visible; position: absolute; right: -15px; top: -207px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IH3Lc.framer-hn8cu1, .framer-IH3Lc .framer-2kp23r, .framer-IH3Lc .framer-1maql6g, .framer-IH3Lc .framer-tbm0vq, .framer-IH3Lc .framer-ejkahi, .framer-IH3Lc .framer-nxerk8, .framer-IH3Lc .framer-wl4z4e, .framer-IH3Lc .framer-1d2sjov, .framer-IH3Lc .framer-1u9dnf1, .framer-IH3Lc .framer-1mga8dc, .framer-IH3Lc .framer-161bkg0, .framer-IH3Lc .framer-15ofptc, .framer-IH3Lc .framer-1bqljng, .framer-IH3Lc .framer-id0ciz, .framer-IH3Lc .framer-dadkqk, .framer-IH3Lc .framer-1nnymcz, .framer-IH3Lc .framer-8lg53x, .framer-IH3Lc .framer-549tez, .framer-IH3Lc .framer-7iz4ks, .framer-IH3Lc .framer-e8mip6, .framer-IH3Lc .framer-obwjo3, .framer-IH3Lc .framer-whnua9, .framer-IH3Lc .framer-3y9c3g, .framer-IH3Lc .framer-d4so5c, .framer-IH3Lc .framer-1s8mw1k, .framer-IH3Lc .framer-1x4e1u4, .framer-IH3Lc .framer-r4ecwq, .framer-IH3Lc .framer-18rhhmp, .framer-IH3Lc .framer-xstrj1, .framer-IH3Lc .framer-kaxl3f, .framer-IH3Lc .framer-1drch4x, .framer-IH3Lc .framer-itau7v, .framer-IH3Lc .framer-p6lquh, .framer-IH3Lc .framer-mh3p64, .framer-IH3Lc .framer-xteovm, .framer-IH3Lc .framer-r728sg, .framer-IH3Lc .framer-1t9sejm, .framer-IH3Lc .framer-rpsdns, .framer-IH3Lc .framer-gc5ogm, .framer-IH3Lc .framer-1bqna50, .framer-IH3Lc .framer-1vtrvq8, .framer-IH3Lc .framer-spzwr3, .framer-IH3Lc .framer-1rctso9, .framer-IH3Lc .framer-44hl2k, .framer-IH3Lc .framer-z83k3v, .framer-IH3Lc .framer-5syguk, .framer-IH3Lc .framer-mdwgfy, .framer-IH3Lc .framer-a6s99w, .framer-IH3Lc .framer-y3x2bu, .framer-IH3Lc .framer-1olrv38, .framer-IH3Lc .framer-13qoa5k, .framer-IH3Lc .framer-xn33st, .framer-IH3Lc .framer-112ankz, .framer-IH3Lc .framer-10qo0k0, .framer-IH3Lc .framer-ihm3td, .framer-IH3Lc .framer-zglcxw, .framer-IH3Lc .framer-1msckc5, .framer-IH3Lc .framer-1kum0ef, .framer-IH3Lc .framer-1oq8lq0, .framer-IH3Lc .framer-1s93o7j, .framer-IH3Lc .framer-lx56ig, .framer-IH3Lc .framer-n8epwh, .framer-IH3Lc .framer-h421eo, .framer-IH3Lc .framer-bbxcx4 { gap: 0px; } .framer-IH3Lc.framer-hn8cu1 > *, .framer-IH3Lc .framer-2kp23r > *, .framer-IH3Lc .framer-1mga8dc > *, .framer-IH3Lc .framer-3y9c3g > *, .framer-IH3Lc .framer-xteovm > *, .framer-IH3Lc .framer-1olrv38 > *, .framer-IH3Lc .framer-1s93o7j > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-IH3Lc.framer-hn8cu1 > :first-child, .framer-IH3Lc .framer-2kp23r > :first-child, .framer-IH3Lc .framer-tbm0vq > :first-child, .framer-IH3Lc .framer-nxerk8 > :first-child, .framer-IH3Lc .framer-1d2sjov > :first-child, .framer-IH3Lc .framer-1u9dnf1 > :first-child, .framer-IH3Lc .framer-1mga8dc > :first-child, .framer-IH3Lc .framer-161bkg0 > :first-child, .framer-IH3Lc .framer-15ofptc > :first-child, .framer-IH3Lc .framer-id0ciz > :first-child, .framer-IH3Lc .framer-1nnymcz > :first-child, .framer-IH3Lc .framer-549tez > :first-child, .framer-IH3Lc .framer-obwjo3 > :first-child, .framer-IH3Lc .framer-3y9c3g > :first-child, .framer-IH3Lc .framer-d4so5c > :first-child, .framer-IH3Lc .framer-1s8mw1k > :first-child, .framer-IH3Lc .framer-r4ecwq > :first-child, .framer-IH3Lc .framer-xstrj1 > :first-child, .framer-IH3Lc .framer-1drch4x > :first-child, .framer-IH3Lc .framer-itau7v > :first-child, .framer-IH3Lc .framer-p6lquh > :first-child, .framer-IH3Lc .framer-xteovm > :first-child, .framer-IH3Lc .framer-r728sg > :first-child, .framer-IH3Lc .framer-1t9sejm > :first-child, .framer-IH3Lc .framer-rpsdns > :first-child, .framer-IH3Lc .framer-gc5ogm > :first-child, .framer-IH3Lc .framer-1vtrvq8 > :first-child, .framer-IH3Lc .framer-1rctso9 > :first-child, .framer-IH3Lc .framer-z83k3v > :first-child, .framer-IH3Lc .framer-mdwgfy > :first-child, .framer-IH3Lc .framer-y3x2bu > :first-child, .framer-IH3Lc .framer-1olrv38 > :first-child, .framer-IH3Lc .framer-13qoa5k > :first-child, .framer-IH3Lc .framer-xn33st > :first-child, .framer-IH3Lc .framer-ihm3td > :first-child, .framer-IH3Lc .framer-1kum0ef > :first-child, .framer-IH3Lc .framer-1s93o7j > :first-child, .framer-IH3Lc .framer-lx56ig > :first-child, .framer-IH3Lc .framer-bbxcx4 > :first-child { margin-top: 0px; } .framer-IH3Lc.framer-hn8cu1 > :last-child, .framer-IH3Lc .framer-2kp23r > :last-child, .framer-IH3Lc .framer-tbm0vq > :last-child, .framer-IH3Lc .framer-nxerk8 > :last-child, .framer-IH3Lc .framer-1d2sjov > :last-child, .framer-IH3Lc .framer-1u9dnf1 > :last-child, .framer-IH3Lc .framer-1mga8dc > :last-child, .framer-IH3Lc .framer-161bkg0 > :last-child, .framer-IH3Lc .framer-15ofptc > :last-child, .framer-IH3Lc .framer-id0ciz > :last-child, .framer-IH3Lc .framer-1nnymcz > :last-child, .framer-IH3Lc .framer-549tez > :last-child, .framer-IH3Lc .framer-obwjo3 > :last-child, .framer-IH3Lc .framer-3y9c3g > :last-child, .framer-IH3Lc .framer-d4so5c > :last-child, .framer-IH3Lc .framer-1s8mw1k > :last-child, .framer-IH3Lc .framer-r4ecwq > :last-child, .framer-IH3Lc .framer-xstrj1 > :last-child, .framer-IH3Lc .framer-1drch4x > :last-child, .framer-IH3Lc .framer-itau7v > :last-child, .framer-IH3Lc .framer-p6lquh > :last-child, .framer-IH3Lc .framer-xteovm > :last-child, .framer-IH3Lc .framer-r728sg > :last-child, .framer-IH3Lc .framer-1t9sejm > :last-child, .framer-IH3Lc .framer-rpsdns > :last-child, .framer-IH3Lc .framer-gc5ogm > :last-child, .framer-IH3Lc .framer-1vtrvq8 > :last-child, .framer-IH3Lc .framer-1rctso9 > :last-child, .framer-IH3Lc .framer-z83k3v > :last-child, .framer-IH3Lc .framer-mdwgfy > :last-child, .framer-IH3Lc .framer-y3x2bu > :last-child, .framer-IH3Lc .framer-1olrv38 > :last-child, .framer-IH3Lc .framer-13qoa5k > :last-child, .framer-IH3Lc .framer-xn33st > :last-child, .framer-IH3Lc .framer-ihm3td > :last-child, .framer-IH3Lc .framer-1kum0ef > :last-child, .framer-IH3Lc .framer-1s93o7j > :last-child, .framer-IH3Lc .framer-lx56ig > :last-child, .framer-IH3Lc .framer-bbxcx4 > :last-child { margin-bottom: 0px; } .framer-IH3Lc .framer-1maql6g > *, .framer-IH3Lc .framer-18rhhmp > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-IH3Lc .framer-1maql6g > :first-child, .framer-IH3Lc .framer-ejkahi > :first-child, .framer-IH3Lc .framer-wl4z4e > :first-child, .framer-IH3Lc .framer-1bqljng > :first-child, .framer-IH3Lc .framer-dadkqk > :first-child, .framer-IH3Lc .framer-8lg53x > :first-child, .framer-IH3Lc .framer-7iz4ks > :first-child, .framer-IH3Lc .framer-e8mip6 > :first-child, .framer-IH3Lc .framer-whnua9 > :first-child, .framer-IH3Lc .framer-1x4e1u4 > :first-child, .framer-IH3Lc .framer-18rhhmp > :first-child, .framer-IH3Lc .framer-kaxl3f > :first-child, .framer-IH3Lc .framer-mh3p64 > :first-child, .framer-IH3Lc .framer-1bqna50 > :first-child, .framer-IH3Lc .framer-spzwr3 > :first-child, .framer-IH3Lc .framer-44hl2k > :first-child, .framer-IH3Lc .framer-5syguk > :first-child, .framer-IH3Lc .framer-a6s99w > :first-child, .framer-IH3Lc .framer-112ankz > :first-child, .framer-IH3Lc .framer-10qo0k0 > :first-child, .framer-IH3Lc .framer-zglcxw > :first-child, .framer-IH3Lc .framer-1msckc5 > :first-child, .framer-IH3Lc .framer-1oq8lq0 > :first-child, .framer-IH3Lc .framer-n8epwh > :first-child, .framer-IH3Lc .framer-h421eo > :first-child { margin-left: 0px; } .framer-IH3Lc .framer-1maql6g > :last-child, .framer-IH3Lc .framer-ejkahi > :last-child, .framer-IH3Lc .framer-wl4z4e > :last-child, .framer-IH3Lc .framer-1bqljng > :last-child, .framer-IH3Lc .framer-dadkqk > :last-child, .framer-IH3Lc .framer-8lg53x > :last-child, .framer-IH3Lc .framer-7iz4ks > :last-child, .framer-IH3Lc .framer-e8mip6 > :last-child, .framer-IH3Lc .framer-whnua9 > :last-child, .framer-IH3Lc .framer-1x4e1u4 > :last-child, .framer-IH3Lc .framer-18rhhmp > :last-child, .framer-IH3Lc .framer-kaxl3f > :last-child, .framer-IH3Lc .framer-mh3p64 > :last-child, .framer-IH3Lc .framer-1bqna50 > :last-child, .framer-IH3Lc .framer-spzwr3 > :last-child, .framer-IH3Lc .framer-44hl2k > :last-child, .framer-IH3Lc .framer-5syguk > :last-child, .framer-IH3Lc .framer-a6s99w > :last-child, .framer-IH3Lc .framer-112ankz > :last-child, .framer-IH3Lc .framer-10qo0k0 > :last-child, .framer-IH3Lc .framer-zglcxw > :last-child, .framer-IH3Lc .framer-1msckc5 > :last-child, .framer-IH3Lc .framer-1oq8lq0 > :last-child, .framer-IH3Lc .framer-n8epwh > :last-child, .framer-IH3Lc .framer-h421eo > :last-child { margin-right: 0px; } .framer-IH3Lc .framer-tbm0vq > *, .framer-IH3Lc .framer-1u9dnf1 > *, .framer-IH3Lc .framer-161bkg0 > *, .framer-IH3Lc .framer-d4so5c > *, .framer-IH3Lc .framer-xstrj1 > *, .framer-IH3Lc .framer-r728sg > *, .framer-IH3Lc .framer-13qoa5k > *, .framer-IH3Lc .framer-xn33st > *, .framer-IH3Lc .framer-bbxcx4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-IH3Lc .framer-ejkahi > *, .framer-IH3Lc .framer-wl4z4e > *, .framer-IH3Lc .framer-1bqljng > *, .framer-IH3Lc .framer-8lg53x > *, .framer-IH3Lc .framer-e8mip6 > *, .framer-IH3Lc .framer-44hl2k > *, .framer-IH3Lc .framer-5syguk > *, .framer-IH3Lc .framer-a6s99w > *, .framer-IH3Lc .framer-112ankz > *, .framer-IH3Lc .framer-zglcxw > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-IH3Lc .framer-nxerk8 > *, .framer-IH3Lc .framer-1d2sjov > *, .framer-IH3Lc .framer-id0ciz > *, .framer-IH3Lc .framer-549tez > *, .framer-IH3Lc .framer-obwjo3 > *, .framer-IH3Lc .framer-gc5ogm > *, .framer-IH3Lc .framer-z83k3v > *, .framer-IH3Lc .framer-mdwgfy > *, .framer-IH3Lc .framer-y3x2bu > *, .framer-IH3Lc .framer-ihm3td > *, .framer-IH3Lc .framer-1kum0ef > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-IH3Lc .framer-15ofptc > *, .framer-IH3Lc .framer-1s8mw1k > *, .framer-IH3Lc .framer-r4ecwq > *, .framer-IH3Lc .framer-1t9sejm > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IH3Lc .framer-dadkqk > *, .framer-IH3Lc .framer-7iz4ks > *, .framer-IH3Lc .framer-whnua9 > *, .framer-IH3Lc .framer-kaxl3f > *, .framer-IH3Lc .framer-spzwr3 > *, .framer-IH3Lc .framer-10qo0k0 > *, .framer-IH3Lc .framer-1msckc5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-IH3Lc .framer-1nnymcz > *, .framer-IH3Lc .framer-1vtrvq8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IH3Lc .framer-1x4e1u4 > *, .framer-IH3Lc .framer-n8epwh > *, .framer-IH3Lc .framer-h421eo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IH3Lc .framer-1drch4x > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-IH3Lc .framer-itau7v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-IH3Lc .framer-p6lquh > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-IH3Lc .framer-mh3p64 > *, .framer-IH3Lc .framer-1bqna50 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-IH3Lc .framer-rpsdns > *, .framer-IH3Lc .framer-lx56ig > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-IH3Lc .framer-1rctso9 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-IH3Lc .framer-1oq8lq0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-IH3Lc.framer-v-npl2hj .framer-161bkg0, .framer-IH3Lc.framer-v-npl2hj .framer-1uuv6c6, .framer-IH3Lc.framer-v-1i515si .framer-d4so5c, .framer-IH3Lc.framer-v-nqozlf .framer-r728sg, .framer-IH3Lc.framer-v-13hge0f .framer-13qoa5k, .framer-IH3Lc.framer-v-13hge0f .framer-2rr7tp, .framer-IH3Lc.framer-v-npl2hj.hover .framer-549tez, .framer-IH3Lc.framer-v-npl2hj.hover .framer-obwjo3, .framer-IH3Lc.framer-v-npl2hj.hover .framer-qchef8, .framer-IH3Lc.framer-v-1i515si.hover .framer-r4ecwq, .framer-IH3Lc.framer-v-13hge0f.hover .framer-1msckc5, .framer-IH3Lc.framer-v-13hge0f.hover .framer-e6wqyp, .framer-IH3Lc.framer-v-9j1ljj.hover .framer-h421eo { order: 1; }\",\".framer-IH3Lc.framer-v-npl2hj .framer-15ofptc, .framer-IH3Lc.framer-v-npl2hj .framer-a57xqi, .framer-IH3Lc.framer-v-1i515si .framer-1s8mw1k, .framer-IH3Lc.framer-v-1i515si .framer-1x4e1u4, .framer-IH3Lc.framer-v-nqozlf .framer-1t9sejm, .framer-IH3Lc.framer-v-13hge0f .framer-xn33st, .framer-IH3Lc.framer-v-13hge0f .framer-ialx4b, .framer-IH3Lc.framer-v-9j1ljj .framer-n8epwh, .framer-IH3Lc.framer-v-9j1ljj .framer-4jzje3, .framer-IH3Lc.framer-v-hn8cu1.hover .framer-1sal1we, .framer-IH3Lc.framer-v-hn8cu1.hover .framer-9pgeou, .framer-IH3Lc.framer-v-npl2hj.hover .framer-1uiepi7, .framer-IH3Lc.framer-v-npl2hj.hover .framer-7iz4ks, .framer-IH3Lc.framer-v-npl2hj.hover .framer-i8k7bx, .framer-IH3Lc.framer-v-npl2hj.hover .framer-whnua9, .framer-IH3Lc.framer-v-13hge0f.hover .framer-1kum0ef, .framer-IH3Lc.framer-v-13hge0f.hover .framer-lyak5h { order: 0; }\",\".framer-IH3Lc.framer-v-1i515si .framer-3y9c3g, .framer-IH3Lc.framer-v-1i515si .framer-m4vo2o, .framer-IH3Lc.framer-v-npl2hj.hover .framer-17tp8sg { order: 2; }\",\".framer-IH3Lc.framer-v-1i515si .framer-1b1emoi { order: 6; }\",\".framer-IH3Lc.framer-v-hn8cu1.hover .framer-1maql6g { gap: 16px; padding: 24px 24px 24px 39px; }\",\".framer-IH3Lc.framer-v-hn8cu1.hover .framer-1b1emoi, .framer-IH3Lc.framer-v-npl2hj.hover .framer-1b1emoi, .framer-IH3Lc.framer-v-1i515si.hover .framer-1b1emoi, .framer-IH3Lc.framer-v-nqozlf.hover .framer-1b1emoi, .framer-IH3Lc.framer-v-13hge0f.hover .framer-1b1emoi, .framer-IH3Lc.framer-v-9j1ljj.hover .framer-1b1emoi { bottom: -300px; left: calc(50.00000000000002% - 390px / 2); right: unset; top: unset; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IH3Lc.framer-v-hn8cu1.hover .framer-1maql6g { gap: 0px; } .framer-IH3Lc.framer-v-hn8cu1.hover .framer-1maql6g > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-IH3Lc.framer-v-hn8cu1.hover .framer-1maql6g > :first-child { margin-left: 0px; } .framer-IH3Lc.framer-v-hn8cu1.hover .framer-1maql6g > :last-child { margin-right: 0px; } }\",\".framer-IH3Lc.framer-v-npl2hj.hover .framer-15ofptc { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IH3Lc.framer-v-npl2hj.hover .framer-15ofptc { gap: 0px; } .framer-IH3Lc.framer-v-npl2hj.hover .framer-15ofptc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IH3Lc.framer-v-npl2hj.hover .framer-15ofptc > :first-child { margin-top: 0px; } .framer-IH3Lc.framer-v-npl2hj.hover .framer-15ofptc > :last-child { margin-bottom: 0px; } }\",\".framer-IH3Lc.framer-v-1i515si.hover .framer-1s8mw1k { gap: 0px; padding: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IH3Lc.framer-v-1i515si.hover .framer-1s8mw1k { gap: 0px; } .framer-IH3Lc.framer-v-1i515si.hover .framer-1s8mw1k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IH3Lc.framer-v-1i515si.hover .framer-1s8mw1k > :first-child { margin-top: 0px; } .framer-IH3Lc.framer-v-1i515si.hover .framer-1s8mw1k > :last-child { margin-bottom: 0px; } }\",\".framer-IH3Lc.framer-v-nqozlf.hover .framer-1t9sejm { padding: 16px; }\",\".framer-IH3Lc.framer-v-nqozlf.hover .framer-44hl2k { gap: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IH3Lc.framer-v-nqozlf.hover .framer-44hl2k { gap: 0px; } .framer-IH3Lc.framer-v-nqozlf.hover .framer-44hl2k > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-IH3Lc.framer-v-nqozlf.hover .framer-44hl2k > :first-child { margin-left: 0px; } .framer-IH3Lc.framer-v-nqozlf.hover .framer-44hl2k > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-IH3Lc[data-border=\"true\"]::after, .framer-IH3Lc [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 477\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PfZJB8ARA\":{\"layout\":[\"fixed\",\"fixed\"]},\"u8E2rQSIH\":{\"layout\":[\"fixed\",\"fixed\"]},\"OoLO3e5OG\":{\"layout\":[\"fixed\",\"fixed\"]},\"nCiKvzL0q\":{\"layout\":[\"fixed\",\"fixed\"]},\"lNWobqNjt\":{\"layout\":[\"fixed\",\"fixed\"]},\"oiu5DrskW\":{\"layout\":[\"fixed\",\"fixed\"]},\"owxhYdbIs\":{\"layout\":[\"fixed\",\"fixed\"]},\"oUaAW7qj2\":{\"layout\":[\"fixed\",\"fixed\"]},\"pF3nwu_5Y\":{\"layout\":[\"fixed\",\"fixed\"]},\"x7CpCgc3R\":{\"layout\":[\"fixed\",\"fixed\"]},\"aIEwwY2Yv\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerbx2HjV4HF=withCSS(Component,css,\"framer-IH3Lc\");export default Framerbx2HjV4HF;Framerbx2HjV4HF.displayName=\"Cards\";Framerbx2HjV4HF.defaultProps={height:477,width:360};addPropertyControls(Framerbx2HjV4HF,{variant:{options:[\"DbChmD_L6\",\"PfZJB8ARA\",\"u8E2rQSIH\",\"OoLO3e5OG\",\"nCiKvzL0q\",\"lNWobqNjt\"],optionTitles:[\"Type Magical\",\"Drag n Drop\",\"List\",\"Insights\",\"Toggles\",\"Quick actions\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerbx2HjV4HF,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8lJPg-IUDNg.woff2\",weight:\"500\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerbx2HjV4HF\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"360\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PfZJB8ARA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u8E2rQSIH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OoLO3e5OG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nCiKvzL0q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lNWobqNjt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oiu5DrskW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"owxhYdbIs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oUaAW7qj2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pF3nwu_5Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x7CpCgc3R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aIEwwY2Yv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"477\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eD67YxcDuz1dJhhwTFwi/AcypizwCpMHxYGl3LmKs/Pvy41Nafi.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pKWvgr6wrGYk4BVS2DUH/68rnW9VIfUFkfhFvscKL/vSBjhgXTp.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/jqs1u0pDZGJpOUhylBGs/gcrkHXtbG21eOYvg0SZa/xxrpaKQuu.js\";const serializationHash=\"framer-5DHkO\";const variantClassNames={LGOOl4xdW:\"framer-v-ed7122\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({avatar,company,companyLink,description,height,id,jobTitle,name1,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,fr1yNTD6z:(_ref=name1!==null&&name1!==void 0?name1:props.fr1yNTD6z)!==null&&_ref!==void 0?_ref:\"Mark Austin\",I1BqjUNpy:companyLink!==null&&companyLink!==void 0?companyLink:props.I1BqjUNpy,TRbUKUaTd:(_ref1=description!==null&&description!==void 0?description:props.TRbUKUaTd)!==null&&_ref1!==void 0?_ref1:\"Unsupervised's AI Data Analysts have delivered strong ROI—improving our key metrics while empowering our team with faster, smarter access to data insights.\",Ubc7GkGNV:(_ref2=company!==null&&company!==void 0?company:props.Ubc7GkGNV)!==null&&_ref2!==void 0?_ref2:\"AT&T\",uE93Gik97:(_ref3=avatar!==null&&avatar!==void 0?avatar:props.uE93Gik97)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/TE8ciyVBZkp5jBBRf3Pz70A2k08.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TE8ciyVBZkp5jBBRf3Pz70A2k08.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TE8ciyVBZkp5jBBRf3Pz70A2k08.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TE8ciyVBZkp5jBBRf3Pz70A2k08.jpg 1333w\"},YuDlHZz_I:(_ref4=jobTitle!==null&&jobTitle!==void 0?jobTitle:props.YuDlHZz_I)!==null&&_ref4!==void 0?_ref4:\"VP Data Science\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,uE93Gik97,TRbUKUaTd,fr1yNTD6z,YuDlHZz_I,Ubc7GkGNV,I1BqjUNpy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"LGOOl4xdW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ed7122\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"LGOOl4xdW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-591e6ce6-6629-48cb-90f6-ce54b0803174, rgb(53, 55, 68))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e7b77765-467d-4d17-b95e-a1d2b39088b8, rgb(31, 33, 46))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vxi84n\",layoutDependency:layoutDependency,layoutId:\"GRbrbT15L\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+(0+0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||450)-0-376.4)/1*0)+24+0),sizes:\"64px\",...toResponsiveImage(uE93Gik97)},className:\"framer-t6su62\",\"data-framer-name\":\"User 4\",layoutDependency:layoutDependency,layoutId:\"s6Sv71f3M\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",children:\"As the Project Manager of our company, I'm always on the lookout for tools that can drive success. This platform exceeded my expectations. \"})}),className:\"framer-1jll1dk\",\"data-framer-name\":\"As the Project Manager of our company, I'm always on the lookout for tools that can drive success. This platform exceeded my expectations.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jPURgDlrw\",text:TRbUKUaTd,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s31kxa\",\"data-framer-name\":\"Frame 1000000863\",layoutDependency:layoutDependency,layoutId:\"DwGdp19JG\",style:{backgroundColor:\"rgb(39, 41, 56)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-5xydqk\",\"data-styles-preset\":\"Pvy41Nafi\",children:\"Sarah Davis\"})}),className:\"framer-q5x3jm\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xP_BQ6UZd\",text:fr1yNTD6z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-okep4r\",layoutDependency:layoutDependency,layoutId:\"q47It13H9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",children:\"Project Manager\"})}),className:\"framer-16bjv1g\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yai50IGeh\",text:YuDlHZz_I,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",children:\"at\"})}),className:\"framer-v03jc4\",\"data-framer-name\":\"at\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tjtBMrvWE\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7d83949f-a967-48a3-8f07-15e8bd6e7d88, rgb(153, 123, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:I1BqjUNpy,nodeId:\"dj2Z9eAGU\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bwzom3\",\"data-styles-preset\":\"xxrpaKQuu\",children:\"Linear\"})})})}),className:\"framer-1n894t0\",\"data-framer-name\":\"Company\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dj2Z9eAGU\",style:{\"--extracted-r6o4lv\":\"var(--token-7d83949f-a967-48a3-8f07-15e8bd6e7d88, rgb(153, 123, 255))\"},text:Ubc7GkGNV,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5DHkO.framer-1plkp0m, .framer-5DHkO .framer-1plkp0m { display: block; }\",\".framer-5DHkO.framer-ed7122 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 450px; justify-content: space-between; padding: 0px; position: relative; width: 350px; }\",\".framer-5DHkO .framer-1vxi84n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-5DHkO .framer-t6su62 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 64px; }\",\".framer-5DHkO .framer-1jll1dk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5DHkO .framer-1s31kxa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-5DHkO .framer-q5x3jm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 302px; word-break: break-word; word-wrap: break-word; }\",\".framer-5DHkO .framer-okep4r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5DHkO .framer-16bjv1g, .framer-5DHkO .framer-v03jc4, .framer-5DHkO .framer-1n894t0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5DHkO .framer-1vxi84n, .framer-5DHkO .framer-1s31kxa, .framer-5DHkO .framer-okep4r { gap: 0px; } .framer-5DHkO .framer-1vxi84n > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-5DHkO .framer-1vxi84n > :first-child, .framer-5DHkO .framer-1s31kxa > :first-child { margin-top: 0px; } .framer-5DHkO .framer-1vxi84n > :last-child, .framer-5DHkO .framer-1s31kxa > :last-child { margin-bottom: 0px; } .framer-5DHkO .framer-1s31kxa > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-5DHkO .framer-okep4r > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-5DHkO .framer-okep4r > :first-child { margin-left: 0px; } .framer-5DHkO .framer-okep4r > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-5DHkO[data-border=\"true\"]::after, .framer-5DHkO [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 450\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"uE93Gik97\":\"avatar\",\"TRbUKUaTd\":\"description\",\"fr1yNTD6z\":\"name1\",\"YuDlHZz_I\":\"jobTitle\",\"Ubc7GkGNV\":\"company\",\"I1BqjUNpy\":\"companyLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYk318TWyj=withCSS(Component,css,\"framer-5DHkO\");export default FramerYk318TWyj;FramerYk318TWyj.displayName=\"Testimonial Single\";FramerYk318TWyj.defaultProps={height:450,width:350};addPropertyControls(FramerYk318TWyj,{uE93Gik97:{__defaultAssetReference:\"data:framer/asset-reference,TE8ciyVBZkp5jBBRf3Pz70A2k08.jpg?originalFilename=Mark-Austin-1-2.jpg&preferredSize=auto\",title:\"Avatar\",type:ControlType.ResponsiveImage},TRbUKUaTd:{defaultValue:\"Unsupervised's AI Data Analysts have delivered strong ROI—improving our key metrics while empowering our team with faster, smarter access to data insights.\",displayTextArea:true,title:\"Description\",type:ControlType.String},fr1yNTD6z:{defaultValue:\"Mark Austin\",description:\"\",displayTextArea:false,title:\"Name\",type:ControlType.String},YuDlHZz_I:{defaultValue:\"VP Data Science\",displayTextArea:false,title:\"Job Title\",type:ControlType.String},Ubc7GkGNV:{defaultValue:\"AT&T\",displayTextArea:false,title:\"Company\",type:ControlType.String},I1BqjUNpy:{title:\"Company Link\",type:ControlType.Link}});addFonts(FramerYk318TWyj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYk318TWyj\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"uE93Gik97\\\":\\\"avatar\\\",\\\"TRbUKUaTd\\\":\\\"description\\\",\\\"fr1yNTD6z\\\":\\\"name1\\\",\\\"YuDlHZz_I\\\":\\\"jobTitle\\\",\\\"Ubc7GkGNV\\\":\\\"company\\\",\\\"I1BqjUNpy\\\":\\\"companyLink\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"450\",\"framerIntrinsicWidth\":\"350\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (55492a8)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import Cards from\"#framer/local/canvasComponent/bx2HjV4HF/bx2HjV4HF.js\";import FooterSection from\"#framer/local/canvasComponent/OeEKnFZ5l/OeEKnFZ5l.js\";import Navbar from\"#framer/local/canvasComponent/vGeneWfrW/vGeneWfrW.js\";import Button from\"#framer/local/canvasComponent/weGH8rJZe/weGH8rJZe.js\";import TitleIndicator from\"#framer/local/canvasComponent/xIYt4MwtE/xIYt4MwtE.js\";import TestimonialSingle from\"#framer/local/canvasComponent/Yk318TWyj/Yk318TWyj.js\";import Blog from\"#framer/local/collection/y9CjNRaRa/y9CjNRaRa.js\";import*as sharedStyle1 from\"#framer/local/css/ANjb5hon4/ANjb5hon4.js\";import*as sharedStyle2 from\"#framer/local/css/f15AUF4eE/f15AUF4eE.js\";import*as sharedStyle3 from\"#framer/local/css/IWiRiyhIZ/IWiRiyhIZ.js\";import*as sharedStyle from\"#framer/local/css/UeIjGVe7V/UeIjGVe7V.js\";import*as sharedStyle4 from\"#framer/local/css/vSBjhgXTp/vSBjhgXTp.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const ParticlesFonts=getFonts(Particles);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const ButtonFonts=getFonts(Button);const TitleIndicatorFonts=getFonts(TitleIndicator);const CardsFonts=getFonts(Cards);const TestimonialSingleFonts=getFonts(TestimonialSingle);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={cmHjBFx79:\"(min-width: 810px) and (max-width: 1199px)\",LhPVcvcFH:\"(min-width: 1920px) and (max-width: 3199px)\",Vhqb6CK6A:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1919px)\",XEa8J0lv7:\"(min-width: 3200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ZYaLy\";const variantClassNames={cmHjBFx79:\"framer-v-1wi1kwz\",LhPVcvcFH:\"framer-v-1b0ib5i\",Vhqb6CK6A:\"framer-v-11aqsj5\",WQLkyLRf1:\"framer-v-72rtr7\",XEa8J0lv7:\"framer-v-1faw3jq\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition1={delay:0,duration:.5,ease:[.5,0,.88,.77],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:.8,ease:[.5,0,.88,.77],type:\"tween\"};const transition3={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Full:\"LhPVcvcFH\",Phone:\"Vhqb6CK6A\",Tablet:\"cmHjBFx79\",Wide:\"XEa8J0lv7\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jc3P9Jk_yzSwL6ipea,Ma3hv0k5EzSwL6ipea,x2FFMkwM_zSwL6ipea,EgBFr6Jb7zSwL6ipea,ankh18qopzSwL6ipea,idzSwL6ipea,jc3P9Jk_yUHp_XAws3,Ma3hv0k5EUHp_XAws3,x2FFMkwM_UHp_XAws3,EgBFr6Jb7UHp_XAws3,idUHp_XAws3,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-ZYaLy`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-ZYaLy`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"rxoxch3Og\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"ZIrZ7igf7\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"Er2nJJx3Y\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"dNE1wIEra\");const ref5=React.useRef(null);const router=useRouter();const elementId4=useRouteElementId(\"zCmyXdxBa\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"XPVw7cpeE\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"DQmBFzNCH\");const ref8=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Vhqb6CK6A\")return false;return true;};const activeLocaleCode=useLocaleCode();const elementId7=useRouteElementId(\"boRJbqGNR\");const dynamicRef=useDynamicRefs();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17hgtgo-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{variant:\"HTVkoYt0k\"},Vhqb6CK6A:{variant:\"NcvgZXzDf\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"winnv8Q29\",layoutId:\"winnv8Q29\",style:{width:\"100%\"},variant:\"a4WuCZUq0\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ueqo3v\",\"data-framer-name\":\"Sections\",name:\"Sections\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12sb53z\",\"data-framer-name\":\"Hero Section\",id:elementId,name:\"Hero Section\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w905fn\",\"data-framer-name\":\"Hero Section Wrapper\",name:\"Hero Section Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8cb0ip-container\",children:/*#__PURE__*/_jsx(Particles,{background:\"rgb(31, 33, 46)\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgb(255, 255, 255)\",colors:[\"rgb(31, 33, 46)\",\"rgb(153, 123, 255)\",\"rgb(24, 25, 33)\",\"rgb(121, 81, 240)\",\"rgb(24, 25, 33)\",\"rgb(126, 255, 231)\"],densityOptions:{densityArea:1697,densityEnable:true,densityFactor:50},fpsOptions:30,height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:10,hoverModes:\"none\",hoverParallax:true,hoverSmooth:10},id:\"Bp2AvVK5s\",layoutId:\"Bp2AvVK5s\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:500,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"out\",moveRandom:true,moveSpeed:4,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:true,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:8,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"One\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"😎\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:256,sizeMax:512,sizeMin:128,sizeType:false},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bt5cs7\",\"data-framer-name\":\"Hero Heading Wrapper\",name:\"Hero Heading Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-ht59fw\",\"data-styles-preset\":\"UeIjGVe7V\",children:[\"Automate your \",/*#__PURE__*/_jsx(\"br\",{}),\"analytics with  a\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dcf086af-f9c8-4f0e-b06a-117bfe93bda5, rgb(126, 255, 231))\"},children:\"team of AI Agents\"}),\".\"]})}),className:\"framer-sgji09\",\"data-framer-name\":\"Build remarkable startup website with jupiter.\",fonts:[\"Inter\"],name:\"Build remarkable startup website with jupiter.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fj5v9h\",\"data-styles-preset\":\"ANjb5hon4\",style:{\"--framer-text-color\":\"var(--token-92bb8be5-56c7-4ffa-b071-dcd41546131b, rgb(237, 239, 240))\"},children:\"Unsupervised is an automated analytics platform with\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fj5v9h\",\"data-styles-preset\":\"ANjb5hon4\",style:{\"--framer-text-color\":\"var(--token-92bb8be5-56c7-4ffa-b071-dcd41546131b, rgb(237, 239, 240))\"},children:\"a team of AI-powered data experts that give you insights, \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fj5v9h\",\"data-styles-preset\":\"ANjb5hon4\",style:{\"--framer-text-color\":\"var(--token-92bb8be5-56c7-4ffa-b071-dcd41546131b, rgb(237, 239, 240))\"},children:\"answers, and predictions.\"})]}),className:\"framer-1ilicav\",\"data-framer-name\":\"Jupiter is a modern framer template that represents your startup.\",fonts:[\"Inter\"],name:\"Jupiter is a modern framer template that represents your startup.\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m6jn6v\",\"data-framer-name\":\"Blurred Background\",name:\"Blurred Background\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:450,intrinsicWidth:720,loading:getLoadingLazyAtYPosition(514),pixelHeight:1800,pixelWidth:2340,positionX:\"center\",positionY:\"top\",sizes:\"calc(100vw - 142px)\",src:\"https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png 2340w\"}},LhPVcvcFH:{background:{alt:\"\",intrinsicHeight:450,intrinsicWidth:720,loading:getLoadingLazyAtYPosition(363),pixelHeight:1800,pixelWidth:2340,positionX:\"left\",positionY:\"top\",sizes:\"994px\",src:\"https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png 2340w\"}},Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:450,intrinsicWidth:720,loading:getLoadingLazyAtYPosition(513),pixelHeight:2500,pixelWidth:800,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9oGv5UP97hfHtdkgPeZD4uW0IBA.png\"},style:{}},XEa8J0lv7:{background:{alt:\"\",intrinsicHeight:450,intrinsicWidth:720,loading:getLoadingLazyAtYPosition(128),pixelHeight:1800,pixelWidth:2340,positionX:\"left\",positionY:\"top\",sizes:\"1199px\",src:\"https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png 2340w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:450,intrinsicWidth:720,loading:getLoadingLazyAtYPosition(266),pixelHeight:1800,pixelWidth:2340,positionX:\"left\",positionY:\"top\",sizes:\"646px\",src:\"https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dh0WnBmpOkK79Y2Wpz2hrwGjRak.png 2340w\"},className:\"framer-18nomzh\",\"data-framer-name\":\"Hero Image Wrapper\",name:\"Hero Image Wrapper\",style:{transformPerspective:1200}})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ke80q2\",\"data-framer-name\":\"Other Sections\",name:\"Other Sections\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d35vgh\",\"data-framer-name\":\"Partners Section\",id:elementId1,name:\"Partners Section\",ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6n2pfv\",\"data-framer-name\":\"Partners Wrapper\",name:\"Partners Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5bz6wl-container\",\"data-framer-name\":\"Logo Ticker\",id:elementId2,name:\"Logo Ticker\",ref:ref4,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{gap:30}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"Er2nJJx3Y\",layoutId:\"Er2nJJx3Y\",name:\"Logo Ticker\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:92,pixelWidth:272,src:\"https://framerusercontent.com/images/gbFWLE3P21uPkJ2owHWOcxumNTA.png\"},className:\"framer-1x17ghf\",\"data-framer-name\":\"Disney logo\",name:\"Disney logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14rx826\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 78 36\"><path d=\"M 34.923 9.273 C 35.831 9.207 36.683 8.921 37.473 8.447 C 38.251 7.977 39.391 7.059 39.275 5.977 C 39.238 5.628 39.027 5.365 38.761 5.241 C 38.414 5.077 38.233 5.106 37.789 5.246 C 37.469 5.351 37.325 5.411 37.022 5.599 C 36.13 6.161 34.868 7.362 34.182 8.32 C 34.022 8.544 33.863 8.797 33.738 8.97 C 33.657 9.075 33.597 9.174 33.605 9.201 C 33.631 9.311 34.567 9.3 34.923 9.273 Z M 31.73 8.347 C 31.73 8.347 32.031 7.857 32.284 7.486 C 32.744 6.809 33.577 5.871 34.202 5.289 C 34.395 5.113 34.62 4.911 34.62 4.911 C 34.62 4.911 34.266 4.951 34.066 4.995 C 33.591 5.095 32.894 5.597 32.545 5.922 C 31.97 6.455 31.338 7.321 31.623 8.09 C 31.666 8.201 31.73 8.347 31.73 8.347 Z M 10.148 16.323 C 9.224 16.43 7.487 16.755 6.488 17.145 C 6.186 17.258 5.575 17.536 5.521 17.87 C 5.468 18.219 5.665 18.489 5.887 18.772 C 6.014 18.934 6.739 19.687 6.941 19.871 C 7.791 20.639 9.515 21.827 10.787 22.404 C 11.221 22.6 11.943 22.881 11.943 22.881 C 11.943 22.881 11.89 20.652 11.901 18.46 C 11.904 17.299 11.929 16.155 11.929 16.155 C 11.929 16.155 10.873 16.235 10.148 16.323 Z M 32.613 11.118 C 32.521 11.223 32.422 11.486 32.319 11.674 C 32.264 11.774 32.162 11.903 32.095 11.953 C 31.859 12.141 31.66 12.151 31.43 11.933 C 31.11 11.629 30.926 11.152 30.913 10.691 C 30.906 10.489 30.936 10.269 30.903 10.096 C 30.844 9.81 30.578 9.517 30.437 9.241 C 30.269 8.916 30.134 8.355 30.117 7.991 C 30.059 6.858 30.611 5.816 31.327 4.991 C 32.047 4.159 32.991 3.466 34.017 2.996 C 34.986 2.552 36.407 2.251 37.472 2.651 C 37.818 2.78 38.302 3.1 38.545 3.433 C 38.596 3.504 38.638 3.581 38.692 3.618 C 38.738 3.649 38.862 3.662 38.961 3.682 C 39.301 3.745 39.79 4.023 39.989 4.209 C 40.389 4.586 40.61 4.944 40.712 5.465 C 40.916 6.511 40.359 7.661 39.727 8.359 C 38.641 9.564 37.569 10.41 36.18 11 C 35.571 11.258 34.621 11.499 33.928 11.43 C 33.714 11.412 33.492 11.351 33.284 11.334 C 33.178 11.324 32.787 11.217 32.746 11.183 C 32.694 11.143 32.628 11.104 32.613 11.118 Z M 34.015 13.474 C 34.502 13.675 34.702 14.164 34.822 14.7 C 35.1 15.946 35.22 18.698 35.265 19.778 C 35.299 20.586 35.317 21.385 35.349 22.184 C 35.374 22.861 35.424 23.762 35.295 24.398 C 35.248 24.626 35.107 24.89 34.905 25.028 C 34.673 25.187 34.147 25.199 33.859 25.135 C 33.146 24.975 32.913 24.479 32.813 23.715 C 32.571 21.892 32.687 18.314 32.83 16.804 C 32.875 16.308 33.051 14.71 33.291 14.041 C 33.372 13.814 33.547 13.359 33.852 13.424 C 33.893 13.432 33.959 13.453 34.015 13.474 Z M 31.169 18.946 C 31.123 19.29 30.883 20.083 30.846 20.18 C 30.652 20.661 30.462 21.059 30.26 21.451 C 29.913 22.127 29.092 23.196 28.602 23.653 C 26.788 25.354 23.977 26.323 21.565 26.642 C 19.93 26.856 18.049 26.823 16.315 26.477 C 15.72 26.357 14.832 26.137 14.832 26.137 C 14.832 26.137 14.835 26.522 14.806 26.793 C 14.792 26.916 14.706 27.241 14.658 27.346 C 14.531 27.628 14.325 27.774 14.024 27.835 C 13.662 27.911 13.276 27.934 12.94 27.78 C 12.39 27.527 12.191 26.967 12.096 26.326 C 12.017 25.808 11.936 24.911 11.936 24.911 C 11.936 24.911 11.524 24.7 11.181 24.515 C 10.124 23.95 9.121 23.269 8.245 22.564 C 8.003 22.371 6.959 21.421 6.727 21.184 C 6.081 20.523 5.499 19.859 5.057 19.011 C 4.713 18.348 4.614 17.758 4.875 17.056 C 5.237 16.078 6.531 15.339 7.419 14.918 C 8.071 14.607 10.093 13.89 10.934 13.759 C 11.331 13.697 11.947 13.578 11.984 13.551 C 12 13.539 12.011 13.528 12.022 13.514 C 12.041 13.483 12.074 12.513 12.067 12.158 C 12.06 11.809 12.306 9.52 12.385 9.037 C 12.427 8.774 12.61 7.765 12.797 7.501 C 12.919 7.324 13.135 7.336 13.311 7.455 C 14.275 8.103 14.567 10.358 14.639 11.505 C 14.683 12.203 14.703 13.254 14.703 13.254 C 14.703 13.254 15.81 13.22 16.49 13.238 C 17.151 13.257 17.879 13.37 18.567 13.489 C 19.446 13.639 21.158 14.044 22.139 14.584 C 22.949 15.028 23.706 15.778 23.95 16.57 C 24.178 17.297 24.144 17.799 23.797 18.455 C 23.407 19.197 22.669 19.744 21.92 19.791 C 21.697 19.806 20.859 19.685 20.602 19.469 C 20.5 19.381 20.506 19.226 20.579 19.12 C 20.607 19.082 20.997 18.859 21.23 18.726 C 21.346 18.658 21.442 18.584 21.531 18.496 C 21.724 18.31 21.896 18.109 21.877 17.873 C 21.851 17.566 21.551 17.376 21.265 17.254 C 19.924 16.678 17.247 16.198 15.951 16.115 C 15.445 16.082 14.725 16.054 14.725 16.054 L 14.877 23.798 C 14.877 23.798 15.473 23.922 15.943 24.005 C 16.213 24.048 17.353 24.16 17.656 24.168 C 19.965 24.234 22.542 24.012 24.661 22.925 C 25.591 22.451 26.445 21.861 27.091 21.063 C 27.944 20.001 28.389 18.555 28.271 17.043 C 28.141 15.388 27.067 13.429 26.212 12.235 C 23.949 9.079 20.069 6.485 16.657 4.965 C 13.171 3.412 9.728 2.517 6.029 2.368 C 5.076 2.331 2.995 2.384 1.946 2.698 C 1.794 2.744 1.644 2.8 1.504 2.831 C 1.394 2.86 1.222 2.939 1.173 2.98 C 1.148 3.007 1.121 3.035 1.121 3.035 C 1.121 3.035 1.186 3.075 1.248 3.104 C 1.358 3.158 1.828 3.187 2.07 3.236 C 2.286 3.279 2.513 3.406 2.601 3.578 C 2.686 3.741 2.698 3.869 2.596 4.006 C 2.358 4.322 1.461 4.266 1.067 4.2 C 0.657 4.127 0.147 3.993 0.052 3.606 C -0.055 3.15 0.142 2.704 0.359 2.289 C 0.794 1.463 1.413 1.032 2.325 0.764 C 3.615 0.379 5.246 0.109 6.467 0.059 C 9.229 -0.053 11.841 0.469 14.516 1.351 C 16.046 1.851 18.053 2.693 19.519 3.46 C 20.57 4.009 22.23 5.022 23.163 5.684 C 23.456 5.893 25.177 7.263 25.444 7.504 C 26.001 7.998 26.732 8.708 27.257 9.275 C 28.279 10.373 29.549 12.053 30.168 13.387 C 30.315 13.709 30.432 14.023 30.622 14.392 C 30.687 14.519 30.971 15.278 31.017 15.498 C 31.063 15.716 31.132 16.034 31.141 16.046 C 31.156 16.163 31.285 16.814 31.275 17.067 C 31.336 17.665 31.192 18.797 31.169 18.946 Z M 43.237 17.624 C 44.083 17.749 44.911 17.914 45.545 18.22 C 46.133 18.504 46.479 18.859 46.794 19.494 C 47.272 20.458 47.304 21.805 46.872 22.827 C 46.547 23.586 45.839 24.223 45.191 24.562 C 44.517 24.915 43.856 25.083 43.095 25.177 C 41.768 25.335 40.332 25.037 39.136 24.41 C 38.428 24.036 37.564 23.391 37.127 22.56 C 36.807 21.95 36.817 21.159 37.208 20.581 C 37.828 19.659 39.159 19.456 40.163 19.494 C 40.927 19.526 42.303 19.782 43.029 20.062 C 43.231 20.141 43.973 20.454 44.102 20.595 C 44.193 20.698 44.253 20.841 44.212 20.977 C 44.044 21.526 42.814 21.817 42.458 21.874 C 41.504 22.032 41.01 21.642 39.927 21.179 C 39.658 21.065 39.3 20.939 39.025 20.911 C 38.534 20.86 37.94 21.007 37.847 21.591 C 37.799 21.891 38.124 22.172 38.371 22.287 C 38.953 22.56 39.425 22.656 39.999 22.667 C 41.686 22.694 43.583 22.393 44.966 21.333 C 45.157 21.186 45.342 20.972 45.344 20.702 C 45.344 20.668 45.299 20.376 45.212 20.346 C 45.2 20.341 45.186 20.347 45.176 20.345 C 45.145 20.336 45.091 20.241 45.046 20.178 C 44.948 20.047 44.546 19.86 44.468 19.823 C 43.537 19.403 41.817 19.199 40.93 19.12 C 40 19.033 38.538 18.9 38.186 18.845 C 37.825 18.788 37.433 18.712 37.118 18.558 C 36.805 18.405 36.497 18.06 36.405 17.679 C 36.244 16.992 36.45 16.148 36.803 15.597 C 37.726 14.158 39.888 13.612 41.504 13.396 C 43.068 13.184 45.596 13.187 47.132 14.072 C 47.37 14.209 47.493 14.337 47.442 14.612 C 47.342 15.128 46.981 15.46 46.549 15.606 C 46.095 15.763 45.154 15.824 44.741 15.851 C 42.889 15.964 40.651 15.905 38.887 16.428 C 38.75 16.47 38.511 16.537 38.432 16.632 C 38.157 16.957 38.946 17.05 39.115 17.089 C 39.165 17.1 39.176 17.102 39.227 17.108 L 43.125 17.608 C 43.177 17.613 43.19 17.616 43.237 17.624 Z M 47.937 22.851 C 47.817 20.697 48.343 17.698 49.012 15.677 C 49.203 15.102 49.476 14.163 50.07 14.216 C 50.479 14.255 50.77 14.596 51 14.946 C 51.586 15.843 52.356 17.056 52.868 17.902 C 53.438 18.849 53.986 19.804 54.525 20.666 C 54.591 20.772 54.654 20.873 54.726 20.938 C 54.825 21.023 54.912 21.027 54.953 20.948 C 54.971 20.918 54.936 19.829 54.91 19.61 C 54.869 19.262 54.849 18.982 54.813 18.682 C 54.714 17.811 54.457 16.585 54.256 15.756 C 54.035 14.828 53.765 13.863 53.563 12.964 C 53.498 12.673 53.438 12.378 53.44 12.102 C 53.442 11.7 53.679 11.477 54.066 11.628 C 54.826 11.919 55.835 13.707 56.128 14.329 C 56.228 14.538 56.624 15.606 56.713 15.905 C 57.028 16.93 57.219 17.902 57.307 19.019 C 57.391 20.105 57.32 21.687 56.896 22.756 C 56.741 23.15 56.422 23.68 56.156 23.947 C 55.74 24.366 54.91 24.692 54.338 24.338 C 53.712 23.954 52.685 22.024 52.51 21.694 C 51.913 20.565 50.886 18.358 50.728 18.11 C 50.692 18.056 50.647 18.003 50.568 17.977 C 50.507 17.959 50.483 18.094 50.467 18.182 C 50.365 18.825 50.296 21.832 50.294 21.916 C 50.277 22.422 50.254 23.662 50.119 24.274 C 50.032 24.673 49.943 25.001 49.603 25.168 C 49.363 25.285 49.181 25.236 48.889 25.119 C 48.141 24.821 47.971 23.514 47.937 22.851 Z M 58.877 24.598 C 58.862 24.581 58.593 24.145 58.54 24.011 C 58.493 23.895 58.457 23.81 58.423 23.713 C 58.178 23.028 58.186 22.354 58.321 21.618 C 58.446 20.931 58.565 20.901 58.89 19.958 C 58.911 19.907 58.921 19.863 58.928 19.805 C 58.941 19.676 58.748 18.808 58.737 18.529 C 58.724 18.102 59.029 17.801 59.539 17.742 C 59.587 17.738 59.621 17.738 59.655 17.727 C 59.858 17.673 59.989 17.25 60.1 16.912 C 60.256 16.435 60.498 15.708 60.498 15.708 C 60.498 15.708 59.853 15.547 59.507 15.405 C 59.122 15.247 58.829 15.044 58.655 14.66 C 58.446 14.211 58.584 13.962 59.017 13.817 C 59.175 13.762 60.429 13.501 60.824 13.44 C 61.317 13.361 61.782 13.294 62.252 13.232 C 62.661 13.178 64.536 12.942 65.132 12.96 C 66.041 12.989 66.631 13.394 67.162 14.228 C 67.448 14.673 67.644 15.202 67.212 15.49 C 66.55 15.925 64.403 15.958 64.01 15.962 C 63.383 15.97 62.516 15.958 62.516 15.958 L 62.079 17.541 C 62.079 17.541 63.618 17.524 64.482 17.52 C 64.691 17.52 64.902 17.532 65.02 17.559 C 65.461 17.665 65.613 18.033 65.631 18.562 C 65.655 19.182 65.547 19.467 65.092 19.55 C 64.857 19.591 62.214 19.608 61.857 19.654 C 61.633 19.68 61.396 19.718 61.396 19.718 C 61.396 19.718 61.205 20.258 61.04 20.804 C 60.872 21.371 60.729 21.951 60.729 21.951 C 60.729 21.951 60.863 21.956 60.974 21.956 C 61.16 21.957 61.349 21.928 61.496 21.901 C 62.302 21.741 63.501 21.549 64.484 21.382 C 65.013 21.29 65.278 21.249 65.557 21.629 C 65.797 21.965 65.922 22.246 65.939 22.653 C 65.954 23.035 65.685 23.288 65.356 23.56 C 64.318 24.42 62.541 25.354 61.218 25.515 C 60.605 25.588 60.457 25.515 59.921 25.363 C 59.819 25.336 59.449 25.147 59.453 25.127 C 59.453 25.127 59.252 24.983 59.184 24.925 C 59.102 24.859 58.972 24.714 58.877 24.598 Z M 70.093 27.243 C 69.82 28.172 69.219 30.674 69.08 31.451 C 68.871 32.605 68.275 35.627 68.244 35.692 C 68.203 35.779 68.175 35.806 68.074 35.876 C 67.829 36.033 67.73 35.982 67.433 35.809 C 67.048 35.589 66.708 35.365 66.418 34.95 C 65.837 34.131 65.975 32.59 66.09 31.687 C 66.489 28.523 66.892 27.133 68.003 23.985 C 68.021 23.931 68.021 23.919 67.998 23.872 C 67.653 23.072 67.465 22.107 67.465 21.327 C 67.469 18.86 68.776 16.419 70.244 14.458 C 70.355 14.309 71.074 13.374 71.401 13.392 C 71.729 13.409 71.782 13.824 71.734 14.169 C 71.569 15.31 70.829 16.47 70.323 17.431 C 69.755 18.506 69.63 18.947 69.353 19.932 C 69.308 20.087 69.197 20.806 69.202 20.899 C 69.213 21.163 69.267 21.497 69.267 21.497 C 69.267 21.497 70.192 20.093 70.803 19.227 C 71.135 18.75 71.375 18.436 71.653 18.097 C 71.935 17.753 73.019 16.531 73.332 16.208 C 73.988 15.53 74.279 15.247 74.988 14.847 C 75.551 14.533 76.056 14.454 76.605 14.847 C 77.474 15.466 77.852 16.776 77.951 17.837 C 78.065 19.107 77.826 20.533 77.31 21.62 C 76.697 22.915 75.861 23.849 74.723 24.666 C 73.561 25.501 72.196 26.07 70.859 26.035 C 70.678 26.032 70.467 26.02 70.467 26.02 C 70.467 26.02 70.251 26.706 70.093 27.243 Z M 73.888 19.495 C 73.327 20.363 72.799 21.356 72.293 22.125 C 72.185 22.299 71.859 22.918 71.871 22.938 C 71.893 22.982 72.222 22.968 72.558 22.907 C 73.276 22.776 74.251 22.23 74.772 21.78 C 75.565 21.09 76.118 20.143 76.379 19.034 C 76.495 18.531 76.553 17.475 76.225 17.006 C 76.16 16.915 75.995 16.845 75.868 16.962 C 75.187 17.58 74.308 18.84 73.888 19.495 Z\" fill=\"rgb(124, 135, 146)\"></path></svg>',svgContentId:12152418450,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:92,pixelWidth:272,src:\"https://framerusercontent.com/images/w9cG9KA1nKhdLTH8833GsJmUToY.png\"},className:\"framer-1by16t4\",\"data-framer-name\":\"dl1961 logo\",name:\"dl1961 logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tbxlnv\",\"data-framer-name\":\"Group 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:161,intrinsicWidth:964,name:\"Group 1\",svg:'<svg width=\"964\" height=\"161\" viewBox=\"0 0 964 161\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M97.5778 3.77777H0.866699V158.8H99L120.333 153.111L135.978 143.156L148.778 128.933L155.889 116.133L161.578 94.8V70.6222L158.733 56.4L153.044 42.1778L144.511 27.9555L134.556 18L114.644 8.04444L97.5778 3.77777ZM84.7777 33.6445H40.6889L32.1555 35.0667V128.933H93.3111L108.956 123.244L121.756 109.022L127.444 97.6445L130.289 84.8445L128.867 69.2L121.756 52.1334L113.222 42.1778L100.422 35.0667L84.7777 33.6445Z\" fill=\"#7C8792\"/>\\n<path d=\"M229.844 3.77777H259.711V128.933H356.422V157.378L355 158.8H229.844L228.422 151.689V5.19999L229.844 3.77777Z\" fill=\"#7C8792\"/>\\n<path d=\"M932.422 3.77777H963.711V158.8H933.844V42.1778L916.778 50.7111H912.511V18L925.311 9.46666L932.422 3.77777Z\" fill=\"#7C8792\"/>\\n<path d=\"M430.378 3.77777H460.244V158.8H430.378L428.956 43.6L421.844 46.4444L414.733 50.7111H409.044L410.467 16.5778L421.844 10.8889H424.689L427.533 5.19999L430.378 3.77777Z\" fill=\"#7C8792\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M606.733 2.35553H575.444L564.067 5.19997L549.844 12.3111L539.889 20.8444L532.778 32.2222L528.511 46.4444V63.5111L534.2 79.1555L544.156 90.5333L561.222 99.0666L582.556 103.333H596.778L606.733 101.911L622.378 96.2222L638.022 87.6889L633.756 101.911L625.222 118.978L620.956 120.4L612.422 126.089L596.778 130.356L578.289 128.933L564.067 123.244L554.111 114.711L548.422 113.289L545.578 118.978H542.733L535.622 127.511L534.2 134.622L545.578 146L562.644 155.956L576.867 160.222H609.578L615.267 158.8L638.022 147.422L650.822 134.622L662.2 116.133L667.889 93.3778V67.7778L666.467 59.2444L660.778 42.1778L652.244 27.9555L642.289 18L626.644 8.04442L606.733 2.35553ZM598.2 32.2222H582.556L575.444 33.6445L565.489 37.9111L558.378 45.0222L556.956 56.4L559.8 63.5111L566.911 70.6222L581.133 73.4667L603.889 72.0444L618.111 66.3556L629.489 56.4L630.911 50.7111L625.222 43.6L613.844 36.4889L598.2 32.2222Z\" fill=\"#7C8792\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M795.889 0.93335H781.667L771.711 2.35557L754.644 9.46668L740.422 19.4222L730.467 30.8L719.089 53.5556L716.244 66.3556V97.6445L717.667 104.756L723.355 121.822L733.311 136.044L747.533 148.844L760.333 155.956L774.556 160.222H810.111L824.333 155.956L838.556 147.422L848.511 134.622L854.2 116.133V101.911L851.356 90.5333L844.244 79.1556L835.711 72.0445L824.333 66.3556L801.578 60.6667H781.667L770.289 63.5111L758.911 69.2L743.267 79.1556L747.533 64.9333L753.222 52.1334L756.067 45.0222L760.333 43.6L771.711 36.4889L784.511 33.6445H795.889L805.844 35.0667L814.378 37.9111L835.711 52.1334L847.089 37.9111L849.933 32.2222L841.4 22.2667L824.333 9.46668L810.111 3.77779L795.889 0.93335ZM798.733 90.5333H785.933L777.4 91.9556L764.6 97.6444L753.222 106.178L751.8 113.289L760.333 121.822L771.711 128.933L787.356 131.778L805.844 130.356L818.644 124.667L825.756 114.711V106.178L824.333 103.333L812.956 93.3778L798.733 90.5333Z\" fill=\"#7C8792\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:92,pixelWidth:272,src:\"https://framerusercontent.com/images/qLluo5VqbKiaFUdO3RcsHizl9g.png\"},className:\"framer-1g5zbbs\",\"data-framer-name\":\"cgi logo\",name:\"cgi logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rbasfd\",\"data-framer-name\":\"Group 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:54,name:\"Group 1\",svg:'<svg width=\"54\" height=\"26\" viewBox=\"0 0 54 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.4217 4.8434C12.3909 4.816 11.3651 4.9953 10.4046 5.3706C9.4442 5.7459 8.5685 6.3097 7.8294 7.0286C7.0902 7.7476 6.5024 8.6072 6.1006 9.5569C5.6988 10.5066 5.4912 11.5271 5.49 12.5582C5.49 17.2249 9.2931 20.2771 13.4578 20.2771C16.2209 20.2771 18.8393 19.0723 21.0643 17.0643V22.8594C18.628 24.2687 15.8778 25.046 13.0642 25.1205C5.9558 25.1205 0 19.3414 0 12.5582C0 5.3815 5.992 0 13.1004 0C15.8691 0.04996 18.5957 0.68646 21.1004 1.86747V7.5382C18.4739 5.8153 15.8273 4.8434 13.4217 4.8434Z\" fill=\"#7C8792\"/>\\n<path d=\"M36.1687 25.1205C29.0282 25.1205 23 19.5582 23 12.5582C23 5.49 28.992 0 36.494 0C39.3043 0.02805 42.0825 0.60088 44.6747 1.68675V7.3092C42.3093 5.9438 39.2571 4.8313 36.6024 4.8313C31.6868 4.8313 28.49 8.6707 28.49 12.5462C28.49 17.1044 32.2611 20.4056 36.6747 20.4056C37.6899 20.4339 38.7009 20.2634 39.6506 19.9036V15.3936H35.6346V10.6225H44.8193V23.3253C42.0962 24.5318 39.1471 25.1437 36.1687 25.1205Z\" fill=\"#7C8792\"/>\\n<path d=\"M48.8313 24.6186V0.522217H53.9999V24.6186H48.8313Z\" fill=\"#7C8792\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:92,pixelWidth:272,src:\"https://framerusercontent.com/images/qLluo5VqbKiaFUdO3RcsHizl9g.png\"},className:\"framer-j1ss2v\",\"data-framer-name\":\"cathay logo\",name:\"cathay logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ojwzjc\",\"data-framer-name\":\"Group 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:149,name:\"Group 3\",svg:'<svg width=\"149\" height=\"61\" viewBox=\"0 0 149 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.1038 0.819946H31.8582L34.7746 1.06298L37.448 1.54904L39.7973 2.19713L41.8225 2.92623L43.8478 3.81735L45.387 4.62746L47.2503 5.76161L48.7895 6.89577L49.1135 7.21981L48.1414 8.43497L47.3313 9.48812L46.1971 10.9463L45.387 11.9995L44.4959 13.1336L42.2276 16.05L40.6074 18.1563L39.8783 19.1284L39.5542 18.9664L38.4201 18.1563L36.8809 17.3462L35.1796 16.6981L33.1544 16.212L31.7772 16.05H29.4279L27.4836 16.374L25.7824 16.8601L24.5672 17.3462L23.271 17.9943L22.0559 18.8044L20.9217 19.6955L19.3825 21.2347L18.4104 22.5309L17.4383 24.2321L16.7902 25.7713L16.3041 27.3105L15.9801 29.1738L15.899 29.9839V31.7661L16.0611 33.2243L16.3851 34.7635L17.0332 36.6268L17.7623 38.166L18.6534 39.5432L19.2205 40.2723L19.9496 41.0824L20.2736 41.4874L20.9217 42.0545L22.1369 43.0266L23.5951 43.9178L25.2963 44.7279L27.0786 45.2949L28.7798 45.619L29.5089 45.7H31.6962L33.4784 45.457L34.8556 45.1329L36.4758 44.5658L37.853 43.9178L38.9872 43.1887L39.9593 42.4596L41.0934 41.4874L41.9036 40.5963L42.8757 39.2191L43.5238 38.166H43.6048V39.0571L43.2807 41.4874L42.7947 43.7557L41.9036 46.4291L41.2555 47.8873L40.3643 49.5885L39.3922 51.0467L38.5821 52.0999L37.61 53.234L35.9898 54.8542L35.0986 55.5833L33.8025 56.5555L32.5063 57.3656L30.8051 58.3377L28.8608 59.2288L26.8355 59.9579L25.0533 60.444L24.1622 60.282L22.0559 59.7149L19.9496 58.9858L17.9243 58.0947L16.3041 57.2846L14.2788 56.0694L12.9016 55.0973L11.8485 54.2872L10.6333 53.234L9.58019 52.2619L8.9321 51.6138L8.36503 50.9657L7.31189 49.7505L6.33975 48.4544L5.52964 47.2392L4.55751 45.619L3.50437 43.5937L2.85628 42.0545L2.12719 40.0292L1.56011 38.085L1.07404 35.5736L0.831011 33.6294L0.75 32.4952V29.1738L0.993033 26.6624L1.39809 24.3941L1.96516 22.2068L2.85628 19.6145L3.7474 17.6702L4.80055 15.6449L5.77268 14.1057L6.74481 12.7286L7.47391 11.8374L8.36503 10.7843L9.33716 9.73115L10.3903 8.67801L11.0384 8.11093L12.4156 6.97678L13.8738 5.92363L15.575 4.87049L17.6813 3.73634L19.9496 2.76421L22.623 1.87309L25.0533 1.30601L27.1596 0.981968L29.1038 0.819946Z\" fill=\"#7C8792\"/>\\n<path d=\"M47.6553 38.004H58.7538L58.5918 38.8951L57.6196 41.8115L56.9715 43.3507L56.1614 45.0519L54.8653 47.2392L53.8931 48.6164L53.002 49.7506L51.9489 50.9657L50.9767 52.0189L49.5996 53.315L48.7084 54.0441L47.5743 54.9353L45.9541 56.0694L43.8478 57.2846L41.9035 58.2567L39.7162 59.1478L37.3669 59.8769L34.9366 60.444L32.7493 60.768L31.048 60.9301H29.8329L30.1569 60.768L32.1012 60.1199L34.2075 59.1478L35.8277 58.2567L37.3669 57.2036L38.5011 56.3124L39.7162 55.2593L40.7694 54.2062L41.4985 53.315L42.3086 52.3429L43.6047 50.3986L44.4149 48.9404L45.468 46.7531L46.2781 44.4848L46.8452 42.5406L47.3312 40.1913L47.6553 38.004Z\" fill=\"#7C8792\"/>\\n<path d=\"M108.819 24.3941H111.816V29.8218L117.244 29.7408L117.325 24.3941H120.403L120.322 38.085H117.406L117.325 38.0039V32.5762L111.897 32.6572L111.816 38.085H108.819V24.3941Z\" fill=\"#7C8792\"/>\\n<path d=\"M73.4979 24.1511H75.7662L76.9813 24.3942L77.8725 24.7182L78.9256 25.2853L79.9787 26.1764L79.8167 26.5004L78.8446 27.6346L78.1155 28.4447L77.7914 28.2827L76.8193 27.5536L75.8472 27.1485L74.9561 26.9865H74.227L73.1738 27.2295L72.2827 27.7156L71.5536 28.4447L71.0675 29.2548L70.7435 30.308V32.0092L70.9865 32.9813L71.4726 33.8724L72.2017 34.6825L73.0118 35.1686L73.8219 35.4116H75.4421L76.4953 35.0876L77.3864 34.5205L78.1155 33.9534L78.4395 34.1155L80.0597 35.7357L79.9787 36.0597L79.0066 36.9509L77.9535 37.5989L76.9813 38.004L76.0092 38.247L75.4421 38.328H73.6599L72.2017 38.004L71.2296 37.5989L70.4194 37.1129L69.6093 36.4648L68.7992 35.5737L68.1511 34.4395L67.7461 33.4674L67.5031 32.3332V30.1459L67.8271 28.8498L68.2322 27.8776L68.7182 27.0675L69.3663 26.2574L70.2574 25.4473L71.3916 24.7992L72.3637 24.3942L73.4979 24.1511Z\" fill=\"#7C8792\"/>\\n<path d=\"M52.6779 26.5004H54.2172L55.2703 26.8245L56.3234 27.3915L57.1335 28.1206L57.8626 29.2548L58.1867 30.1459L58.3487 31.1991L58.2677 32.3332L57.9437 33.3864L57.5386 34.1965L56.6475 35.1686L55.8374 35.7357L54.8652 36.1407L54.2172 36.3027L53.326 36.3838L52.1919 36.2217L51.1387 35.8167L50.0856 35.0876L49.4375 34.3585L48.8704 33.3864L48.5464 32.2522V30.551L48.8704 29.4978L49.2755 28.6877L50.0046 27.7966L50.8957 27.1485L51.7058 26.7435L52.6779 26.5004Z\" fill=\"#7C8792\"/>\\n<path d=\"M148.838 24.3131H149L148.838 24.7182L147.866 26.2574L146.57 28.2826L144.301 31.8471L143.815 32.6572L143.734 38.085H140.737L140.656 32.5762L139.441 30.713L138.55 29.2548L137.253 27.2295L136.038 25.2852L135.552 24.5561V24.3941H139.117L140.17 26.2574L141.385 28.2826L142.276 29.7408L143.086 28.4447L144.625 25.8523L145.274 24.7992L145.517 24.3941L148.838 24.3131Z\" fill=\"#7C8792\"/>\\n<path d=\"M95.1277 24.3941H106.469V27.1485H102.338V38.085H99.3403L99.2592 27.2295L95.2087 27.1485L95.1277 26.5004V24.3941Z\" fill=\"#7C8792\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M95.6948 41.5684H94.7227L93.9126 41.7304L93.1025 42.0545L92.2924 42.6216L91.5633 43.4317L91.0772 44.3228L90.7532 45.3759V47.0772L91.0772 48.2113L91.6443 49.1834L92.5354 50.0746L93.6696 50.6416L94.6417 50.8847H95.7759L96.505 50.7227L97.4771 50.3176L98.2062 49.7505L98.9353 48.9404L99.5024 47.8063L99.7454 46.6721V45.7L99.6644 45.2139L99.2593 43.9987L98.6112 43.0266L97.8821 42.3785L96.829 41.8115L95.6948 41.5684ZM94.3985 42.2166L94.3987 42.2165H96.0189L96.3429 42.2975L96.6132 42.4327L96.91 42.5406L97.1528 42.7024L97.4771 42.8646L98.2062 43.5937L98.6922 44.4038L99.0163 45.4569V47.0772L98.8543 47.6442L98.7529 47.8672L98.6922 48.0493L98.6012 48.2011L98.4492 48.5354L98.2547 48.7785L98.2061 48.8594L97.9633 49.1427L97.8011 49.3455L97.7741 49.3635L97.7201 49.4265L96.991 49.9126L96.5859 50.0476L96.3429 50.1556L96.181 50.1826L96.0189 50.2366L95.6946 50.2636L95.3708 50.3176L95.2089 50.3041L95.0467 50.3176L94.7224 50.2636L94.3987 50.2366L94.2368 50.1826L94.0746 50.1556L93.9124 50.0745L93.6696 49.9936L93.2649 49.7508L93.1025 49.6695L93.0483 49.6208L92.8595 49.5075L92.5911 49.2093L92.2923 48.9404L92.1936 48.7677L92.1304 48.6974L91.6452 47.808L91.6443 47.8063L91.4012 46.8342V45.619L91.7253 44.4038L91.7256 44.4033L92.2114 43.5937L92.2923 43.5127L92.2923 43.5127L92.9404 42.8646L93.2645 42.7026L93.5075 42.5406L93.8046 42.4325L94.0746 42.2975L94.3985 42.2166Z\" fill=\"#7C8792\"/>\\n<path d=\"M70.9055 41.7305H71.5536L72.6067 43.0266L73.4169 44.0798L74.389 45.2949L76.1712 47.5633L77.1434 48.7784L77.6294 49.4265L77.7104 41.7305H78.3585V50.7227H77.8725L77.1434 49.9126L76.3332 48.8594L75.3611 47.6443L72.6878 44.2418L71.7156 43.0266L71.6346 42.8646L71.4726 50.7227H70.9055V41.7305Z\" fill=\"#7C8792\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M135.147 41.5684H134.175L133.365 41.7304L132.393 42.1355L131.664 42.7026L130.935 43.5127L130.53 44.3228L130.206 45.3759L130.125 46.5911L130.368 47.8063L130.773 48.6974L131.421 49.5885L131.988 50.0746L133.041 50.6416L134.094 50.8847H135.147L135.957 50.7227L136.929 50.3176L137.659 49.7505L138.388 48.9404L138.955 47.8063L139.198 46.5911V45.862L139.117 45.2139L138.955 44.6468L138.469 43.5937L137.821 42.7836L136.929 42.1355L135.957 41.7304L135.147 41.5684ZM133.851 42.2165L133.851 42.2165H135.471L136.362 42.5406L137.091 43.0266L137.092 43.0274L137.658 43.5937L137.772 43.7825L137.821 43.8367L137.902 43.9995L138.145 44.4038L138.225 44.6464L138.226 44.6468L138.226 44.6479L138.388 45.1329L138.468 45.5371L138.469 45.538V46.9962L138.388 47.4012L138.221 47.802L138.145 48.0493L138.056 48.1963L137.983 48.3733L137.755 48.6978L137.658 48.8594L137.529 49.021L137.415 49.1834L137.367 49.2241L137.334 49.2645L137.233 49.3352L136.929 49.5885L136.727 49.6898L136.524 49.8316L135.795 50.1556L135.795 50.1556L135.795 50.1556L135.795 50.1556L134.823 50.3176L134.629 50.3014L134.499 50.3176L134.175 50.2636L133.851 50.2366L133.624 50.1719L133.527 50.1556L133.473 50.1285L133.284 50.0746L132.799 49.7914L132.555 49.6695L132.491 49.6118L132.312 49.5075L132.044 49.2094L131.745 48.9404L131.631 48.7511L131.583 48.6974L131.381 48.3344L131.259 48.1303L131.241 48.0831L131.178 47.9683L131.057 47.5745L130.935 47.2392L130.854 46.9152V45.538L130.854 45.5372L130.935 45.1329L131.096 44.6477L131.097 44.6469L131.097 44.6466L131.178 44.4038L131.42 43.9992L131.502 43.8367L131.55 43.7826L131.664 43.5937L132.23 43.027L132.231 43.0266L132.96 42.5406L132.96 42.5406L133.851 42.2165Z\" fill=\"#7C8792\"/>\\n<path d=\"M81.0319 41.7305H81.6799L83.4622 43.9988L84.4343 45.2139L86.2166 47.4822L87.1887 48.6974L87.7558 49.4265L87.8368 41.7305H88.4039V50.7227H87.9178L86.9457 49.5075L85.1634 47.2392L84.1913 46.024L82.409 43.7557L81.6799 42.8646L81.5989 50.7227H81.0319V41.7305Z\" fill=\"#7C8792\"/>\\n<path d=\"M141.466 41.7305H142.114L143.896 43.9988L144.868 45.2139L147.542 48.6164L148.19 49.4265L148.271 41.7305H148.838V50.7227H148.433L147.623 49.8316L146.813 48.7784L145.841 47.5633L143.167 44.1608L142.195 42.9456V42.7836H142.033V50.7227H141.466V41.7305Z\" fill=\"#7C8792\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M113.841 41.6495H113.193L112.788 42.5406L111.33 45.7L110.439 47.6443L109.224 50.2366L109.062 50.7227H109.71L109.791 50.6417L110.844 48.2924L116.191 48.2114V48.3734L117.244 50.7227H117.973V50.5607L116.596 47.5633L115.299 44.7279L114.408 42.7836L113.841 41.6495ZM113.679 42.7026L113.436 42.4596L112.788 43.9178L111.411 46.9152L111.168 47.6443H115.623L115.867 47.5633L115.137 45.862L113.679 42.7026Z\" fill=\"#7C8792\"/>\\n<path d=\"M100.718 41.7305H101.447L101.771 42.3786L102.824 44.8899L104.687 49.2645L104.93 49.8316L105.092 49.6695L106.145 47.1582L107.36 44.3228L108.414 41.8115L108.495 41.7305H109.143L108.9 42.4596L107.279 46.1861L106.226 48.6164L105.254 50.8037H104.687L104.12 49.6695L102.824 46.6721L101.204 42.9456L100.718 41.7305Z\" fill=\"#7C8792\"/>\\n<path d=\"M118.135 41.7305H125.021V42.2975L121.861 42.3786V50.7227H121.294V42.3786H119.917L118.135 42.2975V41.7305Z\" fill=\"#7C8792\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M131.097 24.2321H128.342L128.261 24.3131L127.37 26.4194L125.507 30.794L123.968 34.4395L122.59 37.6799L122.509 38.085H125.507L125.588 38.004L126.803 35.0876L132.555 35.0066L132.798 35.7357L133.77 38.085H136.929V37.923L136.281 36.3838L134.742 32.7383L133.122 28.9308L131.583 25.2853L131.097 24.2321ZM129.8 28.1206L129.638 27.9586L129.476 28.2826L128.261 31.2801L127.856 32.3332H131.421L131.34 31.9281L129.8 28.1206Z\" fill=\"#7C8792\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M89.943 24.2321H87.1886L87.1076 24.3131L85.5684 27.9586L84.1912 31.1991L82.652 34.8445L81.4368 37.6799L81.3558 38.085H84.3532L84.5153 37.923L85.6494 35.0876H91.4012L92.6164 38.085H95.7758V37.923L94.9657 35.9787L93.4265 32.3332L91.8062 28.5257L90.5101 25.4473L89.943 24.2321ZM88.6469 28.1206L88.4848 27.9586L87.6747 29.9029L86.8646 31.9281L86.7836 32.3332H90.2671V32.0902L89.862 31.118L88.6469 28.1206Z\" fill=\"#7C8792\"/>\\n<path d=\"M127.127 41.7305H127.775V50.7227H127.208L127.127 50.6417V41.7305Z\" fill=\"#7C8792\"/>\\n<path d=\"M67.5031 41.7305H68.0701L68.1511 41.8115V50.6417L68.0701 50.7227H67.5031V41.7305Z\" fill=\"#7C8792\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:92,pixelWidth:272,src:\"https://framerusercontent.com/images/qLluo5VqbKiaFUdO3RcsHizl9g.png\"},className:\"framer-sincqt\",\"data-framer-name\":\"traeger logo\",name:\"traeger logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-geaegd\",\"data-framer-name\":\"ART\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:231,intrinsicWidth:600,name:\"ART\",svg:'<svg width=\"600\" height=\"231\" viewBox=\"0 0 600 231\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M161.949 221.651C161.949 221.651 161.549 221.451 158.849 220.851C158.349 220.751 157.649 220.451 157.349 219.851C157.249 219.751 157.249 219.551 157.149 219.451C155.649 216.451 154.149 213.351 152.549 210.451C146.149 198.751 139.049 188.951 136.749 185.751C136.549 185.551 136.649 185.251 136.949 185.151C140.049 183.651 142.849 181.951 145.349 180.151C148.249 178.051 150.649 175.451 152.549 172.451C154.349 169.451 155.349 166.051 155.349 162.251C155.349 159.051 154.549 155.951 152.949 153.151C151.349 150.351 149.049 148.051 146.249 146.251C142.049 143.451 136.049 142.051 128.449 142.051H88.3494C87.6494 142.051 87.1494 142.551 87.1494 143.251V145.951C87.1494 147.751 87.5494 148.651 88.6494 148.851C89.3494 148.951 90.3494 149.251 93.3494 149.651C93.9494 149.751 94.4494 150.351 94.4494 150.951V219.551C94.4494 220.251 93.9494 220.751 93.3494 220.851C90.4494 221.351 89.4494 221.551 88.6494 221.651C87.5494 221.851 87.1494 222.651 87.1494 224.551V227.251C87.1494 227.951 87.6494 228.451 88.3494 228.451H112.349C113.049 228.451 113.549 227.851 113.549 227.251V224.651C113.549 223.151 113.249 222.051 112.249 221.751C112.249 221.751 111.349 221.551 107.349 220.851C106.749 220.751 106.349 220.251 106.249 219.651V192.351C106.249 192.051 106.449 191.751 106.749 191.651C109.649 191.151 123.049 188.751 123.049 188.751C124.549 188.351 124.649 188.651 125.449 189.851C126.249 191.051 130.849 197.451 135.049 204.551C141.449 215.151 143.049 218.951 143.049 219.951C143.049 220.351 142.549 220.651 142.049 220.751C139.149 221.251 138.649 221.451 137.949 221.551C136.849 221.751 136.449 222.551 136.449 224.451V227.151C136.449 227.751 136.949 228.251 137.549 228.351H162.149C162.849 228.351 163.349 227.751 163.349 227.151V224.451C163.249 223.051 162.949 221.851 161.949 221.651ZM119.849 181.951C117.649 182.451 113.449 183.151 107.149 184.151C106.749 184.251 106.349 183.951 106.349 183.451V151.251C106.349 151.051 106.349 150.851 106.349 150.651C106.449 150.251 106.849 149.851 107.349 149.851H118.349C134.149 149.851 142.149 154.051 142.149 163.451C142.149 167.251 140.849 170.351 138.549 172.951C135.349 176.451 129.749 179.951 119.849 181.951Z\" fill=\"#7C8792\"/>\\n<path d=\"M598.65 221.651C598.65 221.651 598.25 221.451 595.55 220.851C595.05 220.751 594.35 220.451 594.05 219.851C593.95 219.751 593.95 219.551 593.85 219.451C592.35 216.451 590.85 213.351 589.25 210.451C582.85 198.751 575.75 188.951 573.45 185.751C573.25 185.551 573.35 185.251 573.65 185.151C576.75 183.651 579.55 181.951 582.05 180.151C584.95 178.051 587.35 175.451 589.25 172.451C591.05 169.451 592.05 166.051 592.05 162.251C592.05 159.051 591.25 155.951 589.65 153.151C588.05 150.351 585.75 148.051 582.95 146.251C578.75 143.451 572.75 142.051 565.15 142.051H525.05C524.35 142.051 523.85 142.551 523.85 143.251V145.951C523.85 147.751 524.25 148.651 525.35 148.851C526.05 148.951 527.05 149.251 530.05 149.651C530.65 149.751 531.15 150.351 531.15 150.951V219.551C531.15 220.251 530.65 220.751 530.05 220.851C527.15 221.351 526.15 221.551 525.35 221.651C524.25 221.851 523.85 222.651 523.85 224.551V227.251C523.85 227.951 524.35 228.451 525.05 228.451H549.05C549.75 228.451 550.25 227.851 550.25 227.251V224.651C550.25 223.151 549.95 222.051 548.95 221.751C548.95 221.751 548.05 221.551 544.05 220.851C543.45 220.751 543.05 220.251 542.95 219.651V192.351C542.95 192.051 543.15 191.751 543.45 191.651C546.35 191.151 559.75 188.751 559.75 188.751C561.25 188.351 561.35 188.651 562.15 189.851C562.95 191.051 567.55 197.451 571.75 204.551C578.15 215.151 579.75 218.951 579.75 219.951C579.75 220.351 579.25 220.651 578.75 220.751C575.85 221.251 575.35 221.451 574.65 221.551C573.55 221.751 573.15 222.551 573.15 224.451V227.151C573.15 227.751 573.65 228.251 574.25 228.351H598.55C599.25 228.351 599.75 227.751 599.75 227.151V224.451C599.85 223.051 599.55 221.851 598.65 221.651ZM556.55 181.951C554.35 182.451 550.15 183.151 543.85 184.151C543.45 184.251 543.05 183.951 543.05 183.451V151.251C543.05 151.051 543.05 150.851 543.05 150.651C543.15 150.251 543.55 149.851 544.05 149.851H555.05C570.85 149.851 578.85 154.051 578.85 163.451C578.85 167.251 577.55 170.351 575.25 172.951C572.05 176.451 566.45 179.951 556.55 181.951Z\" fill=\"#7C8792\"/>\\n<path d=\"M432.549 184.251H401.949C401.249 184.251 400.749 184.851 400.749 185.451V188.151C400.749 189.651 401.049 190.751 402.049 191.051C403.049 191.351 411.949 192.551 413.149 192.851C414.449 193.051 414.649 194.051 414.649 194.651C414.649 195.551 414.649 211.651 414.649 211.651C414.649 211.651 414.549 214.851 410.249 218.251C408.349 219.751 405.749 220.851 402.449 221.751C399.249 222.551 396.049 222.951 393.049 222.951C388.149 222.951 383.549 221.951 379.149 220.051C374.749 218.151 370.949 215.451 367.849 211.951C361.849 205.251 358.849 196.951 358.849 187.051C358.849 182.151 359.649 177.251 361.249 172.551C362.749 167.751 364.949 163.451 367.849 159.851C370.749 156.051 374.249 153.151 378.449 150.951C382.649 148.751 387.249 147.651 392.449 147.651C398.649 147.651 404.249 149.151 408.849 152.051L409.049 152.151C411.949 153.951 414.949 157.451 416.549 161.351C417.149 162.951 417.249 163.951 417.349 164.951C417.549 166.051 418.349 166.451 420.249 166.451H422.949C423.649 166.451 424.149 165.951 424.149 165.251V141.951C424.149 141.251 423.649 140.751 422.949 140.751H420.249C418.449 140.751 418.049 140.951 417.749 142.051C417.549 143.251 417.249 144.251 416.749 144.851C416.649 144.951 416.449 145.051 416.349 145.151C416.149 145.251 415.849 145.251 415.549 145.151C412.649 143.851 409.449 142.751 405.749 141.951C401.049 140.951 396.549 140.451 392.549 140.451C383.949 140.451 375.949 142.551 368.849 146.551C361.749 150.551 355.949 156.151 351.749 163.251C347.649 170.451 345.549 178.251 345.549 186.751C345.549 192.951 346.749 199.051 349.149 204.751C351.449 210.351 355.049 215.251 359.649 219.351C362.649 221.851 365.949 223.951 369.449 225.551C373.049 227.151 376.849 228.451 380.649 229.151C384.549 229.951 388.549 230.351 392.449 230.351C399.749 230.351 407.549 228.751 415.549 225.651C423.649 222.251 427.549 219.251 427.549 216.151C427.549 215.551 427.549 197.451 427.549 196.851V193.851C427.549 193.351 427.549 192.851 428.049 192.551C428.649 192.251 431.849 191.251 431.849 191.251C432.649 190.851 433.549 190.251 433.649 188.351V185.651C433.749 184.851 433.249 184.251 432.549 184.251Z\" fill=\"#7C8792\"/>\\n<path d=\"M76.3495 156.851L74.1495 143.251C74.1495 143.151 74.0495 143.051 74.0495 143.051C73.9495 142.651 73.6495 142.251 73.3495 142.051C73.2495 141.951 72.9495 141.951 72.9495 141.951H3.54955C2.84955 141.951 2.34955 142.651 2.34955 143.151L0.0495463 156.951C-0.150454 157.751 0.249547 158.451 1.34955 158.451C2.44955 158.451 4.04955 158.451 4.04955 158.451C6.54955 158.451 7.54955 158.451 8.04955 157.151C8.04955 157.151 9.14955 154.351 10.1495 152.751C10.5495 152.051 11.0495 151.451 11.5495 151.051C13.2495 149.751 14.9495 149.451 19.1495 149.451H31.4495H31.5495C32.0495 149.451 32.5495 149.851 32.5495 150.451V219.451C32.5495 220.451 31.5495 220.751 31.4495 220.751C28.5495 221.251 27.3495 221.451 26.7495 221.551C25.6495 221.751 25.2495 222.551 25.2495 224.451V227.151C25.2495 227.751 25.7495 228.451 26.7495 228.451H50.1495C50.9495 228.451 51.6495 227.751 51.6495 227.151V224.451C51.6495 222.651 51.2495 221.751 50.1495 221.551C49.4495 221.451 48.3496 221.151 45.4496 220.751C45.3496 220.751 44.3495 220.551 44.3495 219.451V150.451C44.3495 149.951 44.7495 149.451 45.3495 149.451H45.4496H57.4496C61.6496 149.451 63.3495 149.851 65.0495 151.051C65.5495 151.451 65.9495 152.051 66.4495 152.751C67.4495 154.351 68.5495 157.151 68.5495 157.151C69.0495 158.451 70.0495 158.451 72.5495 158.451C72.5495 158.451 74.1495 158.451 75.2495 158.451C76.1495 158.351 76.5495 157.351 76.3495 156.851Z\" fill=\"#7C8792\"/>\\n<path d=\"M510.249 210.851C509.249 210.851 507.549 210.851 507.549 210.851C505.049 210.851 504.049 210.851 503.549 212.151C503.549 212.151 501.949 216.051 500.849 217.651C500.449 218.351 499.949 218.951 499.449 219.351C498.449 220.151 496.549 220.951 493.449 220.951H464.149C463.449 220.951 462.849 220.351 462.849 219.651V189.051C462.849 188.351 463.449 187.751 464.149 187.751C464.149 187.751 489.849 187.751 489.949 187.751C490.249 187.751 490.549 187.851 490.649 188.151C490.649 188.151 491.649 190.551 491.649 190.651C492.049 191.651 492.649 192.151 494.549 192.151C494.549 192.151 494.549 192.151 494.649 192.151H497.349C498.349 192.151 498.649 191.651 498.649 190.651V177.351C498.649 176.551 498.349 175.851 497.349 175.851H494.649C494.649 175.851 494.649 175.851 494.549 175.851C492.749 175.851 492.149 176.351 491.649 177.351C491.549 177.451 490.649 179.751 490.549 179.751C490.349 179.951 490.149 180.151 489.849 180.251H464.149C463.349 180.251 462.749 179.651 462.749 178.851V150.651C462.749 149.951 463.349 149.351 464.049 149.351H488.249C492.449 149.351 493.549 149.551 495.249 150.851C495.749 151.251 496.149 151.851 496.649 152.551C497.649 154.151 498.749 156.951 498.749 156.951C499.249 158.251 500.249 158.251 502.749 158.251C502.749 158.251 504.349 158.251 505.449 158.251C506.549 158.251 506.949 157.251 506.749 156.751L504.449 142.951C504.349 142.551 504.049 142.151 503.749 141.951C503.649 141.851 503.349 141.851 503.349 141.851C503.349 141.851 445.749 141.851 444.949 141.851C444.249 141.851 443.749 142.551 443.749 143.051V145.751C443.749 147.251 444.049 148.351 445.049 148.651L449.549 149.451C450.749 149.651 451.049 149.951 451.049 150.751C451.049 150.751 451.049 150.751 451.049 150.951V219.351C451.049 219.651 450.949 220.351 450.049 220.551C447.149 221.051 445.949 221.351 445.249 221.451C444.049 221.651 443.649 222.651 443.649 224.451V227.051C443.649 227.851 444.449 228.351 445.149 228.351C445.149 228.351 508.149 228.351 508.249 228.351C508.749 228.351 509.249 227.651 509.249 227.251L511.549 212.351C511.749 211.751 511.349 210.851 510.249 210.851Z\" fill=\"#7C8792\"/>\\n<path d=\"M337.149 210.851C336.149 210.851 334.449 210.851 334.449 210.851C331.949 210.851 330.949 210.851 330.449 212.151C330.449 212.151 328.849 216.051 327.749 217.651C327.349 218.351 326.849 218.951 326.349 219.351C325.349 220.151 323.449 220.951 320.349 220.951H290.949C290.249 220.951 289.649 220.351 289.649 219.651V189.051C289.649 188.351 290.249 187.751 290.949 187.751C290.949 187.751 316.649 187.751 316.749 187.751C317.049 187.751 317.349 187.851 317.449 188.151C317.449 188.151 318.449 190.551 318.449 190.651C318.849 191.651 319.449 192.151 321.349 192.151C321.349 192.151 321.349 192.151 321.449 192.151H324.149C325.149 192.151 325.449 191.651 325.449 190.651V177.351C325.449 176.551 325.149 175.851 324.149 175.851H321.449C321.449 175.851 321.449 175.851 321.349 175.851C319.549 175.851 318.949 176.351 318.449 177.351C318.349 177.451 317.449 179.751 317.349 179.751C317.149 179.951 316.949 180.151 316.649 180.251H290.949C290.149 180.251 289.549 179.651 289.549 178.851V150.651C289.549 149.951 290.149 149.351 290.849 149.351H315.149C319.349 149.351 320.449 149.551 322.149 150.851C322.649 151.251 323.049 151.851 323.549 152.551C324.549 154.151 325.649 156.951 325.649 156.951C326.149 158.251 327.149 158.251 329.649 158.251C329.649 158.251 331.249 158.251 332.349 158.251C333.449 158.251 333.849 157.251 333.649 156.751L331.349 142.951C331.249 142.551 330.949 142.151 330.649 141.951C330.549 141.851 330.249 141.851 330.249 141.851C330.249 141.851 272.649 141.851 271.849 141.851C271.149 141.851 270.649 142.551 270.649 143.051V145.751C270.649 147.251 270.949 148.351 271.949 148.651C271.949 148.651 272.449 148.751 276.449 149.451C276.849 149.551 277.349 149.651 277.649 149.951L277.749 150.051C277.849 150.251 277.949 150.451 277.949 150.651C277.949 150.651 277.949 150.651 277.949 150.851V219.251C277.949 219.551 277.849 220.251 276.949 220.451C274.049 220.951 272.849 221.251 272.149 221.351C270.949 221.551 270.549 222.551 270.549 224.351V226.951C270.549 227.751 271.349 228.251 272.049 228.251C272.049 228.251 335.049 228.251 335.149 228.251C335.649 228.251 336.149 227.551 336.149 227.151L338.449 212.251C338.649 211.751 338.249 210.851 337.149 210.851Z\" fill=\"#7C8792\"/>\\n<path d=\"M259.249 221.451C258.749 221.351 258.649 221.351 257.649 221.151C257.149 221.051 256.549 220.951 255.549 220.751C255.449 220.751 255.049 220.751 254.849 220.351C254.649 220.151 251.149 210.751 251.049 210.351C240.949 183.851 239.449 180.751 220.849 142.351C220.049 140.851 218.649 139.951 217.249 139.951C215.749 139.951 214.349 140.851 213.649 142.351C213.249 143.051 192.349 191.551 184.349 210.251L181.149 217.551L180.449 219.051C180.449 219.051 180.149 219.751 179.949 219.951C179.849 220.051 179.549 220.251 179.249 220.351C176.349 220.851 175.149 221.051 174.549 221.151C173.449 221.351 173.049 222.151 173.049 224.051V226.751C173.049 227.351 173.549 228.051 174.549 228.051H197.949C198.749 228.051 199.449 227.351 199.449 226.751V224.051C199.449 222.251 199.049 221.351 197.949 221.151C197.249 221.051 195.149 220.551 192.249 220.051C192.049 219.951 191.949 219.951 191.849 219.851C191.149 219.551 190.849 218.851 191.049 218.351C191.049 218.351 193.149 212.551 194.049 210.451C195.149 207.751 196.449 204.851 197.249 202.551C197.749 201.351 198.049 200.351 198.449 199.551C198.749 198.751 199.549 198.251 200.349 198.251H231.749C232.449 198.251 233.649 198.151 233.949 199.251C234.049 199.651 236.849 206.851 238.549 212.051C238.949 213.351 239.449 215.251 239.849 216.751C239.949 217.251 240.249 218.151 240.349 218.551C240.649 219.451 240.549 220.051 240.049 220.451C239.949 220.551 239.849 220.551 239.849 220.551C236.949 221.051 236.649 221.051 235.949 221.251C234.849 221.451 234.449 222.251 234.449 224.151V226.851C234.449 227.451 234.949 228.151 235.949 228.151H259.349C260.549 228.151 260.849 227.451 260.849 226.851V224.151C260.649 222.551 260.249 221.751 259.249 221.451ZM229.249 191.151H202.749C202.249 191.151 201.749 190.651 202.049 190.051L215.049 158.251C222.649 174.051 226.749 182.551 229.849 189.851C229.949 190.051 229.949 190.151 229.949 190.151C230.149 190.551 229.849 191.151 229.249 191.151Z\" fill=\"#7C8792\"/>\\n<path d=\"M218.949 22.8512L250.949 41.1512C251.049 41.2512 251.149 41.2512 251.249 41.1512C253.049 39.9512 272.449 25.4512 301.749 5.65119C301.749 5.65119 305.749 3.05118 309.249 5.55118L361.749 42.2512C361.949 42.4512 362.249 42.4512 362.549 42.3512L395.249 28.6512C396.549 28.1512 398.149 28.2512 399.349 29.0512C406.749 33.6512 435.549 51.9512 438.749 53.8512C440.949 55.1512 439.449 57.3512 437.549 56.3512C434.149 54.5512 401.649 37.3512 399.649 36.3512C397.549 35.3512 397.149 35.2512 394.749 36.3512C394.749 36.3512 374.749 45.7512 372.649 46.7512C370.549 47.7512 371.749 50.1512 375.149 48.6512C378.549 47.1512 392.349 41.6512 394.949 40.5512C397.549 39.4512 399.649 40.7512 397.949 43.2512C396.149 45.7512 393.949 48.7512 392.149 51.1512C390.349 53.6512 392.649 54.0512 396.049 53.8512C399.449 53.6512 399.049 57.1512 395.349 58.0512C391.549 58.9512 390.649 59.2512 390.649 61.7512C390.649 64.2512 396.249 67.6512 403.349 70.5512C410.449 73.4512 452.949 91.0512 452.949 91.0512C456.749 92.3512 455.149 95.6512 452.549 94.8512C450.149 94.1512 395.649 76.2512 386.549 70.3512C377.449 64.4512 358.349 50.6512 307.749 17.5512C307.749 17.5512 305.249 15.9512 302.849 17.3512L259.849 45.2512C259.849 45.2512 250.849 51.4512 248.749 52.8512C247.049 54.0512 248.549 56.6512 253.649 53.5512L299.849 26.5512C299.849 26.5512 304.649 23.9512 303.949 28.9512C303.949 28.9512 302.549 40.9512 302.149 44.1512C301.749 47.3512 300.349 53.3512 305.649 53.0512C305.649 53.0512 312.249 52.3512 308.849 57.6512C308.649 57.9512 279.749 98.7512 278.849 99.4512C277.149 100.751 274.749 99.7512 275.349 96.4512C275.349 96.4512 280.649 75.6512 280.749 75.0512C281.449 71.8512 278.949 70.6512 276.449 73.1512C273.849 75.6512 256.049 92.7512 253.949 94.7512C251.849 96.8512 249.249 94.9512 250.449 92.5512C251.649 90.0512 261.949 70.5512 263.249 67.9512C264.649 65.3512 261.949 63.4512 259.449 65.8512C256.949 68.2512 233.849 88.4512 233.849 88.4512C224.949 95.7512 201.749 93.9512 168.849 115.751C164.149 118.651 162.649 114.551 165.149 112.451C167.649 110.451 174.449 104.451 176.749 102.351C178.649 100.551 178.349 97.5512 173.449 98.7512C168.549 99.9512 140.949 106.351 140.949 106.351C140.949 106.351 129.949 109.351 129.149 106.751C128.549 104.651 132.349 103.351 132.349 103.351C132.349 103.351 186.149 87.3512 242.949 47.2512C243.149 47.1512 243.049 46.8512 242.949 46.8512L220.149 32.8512C220.049 32.7512 218.249 31.8512 216.349 32.8512C216.349 32.8512 187.649 48.7512 185.849 49.6512C184.149 50.6512 185.149 52.5512 188.549 50.9512C190.849 49.7512 204.449 43.0512 208.549 41.0512C213.149 38.7512 217.049 40.3512 214.449 43.9512C212.049 47.0512 198.349 65.4512 196.349 68.0512C194.449 70.5512 190.149 70.5512 191.749 65.7512C193.349 60.9512 192.549 62.9512 193.049 61.3512C193.549 59.7512 192.349 58.2512 190.349 60.5512C188.249 62.8512 181.949 69.7512 178.049 74.0512C174.549 77.8512 173.149 75.6512 173.849 73.6512C174.749 71.2512 175.049 70.6512 175.449 69.4512C175.949 67.7512 174.249 67.2512 173.349 68.4512C172.349 69.6512 159.549 85.2512 157.749 87.6512C155.949 90.0512 152.849 88.8512 155.849 83.0512C159.049 76.9512 146.849 80.4512 142.949 81.3512C139.049 82.1512 90.3494 97.3512 82.0494 99.0512C79.1494 99.9512 77.9494 96.8512 81.2494 95.4512C84.5494 94.1512 99.2494 89.0512 101.749 88.1512C104.249 87.2512 103.649 85.6512 100.649 85.9512C98.3494 86.2512 64.2494 88.8512 58.4494 89.2512C56.0494 89.4512 55.4494 86.8512 58.7494 86.4512C63.1494 85.9512 112.949 78.1512 135.049 66.1512C152.849 56.5512 215.649 22.5512 215.649 22.5512C215.649 22.5512 217.549 21.9512 218.949 22.8512ZM512.549 83.8512C511.749 83.4512 506.049 80.4512 503.349 76.0512C503.349 76.0512 507.149 77.8512 509.749 78.5512C512.749 79.4512 513.849 75.8512 511.649 75.0512C510.049 74.4512 503.149 70.5512 502.749 67.7512C502.749 67.7512 506.549 70.7512 508.849 71.0512C510.449 71.2512 511.749 68.8512 509.349 67.7512C507.949 67.0512 503.749 64.4512 502.649 61.6512C502.649 61.6512 505.949 63.1512 507.049 62.9512C508.549 62.7512 509.049 60.3512 506.649 59.5512C504.249 58.7512 502.949 57.0512 502.449 56.1512C502.349 56.0512 502.249 55.6512 502.249 55.4512C502.249 55.4512 502.849 55.9512 504.949 56.7512C507.049 57.4512 507.149 54.8512 505.949 54.0512C504.749 53.2512 501.249 51.1512 500.649 50.2512C500.749 50.2512 504.649 52.6512 505.249 51.3512C505.849 50.0512 504.149 49.1512 502.849 48.3512C501.049 47.1512 500.149 45.0512 500.349 45.0512C500.849 45.2512 503.349 47.1512 503.849 45.4512C503.949 44.8512 503.649 44.4512 503.149 44.1512C501.949 43.5512 501.349 42.8512 500.549 41.0512C499.749 39.2512 500.049 37.1512 498.949 35.8512C498.549 35.4512 497.249 35.2512 496.849 37.0512C496.449 38.8512 496.349 40.6512 495.049 41.7512C493.749 42.8512 491.749 43.6512 492.549 45.0512C493.049 45.8512 494.849 44.9512 495.549 44.4512C495.649 44.3512 495.649 45.7512 494.549 46.6512C493.449 47.7512 490.549 48.4512 490.449 49.9512C490.349 51.4512 492.549 51.2512 495.049 50.1512C494.649 51.5512 490.649 53.7512 489.649 54.1512C487.649 55.1512 489.049 57.2512 490.549 57.0512C492.049 56.8512 494.349 55.4512 494.449 55.4512C494.649 55.5512 494.249 56.1512 494.149 56.1512C493.649 56.8512 492.949 57.4512 492.349 58.0512C491.549 58.8512 490.649 59.8512 489.449 60.2512C488.849 60.4512 488.149 60.7512 487.749 61.2512C487.549 61.6512 487.449 62.0512 487.549 62.4512C487.749 63.1512 488.449 63.7512 489.249 63.8512C490.349 64.0512 491.449 63.6512 492.449 63.2512C492.949 63.0512 493.749 62.3512 494.349 62.2512C493.949 63.5512 493.249 64.6512 492.349 65.6512C491.149 66.9512 489.849 67.7512 488.349 68.4512C487.549 68.8512 486.749 69.3512 486.449 70.2512C486.349 70.4512 486.349 70.7512 486.349 71.0512C486.449 71.5512 486.849 71.8512 487.249 72.1512C487.949 72.4512 488.949 72.5512 489.749 72.3512C490.149 72.2512 494.349 70.8512 494.249 70.3512C494.349 70.8512 493.649 71.5512 493.449 71.8512C492.749 72.6512 492.049 73.3512 491.249 74.0512C490.349 74.8512 489.349 75.5512 488.349 76.2512C487.349 76.9512 486.249 77.2512 485.249 77.8512C484.849 78.0512 484.449 78.5512 484.249 79.0512C484.049 79.5512 484.149 80.1512 484.449 80.5512C484.649 80.7512 484.949 80.9512 485.249 80.9512C487.049 81.4512 489.649 80.2512 491.249 79.4512C491.649 79.2512 493.549 78.1512 493.549 78.1512C493.349 78.6512 492.349 81.1512 488.049 82.6512C486.549 83.1512 484.949 83.5512 483.549 84.1512C483.149 84.2512 482.749 84.5512 482.449 84.8512C482.149 85.1512 481.949 85.5512 482.049 86.0512C482.149 86.5512 482.549 86.8512 482.949 87.0512C483.449 87.2512 484.149 87.3512 484.749 87.3512C489.149 87.3512 493.949 84.8512 493.949 84.8512C493.749 84.9512 493.449 85.2512 493.249 85.4512C491.649 86.8512 489.949 88.0512 487.949 88.9512C486.649 89.5512 485.049 89.6512 483.949 90.4512C483.249 90.8512 482.949 91.8512 483.449 92.5512C484.049 93.5512 485.549 93.5512 486.549 93.3512C487.549 93.2512 488.549 92.8512 489.549 92.5512C491.049 92.0512 492.549 91.5512 494.049 90.9512L493.949 91.0512C493.249 91.7512 492.649 92.4512 491.949 93.1512C490.949 94.0512 489.949 94.7512 488.749 95.3512C487.749 95.8512 488.049 97.1512 488.949 97.5512C489.449 97.8512 490.149 97.8512 490.749 97.7512C492.549 97.4512 494.149 96.4512 495.649 95.5512C495.749 95.4512 496.449 95.1512 496.449 95.0512C496.749 98.9512 495.349 105.351 494.649 105.251C493.149 104.851 491.849 104.451 490.649 104.051C480.049 100.551 473.349 97.6512 473.349 97.6512C470.949 96.8512 469.449 100.451 472.349 101.451C472.249 101.351 479.549 104.051 490.349 107.251C496.449 109.051 507.749 111.951 508.249 112.051C510.749 112.551 511.449 110.351 509.249 109.651C509.049 109.551 505.849 108.651 502.049 107.551C501.549 107.451 500.749 104.251 500.849 95.4512C500.849 95.6512 501.549 96.1512 501.649 96.1512C502.349 96.6512 502.949 97.1512 503.749 97.6512C504.949 98.3512 506.549 99.0512 507.849 98.3512C508.549 97.9512 509.149 96.8512 508.349 96.2512C507.549 95.5512 503.349 93.8512 502.249 90.3512C502.149 90.2512 505.849 93.7512 510.449 94.5512C512.549 95.0512 513.449 92.6512 512.049 91.4512C510.749 90.2512 504.649 87.6512 503.249 83.8512C503.349 83.8512 507.149 86.6512 510.949 87.1512C511.449 87.2512 512.449 87.3512 512.949 86.4512C513.649 85.5512 513.649 84.3512 512.549 83.8512ZM482.749 67.1512C481.649 65.5512 470.949 61.5512 469.749 57.6512C469.849 57.6512 472.649 59.9512 478.349 61.4512C482.749 62.6512 483.549 58.1512 480.749 57.2512C472.449 54.5512 468.949 47.2512 468.849 47.0512C468.849 47.0512 474.749 51.6512 477.749 52.0512C479.349 52.2512 480.549 52.2512 481.349 51.3512C483.149 48.4512 478.949 47.3512 476.049 45.6512C471.449 42.9512 468.449 38.5512 468.149 37.5512C468.549 37.6512 474.749 41.9512 478.249 41.0512C480.349 40.2512 479.849 38.1512 478.949 37.5512C477.949 36.9512 473.449 35.0512 470.649 32.1512C467.749 29.2512 467.149 28.0512 467.149 27.8512C467.449 27.7512 471.249 29.8512 473.449 30.2512C475.649 30.6512 477.149 27.8512 474.949 26.7512C473.549 26.2512 467.149 22.5512 466.649 20.6512C470.149 22.1512 474.249 23.2512 474.149 20.7512C474.049 18.8512 469.749 17.7512 468.249 16.3512C466.749 15.0512 465.949 13.2512 466.049 13.3512C467.049 14.0512 469.949 15.1512 470.849 13.9512C472.149 12.1512 469.349 11.1512 467.649 9.75118C465.949 8.35118 465.249 4.05119 464.649 1.65119C463.949 -0.748812 462.049 -0.0488207 461.949 0.751179C461.849 0.851179 461.549 6.15118 460.349 8.55118C459.149 10.9512 457.049 12.1512 455.349 12.9512C454.549 13.3512 454.149 13.8512 454.249 14.6512C454.449 16.1512 456.449 15.6512 457.449 15.3512C458.449 14.9512 458.749 14.8512 459.649 14.3512C460.349 14.0512 458.449 17.5512 455.849 18.7512C454.049 19.5512 452.249 20.4512 452.849 22.2512C453.549 24.1512 458.649 22.0512 458.749 22.0512C457.849 23.2512 452.149 26.8512 450.449 27.9512C448.949 28.6512 449.249 31.5512 452.749 30.8512C455.249 30.4512 458.049 28.7512 458.049 28.7512C459.049 28.3512 454.049 33.4512 448.649 36.2512C447.149 37.1512 447.349 38.1512 447.549 38.7512C447.949 39.6512 449.049 40.1512 450.549 39.7512C452.749 39.1512 457.149 37.2512 458.049 36.5512C457.749 38.4512 448.349 44.4512 446.449 45.5512C445.249 46.3512 444.949 47.4512 445.449 48.3512C445.849 49.2512 447.249 49.8512 450.049 48.4512C450.749 48.1512 456.449 45.2512 456.449 45.2512C455.549 47.1512 450.049 52.2512 443.449 56.6512C442.649 57.3512 442.149 58.2512 442.449 59.1512C442.849 60.3512 443.749 60.9512 446.049 60.1512C448.149 59.5512 454.149 56.3512 454.149 56.3512C450.249 62.1512 442.849 67.2512 441.749 67.9512C440.449 68.9512 440.149 70.1512 440.949 71.2512C441.649 72.3512 443.149 72.2512 443.949 72.1512C449.349 71.4512 455.349 66.0512 455.449 66.0512C454.749 67.6512 451.949 72.1512 443.949 76.7512C442.349 77.7512 442.749 79.1512 443.149 79.6512C443.649 80.4512 444.749 80.4512 445.349 80.4512C451.349 79.9512 455.749 76.5512 455.649 76.7512C454.749 79.4512 450.349 82.8512 449.149 83.9512C447.949 85.0512 449.049 87.5512 452.749 86.9512C455.249 86.7512 459.149 83.0512 459.149 83.0512C459.149 83.0512 458.949 92.6512 458.949 93.7512C458.949 95.4512 458.749 98.4512 458.349 100.351C457.949 102.151 455.349 104.551 455.349 104.551C453.549 105.951 455.549 106.051 457.449 105.351C460.749 104.351 462.149 106.851 464.449 106.751C467.349 106.951 465.349 105.151 467.249 105.451C470.249 106.751 471.849 106.851 473.949 105.951C476.949 104.751 467.349 105.851 467.049 98.1512C466.949 96.8512 466.549 89.8512 466.449 85.0512C467.149 85.8512 468.549 87.3512 470.849 88.1512C474.049 89.1512 475.649 88.6512 476.049 87.6512C476.349 86.6512 475.949 85.4512 474.849 84.8512C472.649 83.6512 470.749 82.3512 469.149 78.3512C469.049 77.8512 470.449 79.7512 475.549 82.0512C480.649 84.3512 480.849 81.2512 480.849 80.8512C480.749 79.2512 477.949 78.9512 475.849 77.3512C472.349 74.8512 472.349 73.7512 472.349 73.7512C472.349 73.7512 477.649 76.7512 479.949 75.7512C481.249 75.1512 481.749 73.2512 478.949 72.1512C476.549 71.2512 472.249 68.9512 471.649 67.5512C474.949 68.6512 479.149 70.6512 481.349 70.5512C483.549 70.5512 483.949 68.9512 482.749 67.1512Z\" fill=\"#7C8792\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:92,pixelWidth:272,src:\"https://framerusercontent.com/images/qLluo5VqbKiaFUdO3RcsHizl9g.png\"},className:\"framer-znt5xs\",\"data-framer-name\":\"wnyc logo\",name:\"wnyc logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jrhbih\",\"data-framer-name\":\"Group 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:156,intrinsicWidth:394,name:\"Group 7\",svg:'<svg width=\"394\" height=\"156\" viewBox=\"0 0 394 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M189.044 18.5104H102.345V155.404H189.044V18.5104Z\" fill=\"#7C8792\"/>\\n<path d=\"M88.0852 128.595H0.815918V155.403H88.0852V128.595Z\" fill=\"#7C8792\"/>\\n<path d=\"M291.143 32.1997H204.444V155.403H291.143V32.1997Z\" fill=\"#7C8792\"/>\\n<path d=\"M393.813 0.257996H305.973V155.974H393.813V0.257996Z\" fill=\"#7C8792\"/>\\n<path d=\"M1.38623 59.0079L20.7794 114.906H32.7576L43.595 83.5346L55.5731 114.906H68.1216L85.9462 59.0079H72.2569L62.4177 90.9496L49.8692 58.8653H38.4614L27.6241 90.9496L17.0719 59.0079H1.38623Z\" fill=\"#7C8792\"/>\\n<path d=\"M120.597 59.5783V114.05H135.427V84.3902L158.528 114.05H172.788V59.5783H157.387V88.3829L134.287 59.5783H120.597Z\" fill=\"white\"/>\\n<path d=\"M219.56 59.2218L239.808 92.9459V114.335H254.638L254.924 93.1599L275.6 59.2218H259.772L247.794 78.9715L235.816 59.2931L219.56 59.2218Z\" fill=\"white\"/>\\n<path d=\"M374.99 69.2749C370.965 73.1489 368.304 75.6104 364.153 78.9715C352.852 65.6282 338.584 75.1214 338.584 86.5158C338.584 96.1722 348.891 109.125 364.153 95.7979C369.269 99.1587 370.331 100.12 375.157 103.498C353.869 127.707 323.257 111.013 323.257 87.0096C323.257 61.4702 355.019 47.9133 374.99 69.2749Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:92,pixelWidth:272,src:\"https://framerusercontent.com/images/qLluo5VqbKiaFUdO3RcsHizl9g.png\"},className:\"framer-jq76qn\",\"data-framer-name\":\"coatue logo\",name:\"coatue logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fpkc5b\",\"data-framer-name\":\"Group 8\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:238,intrinsicWidth:1280,name:\"Group 8\",svg:'<svg width=\"1280\" height=\"238\" viewBox=\"0 0 1280 238\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M305 0.25H323.125L336.25 2.125L348.125 5.25L358.125 9L371.25 15.875L380 22.125L388.75 29.625L393.125 34L400 42.75L406.25 52.125L411.875 62.75L416.875 75.875L420 87.125L422.5 102.125L423.125 110.25V128.375L421.875 140.875L418.75 156.5L414.375 169.625L407.5 184L401.875 192.75L395 201.5L388.125 209L383.125 213.375L375 219.625L365.625 225.25L355.625 230.25L342.5 234.625L330.625 237.125L325.625 237.75H301.875L290 235.875L276.875 232.125L266.25 227.75L254.375 220.875L246.875 215.25L239.375 208.375L233.125 202.125L226.875 194L220 182.75L214.375 170.875L208.75 154L206.25 141.5L205 130.25V107.75L206.875 92.125L210.625 77.125L216.875 61.5L223.125 50.25L229.375 41.5L235 34.625L244.375 25.25L252.5 19L260.625 14L270.625 9L281.875 4.625L295 1.5L305 0.25ZM306.25 14.625L296.25 16.5L287.5 19.625L280 24L273.75 29L265.625 37.125L259.375 46.5L253.125 59.625L248.75 73.375L245.625 89L243.75 107.125V132.125L245 146.5L247.5 160.875L251.25 174L256.25 185.875L261.875 195.875L268.75 204.625L274.375 210.25L283.125 216.5L293.125 220.875L304.375 223.375L315.625 224L326.875 222.75L337.5 219.625L348.125 214L357.5 206.5L363.125 199.625L367.5 193.375L373.75 181.5L378.125 169.625L381.25 156.5L383.125 144.625L384.375 128.375V110.875L383.125 94L380.625 79L376.25 63.375L371.25 51.5L365.625 41.5L360 34.625L353.125 27.75L346.875 23.375L336.875 18.375L328.75 15.875L321.25 14.625H306.25Z\" fill=\"#7C8792\"/>\\n<path d=\"M1086.88 5.25H1262.5L1263.12 6.5V59.625L1262.5 60.25H1250.62L1247.5 52.125L1243.12 43.375L1236.88 34.625L1231.25 28.375L1226.88 24L1219.38 20.25L1211.25 19L1196.88 18.375L1153.75 17.75L1154.38 107.75H1180.62L1193.75 106.5L1200 104L1205 100.25L1209.38 94L1213.12 84.625L1216.25 70.875H1228.12L1228.75 72.125V159.625L1228.12 160.25H1216.88L1215.62 156.5L1213.12 145.25L1210 137.125L1206.88 131.5L1205 129.625V128.375L1202.5 127.125L1197.5 124L1189.38 122.125L1153.75 121.5L1154.38 199L1156.25 207.75L1158.75 212.125L1161.88 214.625L1168.12 217.125L1180 218.375H1216.25L1226.88 217.125L1236.88 214.625L1241.88 211.5L1247.5 205.25L1253.75 195.25L1261.25 180.875L1266.25 170.25L1268.12 165.25H1280L1278.75 187.75L1276.25 227.125L1275.62 232.125H1086.88V220.875L1095 219.625L1107.5 217.75L1112.5 215.875L1115.62 213.375L1118.12 208.375L1118.75 205.875V33.375L1116.88 27.75L1111.88 23.375L1101.88 19.625L1086.88 16.5V5.25Z\" fill=\"#7C8792\"/>\\n<path d=\"M838.125 5.25H932.5V16.5L921.875 18.375L911.25 20.875L906.25 24L903.75 29L903.125 31.5V170.25L905 182.125L908.125 191.5L913.125 200.25L919.375 207.125L925.625 211.5L933.125 215.25L941.875 217.75L952.5 219H964.375L977.5 217.125L986.875 214L996.25 209L1003.12 203.375L1009.38 195.25L1014.38 185.25L1016.88 176.5L1018.12 169V56.5L1016.25 41.5L1013.12 31.5L1009.38 26.5L1004.38 23.375L996.25 20.25L984.375 17.75L978.75 16.5V5.25H1071.25V16.5L1055.62 19.625L1048.12 22.125L1043.12 25.25L1039.38 30.875L1036.88 40.875L1035.62 51.5L1035 168.375L1033.75 180.25L1031.25 189.625L1027.5 198.375L1022.5 205.875L1016.88 212.75L1012.5 217.125L1003.12 224L991.25 230.25L978.125 234.625L965 237.125L958.125 237.75H945.625L933.125 236.5L920.625 234L906.875 229L897.5 224L890.625 219L884.375 213.375L879.375 207.75L874.375 199.625L870.625 190.875L868.125 180.25L867.5 35.875L865.625 28.375L863.125 25.25L856.875 21.5L850 19L839.375 17.125L838.125 16.5V5.25Z\" fill=\"#7C8792\"/>\\n<path d=\"M520.625 2.125H533.75L545 30.875L572.5 102.125L584.375 132.75L598.125 168.375L610 199L613.125 205.25L616.875 210.25L624.375 215.875L633.75 219L642.5 220.875V232.125H548.125V220.875L556.25 219.625L566.875 217.75L573.75 215.25L576.25 213.375V207.125L571.25 192.75L563.125 170.875L557.5 155.875V154L477.5 154.625L470.625 172.75L463.75 194.625L461.875 205.25L462.5 209.625L465.625 213.375L470.625 215.875L479.375 218.375L494.375 220.875V232.125H408.75V220.875L414.375 219.625L423.75 217.125L431.25 213.375L438.125 207.125L443.125 199L451.875 177.75L465.625 142.75L476.875 114L520 2.75L520.625 2.125ZM516.25 52.125L507.5 75.25L493.75 110.875L483.125 138.375L484.375 139.625H550.625L550 135.875L540.625 111.5L518.125 54L517.5 52.125H516.25Z\" fill=\"#7C8792\"/>\\n<path d=\"M100 0.25H116.25L127.5 1.5L140 4.625L151.25 9L161.25 14L164.375 15.25L170.625 5.25H183.75L185 66.5V85.875L184.375 86.5H172.5L171.25 85.25L167.5 71.5L162.5 57.125L155.625 42.75L149.375 34L143.75 27.75L136.875 22.125L126.875 17.125L120 15.25L115.625 14.625H103.125L93.125 16.5L83.125 20.25L74.375 25.25L68.125 30.25L61.875 36.5L56.875 43.375L51.875 52.125L48.125 60.875L44.375 72.125L41.25 85.875L39.375 100.25L38.75 109.625V126.5L40 139.625L43.125 155.25L47.5 168.375L53.75 181.5L58.75 189L63.75 195.25L72.5 204L80.625 209.625L90.625 214.625L100.625 217.75L110 219H120L131.875 217.125L141.25 214L150 209.625L156.875 204.625L163.125 199L170 190.25L174.375 183.375L179.375 173.375L181.25 169L192.5 174L193.125 176.5L186.25 190.875L180 200.875L173.75 209L165 217.75L156.25 224L144.375 230.25L131.25 234.625L117.5 237.125L109.375 237.75H97.5L86.25 236.5L73.125 233.375L60.625 228.375L51.25 223.375L42.5 217.125L34.375 210.25L28.75 204.625L21.875 195.875L15 184.625L8.125 170.25L3.75 156.5L1.25 144L0 132.125V109.625L1.875 94L5.625 78.375L10.625 64.625L18.125 50.25L25.625 39.625L33.75 30.25L41.25 23.375L50.625 16.5L61.875 10.25L74.375 5.25L86.25 2.125L100 0.25Z\" fill=\"#7C8792\"/>\\n<path d=\"M624.375 5.25H821.875V67.125H811.25L808.75 60.875L804.375 50.875L798.125 39.625L790.625 29.625L784.375 23.375L778.75 20.25L772.5 19L761.25 18.375L740.625 17.75L741.25 204.625L744.375 210.875L748.75 214.625L756.875 217.125L769.375 219.625L776.875 220.875V232.125H669.375V220.875L671.25 220.25L688.75 218.375L696.25 216.5L700.625 214L703.75 210.25L705 207.75L705.625 204L706.25 17.75L685 18.375L669.375 19.625L663.125 22.75L657.5 27.75L650.625 36.5L645 45.875L640 55.875L635.625 67.125H625L624.375 66.5V5.25Z\" fill=\"#7C8792\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/cltJkZDrVt9JtdFwpa73aWqWFY.png\"},className:\"framer-fl4w89\",\"data-framer-name\":\"inspiration group logo\",name:\"inspiration group logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:93,intrinsicWidth:422,pixelHeight:186,pixelWidth:844,sizes:\"171px\",src:\"https://framerusercontent.com/images/ify8NgYRVWBLcynlj9nlK3TwSpw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ify8NgYRVWBLcynlj9nlK3TwSpw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ify8NgYRVWBLcynlj9nlK3TwSpw.png 844w\"},className:\"framer-15iyf9g\",\"data-framer-name\":\"on_deck_logo\",name:\"on_deck_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:93,intrinsicWidth:422,pixelHeight:1305,pixelWidth:1680,sizes:\"171px\",src:\"https://framerusercontent.com/images/l8NJG3XulC02BRcHWXEsUDgA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/l8NJG3XulC02BRcHWXEsUDgA.png?scale-down-to=512 512w,https://framerusercontent.com/images/l8NJG3XulC02BRcHWXEsUDgA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/l8NJG3XulC02BRcHWXEsUDgA.png 1680w\"},className:\"framer-1wd08kl\",\"data-framer-name\":\"iheartmedia\",name:\"iheartmedia\"})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q598gk\",\"data-framer-name\":\"Proof Points Section\",id:elementId3,name:\"Proof Points Section\",ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m1bsmg\",\"data-framer-name\":\"Heading Content Area\",name:\"Heading Content Area\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XEa8J0lv7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12ktwxt\",\"data-styles-preset\":\"f15AUF4eE\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(215, 208, 255) 0%, rgb(255, 255, 255) 74.0892%, rgb(75, 70, 103) 100%)\"},children:\"Proven pe\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12ktwxt\",\"data-styles-preset\":\"f15AUF4eE\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(215, 208, 255) 0%, rgb(255, 255, 255) 74.0892%, rgb(75, 70, 103) 100%)\"},children:\"Everything you need for Actually Automated Analytics.\"})})}),className:\"framer-1vlzvig\",\"data-framer-name\":\"Experience Growth, Amplified\",fonts:[\"Inter\"],name:\"Experience Growth, Amplified\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-znt6n\",\"data-framer-name\":\"Main Content Wrapper\",name:\"Main Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-imh1jy\",\"data-border\":true,\"data-framer-name\":\"AI Agent Results Wrapper\",name:\"AI Agent Results Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wnqrnh\",\"data-framer-name\":\"Heading Content Area\",name:\"Heading Content Area\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-3pdqv1\",\"data-styles-preset\":\"IWiRiyhIZ\",children:\"AI Agents that  deliver results\"})}),className:\"framer-1yugv1r\",\"data-framer-name\":\"Track your orders instantly\",fonts:[\"Inter\"],name:\"Track your orders instantly\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",children:\"We build AI Agents that can complete specific data tasks and work together as a team to deliver results.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Since 2021, Unsupervised customers have found actionable insights worth over $1B.\"})})]}),className:\"framer-1csv93o\",\"data-framer-name\":\"Gain real-time visibility into your orders, ensuring swift and accurate delivery management\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Gain real-time visibility into your orders, ensuring swift and accurate delivery management\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u4mfnb\",\"data-framer-name\":\"1b Asset Wrapper\",name:\"1b Asset Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5jxwgj\",\"data-framer-name\":\"1b found\",name:\"1b found\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wytg1\",\"data-framer-name\":\"Dashboard Summary Card\",name:\"Dashboard Summary Card\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tdaoy3\",\"data-framer-name\":\"summaryContainer\",name:\"summaryContainer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h0p0mf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\"},children:\"🎉\"})}),className:\"framer-37rj9l\",\"data-framer-name\":\"🎉\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"🎉\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 239, 240)\"},children:\"Over $1 Billion\"})})},Vhqb6CK6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 239, 240)\"},children:\"Over $1 Billion\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 239, 240)\"},children:\"Over $1 Billion\"})}),className:\"framer-m5b8tk\",\"data-framer-name\":\"0\",fonts:[\"GF;Poppins-500\"],name:\"0\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 239, 240)\"},children:\"Value Found\"})}),className:\"framer-w4wkec\",\"data-framer-name\":\"Customers\",fonts:[\"Inter\"],name:\"Customers\",verticalAlignment:\"top\",withExternalLayout:true})]})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y2u8i\",\"data-border\":true,\"data-framer-name\":\"Data Platform Wrapper\",name:\"Data Platform Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xivbgb\",\"data-framer-name\":\"Heading Content Area\",name:\"Heading Content Area\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-3pdqv1\",\"data-styles-preset\":\"IWiRiyhIZ\",children:\"Automated Data Platform\"})}),className:\"framer-1wg16ep\",\"data-framer-name\":\"Insight overview for your products\",fonts:[\"Inter\"],name:\"Insight overview for your products\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",children:\"Unsupervised connects to your data platform and continuously learns how to traverse and understand your data.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Since 2017, customers have saved hundreds of thousands of hours over manual data prep.\"})})]}),className:\"framer-12wa45h\",\"data-framer-name\":\"Access comprehensive product insights to optimize strategies, enhance offerings, and boost market competitiveness.\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Access comprehensive product insights to optimize strategies, enhance offerings, and boost market competitiveness.\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gdc5sm\",\"data-framer-name\":\"Asset Wrapper\",name:\"Asset Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-82vt7l\",\"data-framer-name\":\"1b found\",name:\"1b found\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p6jau4\",\"data-framer-name\":\"Dashboard Summary Card\",name:\"Dashboard Summary Card\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ldx3x5\",\"data-framer-name\":\"summaryContainer\",name:\"summaryContainer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r60z7r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\"},children:\"🎉\"})}),className:\"framer-13i26cj\",\"data-framer-name\":\"🎉\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"🎉\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 239, 240)\"},children:\"100,000+\"})})},Vhqb6CK6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 239, 240)\"},children:\"100,000+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 239, 240)\"},children:\"100,000+\"})}),className:\"framer-1tf4lg5\",\"data-framer-name\":\"0\",fonts:[\"GF;Poppins-500\"],name:\"0\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 239, 240)\"},children:\"Man Hours Saved\"})}),className:\"framer-10buddv\",\"data-framer-name\":\"Customers\",fonts:[\"Inter\"],name:\"Customers\",verticalAlignment:\"top\",withExternalLayout:true})]})})})})})]})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bA5GiS65l\"},implicitPathVariables:undefined},{href:{webPageId:\"bA5GiS65l\"},implicitPathVariables:undefined},{href:{webPageId:\"bA5GiS65l\"},implicitPathVariables:undefined},{href:{webPageId:\"bA5GiS65l\"},implicitPathVariables:undefined},{href:{webPageId:\"bA5GiS65l\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{y:1848.8},LhPVcvcFH:{width:\"873.824px\",y:2128.8},Vhqb6CK6A:{width:\"calc((min(100vw, 1400px) - 32px) * 0.94)\",y:2781.8},XEa8J0lv7:{width:\"873.824px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"calc((min(100vw, 1400px) - 72px) * 0.658)\",y:1928.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4jq0ze-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{EU6ywjAOx:resolvedLinks[1]},LhPVcvcFH:{EU6ywjAOx:resolvedLinks[3]},Vhqb6CK6A:{EU6ywjAOx:resolvedLinks[2]},XEa8J0lv7:{EU6ywjAOx:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(Button,{a3QCF6cRp:20,al8OwCgnb:true,bFFGjUIN_:\"rgb(255, 255, 255)\",c_7s6pUyy:false,D0bDI5SL6:\"House\",EU6ywjAOx:resolvedLinks[0],F3JhtinxZ:\"Try it on Your Own Data\",gPzRw1RMG:false,height:\"100%\",id:\"oLymObC9u\",l41SWI7xB:\"House\",layoutId:\"oLymObC9u\",py5Uxrklc:false,style:{width:\"100%\"},variant:\"OeMV_0e0X\",VEnw4OvGX:\"duotone\",W56gpU4bs:\"var(--token-ee207c1a-5570-4b08-8aee-9fd17ad04638, rgb(122, 69, 255))\",width:\"100%\",zyLfdIqW_:\"duotone\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qvmd1x\",\"data-framer-name\":\"Agents Overview Section\",id:elementId4,name:\"Agents Overview Section\",ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dtpxe\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15k1og4\",\"data-framer-name\":\"Heading Content Area\",name:\"Heading Content Area\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{y:1946.8},LhPVcvcFH:{y:2274.8},Vhqb6CK6A:{y:2855.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:2074.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-skf9nx-container\",children:/*#__PURE__*/_jsx(TitleIndicator,{dLNTs4yQg:\"AI ANALYTICS\",GzDY4xKyr:true,height:\"100%\",id:\"pdCWQHgqJ\",layoutId:\"pdCWQHgqJ\",sFEpRPKLg:\"Sparkle\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12ktwxt\",\"data-styles-preset\":\"f15AUF4eE\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(215, 208, 255) 0%, rgb(255, 255, 255) 74.0892%, rgb(75, 70, 103) 100%)\"},children:\"Your team of AI Agents delivers fast insights, answers, and predictions.\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12ktwxt\",\"data-styles-preset\":\"f15AUF4eE\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(215, 208, 255) 0%, rgb(255, 255, 255) 74.0892%, rgb(75, 70, 103) 100%)\"},children:\"Your team of AI Agents delivers fast insights, answers, and predictions.\"})})}),className:\"framer-17x2ds7\",\"data-framer-name\":\"Experience Growth, Amplified\",fonts:[\"Inter\"],name:\"Experience Growth, Amplified\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LhPVcvcFH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fj5v9h\",\"data-styles-preset\":\"ANjb5hon4\",children:\"Our team of AI Agents specialize in different data tasks and collaborate to solve your data challenges.\"})})},Vhqb6CK6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fj5v9h\",\"data-styles-preset\":\"ANjb5hon4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Use the AI Agents we've trained, create new agents tuned to your needs, and watch them work together as a team to deliver the insights, answers, and predictions your organization needs.\"})})},XEa8J0lv7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fj5v9h\",\"data-styles-preset\":\"ANjb5hon4\",children:\"Our team of AI Agents specialize in different data tasks and collaborate to solve your data challenges.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fj5v9h\",\"data-styles-preset\":\"ANjb5hon4\",children:\"Use the AI Agents we've trained, create new agents tuned to your needs, and watch them work together as a team to deliver the insights, answers, and predictions your organization needs.\"})}),className:\"framer-1d3ctm5\",\"data-framer-name\":\"Unlock your startup's potential with our game-changing benefits\",fonts:[\"Inter\"],name:\"Unlock your startup's potential with our game-changing benefits\",verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oj1sq9\",\"data-framer-name\":\"Features Grid Wrapper\",name:\"Features Grid Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{height:430,width:\"max((min(100vw, 1400px) - 96px) / 2, 200px)\",y:2269.6},LhPVcvcFH:{width:\"426.6667px\",y:2609.6000000000004},Vhqb6CK6A:{height:390,width:\"max(min(100vw, 1400px) - 32px, 200px)\",y:3166.6000000000004},XEa8J0lv7:{width:\"426.6667px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"max((min(100vw, 1400px) - 120px) / 3, 200px)\",y:2409.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ouotea-container\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"WZyNJ55lK\",layoutId:\"WZyNJ55lK\",style:{height:\"100%\",width:\"100%\"},variant:\"DbChmD_L6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{height:430,width:\"max((min(100vw, 1400px) - 96px) / 2, 200px)\",y:2269.6},LhPVcvcFH:{width:\"426.6667px\",y:2609.6000000000004},Vhqb6CK6A:{height:390,width:\"max(min(100vw, 1400px) - 32px, 200px)\",y:3568.6000000000004},XEa8J0lv7:{width:\"426.6667px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"max((min(100vw, 1400px) - 120px) / 3, 200px)\",y:2409.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y22e5z-container\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"wog_71nAN\",layoutId:\"wog_71nAN\",style:{height:\"100%\",width:\"100%\"},variant:\"u8E2rQSIH\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{height:430,width:\"max((min(100vw, 1400px) - 96px) / 2, 200px)\",y:2723.6},LhPVcvcFH:{width:\"426.6667px\",y:2609.6000000000004},Vhqb6CK6A:{height:390,width:\"max(min(100vw, 1400px) - 32px, 200px)\",y:3970.6000000000004},XEa8J0lv7:{width:\"426.6667px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"max((min(100vw, 1400px) - 120px) / 3, 200px)\",y:2409.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wbgpwe-container\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"cENp8jxsJ\",layoutId:\"cENp8jxsJ\",style:{height:\"100%\",width:\"100%\"},variant:\"PfZJB8ARA\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{height:430,width:\"max((min(100vw, 1400px) - 96px) / 2, 200px)\",y:2723.6},LhPVcvcFH:{width:\"426.6667px\",y:3083.6000000000004},Vhqb6CK6A:{height:390,width:\"max(min(100vw, 1400px) - 32px, 200px)\",y:4372.6},XEa8J0lv7:{width:\"426.6667px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"max((min(100vw, 1400px) - 120px) / 3, 200px)\",y:2883.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mbbvl5-container\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"YbBmh5mp1\",layoutId:\"YbBmh5mp1\",style:{height:\"100%\",width:\"100%\"},variant:\"nCiKvzL0q\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{height:430,width:\"max((min(100vw, 1400px) - 96px) / 2, 200px)\",y:3177.6},LhPVcvcFH:{width:\"426.6667px\",y:3083.6000000000004},Vhqb6CK6A:{height:390,width:\"max(min(100vw, 1400px) - 32px, 200px)\",y:4774.6},XEa8J0lv7:{width:\"426.6667px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"max((min(100vw, 1400px) - 120px) / 3, 200px)\",y:2883.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1elc2p1-container\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"sx23F_cAu\",layoutId:\"sx23F_cAu\",style:{height:\"100%\",width:\"100%\"},variant:\"OoLO3e5OG\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{height:430,width:\"max((min(100vw, 1400px) - 96px) / 2, 200px)\",y:3177.6},LhPVcvcFH:{width:\"426.6667px\",y:3083.6000000000004},Vhqb6CK6A:{height:390,width:\"max(min(100vw, 1400px) - 32px, 200px)\",y:5176.6},XEa8J0lv7:{width:\"426.6667px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"max((min(100vw, 1400px) - 120px) / 3, 200px)\",y:2883.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10tuh7u-container\",children:/*#__PURE__*/_jsx(Cards,{height:\"100%\",id:\"OEAgoUdZ3\",layoutId:\"OEAgoUdZ3\",style:{height:\"100%\",width:\"100%\"},variant:\"lNWobqNjt\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bmo5aa\",\"data-framer-name\":\"CTA Wrapper\",name:\"CTA Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NrngcOvOh\"},implicitPathVariables:undefined},{href:{webPageId:\"NrngcOvOh\"},implicitPathVariables:undefined},{href:{webPageId:\"NrngcOvOh\"},implicitPathVariables:undefined},{href:{webPageId:\"NrngcOvOh\"},implicitPathVariables:undefined},{href:{webPageId:\"NrngcOvOh\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{y:3643.6},LhPVcvcFH:{width:\"652px\",y:3581.6000000000004},Vhqb6CK6A:{width:\"calc(min(100vw, 1400px) - 32px)\",y:5590.6},XEa8J0lv7:{width:\"652px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"max((min(100vw, 1400px) - 96px) / 2, 1px)\",y:3381.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yoymbi-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{EU6ywjAOx:resolvedLinks1[1]},LhPVcvcFH:{EU6ywjAOx:resolvedLinks1[3]},Vhqb6CK6A:{EU6ywjAOx:resolvedLinks1[2]},XEa8J0lv7:{EU6ywjAOx:resolvedLinks1[4]}},children:/*#__PURE__*/_jsx(Button,{a3QCF6cRp:8,al8OwCgnb:true,bFFGjUIN_:\"rgb(255, 255, 255)\",c_7s6pUyy:false,D0bDI5SL6:\"House\",EU6ywjAOx:resolvedLinks1[0],F3JhtinxZ:\"Watch a Full Product Tour\",gPzRw1RMG:false,height:\"100%\",id:\"qGn3GdTNY\",l41SWI7xB:\"House\",layoutId:\"qGn3GdTNY\",py5Uxrklc:false,style:{width:\"100%\"},variant:\"TKX92ZQ2D\",VEnw4OvGX:\"duotone\",W56gpU4bs:\"var(--token-ee207c1a-5570-4b08-8aee-9fd17ad04638, rgb(122, 69, 255))\",width:\"100%\",zyLfdIqW_:\"duotone\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bA5GiS65l\"},implicitPathVariables:undefined},{href:{webPageId:\"bA5GiS65l\"},implicitPathVariables:undefined},{href:{webPageId:\"bA5GiS65l\"},implicitPathVariables:undefined},{href:{webPageId:\"bA5GiS65l\"},implicitPathVariables:undefined},{href:{webPageId:\"bA5GiS65l\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{y:3643.6},LhPVcvcFH:{width:\"652px\",y:3581.6000000000004},Vhqb6CK6A:{width:\"calc(min(100vw, 1400px) - 32px)\",y:5664.6},XEa8J0lv7:{width:\"652px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"max((min(100vw, 1400px) - 96px) / 2, 1px)\",y:3381.6000000000004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-109m1ci-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{EU6ywjAOx:resolvedLinks2[1]},LhPVcvcFH:{EU6ywjAOx:resolvedLinks2[3]},Vhqb6CK6A:{EU6ywjAOx:resolvedLinks2[2]},XEa8J0lv7:{EU6ywjAOx:resolvedLinks2[4]}},children:/*#__PURE__*/_jsx(Button,{a3QCF6cRp:8,al8OwCgnb:true,bFFGjUIN_:\"rgb(255, 255, 255)\",c_7s6pUyy:false,D0bDI5SL6:\"House\",EU6ywjAOx:resolvedLinks2[0],F3JhtinxZ:\"Request a Demo\",gPzRw1RMG:false,height:\"100%\",id:\"r2JVGvstR\",l41SWI7xB:\"House\",layoutId:\"r2JVGvstR\",py5Uxrklc:false,style:{width:\"100%\"},variant:\"TKX92ZQ2D\",VEnw4OvGX:\"duotone\",W56gpU4bs:\"var(--token-ee207c1a-5570-4b08-8aee-9fd17ad04638, rgb(122, 69, 255))\",width:\"100%\",zyLfdIqW_:\"duotone\"})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3bivir\",\"data-framer-name\":\"Testimonials Section\",id:elementId5,name:\"Testimonials Section\",ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ov159c\",\"data-framer-name\":\"Heading Content Area\",name:\"Heading Content Area\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{y:3741.6},LhPVcvcFH:{y:3727.6},Vhqb6CK6A:{y:5738.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:3527.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fxqgmj-container\",children:/*#__PURE__*/_jsx(TitleIndicator,{dLNTs4yQg:\"TESTIMONIALS\",GzDY4xKyr:true,height:\"100%\",id:\"c3jhLvUEO\",layoutId:\"c3jhLvUEO\",sFEpRPKLg:\"ChatCircleText\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12ktwxt\",\"data-styles-preset\":\"f15AUF4eE\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(215, 208, 255) 0%, rgb(255, 255, 255) 74.0892%, rgb(75, 70, 103) 100%)\"},children:\"Hear from Our Satisfied Customers\"})})}),className:\"framer-1f271rp\",\"data-framer-name\":\"Experience Growth, Amplified\",fonts:[\"Inter\"],name:\"Experience Growth, Amplified\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fj5v9h\",\"data-styles-preset\":\"ANjb5hon4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover what our customers have to say about us.\"})}),className:\"framer-7ebrlp\",\"data-framer-name\":\"Unlock your startup's potential with our game-changing benefits\",fonts:[\"Inter\"],name:\"Unlock your startup's potential with our game-changing benefits\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mpnswd-container\",\"data-framer-name\":\"Testimonial Slider\",name:\"Testimonial Slider\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:.5,id:\"QvF68VLDN\",layoutId:\"QvF68VLDN\",name:\"Testimonial Slider\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1njd7ld-container\",\"data-framer-name\":\"Julian Weisser\",name:\"Julian Weisser\",children:/*#__PURE__*/_jsx(TestimonialSingle,{fr1yNTD6z:\"Julian Weisser\",height:\"100%\",id:\"MuDkluPRl\",layoutId:\"MuDkluPRl\",name:\"Julian Weisser\",style:{height:\"100%\",width:\"100%\"},TRbUKUaTd:\"Unsupervised was able to analyze our historical application data and find people who would be candidates for a new program using just unstructured data.\",Ubc7GkGNV:\"On Deck\",uE93Gik97:addImageAlt({src:\"https://framerusercontent.com/images/py59WFPq9iaVlEyeepNiPx8rqM.png\"},\"\"),width:\"100%\",YuDlHZz_I:\"CEO\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-juy5zq-container\",\"data-framer-name\":\"Andrew Ladouceur\",name:\"Andrew Ladouceur\",children:/*#__PURE__*/_jsx(TestimonialSingle,{fr1yNTD6z:\"Andrew Ladouceur\",height:\"100%\",id:\"Eq4Tf11AM\",layoutId:\"Eq4Tf11AM\",name:\"Andrew Ladouceur\",style:{height:\"100%\",width:\"100%\"},TRbUKUaTd:\"Unsupervised's AI Analysts support our data and operations teams by seamlessly doing data analysis work and delivering insights, answers, and predictions to us — analyzing over 20 million SKUs and more than 10,000 retailers.\",Ubc7GkGNV:\"ICG\",uE93Gik97:addImageAlt({src:\"https://framerusercontent.com/images/0NTjB7LWuG466oCt5ytIclPq68.jpeg\"},\"\"),width:\"100%\",YuDlHZz_I:\"CEO\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1froyt3-container\",\"data-framer-name\":\"Jesse Channon\",name:\"Jesse Channon\",children:/*#__PURE__*/_jsx(TestimonialSingle,{fr1yNTD6z:\"Jesse Channon\",height:\"100%\",id:\"ZElsd8ziR\",layoutId:\"ZElsd8ziR\",name:\"Jesse Channon\",style:{height:\"100%\",width:\"100%\"},TRbUKUaTd:\"Unsupervised takes us deeper than dashboards. It's a totally different approach to AI that's revealing levers for growth.\",Ubc7GkGNV:\"Columbia Care\",uE93Gik97:addImageAlt({src:\"https://framerusercontent.com/images/Nr7elhu1OT936IuZQ9PZRiIoVc8.jpeg\",srcSet:\"https://framerusercontent.com/images/Nr7elhu1OT936IuZQ9PZRiIoVc8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Nr7elhu1OT936IuZQ9PZRiIoVc8.jpeg 768w\"},\"\"),width:\"100%\",YuDlHZz_I:\"CGO\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:\"350px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bgbxe3-container\",\"data-framer-name\":\"Mark Austin\",name:\"Mark Austin\",children:/*#__PURE__*/_jsx(TestimonialSingle,{fr1yNTD6z:\"Mark Austin\",height:\"100%\",id:\"lA8sfQH8L\",layoutId:\"lA8sfQH8L\",name:\"Mark Austin\",style:{height:\"100%\",width:\"100%\"},TRbUKUaTd:\"Unsupervised's AI Data Analysts have delivered strong ROI—improving our key metrics while empowering our team with faster, smarter access to data insights.\",Ubc7GkGNV:\"AT&T\",width:\"100%\",YuDlHZz_I:\"VP Data Science\"})})})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1blr54z\",\"data-framer-name\":\"Blog Section\",id:elementId6,name:\"Blog Section\",ref:ref8,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-g2lhoc\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zlto6d\",\"data-framer-name\":\"Heading Content Area\",name:\"Heading Content Area\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{y:4544.4},LhPVcvcFH:{y:4590.4},Vhqb6CK6A:{y:6505.400000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:4390.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2b80qt-container\",children:/*#__PURE__*/_jsx(TitleIndicator,{dLNTs4yQg:\"BLOG\",GzDY4xKyr:true,height:\"100%\",id:\"UFsglEPy3\",layoutId:\"UFsglEPy3\",sFEpRPKLg:\"BookOpen\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-12ktwxt\",\"data-styles-preset\":\"f15AUF4eE\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(215, 208, 255) 0%, rgb(255, 255, 255) 74.0892%, rgb(75, 70, 103) 100%)\"},children:\"Resource Center\"})})}),className:\"framer-isxu24\",\"data-framer-name\":\"Experience Growth, Amplified\",fonts:[\"Inter\"],name:\"Experience Growth, Amplified\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fj5v9h\",\"data-styles-preset\":\"ANjb5hon4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Engage with our diverse range of thought-provoking blog articles.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fj5v9h\",\"data-styles-preset\":\"ANjb5hon4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Demo Videos, Case Studies, and Information about successfully deploying AI Agents in you company.\"})}),className:\"framer-19fl8f6\",\"data-framer-name\":\"Unlock your startup's potential with our game-changing benefits\",fonts:[\"Inter\"],name:\"Unlock your startup's potential with our game-changing benefits\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FeAew9MYR\"},implicitPathVariables:undefined},{href:{webPageId:\"FeAew9MYR\"},implicitPathVariables:undefined},{href:{webPageId:\"FeAew9MYR\"},implicitPathVariables:undefined},{href:{webPageId:\"FeAew9MYR\"},implicitPathVariables:undefined},{href:{webPageId:\"FeAew9MYR\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{y:4855.2},LhPVcvcFH:{y:4901.2},Vhqb6CK6A:{width:\"359px\",y:6816.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:4701.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15p6ho1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{EU6ywjAOx:resolvedLinks3[1]},LhPVcvcFH:{EU6ywjAOx:resolvedLinks3[3]},Vhqb6CK6A:{EU6ywjAOx:resolvedLinks3[2],style:{width:\"100%\"}},XEa8J0lv7:{EU6ywjAOx:resolvedLinks3[4]}},children:/*#__PURE__*/_jsx(Button,{a3QCF6cRp:8,al8OwCgnb:true,bFFGjUIN_:\"rgb(255, 255, 255)\",c_7s6pUyy:false,D0bDI5SL6:\"House\",EU6ywjAOx:resolvedLinks3[0],F3JhtinxZ:\"See All Resources\",gPzRw1RMG:false,height:\"100%\",id:\"CNXIjNAaF\",l41SWI7xB:\"House\",layoutId:\"CNXIjNAaF\",py5Uxrklc:false,variant:\"TKX92ZQ2D\",VEnw4OvGX:\"duotone\",W56gpU4bs:\"var(--token-ee207c1a-5570-4b08-8aee-9fd17ad04638, rgb(122, 69, 255))\",width:\"100%\",zyLfdIqW_:\"duotone\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Vhqb6CK6A:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sh5h87\",\"data-framer-name\":\"Blog Bottom Wrapper\",name:\"Blog Bottom Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j2dvor\",\"data-framer-name\":\"Blog Single Featured Collection\",name:\"Blog Single Featured Collection\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"zSwL6ipea\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"zSwL6ipea\",name:\"jc3P9Jk_y\",type:\"Identifier\"},{collection:\"zSwL6ipea\",name:\"Ma3hv0k5E\",type:\"Identifier\"},{collection:\"zSwL6ipea\",name:\"x2FFMkwM_\",type:\"Identifier\"},{collection:\"zSwL6ipea\",name:\"EgBFr6Jb7\",type:\"Identifier\"},{collection:\"zSwL6ipea\",name:\"ankh18qop\",type:\"Identifier\"},{collection:\"zSwL6ipea\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{collection:\"zSwL6ipea\",name:\"EgBFr6Jb7\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"zSwL6ipea\",name:\"EgBFr6Jb7\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"zSwL6ipea\",name:\"NOiCd7yyP\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"jc3P9Jk_y\":jc3P9Jk_yzSwL6ipea,\"Ma3hv0k5E\":Ma3hv0k5EzSwL6ipea,\"x2FFMkwM_\":x2FFMkwM_zSwL6ipea,\"EgBFr6Jb7\":EgBFr6Jb7zSwL6ipea,\"ankh18qop\":ankh18qopzSwL6ipea,\"id\":idzSwL6ipea},i)=>{jc3P9Jk_yzSwL6ipea!==null&&jc3P9Jk_yzSwL6ipea!==void 0?jc3P9Jk_yzSwL6ipea:jc3P9Jk_yzSwL6ipea=\"\";x2FFMkwM_zSwL6ipea!==null&&x2FFMkwM_zSwL6ipea!==void 0?x2FFMkwM_zSwL6ipea:x2FFMkwM_zSwL6ipea=0;EgBFr6Jb7zSwL6ipea!==null&&EgBFr6Jb7zSwL6ipea!==void 0?EgBFr6Jb7zSwL6ipea:EgBFr6Jb7zSwL6ipea=\"\";ankh18qopzSwL6ipea!==null&&ankh18qopzSwL6ipea!==void 0?ankh18qopzSwL6ipea:ankh18qopzSwL6ipea=\"\";const textContent=numberToString(x2FFMkwM_zSwL6ipea,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`zSwL6ipea-${idzSwL6ipea}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{jc3P9Jk_y:jc3P9Jk_yzSwL6ipea},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{jc3P9Jk_y:jc3P9Jk_yzSwL6ipea},webPageId:\"y8RF_oEi5\"},nodeId:\"z_YnUOPml\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-14n73qo framer-lux5qc\",\"data-border\":true,children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(100vw, 1400px) - 104px)\",...toResponsiveImage(Ma3hv0k5EzSwL6ipea)}},LhPVcvcFH:{background:{alt:\"\",fit:\"fill\",sizes:\"620px\",...toResponsiveImage(Ma3hv0k5EzSwL6ipea)}},XEa8J0lv7:{background:{alt:\"\",fit:\"fill\",sizes:\"620px\",...toResponsiveImage(Ma3hv0k5EzSwL6ipea)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"calc(max((min(100vw, 1400px) - 96px) / 2, 1px) - 32px)\",...toResponsiveImage(Ma3hv0k5EzSwL6ipea)},className:\"framer-1lgipgh hidden-11aqsj5\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6plpub\",\"data-framer-name\":\"Frame 1000000887\",name:\"Frame 1000000887\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azup0g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-color\":\"var(--token-7d83949f-a967-48a3-8f07-15e8bd6e7d88, rgb(153, 123, 255))\"},children:\"2\"})}),className:\"framer-1qfl3bu\",\"data-framer-name\":\"3 MIN READ\",fonts:[\"Inter\"],name:\"3 MIN READ\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-color\":\"var(--token-7d83949f-a967-48a3-8f07-15e8bd6e7d88, rgb(153, 123, 255))\"},children:\"MIN READ\"})}),className:\"framer-acwaqh\",\"data-framer-name\":\"3 MIN READ\",fonts:[\"Inter\"],name:\"3 MIN READ\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-3pdqv1\",\"data-styles-preset\":\"IWiRiyhIZ\",children:\"AT&T finds $100M using AI Agents\"})}),className:\"framer-17uigg\",\"data-framer-name\":\"The Power of Positive Thinking: How It Can Transform Your Life\",fonts:[\"Inter\"],name:\"The Power of Positive Thinking: How It Can Transform Your Life\",text:EgBFr6Jb7zSwL6ipea,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",children:\"AI performs data analysis tasks and identifies actionable insights.\"})}),className:\"framer-1n2cj91\",\"data-framer-name\":\"Discover actionable strategies and techniques to boost your productivity and make the most of your time. Learn how to prioritize tasks, minimize distractions, and optimize your workflow for optimal results.\",fonts:[\"Inter\"],name:\"Discover actionable strategies and techniques to boost your productivity and make the most of your time. Learn how to prioritize tasks, minimize distractions, and optimize your workflow for optimal results.\",text:ankh18qopzSwL6ipea,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idzSwL6ipea);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ixisa\",\"data-framer-name\":\"Blog List Wrapper\",name:\"Blog List Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fiy33b\",\"data-framer-name\":\"Blog List Collection\",name:\"Blog List Collection\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UHp_XAws3\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"UHp_XAws3\",name:\"jc3P9Jk_y\",type:\"Identifier\"},{collection:\"UHp_XAws3\",name:\"Ma3hv0k5E\",type:\"Identifier\"},{collection:\"UHp_XAws3\",name:\"x2FFMkwM_\",type:\"Identifier\"},{collection:\"UHp_XAws3\",name:\"EgBFr6Jb7\",type:\"Identifier\"},{collection:\"UHp_XAws3\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{collection:\"UHp_XAws3\",name:\"EgBFr6Jb7\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:null},type:\"BinaryOperation\"},operator:\"and\",right:{left:{collection:\"UHp_XAws3\",name:\"EgBFr6Jb7\",type:\"Identifier\"},operator:\"!=\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{collection:\"UHp_XAws3\",name:\"NOiCd7yyP\",type:\"Identifier\"}},type:\"BinaryOperation\"},operator:\"and\",right:{collection:\"UHp_XAws3\",name:\"EPc5jzVGr\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"jc3P9Jk_y\":jc3P9Jk_yUHp_XAws3,\"Ma3hv0k5E\":Ma3hv0k5EUHp_XAws3,\"x2FFMkwM_\":x2FFMkwM_UHp_XAws3,\"EgBFr6Jb7\":EgBFr6Jb7UHp_XAws3,\"id\":idUHp_XAws3},i)=>{jc3P9Jk_yUHp_XAws3!==null&&jc3P9Jk_yUHp_XAws3!==void 0?jc3P9Jk_yUHp_XAws3:jc3P9Jk_yUHp_XAws3=\"\";x2FFMkwM_UHp_XAws3!==null&&x2FFMkwM_UHp_XAws3!==void 0?x2FFMkwM_UHp_XAws3:x2FFMkwM_UHp_XAws3=0;EgBFr6Jb7UHp_XAws3!==null&&EgBFr6Jb7UHp_XAws3!==void 0?EgBFr6Jb7UHp_XAws3:EgBFr6Jb7UHp_XAws3=\"\";const textContent1=numberToString(x2FFMkwM_UHp_XAws3,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`UHp_XAws3-${idUHp_XAws3}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{jc3P9Jk_y:jc3P9Jk_yUHp_XAws3},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{jc3P9Jk_y:jc3P9Jk_yUHp_XAws3},webPageId:\"y8RF_oEi5\"},nodeId:\"hnY16cOZe\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-j35hxn framer-lux5qc\",\"data-border\":true,children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"150px\",...toResponsiveImage(Ma3hv0k5EUHp_XAws3),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-yvffbj hidden-11aqsj5\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-awo4uv\",\"data-framer-name\":\"Frame 1000000887\",name:\"Frame 1000000887\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eu2xu3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-color\":\"var(--token-7d83949f-a967-48a3-8f07-15e8bd6e7d88, rgb(153, 123, 255))\"},children:\"5\"})}),className:\"framer-gytv0o\",\"data-framer-name\":\"3 MIN READ\",fonts:[\"Inter\"],name:\"3 MIN READ\",text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n77mgx\",\"data-styles-preset\":\"vSBjhgXTp\",style:{\"--framer-text-color\":\"var(--token-7d83949f-a967-48a3-8f07-15e8bd6e7d88, rgb(153, 123, 255))\"},children:\"MIN READ\"})}),className:\"framer-22g4c7\",\"data-framer-name\":\"3 MIN READ\",fonts:[\"Inter\"],name:\"3 MIN READ\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-3pdqv1\",\"data-styles-preset\":\"IWiRiyhIZ\",children:\"Capture Value in your Text Fields with AI Questions\"})}),className:\"framer-14ochje\",\"data-framer-name\":\"The Power of Positive Thinking: How It Can Transform Your Life\",fonts:[\"Inter\"],id:`${jc3P9Jk_yUHp_XAws3}-${elementId7}`,name:\"The Power of Positive Thinking: How It Can Transform Your Life\",ref:dynamicRef(`${jc3P9Jk_yUHp_XAws3}-${elementId7}`),text:EgBFr6Jb7UHp_XAws3,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idUHp_XAws3);})})})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{y:5733.2},LhPVcvcFH:{width:\"1328px\",y:5095.2},Vhqb6CK6A:{width:\"calc(min(100vw, 1400px) - 32px)\",y:6926.200000000001},XEa8J0lv7:{width:\"1328px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1595,width:\"calc(min(100vw, 1400px) - 72px)\",y:4895.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f4hynk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cmHjBFx79:{variant:\"p9QOuGT39\"},Vhqb6CK6A:{variant:\"LKh9H2wI5\"}},children:/*#__PURE__*/_jsx(FooterSection,{CJ3IBTevE:true,height:\"100%\",id:\"vTCpdGciC\",layoutId:\"vTCpdGciC\",style:{width:\"100%\"},variant:\"iJGqc8_Fi\",width:\"100%\",wYlOwhFEE:true})})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-ZYaLy { background: #181921; }`,\".framer-ZYaLy.framer-lux5qc, .framer-ZYaLy .framer-lux5qc { display: block; }\",\".framer-ZYaLy.framer-72rtr7 { align-content: center; align-items: center; background-color: #181921; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ZYaLy .framer-17hgtgo-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-ZYaLy .framer-1ueqo3v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: visible; padding: 146px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-12sb53z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-1w905fn { align-content: flex-end; align-items: flex-end; background-color: #1f212e; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 500px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZYaLy .framer-8cb0ip-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-ZYaLy .framer-1bt5cs7 { 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: flex-start; overflow: visible; padding: 64px 39px 64px 39px; position: relative; width: min-content; z-index: 2; }\",\".framer-ZYaLy .framer-sgji09, .framer-ZYaLy .framer-1ilicav, .framer-ZYaLy .framer-1yugv1r, .framer-ZYaLy .framer-1qfl3bu, .framer-ZYaLy .framer-acwaqh, .framer-ZYaLy .framer-gytv0o, .framer-ZYaLy .framer-22g4c7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZYaLy .framer-1m6jn6v { -webkit-backdrop-filter: blur(40px); backdrop-filter: blur(40px); background-color: rgba(31, 33, 46, 0.1); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-ZYaLy .framer-18nomzh { aspect-ratio: 1.6 / 1; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 404px); overflow: visible; position: absolute; right: -110px; width: 646px; z-index: 1; }\",\".framer-ZYaLy .framer-ke80q2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px 36px 0px 36px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-d35vgh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-ZYaLy .framer-6n2pfv { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 4px 0px 4px 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-5bz6wl-container { flex: none; height: 58%; max-width: 112%; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-1x17ghf, .framer-ZYaLy .framer-1by16t4, .framer-ZYaLy .framer-1g5zbbs, .framer-ZYaLy .framer-j1ss2v { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; }\",\".framer-ZYaLy .framer-14rx826 { flex: none; height: 36px; position: relative; width: 78px; }\",\".framer-ZYaLy .framer-tbxlnv { aspect-ratio: 5.777777777777778 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 92px; }\",\".framer-ZYaLy .framer-1rbasfd { aspect-ratio: 2.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 50px; }\",\".framer-ZYaLy .framer-ojwzjc { aspect-ratio: 2.526315789473684 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 91px; }\",\".framer-ZYaLy .framer-sincqt, .framer-ZYaLy .framer-znt5xs, .framer-ZYaLy .framer-jq76qn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; }\",\".framer-ZYaLy .framer-geaegd { aspect-ratio: 2.5974025974025974 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 94px; }\",\".framer-ZYaLy .framer-jrhbih { aspect-ratio: 2.5256410256410255 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 76px; }\",\".framer-ZYaLy .framer-fpkc5b { aspect-ratio: 5.378151260504202 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 97px; }\",\".framer-ZYaLy .framer-fl4w89 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 103px); opacity: 0.4; overflow: visible; position: relative; width: 103px; }\",\".framer-ZYaLy .framer-15iyf9g, .framer-ZYaLy .framer-1wd08kl { aspect-ratio: 4.537634408602151 / 1; height: var(--framer-aspect-ratio-supported, 38px); opacity: 0.4; overflow: visible; position: relative; width: 171px; }\",\".framer-ZYaLy .framer-1q598gk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 94%; }\",\".framer-ZYaLy .framer-m1bsmg, .framer-ZYaLy .framer-ov159c, .framer-ZYaLy .framer-zlto6d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-1vlzvig, .framer-ZYaLy .framer-1csv93o, .framer-ZYaLy .framer-m5b8tk, .framer-ZYaLy .framer-w4wkec, .framer-ZYaLy .framer-1wg16ep, .framer-ZYaLy .framer-12wa45h, .framer-ZYaLy .framer-1tf4lg5, .framer-ZYaLy .framer-10buddv, .framer-ZYaLy .framer-1f271rp, .framer-ZYaLy .framer-isxu24, .framer-ZYaLy .framer-17uigg, .framer-ZYaLy .framer-1n2cj91, .framer-ZYaLy .framer-14ochje { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYaLy .framer-znt6n, .framer-ZYaLy .framer-sh5h87 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-imh1jy { --border-bottom-width: 1px; --border-color: #353744; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: #1f212e; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZYaLy .framer-wnqrnh, .framer-ZYaLy .framer-xivbgb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-u4mfnb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 91%; }\",\".framer-ZYaLy .framer-5jxwgj, .framer-ZYaLy .framer-82vt7l { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ZYaLy .framer-1wytg1, .framer-ZYaLy .framer-1p6jau4 { align-content: flex-start; align-items: flex-start; background-color: #7a45ff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 21px 15px 21px 15px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-1tdaoy3, .framer-ZYaLy .framer-1ldx3x5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-h0p0mf, .framer-ZYaLy .framer-1r60z7r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-37rj9l, .framer-ZYaLy .framer-13i26cj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZYaLy .framer-y2u8i { --border-bottom-width: 1px; --border-color: #353744; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #1f212e; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZYaLy .framer-gdc5sm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-4jq0ze-container { flex: none; height: auto; position: relative; width: 70%; }\",\".framer-ZYaLy .framer-1qvmd1x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-1dtpxe, .framer-ZYaLy .framer-1bmo5aa { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-15k1og4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ZYaLy .framer-skf9nx-container, .framer-ZYaLy .framer-1fxqgmj-container, .framer-ZYaLy .framer-2b80qt-container, .framer-ZYaLy .framer-15p6ho1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZYaLy .framer-17x2ds7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYaLy .framer-1d3ctm5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYaLy .framer-1oj1sq9 { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-1ouotea-container, .framer-ZYaLy .framer-y22e5z-container, .framer-ZYaLy .framer-1wbgpwe-container, .framer-ZYaLy .framer-1mbbvl5-container, .framer-ZYaLy .framer-1elc2p1-container, .framer-ZYaLy .framer-10tuh7u-container { align-self: start; flex: none; height: 450px; justify-self: start; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-1yoymbi-container, .framer-ZYaLy .framer-109m1ci-container { flex: 0.7 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ZYaLy .framer-3bivir, .framer-ZYaLy .framer-1blr54z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-7ebrlp, .framer-ZYaLy .framer-19fl8f6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 500px; word-break: break-word; word-wrap: break-word; }\",\".framer-ZYaLy .framer-mpnswd-container { flex: none; height: 432px; max-width: 112%; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-1njd7ld-container, .framer-ZYaLy .framer-juy5zq-container, .framer-ZYaLy .framer-1froyt3-container, .framer-ZYaLy .framer-1bgbxe3-container { height: 450px; position: relative; width: 350px; }\",\".framer-ZYaLy .framer-g2lhoc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZYaLy .framer-j2dvor { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-ZYaLy .framer-14n73qo { --border-bottom-width: 1px; --border-color: var(--token-591e6ce6-6629-48cb-90f6-ce54b0803174, #353744); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-e7b77765-467d-4d17-b95e-a1d2b39088b8, #1f212e); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 24px; height: 1px; justify-content: flex-start; padding: 16px; position: relative; text-decoration: none; width: 100%; }\",\".framer-ZYaLy .framer-1lgipgh { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-6plpub { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-azup0g, .framer-ZYaLy .framer-1eu2xu3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-6ixisa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ZYaLy .framer-1fiy33b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-ZYaLy .framer-j35hxn { --border-bottom-width: 1px; --border-color: var(--token-591e6ce6-6629-48cb-90f6-ce54b0803174, #353744); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-e7b77765-467d-4d17-b95e-a1d2b39088b8, #1f212e); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 16px; position: relative; text-decoration: none; width: 100%; }\",\".framer-ZYaLy .framer-yvffbj { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 150px; position: relative; width: 150px; }\",\".framer-ZYaLy .framer-awo4uv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ZYaLy .framer-f4hynk-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZYaLy.framer-72rtr7, .framer-ZYaLy .framer-1ueqo3v, .framer-ZYaLy .framer-12sb53z, .framer-ZYaLy .framer-1bt5cs7, .framer-ZYaLy .framer-ke80q2, .framer-ZYaLy .framer-d35vgh, .framer-ZYaLy .framer-6n2pfv, .framer-ZYaLy .framer-1x17ghf, .framer-ZYaLy .framer-1by16t4, .framer-ZYaLy .framer-1g5zbbs, .framer-ZYaLy .framer-j1ss2v, .framer-ZYaLy .framer-sincqt, .framer-ZYaLy .framer-znt5xs, .framer-ZYaLy .framer-jq76qn, .framer-ZYaLy .framer-1q598gk, .framer-ZYaLy .framer-m1bsmg, .framer-ZYaLy .framer-znt6n, .framer-ZYaLy .framer-wnqrnh, .framer-ZYaLy .framer-u4mfnb, .framer-ZYaLy .framer-5jxwgj, .framer-ZYaLy .framer-1wytg1, .framer-ZYaLy .framer-1tdaoy3, .framer-ZYaLy .framer-h0p0mf, .framer-ZYaLy .framer-y2u8i, .framer-ZYaLy .framer-xivbgb, .framer-ZYaLy .framer-gdc5sm, .framer-ZYaLy .framer-82vt7l, .framer-ZYaLy .framer-1p6jau4, .framer-ZYaLy .framer-1ldx3x5, .framer-ZYaLy .framer-1r60z7r, .framer-ZYaLy .framer-1qvmd1x, .framer-ZYaLy .framer-1dtpxe, .framer-ZYaLy .framer-15k1og4, .framer-ZYaLy .framer-1bmo5aa, .framer-ZYaLy .framer-3bivir, .framer-ZYaLy .framer-ov159c, .framer-ZYaLy .framer-1blr54z, .framer-ZYaLy .framer-g2lhoc, .framer-ZYaLy .framer-zlto6d, .framer-ZYaLy .framer-sh5h87, .framer-ZYaLy .framer-j2dvor, .framer-ZYaLy .framer-14n73qo, .framer-ZYaLy .framer-6plpub, .framer-ZYaLy .framer-azup0g, .framer-ZYaLy .framer-6ixisa, .framer-ZYaLy .framer-1fiy33b, .framer-ZYaLy .framer-j35hxn, .framer-ZYaLy .framer-awo4uv, .framer-ZYaLy .framer-1eu2xu3 { gap: 0px; } .framer-ZYaLy.framer-72rtr7 > *, .framer-ZYaLy .framer-1tdaoy3 > *, .framer-ZYaLy .framer-1ldx3x5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZYaLy.framer-72rtr7 > :first-child, .framer-ZYaLy .framer-1ueqo3v > :first-child, .framer-ZYaLy .framer-12sb53z > :first-child, .framer-ZYaLy .framer-1bt5cs7 > :first-child, .framer-ZYaLy .framer-ke80q2 > :first-child, .framer-ZYaLy .framer-d35vgh > :first-child, .framer-ZYaLy .framer-6n2pfv > :first-child, .framer-ZYaLy .framer-1q598gk > :first-child, .framer-ZYaLy .framer-m1bsmg > :first-child, .framer-ZYaLy .framer-wnqrnh > :first-child, .framer-ZYaLy .framer-5jxwgj > :first-child, .framer-ZYaLy .framer-1wytg1 > :first-child, .framer-ZYaLy .framer-1tdaoy3 > :first-child, .framer-ZYaLy .framer-h0p0mf > :first-child, .framer-ZYaLy .framer-y2u8i > :first-child, .framer-ZYaLy .framer-xivbgb > :first-child, .framer-ZYaLy .framer-82vt7l > :first-child, .framer-ZYaLy .framer-1p6jau4 > :first-child, .framer-ZYaLy .framer-1ldx3x5 > :first-child, .framer-ZYaLy .framer-1r60z7r > :first-child, .framer-ZYaLy .framer-1qvmd1x > :first-child, .framer-ZYaLy .framer-15k1og4 > :first-child, .framer-ZYaLy .framer-3bivir > :first-child, .framer-ZYaLy .framer-ov159c > :first-child, .framer-ZYaLy .framer-1blr54z > :first-child, .framer-ZYaLy .framer-g2lhoc > :first-child, .framer-ZYaLy .framer-zlto6d > :first-child, .framer-ZYaLy .framer-j2dvor > :first-child, .framer-ZYaLy .framer-14n73qo > :first-child, .framer-ZYaLy .framer-6plpub > :first-child, .framer-ZYaLy .framer-6ixisa > :first-child, .framer-ZYaLy .framer-1fiy33b > :first-child, .framer-ZYaLy .framer-awo4uv > :first-child { margin-top: 0px; } .framer-ZYaLy.framer-72rtr7 > :last-child, .framer-ZYaLy .framer-1ueqo3v > :last-child, .framer-ZYaLy .framer-12sb53z > :last-child, .framer-ZYaLy .framer-1bt5cs7 > :last-child, .framer-ZYaLy .framer-ke80q2 > :last-child, .framer-ZYaLy .framer-d35vgh > :last-child, .framer-ZYaLy .framer-6n2pfv > :last-child, .framer-ZYaLy .framer-1q598gk > :last-child, .framer-ZYaLy .framer-m1bsmg > :last-child, .framer-ZYaLy .framer-wnqrnh > :last-child, .framer-ZYaLy .framer-5jxwgj > :last-child, .framer-ZYaLy .framer-1wytg1 > :last-child, .framer-ZYaLy .framer-1tdaoy3 > :last-child, .framer-ZYaLy .framer-h0p0mf > :last-child, .framer-ZYaLy .framer-y2u8i > :last-child, .framer-ZYaLy .framer-xivbgb > :last-child, .framer-ZYaLy .framer-82vt7l > :last-child, .framer-ZYaLy .framer-1p6jau4 > :last-child, .framer-ZYaLy .framer-1ldx3x5 > :last-child, .framer-ZYaLy .framer-1r60z7r > :last-child, .framer-ZYaLy .framer-1qvmd1x > :last-child, .framer-ZYaLy .framer-15k1og4 > :last-child, .framer-ZYaLy .framer-3bivir > :last-child, .framer-ZYaLy .framer-ov159c > :last-child, .framer-ZYaLy .framer-1blr54z > :last-child, .framer-ZYaLy .framer-g2lhoc > :last-child, .framer-ZYaLy .framer-zlto6d > :last-child, .framer-ZYaLy .framer-j2dvor > :last-child, .framer-ZYaLy .framer-14n73qo > :last-child, .framer-ZYaLy .framer-6plpub > :last-child, .framer-ZYaLy .framer-6ixisa > :last-child, .framer-ZYaLy .framer-1fiy33b > :last-child, .framer-ZYaLy .framer-awo4uv > :last-child { margin-bottom: 0px; } .framer-ZYaLy .framer-1ueqo3v > *, .framer-ZYaLy .framer-ke80q2 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-ZYaLy .framer-12sb53z > *, .framer-ZYaLy .framer-m1bsmg > *, .framer-ZYaLy .framer-15k1og4 > *, .framer-ZYaLy .framer-ov159c > *, .framer-ZYaLy .framer-g2lhoc > *, .framer-ZYaLy .framer-zlto6d > *, .framer-ZYaLy .framer-14n73qo > *, .framer-ZYaLy .framer-6ixisa > *, .framer-ZYaLy .framer-1fiy33b > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ZYaLy .framer-1bt5cs7 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-ZYaLy .framer-d35vgh > *, .framer-ZYaLy .framer-1wytg1 > *, .framer-ZYaLy .framer-1p6jau4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZYaLy .framer-6n2pfv > *, .framer-ZYaLy .framer-1q598gk > *, .framer-ZYaLy .framer-y2u8i > *, .framer-ZYaLy .framer-1qvmd1x > *, .framer-ZYaLy .framer-3bivir > *, .framer-ZYaLy .framer-1blr54z > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-ZYaLy .framer-1x17ghf > *, .framer-ZYaLy .framer-1by16t4 > *, .framer-ZYaLy .framer-1g5zbbs > *, .framer-ZYaLy .framer-j1ss2v > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZYaLy .framer-1x17ghf > :first-child, .framer-ZYaLy .framer-1by16t4 > :first-child, .framer-ZYaLy .framer-1g5zbbs > :first-child, .framer-ZYaLy .framer-j1ss2v > :first-child, .framer-ZYaLy .framer-sincqt > :first-child, .framer-ZYaLy .framer-znt5xs > :first-child, .framer-ZYaLy .framer-jq76qn > :first-child, .framer-ZYaLy .framer-znt6n > :first-child, .framer-ZYaLy .framer-u4mfnb > :first-child, .framer-ZYaLy .framer-gdc5sm > :first-child, .framer-ZYaLy .framer-1dtpxe > :first-child, .framer-ZYaLy .framer-1bmo5aa > :first-child, .framer-ZYaLy .framer-sh5h87 > :first-child, .framer-ZYaLy .framer-azup0g > :first-child, .framer-ZYaLy .framer-j35hxn > :first-child, .framer-ZYaLy .framer-1eu2xu3 > :first-child { margin-left: 0px; } .framer-ZYaLy .framer-1x17ghf > :last-child, .framer-ZYaLy .framer-1by16t4 > :last-child, .framer-ZYaLy .framer-1g5zbbs > :last-child, .framer-ZYaLy .framer-j1ss2v > :last-child, .framer-ZYaLy .framer-sincqt > :last-child, .framer-ZYaLy .framer-znt5xs > :last-child, .framer-ZYaLy .framer-jq76qn > :last-child, .framer-ZYaLy .framer-znt6n > :last-child, .framer-ZYaLy .framer-u4mfnb > :last-child, .framer-ZYaLy .framer-gdc5sm > :last-child, .framer-ZYaLy .framer-1dtpxe > :last-child, .framer-ZYaLy .framer-1bmo5aa > :last-child, .framer-ZYaLy .framer-sh5h87 > :last-child, .framer-ZYaLy .framer-azup0g > :last-child, .framer-ZYaLy .framer-j35hxn > :last-child, .framer-ZYaLy .framer-1eu2xu3 > :last-child { margin-right: 0px; } .framer-ZYaLy .framer-sincqt > *, .framer-ZYaLy .framer-znt5xs > *, .framer-ZYaLy .framer-jq76qn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZYaLy .framer-znt6n > *, .framer-ZYaLy .framer-1dtpxe > *, .framer-ZYaLy .framer-1bmo5aa > *, .framer-ZYaLy .framer-sh5h87 > *, .framer-ZYaLy .framer-j35hxn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-ZYaLy .framer-wnqrnh > *, .framer-ZYaLy .framer-xivbgb > *, .framer-ZYaLy .framer-6plpub > *, .framer-ZYaLy .framer-awo4uv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ZYaLy .framer-u4mfnb > *, .framer-ZYaLy .framer-gdc5sm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ZYaLy .framer-5jxwgj > *, .framer-ZYaLy .framer-82vt7l > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZYaLy .framer-h0p0mf > *, .framer-ZYaLy .framer-1r60z7r > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ZYaLy .framer-j2dvor > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZYaLy .framer-azup0g > *, .framer-ZYaLy .framer-1eu2xu3 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-ZYaLy { background: #181921; } .framer-ZYaLy.framer-72rtr7 { width: 810px; } .framer-ZYaLy .framer-1ueqo3v, .framer-ZYaLy .framer-1q598gk, .framer-ZYaLy .framer-1qvmd1x, .framer-ZYaLy .framer-3bivir, .framer-ZYaLy .framer-1blr54z { gap: 36px; } .framer-ZYaLy .framer-1w905fn { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; height: 600px; } .framer-ZYaLy .framer-8cb0ip-container { bottom: -206px; height: unset; left: -109px; right: -95px; top: -207px; width: unset; } .framer-ZYaLy .framer-1bt5cs7 { padding: 48px; } .framer-ZYaLy .framer-18nomzh { aspect-ratio: unset; bottom: unset; height: 74%; left: 48px; right: 46px; top: 344px; width: unset; } .framer-ZYaLy .framer-ke80q2 { gap: 48px; } .framer-ZYaLy .framer-znt6n { gap: 12px; } .framer-ZYaLy .framer-u4mfnb { width: 100%; } .framer-ZYaLy .framer-1wytg1, .framer-ZYaLy .framer-1p6jau4 { justify-content: center; min-height: 203px; } .framer-ZYaLy .framer-1oj1sq9 { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-ZYaLy .framer-1ouotea-container, .framer-ZYaLy .framer-y22e5z-container, .framer-ZYaLy .framer-1wbgpwe-container, .framer-ZYaLy .framer-1mbbvl5-container, .framer-ZYaLy .framer-1elc2p1-container, .framer-ZYaLy .framer-10tuh7u-container { height: 430px; } .framer-ZYaLy .framer-sh5h87 { flex-direction: column; } .framer-ZYaLy .framer-j2dvor { align-self: unset; flex: none; height: 720px; width: 100%; } .framer-ZYaLy .framer-6ixisa { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZYaLy .framer-1ueqo3v, .framer-ZYaLy .framer-ke80q2, .framer-ZYaLy .framer-1q598gk, .framer-ZYaLy .framer-znt6n, .framer-ZYaLy .framer-1qvmd1x, .framer-ZYaLy .framer-3bivir, .framer-ZYaLy .framer-1blr54z, .framer-ZYaLy .framer-sh5h87 { gap: 0px; } .framer-ZYaLy .framer-1ueqo3v > *, .framer-ZYaLy .framer-1q598gk > *, .framer-ZYaLy .framer-1qvmd1x > *, .framer-ZYaLy .framer-3bivir > *, .framer-ZYaLy .framer-1blr54z > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-ZYaLy .framer-1ueqo3v > :first-child, .framer-ZYaLy .framer-ke80q2 > :first-child, .framer-ZYaLy .framer-1q598gk > :first-child, .framer-ZYaLy .framer-1qvmd1x > :first-child, .framer-ZYaLy .framer-3bivir > :first-child, .framer-ZYaLy .framer-1blr54z > :first-child, .framer-ZYaLy .framer-sh5h87 > :first-child { margin-top: 0px; } .framer-ZYaLy .framer-1ueqo3v > :last-child, .framer-ZYaLy .framer-ke80q2 > :last-child, .framer-ZYaLy .framer-1q598gk > :last-child, .framer-ZYaLy .framer-1qvmd1x > :last-child, .framer-ZYaLy .framer-3bivir > :last-child, .framer-ZYaLy .framer-1blr54z > :last-child, .framer-ZYaLy .framer-sh5h87 > :last-child { margin-bottom: 0px; } .framer-ZYaLy .framer-ke80q2 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-ZYaLy .framer-znt6n > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-ZYaLy .framer-znt6n > :first-child { margin-left: 0px; } .framer-ZYaLy .framer-znt6n > :last-child { margin-right: 0px; } .framer-ZYaLy .framer-sh5h87 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-ZYaLy { background: #181921; } .framer-ZYaLy.framer-72rtr7 { justify-content: center; overflow: hidden; width: 390px; } .framer-ZYaLy .framer-1ueqo3v { gap: 24px; justify-content: center; padding: 136px 0px 0px 0px; } .framer-ZYaLy .framer-12sb53z { justify-content: center; } .framer-ZYaLy .framer-1w905fn { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 729px; } .framer-ZYaLy .framer-8cb0ip-container { bottom: -132px; height: unset; left: -143px; right: -129px; top: -133px; width: unset; } .framer-ZYaLy .framer-1bt5cs7 { flex: 1 0 0px; padding: 36px 24px 24px 24px; width: 1px; } .framer-ZYaLy .framer-1ilicav { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-ZYaLy .framer-18nomzh { aspect-ratio: unset; height: 376px; left: 27px; right: unset; width: 84%; } .framer-ZYaLy .framer-ke80q2 { gap: 24px; padding: 0px 16px 0px 16px; } .framer-ZYaLy .framer-6n2pfv, .framer-ZYaLy .framer-1q598gk, .framer-ZYaLy .framer-1qvmd1x, .framer-ZYaLy .framer-3bivir, .framer-ZYaLy .framer-1blr54z { gap: 24px; } .framer-ZYaLy .framer-znt6n, .framer-ZYaLy .framer-sh5h87 { flex-direction: column; gap: 12px; } .framer-ZYaLy .framer-imh1jy { align-self: unset; flex: none; gap: 10px; height: min-content; justify-content: center; width: 100%; } .framer-ZYaLy .framer-u4mfnb { flex-direction: column; width: 100%; } .framer-ZYaLy .framer-5jxwgj, .framer-ZYaLy .framer-82vt7l, .framer-ZYaLy .framer-1yoymbi-container, .framer-ZYaLy .framer-109m1ci-container, .framer-ZYaLy .framer-awo4uv { flex: none; width: 100%; } .framer-ZYaLy .framer-1wytg1, .framer-ZYaLy .framer-1p6jau4 { gap: 24px; padding: 40px; } .framer-ZYaLy .framer-1tdaoy3, .framer-ZYaLy .framer-1ldx3x5 { gap: 10px; } .framer-ZYaLy .framer-y2u8i { flex: none; gap: 10px; width: 100%; } .framer-ZYaLy .framer-gdc5sm, .framer-ZYaLy .framer-j35hxn { flex-direction: column; } .framer-ZYaLy .framer-4jq0ze-container, .framer-ZYaLy .framer-1d3ctm5, .framer-ZYaLy .framer-7ebrlp, .framer-ZYaLy .framer-19fl8f6, .framer-ZYaLy .framer-15p6ho1-container { width: 100%; } .framer-ZYaLy .framer-1dtpxe, .framer-ZYaLy .framer-1bmo5aa { align-content: center; align-items: center; flex-direction: column; } .framer-ZYaLy .framer-15k1og4 { align-content: center; align-items: center; flex: none; width: 100%; } .framer-ZYaLy .framer-1oj1sq9 { gap: 12px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-ZYaLy .framer-1ouotea-container, .framer-ZYaLy .framer-y22e5z-container, .framer-ZYaLy .framer-1wbgpwe-container, .framer-ZYaLy .framer-1mbbvl5-container, .framer-ZYaLy .framer-1elc2p1-container, .framer-ZYaLy .framer-10tuh7u-container { height: 390px; } .framer-ZYaLy .framer-g2lhoc { width: 359px; } .framer-ZYaLy .framer-j2dvor { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-ZYaLy .framer-14n73qo { flex: none; height: min-content; } .framer-ZYaLy .framer-6ixisa { flex: none; gap: 12px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZYaLy .framer-1ueqo3v, .framer-ZYaLy .framer-ke80q2, .framer-ZYaLy .framer-6n2pfv, .framer-ZYaLy .framer-1q598gk, .framer-ZYaLy .framer-znt6n, .framer-ZYaLy .framer-imh1jy, .framer-ZYaLy .framer-u4mfnb, .framer-ZYaLy .framer-1wytg1, .framer-ZYaLy .framer-1tdaoy3, .framer-ZYaLy .framer-y2u8i, .framer-ZYaLy .framer-gdc5sm, .framer-ZYaLy .framer-1p6jau4, .framer-ZYaLy .framer-1ldx3x5, .framer-ZYaLy .framer-1qvmd1x, .framer-ZYaLy .framer-1dtpxe, .framer-ZYaLy .framer-1oj1sq9, .framer-ZYaLy .framer-1bmo5aa, .framer-ZYaLy .framer-3bivir, .framer-ZYaLy .framer-1blr54z, .framer-ZYaLy .framer-sh5h87, .framer-ZYaLy .framer-6ixisa, .framer-ZYaLy .framer-j35hxn { gap: 0px; } .framer-ZYaLy .framer-1ueqo3v > *, .framer-ZYaLy .framer-ke80q2 > *, .framer-ZYaLy .framer-6n2pfv > *, .framer-ZYaLy .framer-1q598gk > *, .framer-ZYaLy .framer-1wytg1 > *, .framer-ZYaLy .framer-1p6jau4 > *, .framer-ZYaLy .framer-1qvmd1x > *, .framer-ZYaLy .framer-1dtpxe > *, .framer-ZYaLy .framer-1bmo5aa > *, .framer-ZYaLy .framer-3bivir > *, .framer-ZYaLy .framer-1blr54z > *, .framer-ZYaLy .framer-j35hxn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ZYaLy .framer-1ueqo3v > :first-child, .framer-ZYaLy .framer-ke80q2 > :first-child, .framer-ZYaLy .framer-6n2pfv > :first-child, .framer-ZYaLy .framer-1q598gk > :first-child, .framer-ZYaLy .framer-znt6n > :first-child, .framer-ZYaLy .framer-imh1jy > :first-child, .framer-ZYaLy .framer-u4mfnb > :first-child, .framer-ZYaLy .framer-1wytg1 > :first-child, .framer-ZYaLy .framer-1tdaoy3 > :first-child, .framer-ZYaLy .framer-y2u8i > :first-child, .framer-ZYaLy .framer-gdc5sm > :first-child, .framer-ZYaLy .framer-1p6jau4 > :first-child, .framer-ZYaLy .framer-1ldx3x5 > :first-child, .framer-ZYaLy .framer-1qvmd1x > :first-child, .framer-ZYaLy .framer-1dtpxe > :first-child, .framer-ZYaLy .framer-1bmo5aa > :first-child, .framer-ZYaLy .framer-3bivir > :first-child, .framer-ZYaLy .framer-1blr54z > :first-child, .framer-ZYaLy .framer-sh5h87 > :first-child, .framer-ZYaLy .framer-6ixisa > :first-child, .framer-ZYaLy .framer-j35hxn > :first-child { margin-top: 0px; } .framer-ZYaLy .framer-1ueqo3v > :last-child, .framer-ZYaLy .framer-ke80q2 > :last-child, .framer-ZYaLy .framer-6n2pfv > :last-child, .framer-ZYaLy .framer-1q598gk > :last-child, .framer-ZYaLy .framer-znt6n > :last-child, .framer-ZYaLy .framer-imh1jy > :last-child, .framer-ZYaLy .framer-u4mfnb > :last-child, .framer-ZYaLy .framer-1wytg1 > :last-child, .framer-ZYaLy .framer-1tdaoy3 > :last-child, .framer-ZYaLy .framer-y2u8i > :last-child, .framer-ZYaLy .framer-gdc5sm > :last-child, .framer-ZYaLy .framer-1p6jau4 > :last-child, .framer-ZYaLy .framer-1ldx3x5 > :last-child, .framer-ZYaLy .framer-1qvmd1x > :last-child, .framer-ZYaLy .framer-1dtpxe > :last-child, .framer-ZYaLy .framer-1bmo5aa > :last-child, .framer-ZYaLy .framer-3bivir > :last-child, .framer-ZYaLy .framer-1blr54z > :last-child, .framer-ZYaLy .framer-sh5h87 > :last-child, .framer-ZYaLy .framer-6ixisa > :last-child, .framer-ZYaLy .framer-j35hxn > :last-child { margin-bottom: 0px; } .framer-ZYaLy .framer-znt6n > *, .framer-ZYaLy .framer-sh5h87 > *, .framer-ZYaLy .framer-6ixisa > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ZYaLy .framer-imh1jy > *, .framer-ZYaLy .framer-1tdaoy3 > *, .framer-ZYaLy .framer-y2u8i > *, .framer-ZYaLy .framer-1ldx3x5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZYaLy .framer-u4mfnb > *, .framer-ZYaLy .framer-gdc5sm > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZYaLy .framer-1oj1sq9 > *, .framer-ZYaLy .framer-1oj1sq9 > :first-child, .framer-ZYaLy .framer-1oj1sq9 > :last-child { margin: 0px; } }}`,`@media (min-width: 1920px) and (max-width: 3199px) { .${metadata.bodyClassName}-framer-ZYaLy { background: #181921; } .framer-ZYaLy.framer-72rtr7 { width: 1920px; } .framer-ZYaLy .framer-1w905fn { height: 700px; } .framer-ZYaLy .framer-8cb0ip-container, .framer-ZYaLy .framer-sgji09 { order: 0; } .framer-ZYaLy .framer-1bt5cs7 { order: 1; padding: 64px 40px 64px 40px; } .framer-ZYaLy .framer-1ilicav { order: 1; } .framer-ZYaLy .framer-1m6jn6v { order: 2; } .framer-ZYaLy .framer-18nomzh { bottom: -115px; height: var(--framer-aspect-ratio-supported, 621px); order: 3; right: 166px; width: 994px; z-index: 2; } .framer-ZYaLy .framer-ke80q2 { width: 1400px; } .framer-ZYaLy .framer-5bz6wl-container { height: 411%; } .framer-ZYaLy .framer-u4mfnb { width: 92%; }}`,`@media (min-width: 3200px) { .${metadata.bodyClassName}-framer-ZYaLy { background: #181921; } .framer-ZYaLy.framer-72rtr7 { width: 3200px; } .framer-ZYaLy .framer-17hgtgo-container, .framer-ZYaLy .framer-8cb0ip-container, .framer-ZYaLy .framer-zlto6d { order: 0; } .framer-ZYaLy .framer-1ueqo3v, .framer-ZYaLy .framer-15p6ho1-container { order: 1; } .framer-ZYaLy .framer-1bt5cs7 { order: 1; padding: 64px 514px 64px 514px; } .framer-ZYaLy .framer-1m6jn6v { order: 2; } .framer-ZYaLy .framer-18nomzh { bottom: -207px; height: var(--framer-aspect-ratio-supported, 750px); left: 1528px; order: 3; right: unset; width: 1199px; z-index: 2; } .framer-ZYaLy .framer-ke80q2 { width: 1400px; } .framer-ZYaLy .framer-u4mfnb { height: 196px; width: 92%; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-ZYaLy[data-border=\"true\"]::after, .framer-ZYaLy [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 6611.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cmHjBFx79\":{\"layout\":[\"fixed\",\"auto\"]},\"Vhqb6CK6A\":{\"layout\":[\"fixed\",\"auto\"]},\"LhPVcvcFH\":{\"layout\":[\"fixed\",\"auto\"]},\"XEa8J0lv7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-ZYaLy\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6611.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]},...NavbarFonts,...ParticlesFonts,...TickerFonts,...ButtonFonts,...TitleIndicatorFonts,...CardsFonts,...TestimonialSingleFonts,...FooterSectionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"6611.5\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cmHjBFx79\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vhqb6CK6A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LhPVcvcFH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XEa8J0lv7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}