{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/fONf9xpEnRB5fhZ36jxV/PFQw4hQn5StRPC8BS3iZ/NumberAnimator.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/SZOL8CVValnXXNkCy72m/zVJeIsyCu664cXOu4N9r/kfAVS7sFs.js", "ssg:https://framerusercontent.com/modules/UWHMHhkDjBn6aF5BAsAa/7fuQ6K3H8kGYXTST1IZC/mEwy5icUT.js", "ssg:https://framerusercontent.com/modules/QTyidNRLajT8vlFyWSsb/0Of4s4giJOEO7R9X1qUA/Q80x6_CqA.js"],
  "sourcesContent": ["import{jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useInView}from\"framer-motion\";import{useEffect,useState,useRef}from\"react\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function NumberAnimator(props){const ref=useRef(null);const isInView=useInView(ref,{once:!props.animation.replay,amount:\"some\"});const[numberText,setNumberText]=useState(\"\");const{start,end,decimals,commas,rounding,fontColor,animation}=props;const[currentAnimation,setCurrentAnimation]=useState(null);const isCanvas=RenderTarget.current()===RenderTarget.canvas;function formatNumber(value){let number=value;let numberString=number.toFixed(decimals);if(commas){numberString=numberString.replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");}return numberString;}function runAnimation(){if(!isCanvas){if(currentAnimation){currentAnimation.stop();}setCurrentAnimation(animate(start,end,{...animation.transition,onUpdate:latest=>{setNumberText(formatNumber(latest));}}));}}useEffect(()=>{if(animation.trigger==\"appear\"){runAnimation();}setNumberText(formatNumber(start));},[]);useEffect(()=>{if(isInView&&animation.trigger==\"layerInView\"){runAnimation();}},[isInView]);useEffect(()=>{if(animation.trigger==\"layerInView\"){if(isInView){runAnimation();}else{if(currentAnimation){currentAnimation.stop();}setNumberText(formatNumber(start));}}},[isInView]);return /*#__PURE__*/_jsxs(motion.p,{ref:ref,style:{userSelect:props.textSelect?\"auto\":\"none\",fontVariantNumeric:`${props.monospace?\"tabular-nums \":\"\"}${props.slashedZeros?\"slashed-zero\":\"\"}`,margin:0,...fontColor.mode==\"solid\"?{color:fontColor.color}:{WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",backgroundImage:`linear-gradient(${fontColor.angle}deg, ${fontColor.startColor}, ${fontColor.endColor})`},...props.font,...props.style},children:[props.prefix,isCanvas?formatNumber(end):numberText,props.suffix]});}NumberAnimator.displayName=\"Animated Number Counter\";addPropertyControls(NumberAnimator,{start:{type:ControlType.Number,defaultValue:0},end:{type:ControlType.Number,defaultValue:100},decimals:{type:ControlType.Number,defaultValue:0,min:0,max:3,step:1},commas:{type:ControlType.Boolean,defaultValue:true},fontColor:{type:ControlType.Object,controls:{mode:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!=\"solid\"},startColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!=\"gradient\"},endColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.mode!=\"gradient\"},angle:{type:ControlType.Number,defaultValue:180,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.mode!=\"gradient\"}}},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},animation:{type:ControlType.Object,icon:\"effect\",controls:{trigger:{type:ControlType.Enum,defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},replay:{type:ControlType.Boolean,defaultValue:true,hidden(props){return props.trigger!==\"layerInView\";}},transition:{type:ControlType.Transition}}},prefix:{type:ControlType.String},suffix:{type:ControlType.String},textSelect:{type:ControlType.Boolean,defaultValue:true},display:{type:ControlType.Object,buttonTitle:\"Options\",controls:{monospace:{type:ControlType.Boolean,defaultValue:false,description:\"Monospaced number characters.\"},slashedZeros:{type:ControlType.Boolean,defaultValue:false,description:\"Adds a diagonal slash through zeros if your font supports it.\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"NumberAnimator\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NumberAnimator.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Montserrat-regular\",\"FS;Montserrat-bold\",\"FS;Montserrat-bold italic\",\"FS;Montserrat-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WVRVHC26IF7VQKSULH6U5DSAGCYOIAQ7/CPARYH2DVA55XB4ZSTA7WTMPVZAVMNA5/BOBO2BRVXZQHPXSPDS5WN3IZQ5SL56OZ.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CC6FT7O535LIU5P34T6V2W7R57LGKSDT/KUZZS4REMM64PV6S4GGM77HZQUVJPYU2/3ZPIFBJ6EZFOZSYT4ISIO7DHQQODA5IR.woff2\",weight:\"400\"}]}];export const css=['.framer-RQmoZ .framer-styles-preset-buj66a:not(.rich-text-wrapper), .framer-RQmoZ .framer-styles-preset-buj66a.rich-text-wrapper h5 { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-RQmoZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4e800ba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const Phosphor1Controls=getPropertyControls(Phosphor1);const cycleOrder=[\"WhQl_pUNf\",\"P5iLqJPfj\",\"igY9ErDLb\"];const serializationHash=\"framer-rse1x\";const variantClassNames={igY9ErDLb:\"framer-v-150035n\",P5iLqJPfj:\"framer-v-11acwdz\",WhQl_pUNf:\"framer-v-rm1bos\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"igY9ErDLb\",Only:\"P5iLqJPfj\",Withicon:\"WhQl_pUNf\"};const getProps=({color,height,icon,id,textColor,title,width,...props})=>{return{...props,Jh10lTWIl:icon??props.Jh10lTWIl??\"MagicWand\",tehYgz0M0:title??props.tehYgz0M0??\"Generate\",variant:humanReadableVariantMap[props.variant]??props.variant??\"WhQl_pUNf\",XuXIdDx0B:color??props.XuXIdDx0B??\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",Y6QJTLWlg:textColor??props.Y6QJTLWlg??\"rgb(0, 0, 0)\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,XuXIdDx0B,tehYgz0M0,Jh10lTWIl,Y6QJTLWlg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WhQl_pUNf\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"P5iLqJPfj\",\"igY9ErDLb\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-rm1bos\",className,classNames),\"data-framer-name\":\"Withicon\",layoutDependency:layoutDependency,layoutId:\"WhQl_pUNf\",ref:refBinding,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({igY9ErDLb:{\"data-framer-name\":\"Variant 3\"},P5iLqJPfj:{\"data-framer-name\":\"Only\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w8hzey-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZZqiEwEKH-container\",nodeId:\"ZZqiEwEKH\",rendersWithMotion:true,scopeId:\"mEwy5icUT\",children:/*#__PURE__*/_jsx(Phosphor,{color:XuXIdDx0B,height:\"100%\",iconSearch:\"money\",iconSelection:Jh10lTWIl,id:\"ZZqiEwEKH\",layoutId:\"ZZqiEwEKH\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-Y6QJTLWlg-mEwy5icUT))\"},children:\"Generate\"})}),className:\"framer-16v5fzc\",fonts:[\"FS;Montserrat-medium\"],layoutDependency:layoutDependency,layoutId:\"rOugYhDwK\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-Y6QJTLWlg-mEwy5icUT)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-Y6QJTLWlg-mEwy5icUT\":Y6QJTLWlg},text:tehYgz0M0,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bt8hk6\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"BTC9K4Awx\",style:{backgroundColor:XuXIdDx0B,borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.1},variants:{igY9ErDLb:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,opacity:.5},P5iLqJPfj:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rse1x.framer-1y9d8zl, .framer-rse1x .framer-1y9d8zl { display: block; }\",\".framer-rse1x.framer-rm1bos { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 8px 6px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-rse1x .framer-1w8hzey-container { flex: none; height: 20px; position: relative; width: 20px; z-index: 2; }\",\".framer-rse1x .framer-16v5fzc { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-rse1x .framer-bt8hk6 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rse1x.framer-rm1bos { gap: 0px; } .framer-rse1x.framer-rm1bos > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-rse1x.framer-rm1bos > :first-child { margin-left: 0px; } .framer-rse1x.framer-rm1bos > :last-child { margin-right: 0px; } }\",\".framer-rse1x.framer-v-11acwdz.framer-rm1bos, .framer-rse1x.framer-v-150035n.framer-rm1bos { padding: 6px 12px 6px 12px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 109\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"P5iLqJPfj\":{\"layout\":[\"auto\",\"auto\"]},\"igY9ErDLb\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"XuXIdDx0B\":\"color\",\"tehYgz0M0\":\"title\",\"Jh10lTWIl\":\"icon\",\"Y6QJTLWlg\":\"textColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramermEwy5icUT=withCSS(Component,css,\"framer-rse1x\");export default FramermEwy5icUT;FramermEwy5icUT.displayName=\"Badge\";FramermEwy5icUT.defaultProps={height:32,width:109};addPropertyControls(FramermEwy5icUT,{variant:{options:[\"WhQl_pUNf\",\"P5iLqJPfj\",\"igY9ErDLb\"],optionTitles:[\"Withicon\",\"Only\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},XuXIdDx0B:{defaultValue:\"var(--token-82c171b9-bd6f-4ae6-804b-e2ed453c267d, rgb(0, 0, 0))\",title:\"Color\",type:ControlType.Color},tehYgz0M0:{defaultValue:\"Generate\",displayTextArea:false,title:\"Title\",type:ControlType.String},Jh10lTWIl:Phosphor1Controls?.[\"iconSelection\"]&&{...Phosphor1Controls[\"iconSelection\"],defaultValue:\"MagicWand\",description:undefined,hidden:undefined,title:\"Icon\"},Y6QJTLWlg:{defaultValue:\"rgb(0, 0, 0)\",title:\"Text Color\",type:ControlType.Color}});addFonts(FramermEwy5icUT,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/G3U4AIP7I5YYMBY4PZ5BNYEWWVH7G7QB/WED2HATCWTE6B4XVIFFTI3EALCE4D6PD/GDZ4LVIJF6WODYKVZK6E2737DCDQPEMZ.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermEwy5icUT\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"P5iLqJPfj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"igY9ErDLb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"32\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"XuXIdDx0B\\\":\\\"color\\\",\\\"tehYgz0M0\\\":\\\"title\\\",\\\"Jh10lTWIl\\\":\\\"icon\\\",\\\"Y6QJTLWlg\\\":\\\"textColor\\\"}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"109\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mEwy5icUT.map", "// Generated by Framer (4e800ba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AnimatedNumberCounter from\"https://framerusercontent.com/modules/fONf9xpEnRB5fhZ36jxV/PFQw4hQn5StRPC8BS3iZ/NumberAnimator.js\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";import*as componentPresets from\"https://framerusercontent.com/modules/XN2zEjHSa5biZ1Du94dg/IQXj6wrlVeRhmUACwBAX/componentPresets.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/g5HIMAbOrNzyYTgwE9U5/G6xYpoJbn9I61YekLjRc/dvBqm_Jge.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/13rvRqWHDD826x8OxK2m/jLg1qqrBkGj2emcNohdC/fTHzh0Ra8.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/NgYZnsZEcI6c5DhxzqYO/kgL1SvbMAZCZTZYF6Tr8/fuvOlPwyM.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/Kb5nlSWtGab0c1r3XuB2/WhdN3ejmT13sAwbZ0XB5/g6kWsyhFo.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/SZOL8CVValnXXNkCy72m/zVJeIsyCu664cXOu4N9r/kfAVS7sFs.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/sY6AuQ1aqkyOuaaKTlWq/VwknNlwwpbBG0cmIYXdF/lPzaQK1PC.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/z7ptfJxDbrV9luhSg3nC/Jx8dgV2ZNFjqy0J5QHHM/Ly5gBllss.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/Utek6WAPEXWDgCvTRjpt/hxENcRXh7cDfbpYyc5X5/pohhPhSbK.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/mN6MRIQrTMiDlB4ptZRA/1BtwWRijCRpwsRrSvzVN/sX0Pw5lIn.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/d3qWJJOBYGaS6FFnVgCO/YZGMQJyHvu5aDjSv7yqt/UnyWXwvtl.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/yVm8qaOQMRqzxf1FWupF/YmxRAKDk7ePBmJQy3mHK/vZN6SbNut.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/FcGgM6WawjqQvzcPwQBc/mj8vjiHyhpetlWCwymyQ/y3yH7bhfP.js\";import Badge from\"https://framerusercontent.com/modules/UWHMHhkDjBn6aF5BAsAa/7fuQ6K3H8kGYXTST1IZC/mEwy5icUT.js\";const BadgeFonts=getFonts(Badge);const SVGFonts=getFonts(SVG);const AnimatedNumberCounterFonts=getFonts(AnimatedNumberCounter);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"zRHZsJTXq\",\"jb_yJ1qzo\",\"xv0znjPTY\"];const serializationHash=\"framer-zQ1RB\";const variantClassNames={jb_yJ1qzo:\"framer-v-fuhii1\",xv0znjPTY:\"framer-v-1w5z7c9\",zRHZsJTXq:\"framer-v-mp4bgf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition1={delay:0,duration:.8,ease:[.56,.02,.26,.99],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:30};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Case Outcome\":\"jb_yJ1qzo\",Default:\"zRHZsJTXq\",Static:\"xv0znjPTY\"};const getProps=({arrowColor,aVisible,badge,bodyContent,color,content,counterEnd,counterStart,height,id,vBody,visible,vPrice,width,...props})=>{return{...props,aDFJbaIdH:aVisible??props.aDFJbaIdH??true,gxQQZXklb:bodyContent??props.gxQQZXklb??\"Hello\",H1HFYSjmC:content??props.H1HFYSjmC??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Boost in task automation efficiency, optimizing workflows for all users.\"})}),h8zHjohw5:arrowColor??props.h8zHjohw5??\"var(--token-adcdd9a2-6d76-4dfc-ab18-2b0ac4fe280b, rgb(255, 120, 75))\",HwnHp8NY_:visible??props.HwnHp8NY_??true,K_LhrIcAU:color??props.K_LhrIcAU??\"var(--token-adcdd9a2-6d76-4dfc-ab18-2b0ac4fe280b, rgb(255, 120, 75))\",O0DVExcBp:counterStart??props.O0DVExcBp??8e7,PwvAiBAMs:badge??props.PwvAiBAMs??\"Performance Increase:\",u_o_jLybl:vPrice??props.u_o_jLybl??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"zRHZsJTXq\",xuibus4Xd:counterEnd??props.xuibus4Xd??100,ykjA45gqL:vBody??props.ykjA45gqL??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,PwvAiBAMs,K_LhrIcAU,HwnHp8NY_,xuibus4Xd,O0DVExcBp,h8zHjohw5,aDFJbaIdH,u_o_jLybl,ykjA45gqL,gxQQZXklb,H1HFYSjmC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zRHZsJTXq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=value=>{if([\"jb_yJ1qzo\",\"xv0znjPTY\"].includes(baseVariant))return false;return value;};const isDisplayed1=()=>{if(baseVariant===\"jb_yJ1qzo\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"xv0znjPTY\")return false;return true;};const isDisplayed3=value=>{if([\"jb_yJ1qzo\",\"xv0znjPTY\"].includes(baseVariant))return value;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-mp4bgf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"zRHZsJTXq\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-09f133ed-0d43-429a-a52e-79336c0fbca1, rgb(244, 244, 250))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-552f9c26-50ff-4530-9984-a5ff5918a4af, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({jb_yJ1qzo:{\"data-framer-name\":\"Case Outcome\"},xv0znjPTY:{\"data-framer-name\":\"Static\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lyzkk6\",layoutDependency:layoutDependency,layoutId:\"WyKrnwZHk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+24+0+0,...addPropertyOverrides({jb_yJ1qzo:{y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-376)/2+0+0)+0},xv0znjPTY:{y:(componentViewport?.y||0)+24+(((componentViewport?.height||200)-48-216)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ts3ggm-container\",layoutDependency:layoutDependency,layoutId:\"YHnJzyQ9g-container\",nodeId:\"YHnJzyQ9g\",rendersWithMotion:true,scopeId:\"Q80x6_CqA\",children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"YHnJzyQ9g\",Jh10lTWIl:\"MagicWand\",layoutId:\"YHnJzyQ9g\",tehYgz0M0:PwvAiBAMs,variant:\"P5iLqJPfj\",width:\"100%\",XuXIdDx0B:K_LhrIcAU,Y6QJTLWlg:\"rgb(0, 0, 0)\"})})}),isDisplayed(aDFJbaIdH)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oovcuu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"a5Uc3T7Z4-container\",nodeId:\"a5Uc3T7Z4\",rendersWithMotion:true,scopeId:\"Q80x6_CqA\",children:/*#__PURE__*/_jsx(SVG,{customColor:h8zHjohw5,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"74\" height=\"74\" viewBox=\"0 0 74 74\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.24596 0.0958366L73.9648 0.0956181L73.9651 73.815L64.228 73.815L64.2275 16.7179L7.63624 73.814L0.246016 66.2588L57.3427 9.83315L0.245876 9.83284L0.24596 0.0958366Z\" fill=\"black\"/> </svg>',description:\"\",height:\"100%\",id:\"a5Uc3T7Z4\",layoutId:\"a5Uc3T7Z4\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})})]}),u_o_jLybl&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qsujzj\",layoutDependency:layoutDependency,layoutId:\"XmS5JlFQx\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.1em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8eaee29-3a88-494d-bfb6-7cfcc37fe43a, rgb(32, 35, 58)))\"},children:\"+\"})}),className:\"framer-bu8klz\",fonts:[\"FS;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"Ks84ULiux\",style:{\"--extracted-r6o4lv\":\"var(--token-b8eaee29-3a88-494d-bfb6-7cfcc37fe43a, rgb(32, 35, 58))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),HwnHp8NY_&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1saWdodA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.1em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8eaee29-3a88-494d-bfb6-7cfcc37fe43a, rgb(32, 35, 58)))\"},children:\"\u20AC\"})}),className:\"framer-1eovxs6\",fonts:[\"FS;Montserrat-light\"],layoutDependency:layoutDependency,layoutId:\"nEbrc8BeG\",style:{\"--extracted-r6o4lv\":\"var(--token-b8eaee29-3a88-494d-bfb6-7cfcc37fe43a, rgb(32, 35, 58))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jb_yJ1qzo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.1em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8eaee29-3a88-494d-bfb6-7cfcc37fe43a, rgb(32, 35, 58)))\"},children:\"%\"})}),fonts:[\"FS;Montserrat-medium\"]},xv0znjPTY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8eaee29-3a88-494d-bfb6-7cfcc37fe43a, rgb(32, 35, 58)))\"},children:\"Hello\"})}),fonts:[\"FS;Montserrat-regular\"],text:gxQQZXklb}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2gx70p-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Y6E9VBwMk-container\",nodeId:\"Y6E9VBwMk\",rendersWithMotion:true,scopeId:\"Q80x6_CqA\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:true,transition:{damping:60,delay:1,mass:1,stiffness:500,type:\"spring\"},trigger:\"layerInView\"},commas:true,decimals:0,display:{monospace:false,slashedZeros:false},end:xuibus4Xd,font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"32px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:{angle:180,color:\"rgb(0, 0, 0)\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},height:\"100%\",id:\"Y6E9VBwMk\",layoutId:\"Y6E9VBwMk\",prefix:\"\",start:O0DVExcBp,suffix:\"\",textSelect:true,width:\"100%\",...addPropertyOverrides({jb_yJ1qzo:{font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"40px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"}}},baseVariant,gestureVariant)})})})]}),isDisplayed3(ykjA45gqL)&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"iHOaZKSfw\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"FlDri2hkd\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:H1HFYSjmC,className:\"framer-1jgk2i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Myp0z7FTy\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-16rjzz8\",blockquote:\"framer-styles-preset-36n0c4\",code:\"framer-styles-preset-1ci56ay\",h1:\"framer-styles-preset-1p9q478\",h2:\"framer-styles-preset-t6gk0y\",h3:\"framer-styles-preset-e09zne\",h4:\"framer-styles-preset-1xz08pr\",h5:\"framer-styles-preset-buj66a\",h6:\"framer-styles-preset-14as1wg\",img:\"framer-styles-preset-14qu4rc\",p:\"framer-styles-preset-1v8a65q\",table:\"framer-styles-preset-uwz01b\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zQ1RB.framer-7qdxfo, .framer-zQ1RB .framer-7qdxfo { display: block; }\",\".framer-zQ1RB.framer-mp4bgf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 384px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zQ1RB .framer-1lyzkk6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zQ1RB .framer-1ts3ggm-container, .framer-zQ1RB .framer-2gx70p-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-zQ1RB .framer-1oovcuu-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-zQ1RB .framer-qsujzj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zQ1RB .framer-bu8klz, .framer-zQ1RB .framer-1eovxs6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zQ1RB .framer-1jgk2i { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zQ1RB.framer-mp4bgf, .framer-zQ1RB .framer-qsujzj { gap: 0px; } .framer-zQ1RB.framer-mp4bgf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-zQ1RB.framer-mp4bgf > :first-child { margin-top: 0px; } .framer-zQ1RB.framer-mp4bgf > :last-child { margin-bottom: 0px; } .framer-zQ1RB .framer-qsujzj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-zQ1RB .framer-qsujzj > :first-child { margin-left: 0px; } .framer-zQ1RB .framer-qsujzj > :last-child { margin-right: 0px; } }\",\".framer-zQ1RB.framer-v-fuhii1.framer-mp4bgf, .framer-zQ1RB.framer-v-1w5z7c9.framer-mp4bgf { align-content: center; align-items: center; gap: 12px; justify-content: center; }\",\".framer-zQ1RB.framer-v-fuhii1 .framer-qsujzj, .framer-zQ1RB.framer-v-1w5z7c9 .framer-qsujzj { gap: 8px; padding: 12px; }\",\".framer-zQ1RB.framer-v-fuhii1 .framer-bu8klz { order: 0; }\",\".framer-zQ1RB.framer-v-fuhii1 .framer-1eovxs6, .framer-zQ1RB.framer-v-1w5z7c9 .framer-1eovxs6 { order: 2; }\",\".framer-zQ1RB.framer-v-fuhii1 .framer-2gx70p-container { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zQ1RB.framer-v-fuhii1.framer-mp4bgf, .framer-zQ1RB.framer-v-fuhii1 .framer-qsujzj { gap: 0px; } .framer-zQ1RB.framer-v-fuhii1.framer-mp4bgf > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-zQ1RB.framer-v-fuhii1.framer-mp4bgf > :first-child { margin-top: 0px; } .framer-zQ1RB.framer-v-fuhii1.framer-mp4bgf > :last-child { margin-bottom: 0px; } .framer-zQ1RB.framer-v-fuhii1 .framer-qsujzj > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-zQ1RB.framer-v-fuhii1 .framer-qsujzj > :first-child { margin-left: 0px; } .framer-zQ1RB.framer-v-fuhii1 .framer-qsujzj > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zQ1RB.framer-v-1w5z7c9.framer-mp4bgf, .framer-zQ1RB.framer-v-1w5z7c9 .framer-qsujzj { gap: 0px; } .framer-zQ1RB.framer-v-1w5z7c9.framer-mp4bgf > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-zQ1RB.framer-v-1w5z7c9.framer-mp4bgf > :first-child { margin-top: 0px; } .framer-zQ1RB.framer-v-1w5z7c9.framer-mp4bgf > :last-child { margin-bottom: 0px; } .framer-zQ1RB.framer-v-1w5z7c9 .framer-qsujzj > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-zQ1RB.framer-v-1w5z7c9 .framer-qsujzj > :first-child { margin-left: 0px; } .framer-zQ1RB.framer-v-1w5z7c9 .framer-qsujzj > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-zQ1RB[data-border=\"true\"]::after, .framer-zQ1RB [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 187\n * @framerIntrinsicWidth 384\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jb_yJ1qzo\":{\"layout\":[\"fixed\",\"auto\"]},\"xv0znjPTY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"PwvAiBAMs\":\"badge\",\"K_LhrIcAU\":\"color\",\"HwnHp8NY_\":\"visible\",\"xuibus4Xd\":\"counterEnd\",\"O0DVExcBp\":\"counterStart\",\"h8zHjohw5\":\"arrowColor\",\"aDFJbaIdH\":\"aVisible\",\"u_o_jLybl\":\"vPrice\",\"ykjA45gqL\":\"vBody\",\"gxQQZXklb\":\"bodyContent\",\"H1HFYSjmC\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerQ80x6_CqA=withCSS(Component,css,\"framer-zQ1RB\");export default FramerQ80x6_CqA;FramerQ80x6_CqA.displayName=\"Stat item\";FramerQ80x6_CqA.defaultProps={height:187,width:384};addPropertyControls(FramerQ80x6_CqA,{variant:{options:[\"zRHZsJTXq\",\"jb_yJ1qzo\",\"xv0znjPTY\"],optionTitles:[\"Default\",\"Case Outcome\",\"Static\"],title:\"Variant\",type:ControlType.Enum},PwvAiBAMs:{defaultValue:\"Performance Increase:\",displayTextArea:false,title:\"Badge\",type:ControlType.String},K_LhrIcAU:{defaultValue:'var(--token-adcdd9a2-6d76-4dfc-ab18-2b0ac4fe280b, rgb(255, 120, 75)) /* {\"name\":\"Orange\"} */',title:\"Color\",type:ControlType.Color},HwnHp8NY_:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},xuibus4Xd:{defaultValue:100,title:\"Counter end\",type:ControlType.Number},O0DVExcBp:{defaultValue:8e7,title:\"Counter Start\",type:ControlType.Number},h8zHjohw5:{defaultValue:'var(--token-adcdd9a2-6d76-4dfc-ab18-2b0ac4fe280b, rgb(255, 120, 75)) /* {\"name\":\"Orange\"} */',title:\"Arrow Color\",type:ControlType.Color},aDFJbaIdH:{defaultValue:true,title:\"A. Visible\",type:ControlType.Boolean},u_o_jLybl:{defaultValue:true,title:\"V. Price\",type:ControlType.Boolean},ykjA45gqL:{defaultValue:true,title:\"V: Body\",type:ControlType.Boolean},gxQQZXklb:{defaultValue:\"Hello\",displayTextArea:false,title:\"Body Content\",type:ControlType.String},H1HFYSjmC:{defaultValue:\"<p>Boost in task automation efficiency, optimizing workflows for all users.</p>\",title:\"Content\",type:ControlType.RichText}});addFonts(FramerQ80x6_CqA,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JBAX5LNUCKEVXKRK3ARXNMEMQYQYP6WR/P3OTF2DNFMTAXKSAW4JNN6DPWEDDI5MN/4IO2HK2EZ7GHCZN7I3I4WKBAO7IH72SS.woff2\",weight:\"300\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/G3U4AIP7I5YYMBY4PZ5BNYEWWVH7G7QB/WED2HATCWTE6B4XVIFFTI3EALCE4D6PD/GDZ4LVIJF6WODYKVZK6E2737DCDQPEMZ.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...BadgeFonts,...SVGFonts,...AnimatedNumberCounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...componentPresets.fonts?.[\"FlDri2hkd\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"FlDri2hkd\"]):[],...componentPresets.fonts?.[\"iHOaZKSfw\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"iHOaZKSfw\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQ80x6_CqA\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"384\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"187\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jb_yJ1qzo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xv0znjPTY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"PwvAiBAMs\\\":\\\"badge\\\",\\\"K_LhrIcAU\\\":\\\"color\\\",\\\"HwnHp8NY_\\\":\\\"visible\\\",\\\"xuibus4Xd\\\":\\\"counterEnd\\\",\\\"O0DVExcBp\\\":\\\"counterStart\\\",\\\"h8zHjohw5\\\":\\\"arrowColor\\\",\\\"aDFJbaIdH\\\":\\\"aVisible\\\",\\\"u_o_jLybl\\\":\\\"vPrice\\\",\\\"ykjA45gqL\\\":\\\"vBody\\\",\\\"gxQQZXklb\\\":\\\"bodyContent\\\",\\\"H1HFYSjmC\\\":\\\"content\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["NumberAnimator", "props", "ref", "pe", "isInView", "useInView", "numberText", "setNumberText", "ye", "start", "end", "decimals", "commas", "rounding", "fontColor", "animation", "currentAnimation", "setCurrentAnimation", "isCanvas", "RenderTarget", "formatNumber", "value", "numberString", "runAnimation", "animate", "latest", "ue", "u", "motion", "addPropertyControls", "ControlType", "SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "Phosphor1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "icon", "id", "textColor", "title", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "XuXIdDx0B", "tehYgz0M0", "Jh10lTWIl", "Y6QJTLWlg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramermEwy5icUT", "withCSS", "mEwy5icUT_default", "addPropertyControls", "ControlType", "addFonts", "BadgeFonts", "getFonts", "mEwy5icUT_default", "SVGFonts", "SVG_Prod_default", "AnimatedNumberCounterFonts", "NumberAnimator", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "arrowColor", "aVisible", "badge", "bodyContent", "color", "content", "counterEnd", "counterStart", "height", "id", "vBody", "visible", "vPrice", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "PwvAiBAMs", "K_LhrIcAU", "HwnHp8NY_", "xuibus4Xd", "O0DVExcBp", "h8zHjohw5", "aDFJbaIdH", "u_o_jLybl", "ykjA45gqL", "gxQQZXklb", "H1HFYSjmC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "ComponentPresetsProvider", "css", "FramerQ80x6_CqA", "withCSS", "Q80x6_CqA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset"]
}
