{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lHtQW691CaawQrpxF0jw/2EULFgmGgwoL320F0w07/Counter.js", "ssg:https://framerusercontent.com/modules/qiQJdPK1M2JVluYhS1aT/bXTTYYts3CsypLPzVik3/EN8TiKyXy.js", "ssg:https://framerusercontent.com/modules/sMz9h3JdeUttLIu3HvpW/yIjrmJburQ5pPdZdXCSz/ylBNSDbKt.js", "ssg:https://ga.jspm.io/npm:@studio-freight/lenis@1.0.29/dist/lenis.modern.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js", "ssg:https://framerusercontent.com/modules/esRiozRDXsWpCSNPuPT2/n6ljEfYxWW2Amyo6oGML/EN8TiKyXy.js", "ssg:https://framerusercontent.com/modules/upPc8pmM6an9MadiLYW6/CQyIHNmY91NmSmyoxgC9/b17WYBX5G.js", "ssg:https://framerusercontent.com/modules/YvOF1o3l7AVcpEQC8IrY/L0xwikuZCojF32vDn9uQ/CMXrP5Gmq.js", "ssg:https://framerusercontent.com/modules/ZxkTxiHEGy6Ql007Pdew/QpNStXtqXyF0hwJd4sfZ/Dd0AITqZJ.js", "ssg:https://framerusercontent.com/modules/qpaSww9x1NQKSD1jOXfK/tmPV1d8cdfyWkeDmsT4e/MvUPJh9PD.js", "ssg:https://framerusercontent.com/modules/niMAOnk3DBgM3oFDU49Y/jCmYhy9lSF1vdo898CtO/nhYYwaDnG.js", "ssg:https://framerusercontent.com/modules/qOFoQNLIz85RanJwYJVD/h6gp8wqm6mcIsIcs0pDx/NrlfR50qS.js", "ssg:https://framerusercontent.com/modules/Ni5DpDkYW5b2Yu7vpBRM/Oty6j6XyKFI5mAp89hvl/PhNvW8b5O.js", "ssg:https://framerusercontent.com/modules/mu8yUnwOf9rdIzoXVkRF/feiRhpR364zYHql9l0Iw/rbPG_0ySu.js", "ssg:https://framerusercontent.com/modules/Mj6aAPZV6LBlHQhs5buZ/R8FlUNnVxdJ43FvAPvUz/rj5LkR8qx.js", "ssg:https://framerusercontent.com/modules/p1yGpBs4iLqxa1dkj21B/CimUsopgAJMjgYMjfdtV/Vdw_88OOg.js", "ssg:https://framerusercontent.com/modules/ziU2oZBWJvpA1QhZ6KlN/eopJc4RSkBXSFqL9mATg/MssRQzrc9.js"],
  "sourcesContent": ["import{jsxs as _jsxs}from\"react/jsx-runtime\";import React,{useState,useEffect}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const NumberCounterStyles={display:\"flex\",justifyContent:\"left\",alignItems:\"left\"};export function NumberCounter(props){const{startNumber,endNumber,speed,prefix,suffix,loop,decimalSeparator,fontSize,font,fontColor}=props;const[count,setCount]=useState(startNumber);const[isVisible,setIsVisible]=useState(false);const ref=React.useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(ref.current){observer.observe(ref.current);}return()=>{if(ref.current){observer.unobserve(ref.current);}};},[]);useEffect(()=>{if(isVisible&&startNumber!==endNumber){const intervalId=setInterval(()=>{if(count<endNumber){setCount(prevCount=>prevCount+1);}else if(loop){setCount(startNumber);}},speed);return()=>{clearInterval(intervalId);};}},[count,startNumber,endNumber,loop,isVisible]);const formatCount=number=>{if(decimalSeparator===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparator===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(0);}};return /*#__PURE__*/_jsxs(motion.div,{ref:ref,style:{...NumberCounterStyles,gap:`${fontSize/2}px`,flexDirection:\"row\",alignItems:\"left\",fontSize:`${fontSize}px`,fontFamily:font.fontFamily,fontWeight:font.fontWeight,color:fontColor},children:[prefix,formatCount(count),suffix]});}NumberCounter.defaultProps={startNumber:0,endNumber:10,speed:100,prefix:\"\",suffix:\"\",loop:false,decimalSeparator:\"comma\",fontSize:16,font:{fontFamily:\"Arial\",fontWeight:400,systemFont:true},fontColor:\"#707070\"};addPropertyControls(NumberCounter,{font:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Arial\",fontWeight:400,systemFont:true}},fontSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:200,step:1},fontColor:{type:ControlType.Color,title:\"Font Color\"},startNumber:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},endNumber:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparator:{type:ControlType.Enum,title:\"Decimal Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Period (1.000)\",\"None\"]},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:1e3,step:10},prefix:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},suffix:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"NumberCounter\":{\"type\":\"reactComponent\",\"name\":\"NumberCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"BdPuKxRee\"];const serializationHash=\"framer-SU58n\";const variantClassNames={BdPuKxRee:\"framer-v-1134lxf\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 getProps=({avatar,height,id,width,...props})=>{return{...props,cpsLDpTtE:avatar!==null&&avatar!==void 0?avatar:props.cpsLDpTtE};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,cpsLDpTtE,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BdPuKxRee\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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__*/_jsx(Image,{...restProps,background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(cpsLDpTtE)},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1134lxf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"BdPuKxRee\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SU58n.framer-u2quxo, .framer-SU58n .framer-u2quxo { display: block; }\",\".framer-SU58n.framer-1134lxf { height: 40px; overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",'.framer-SU58n[data-border=\"true\"]::after, .framer-SU58n [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 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cpsLDpTtE\":\"avatar\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEN8TiKyXy=withCSS(Component,css,\"framer-SU58n\");export default FramerEN8TiKyXy;FramerEN8TiKyXy.displayName=\"Elements/Avatar\";FramerEN8TiKyXy.defaultProps={height:40,width:40};addPropertyControls(FramerEN8TiKyXy,{cpsLDpTtE:{title:\"Avatar\",type:ControlType.ResponsiveImage}});addFonts(FramerEN8TiKyXy,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEN8TiKyXy\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"cpsLDpTtE\\\":\\\"avatar\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EN8TiKyXy.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-yTjYl\";const variantClassNames={fjy_K1peM:\"framer-v-ad8t1v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:320,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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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 getProps=({badge1,badge2,description,height,id,image,title,width,...props})=>{return{...props,AHW2bVdJO:description??props.AHW2bVdJO??\"47% increase in new customers.\",QUIw8Gp80:image??props.QUIw8Gp80,tvKFDMXb4:badge1??props.tvKFDMXb4??\"65% Increase in CTR\",v_pYW9mfT:title??props.v_pYW9mfT??\"Nostalgie\",XIsP8f0uD:badge2??props.XIsP8f0uD??\"37% Reduction in CPA\"};};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,QUIw8Gp80,v_pYW9mfT,AHW2bVdJO,tvKFDMXb4,XIsP8f0uD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"fjy_K1peM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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-ad8t1v\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"fjy_K1peM\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7728,intrinsicWidth:5152,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:7728,pixelWidth:5152,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(QUIw8Gp80)},className:\"framer-5br9mz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"UruxEdKJn\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7zmwr5\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"PdKvT0_kD\",style:{backgroundColor:\"rgb(0, 0, 0)\",mask:\"linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%) add\",WebkitMask:\"linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%) add\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15esv33\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"RFMVElWw1\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n2gmn0\",\"data-framer-name\":\"Information\",layoutDependency:layoutDependency,layoutId:\"xnsbsVL6R\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5471e7f5-6bb4-4628-ab95-203ca9bca0a3, rgb(255, 255, 255)))\"},children:\"Nostalgie\"})}),className:\"framer-aj6tau\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"MytlObwQ3\",style:{\"--extracted-r6o4lv\":\"var(--token-5471e7f5-6bb4-4628-ab95-203ca9bca0a3, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:v_pYW9mfT,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5471e7f5-6bb4-4628-ab95-203ca9bca0a3, rgb(255, 255, 255)))\"},children:\"47% increase in new customers.\"})}),className:\"framer-1hh3oan\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"aQUkBukPX\",style:{\"--extracted-r6o4lv\":\"var(--token-5471e7f5-6bb4-4628-ab95-203ca9bca0a3, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AHW2bVdJO,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7ag6rf\",\"data-framer-name\":\"Badges\",layoutDependency:layoutDependency,layoutId:\"WYWPdQjiF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8oaigc\",\"data-border\":true,\"data-framer-name\":\"Elements/Badge\",layoutDependency:layoutDependency,layoutId:\"WsRoBJ_i1\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.12))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(13, 13, 13, 0.56)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"65% Increase in CTR\"})}),className:\"framer-4iq9qh\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"czeu4Fztj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:tvKFDMXb4,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nye5rs\",\"data-border\":true,\"data-framer-name\":\"Elements/Badge\",layoutDependency:layoutDependency,layoutId:\"xCXmzoCPk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.12))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(13, 13, 13, 0.56)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"37% Reduction in CPA\"})}),className:\"framer-6u3elb\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"GJGB7UYoC\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:XIsP8f0uD,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yTjYl.framer-1oi74pm, .framer-yTjYl .framer-1oi74pm { display: block; }\",\".framer-yTjYl.framer-ad8t1v { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 380px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yTjYl .framer-5br9mz { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yTjYl .framer-7zmwr5 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-yTjYl .framer-15esv33 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 32px; position: absolute; width: 100%; z-index: 2; }\",\".framer-yTjYl .framer-1n2gmn0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yTjYl .framer-aj6tau, .framer-yTjYl .framer-1hh3oan { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yTjYl .framer-7ag6rf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yTjYl .framer-8oaigc, .framer-yTjYl .framer-nye5rs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 12px 8px 12px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yTjYl .framer-4iq9qh, .framer-yTjYl .framer-6u3elb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yTjYl.framer-ad8t1v, .framer-yTjYl .framer-15esv33, .framer-yTjYl .framer-1n2gmn0, .framer-yTjYl .framer-7ag6rf, .framer-yTjYl .framer-8oaigc, .framer-yTjYl .framer-nye5rs { gap: 0px; } .framer-yTjYl.framer-ad8t1v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yTjYl.framer-ad8t1v > :first-child, .framer-yTjYl .framer-15esv33 > :first-child, .framer-yTjYl .framer-1n2gmn0 > :first-child { margin-top: 0px; } .framer-yTjYl.framer-ad8t1v > :last-child, .framer-yTjYl .framer-15esv33 > :last-child, .framer-yTjYl .framer-1n2gmn0 > :last-child { margin-bottom: 0px; } .framer-yTjYl .framer-15esv33 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-yTjYl .framer-1n2gmn0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-yTjYl .framer-7ag6rf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yTjYl .framer-7ag6rf > :first-child, .framer-yTjYl .framer-8oaigc > :first-child, .framer-yTjYl .framer-nye5rs > :first-child { margin-left: 0px; } .framer-yTjYl .framer-7ag6rf > :last-child, .framer-yTjYl .framer-8oaigc > :last-child, .framer-yTjYl .framer-nye5rs > :last-child { margin-right: 0px; } .framer-yTjYl .framer-8oaigc > *, .framer-yTjYl .framer-nye5rs > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",'.framer-yTjYl[data-border=\"true\"]::after, .framer-yTjYl [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 400\n * @framerIntrinsicWidth 380\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"QUIw8Gp80\":\"image\",\"v_pYW9mfT\":\"title\",\"AHW2bVdJO\":\"description\",\"tvKFDMXb4\":\"badge1\",\"XIsP8f0uD\":\"badge2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerylBNSDbKt=withCSS(Component,css,\"framer-yTjYl\");export default FramerylBNSDbKt;FramerylBNSDbKt.displayName=\"Cards/Results 2\";FramerylBNSDbKt.defaultProps={height:400,width:380};addPropertyControls(FramerylBNSDbKt,{QUIw8Gp80:{title:\"Image\",type:ControlType.ResponsiveImage},v_pYW9mfT:{defaultValue:\"Nostalgie\",displayTextArea:false,title:\"Title\",type:ControlType.String},AHW2bVdJO:{defaultValue:\"47% increase in new customers.\",displayTextArea:false,title:\"Description\",type:ControlType.String},tvKFDMXb4:{defaultValue:\"65% Increase in CTR\",displayTextArea:false,title:\"Badge 1\",type:ControlType.String},XIsP8f0uD:{defaultValue:\"37% Reduction in CPA\",displayTextArea:false,title:\"Badge 2\",type:ControlType.String}});addFonts(FramerylBNSDbKt,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerylBNSDbKt\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"QUIw8Gp80\\\":\\\"image\\\",\\\"v_pYW9mfT\\\":\\\"title\\\",\\\"AHW2bVdJO\\\":\\\"description\\\",\\\"tvKFDMXb4\\\":\\\"badge1\\\",\\\"XIsP8f0uD\\\":\\\"badge2\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"380\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ylBNSDbKt.map", "function t(){return t=Object.assign?Object.assign.bind():function(r){for(var h=1;h<arguments.length;h++){var a=arguments[h];for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&(r[c]=a[c])}return r},t.apply(this,arguments)}function e(r,h,a){return Math.max(r,Math.min(h,a))}class i{advance(r){var h;if(!this.isRunning)return;let a=!1;if(this.lerp)this.value=(c=this.value,u=this.to,(1-(p=1-Math.exp(-60*this.lerp*r)))*c+p*u),Math.round(this.value)===this.to&&(this.value=this.to,a=!0);else{this.currentTime+=r;const h=e(0,this.currentTime/this.duration,1);a=h>=1;const c=a?1:this.easing(h);this.value=this.from+(this.to-this.from)*c}var c,u,p;null==(h=this.onUpdate)||h.call(this,this.value,a),a&&this.stop()}stop(){this.isRunning=!1}fromTo(r,h,{lerp:a=.1,duration:c=1,easing:u=(r=>r),onStart:p,onUpdate:d}){this.from=this.value=r,this.to=h,this.lerp=a,this.duration=c,this.easing=u,this.currentTime=0,this.isRunning=!0,null==p||p(),this.onUpdate=d}}class s{constructor({wrapper:r,content:h,autoResize:a=!0}={}){if(this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth},this.wrapper=r,this.content=h,a){const r=function(r,h){let a;return function(){let h=arguments,c=this;clearTimeout(a),a=setTimeout((function(){r.apply(c,h)}),250)}}(this.resize);this.wrapper!==window&&(this.wrapperResizeObserver=new ResizeObserver(r),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(r),this.contentResizeObserver.observe(this.content)}this.resize()}destroy(){var r,h;null==(r=this.wrapperResizeObserver)||r.disconnect(),null==(h=this.contentResizeObserver)||h.disconnect()}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class o{constructor(){this.events={}}emit(r,...h){let a=this.events[r]||[];for(let r=0,c=a.length;r<c;r++)a[r](...h)}on(r,h){var a;return(null==(a=this.events[r])?void 0:a.push(h))||(this.events[r]=[h]),()=>{var a;this.events[r]=null==(a=this.events[r])?void 0:a.filter((r=>h!==r))}}off(r,h){var a;this.events[r]=null==(a=this.events[r])?void 0:a.filter((r=>h!==r))}destroy(){this.events={}}}class n{constructor(r,{wheelMultiplier:h=1,touchMultiplier:a=2,normalizeWheel:c=!1}){this.onTouchStart=r=>{const{clientX:h,clientY:a}=r.targetTouches?r.targetTouches[0]:r;this.touchStart.x=h,this.touchStart.y=a,this.lastDelta={x:0,y:0}},this.onTouchMove=r=>{const{clientX:h,clientY:a}=r.targetTouches?r.targetTouches[0]:r,c=-(h-this.touchStart.x)*this.touchMultiplier,u=-(a-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=h,this.touchStart.y=a,this.lastDelta={x:c,y:u},this.emitter.emit(\"scroll\",{deltaX:c,deltaY:u,event:r})},this.onTouchEnd=r=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:r})},this.onWheel=r=>{let{deltaX:h,deltaY:a}=r;this.normalizeWheel&&(h=e(-100,h,100),a=e(-100,a,100)),h*=this.wheelMultiplier,a*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:h,deltaY:a,event:r})},this.element=r,this.wheelMultiplier=h,this.touchMultiplier=a,this.normalizeWheel=c,this.touchStart={x:null,y:null},this.emitter=new o,this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(r,h){return this.emitter.on(r,h)}destroy(){this.emitter.destroy(),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}}class l{constructor({wrapper:r=window,content:h=document.documentElement,wheelEventsTarget:a=r,eventsTarget:c=a,smoothWheel:u=!0,smoothTouch:p=!1,syncTouch:d=!1,syncTouchLerp:m=.1,__iosNoInertiaSyncTouchLerp:v=.4,touchInertiaMultiplier:g=35,duration:S,easing:w=(r=>Math.min(1,1.001-Math.pow(2,-10*r))),lerp:f=!S&&.1,infinite:y=!1,orientation:T=\"vertical\",gestureOrientation:z=\"vertical\",touchMultiplier:_=1,wheelMultiplier:M=1,normalizeWheel:L=!1,autoResize:b=!0}={}){this.onVirtualScroll=({deltaX:r,deltaY:h,event:a})=>{if(a.ctrlKey)return;const c=a.type.includes(\"touch\"),u=a.type.includes(\"wheel\");if(\"both\"===this.options.gestureOrientation&&0===r&&0===h||\"vertical\"===this.options.gestureOrientation&&0===h||\"horizontal\"===this.options.gestureOrientation&&0===r||c&&\"vertical\"===this.options.gestureOrientation&&0===this.scroll&&!this.options.infinite&&h<=0)return;let p=a.composedPath();if(p=p.slice(0,p.indexOf(this.rootElement)),p.find((r=>{var h;return(null==r.hasAttribute?void 0:r.hasAttribute(\"data-lenis-prevent\"))||c&&(null==r.hasAttribute?void 0:r.hasAttribute(\"data-lenis-prevent-touch\"))||u&&(null==r.hasAttribute?void 0:r.hasAttribute(\"data-lenis-prevent-wheel\"))||(null==(h=r.classList)?void 0:h.contains(\"lenis\"))})))return;if(this.isStopped||this.isLocked)return void a.preventDefault();if(this.isSmooth=(this.options.smoothTouch||this.options.syncTouch)&&c||this.options.smoothWheel&&u,!this.isSmooth)return this.isScrolling=!1,void this.animate.stop();a.preventDefault();let d=h;\"both\"===this.options.gestureOrientation?d=Math.abs(h)>Math.abs(r)?h:r:\"horizontal\"===this.options.gestureOrientation&&(d=r);const m=c&&this.options.syncTouch,v=c&&\"touchend\"===a.type&&Math.abs(d)>1;v&&(d=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+d,t({programmatic:!1},m&&{lerp:v?this.syncTouchLerp:this.options.__iosNoInertiaSyncTouchLerp}))},this.onNativeScroll=()=>{if(!this.__preventNextScrollEvent&&!this.isScrolling){const r=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.direction=Math.sign(this.animatedScroll-r),this.emit()}},window.lenisVersion=\"1.0.29\",r!==document.documentElement&&r!==document.body||(r=window),this.options={wrapper:r,content:h,wheelEventsTarget:a,eventsTarget:c,smoothWheel:u,smoothTouch:p,syncTouch:d,syncTouchLerp:m,__iosNoInertiaSyncTouchLerp:v,touchInertiaMultiplier:g,duration:S,easing:w,lerp:f,infinite:y,gestureOrientation:z,orientation:T,touchMultiplier:_,wheelMultiplier:M,normalizeWheel:L,autoResize:b},this.animate=new i,this.emitter=new o,this.dimensions=new s({wrapper:r,content:h,autoResize:b}),this.toggleClass(\"lenis\",!0),this.velocity=0,this.isLocked=!1,this.isStopped=!1,this.isSmooth=d||u||p,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,{passive:!1}),this.virtualScroll=new n(c,{touchMultiplier:_,wheelMultiplier:M,normalizeWheel:L}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,{passive:!1}),this.virtualScroll.destroy(),this.dimensions.destroy(),this.toggleClass(\"lenis\",!1),this.toggleClass(\"lenis-smooth\",!1),this.toggleClass(\"lenis-scrolling\",!1),this.toggleClass(\"lenis-stopped\",!1),this.toggleClass(\"lenis-locked\",!1)}on(r,h){return this.emitter.on(r,h)}off(r,h){return this.emitter.off(r,h)}setScroll(r){this.isHorizontal?this.rootElement.scrollLeft=r:this.rootElement.scrollTop=r}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.animate.stop()}start(){this.isStopped=!1,this.reset()}stop(){this.isStopped=!0,this.animate.stop(),this.reset()}raf(r){const h=r-(this.time||r);this.time=r,this.animate.advance(.001*h)}scrollTo(r,{offset:h=0,immediate:a=!1,lock:c=!1,duration:u=this.options.duration,easing:p=this.options.easing,lerp:d=!u&&this.options.lerp,onComplete:m=null,force:v=!1,programmatic:g=!0}={}){if(!this.isStopped&&!this.isLocked||v){if([\"top\",\"left\",\"start\"].includes(r))r=0;else if([\"bottom\",\"right\",\"end\"].includes(r))r=this.limit;else{var S;let a;if(\"string\"==typeof r?a=document.querySelector(r):null!=(S=r)&&S.nodeType&&(a=r),a){if(this.options.wrapper!==window){const r=this.options.wrapper.getBoundingClientRect();h-=this.isHorizontal?r.left:r.top}const c=a.getBoundingClientRect();r=(this.isHorizontal?c.left:c.top)+this.animatedScroll}}if(\"number\"==typeof r){if(r+=h,r=Math.round(r),this.options.infinite?g&&(this.targetScroll=this.animatedScroll=this.scroll):r=e(0,r,this.limit),a)return this.animatedScroll=this.targetScroll=r,this.setScroll(this.scroll),this.reset(),void(null==m||m(this));if(!g){if(r===this.targetScroll)return;this.targetScroll=r}this.animate.fromTo(this.animatedScroll,r,{duration:u,easing:p,lerp:d,onStart:()=>{c&&(this.isLocked=!0),this.isScrolling=!0},onUpdate:(r,h)=>{this.isScrolling=!0,this.velocity=r-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=r,this.setScroll(this.scroll),g&&(this.targetScroll=r),h||this.emit(),h&&(this.reset(),this.emit(),null==m||m(this),this.__preventNextScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextScrollEvent})))}})}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?(this.animatedScroll%(r=this.limit)+r)%r:this.animatedScroll;var r}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isSmooth(){return this.__isSmooth}set isSmooth(r){this.__isSmooth!==r&&(this.__isSmooth=r,this.toggleClass(\"lenis-smooth\",r))}get isScrolling(){return this.__isScrolling}set isScrolling(r){this.__isScrolling!==r&&(this.__isScrolling=r,this.toggleClass(\"lenis-scrolling\",r))}get isStopped(){return this.__isStopped}set isStopped(r){this.__isStopped!==r&&(this.__isStopped=r,this.toggleClass(\"lenis-stopped\",r))}get isLocked(){return this.__isLocked}set isLocked(r){this.__isLocked!==r&&(this.__isLocked=r,this.toggleClass(\"lenis-locked\",r))}get className(){let r=\"lenis\";return this.isStopped&&(r+=\" lenis-stopped\"),this.isLocked&&(r+=\" lenis-locked\"),this.isScrolling&&(r+=\" lenis-scrolling\"),this.isSmooth&&(r+=\" lenis-smooth\"),r}toggleClass(r,h){this.rootElement.classList.toggle(r,h),this.emitter.emit(\"className change\",this)}}export{l as default};\n//# sourceMappingURL=lenis.modern.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"@studio-freight/lenis\";import{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);useEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const handleMutation=(mutationsList,observer)=>{for(const mutation of mutationsList){if(mutation.type===\"childList\"){const hasChildren=overlayElement.children.length>0;if(hasChildren){// Check if the html tag has the style \"overflow: hidden;\"\nconst htmlElement=document.documentElement;const computedStyle=window.getComputedStyle(htmlElement);const isOverflowHidden=computedStyle.getPropertyValue(\"overflow\")===\"hidden\";if(isOverflowHidden){lenis.current.stop();}else{lenis.current.start();}}else{lenis.current.start();}}}};const observer=new MutationObserver(handleMutation);const config={childList:true};observer.observe(overlayElement,config);return()=>observer.disconnect();}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{lenis.current.raf(time);requestAnimationFrame(raf);};requestAnimationFrame(raf);return()=>{lenis.current.destroy();lenis.current=null;};},[]);return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"style\",{children:`\n      html.lenis {\n        height: auto;\n      }\n\n      .lenis.lenis-smooth {\n        scroll-behavior: auto !important;\n      }\n\n      .lenis.lenis-smooth [data-lenis-prevent] {\n        overscroll-behavior: contain;\n      }\n\n      .lenis.lenis-stopped {\n        overflow: hidden;\n      }\n\n      .lenis.lenis-scrolling iframe {\n        pointer-events: none;\n      }\n    `})});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Smooth_Scroll.map", "// Generated by Framer (e8e43ad)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"BdPuKxRee\"];const serializationHash=\"framer-SU58n\";const variantClassNames={BdPuKxRee:\"framer-v-1134lxf\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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 getProps=({avatar,height,id,width,...props})=>{return{...props,cpsLDpTtE:avatar!==null&&avatar!==void 0?avatar:props.cpsLDpTtE};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,cpsLDpTtE,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BdPuKxRee\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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__*/_jsx(Image,{...restProps,background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(cpsLDpTtE)},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1134lxf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"BdPuKxRee\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SU58n.framer-u2quxo, .framer-SU58n .framer-u2quxo { display: block; }\",\".framer-SU58n.framer-1134lxf { height: 40px; overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",'.framer-SU58n[data-border=\"true\"]::after, .framer-SU58n [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 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cpsLDpTtE\":\"avatar\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEN8TiKyXy=withCSS(Component,css,\"framer-SU58n\");export default FramerEN8TiKyXy;FramerEN8TiKyXy.displayName=\"Elements/Avatar\";FramerEN8TiKyXy.defaultProps={height:40,width:40};addPropertyControls(FramerEN8TiKyXy,{cpsLDpTtE:{title:\"Avatar\",type:ControlType.ResponsiveImage}});addFonts(FramerEN8TiKyXy,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEN8TiKyXy\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"cpsLDpTtE\\\":\\\"avatar\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EN8TiKyXy.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ElementsAvatar from\"https://framerusercontent.com/modules/esRiozRDXsWpCSNPuPT2/n6ljEfYxWW2Amyo6oGML/EN8TiKyXy.js\";const ElementsAvatarFonts=getFonts(ElementsAvatar);const serializationHash=\"framer-LBNJr\";const variantClassNames={zuYncP_Ui:\"framer-v-lo0qi6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??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,client,height,id,text,title,width,...props})=>{return{...props,c5PhFvhFc:avatar??props.c5PhFvhFc??{src:\"https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=1024 611w,https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=2048 1222w,https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=4096 2445w,https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg 3726w\"},ECqJZ1hHM:title??props.ECqJZ1hHM??\"Co-founder of Monday\",oRy6t91PU:client??props.oRy6t91PU??\"Matthew Love\",VePkjXSEB:text??props.VePkjXSEB??'\"Adorn took our brand to new heights with their innovative designs and strategic approach. Their team\\'s creativity and attention to detail truly set them apart.\"'};};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,VePkjXSEB,c5PhFvhFc,oRy6t91PU,ECqJZ1hHM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"zuYncP_Ui\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-lo0qi6\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"zuYncP_Ui\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6fd28bff-c9cb-4dc9-82d6-cff772c3b219, rgb(235, 235, 235))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56)))\"},children:'\"Adorn took our brand to new heights with their innovative designs and strategic approach. Their team\\'s creativity and attention to detail truly set them apart.\"'})}),className:\"framer-en3la9\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"HYXBY4hZv\",style:{\"--extracted-r6o4lv\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VePkjXSEB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pdkavn\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"uQbmUKtHU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"36px\",y:(componentViewport?.y||0)+24+(((componentViewport?.height||204)-48-346)/2+112+24)+87,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18xqw9e-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PMLabM43f-container\",nodeId:\"PMLabM43f\",rendersWithMotion:true,scopeId:\"b17WYBX5G\",children:/*#__PURE__*/_jsx(ElementsAvatar,{cpsLDpTtE:toResponsiveImage(c5PhFvhFc),height:\"100%\",id:\"PMLabM43f\",layoutId:\"PMLabM43f\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ic1zqe\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"cs0R5LKyA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Matthew Love\"})}),className:\"framer-qsowh1\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"bDL0_XdCy\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oRy6t91PU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56)))\"},children:\"Co-founder of Monday\"})}),className:\"framer-10xs3l1\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"PGiuJ8XM6\",style:{\"--extracted-r6o4lv\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ECqJZ1hHM,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LBNJr.framer-164ky61, .framer-LBNJr .framer-164ky61 { display: block; }\",\".framer-LBNJr.framer-lo0qi6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 351px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LBNJr .framer-en3la9, .framer-LBNJr .framer-qsowh1, .framer-LBNJr .framer-10xs3l1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LBNJr .framer-pdkavn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LBNJr .framer-18xqw9e-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 36px; z-index: 1; }\",\".framer-LBNJr .framer-1ic1zqe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LBNJr.framer-lo0qi6, .framer-LBNJr .framer-pdkavn, .framer-LBNJr .framer-1ic1zqe { gap: 0px; } .framer-LBNJr.framer-lo0qi6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-LBNJr.framer-lo0qi6 > :first-child, .framer-LBNJr .framer-1ic1zqe > :first-child { margin-top: 0px; } .framer-LBNJr.framer-lo0qi6 > :last-child, .framer-LBNJr .framer-1ic1zqe > :last-child { margin-bottom: 0px; } .framer-LBNJr .framer-pdkavn > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-LBNJr .framer-pdkavn > :first-child { margin-left: 0px; } .framer-LBNJr .framer-pdkavn > :last-child { margin-right: 0px; } .framer-LBNJr .framer-1ic1zqe > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",'.framer-LBNJr[data-border=\"true\"]::after, .framer-LBNJr [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 204\n * @framerIntrinsicWidth 351\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"VePkjXSEB\":\"text\",\"c5PhFvhFc\":\"avatar\",\"oRy6t91PU\":\"client\",\"ECqJZ1hHM\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerb17WYBX5G=withCSS(Component,css,\"framer-LBNJr\");export default Framerb17WYBX5G;Framerb17WYBX5G.displayName=\"Cards/Written Testimonial 6\";Framerb17WYBX5G.defaultProps={height:204,width:351};addPropertyControls(Framerb17WYBX5G,{VePkjXSEB:{defaultValue:'\"Adorn took our brand to new heights with their innovative designs and strategic approach. Their team\\'s creativity and attention to detail truly set them apart.\"',displayTextArea:false,title:\"Text\",type:ControlType.String},c5PhFvhFc:{__defaultAssetReference:\"data:framer/asset-reference,RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?originalFilename=photo-1599566147214-ce487862ea4f%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzMHx8YXZhdGFyfGVufDB8fHx8MTcxNDM4NTI3MHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Avatar\",type:ControlType.ResponsiveImage},oRy6t91PU:{defaultValue:\"Matthew Love\",displayTextArea:false,title:\"Client\",type:ControlType.String},ECqJZ1hHM:{defaultValue:\"Co-founder of Monday\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerb17WYBX5G,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...ElementsAvatarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb17WYBX5G\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"VePkjXSEB\\\":\\\"text\\\",\\\"c5PhFvhFc\\\":\\\"avatar\\\",\\\"oRy6t91PU\\\":\\\"client\\\",\\\"ECqJZ1hHM\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"351\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"204\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b17WYBX5G.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"YZg0La0FB\",\"lz5qbl1lH\"];const serializationHash=\"framer-Fm5DF\";const variantClassNames={lz5qbl1lH:\"framer-v-1xw5z1i\",YZg0La0FB:\"framer-v-1lbf5hf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={Large:\"YZg0La0FB\",Small:\"lz5qbl1lH\"};const getProps=({background,height,id,text,width,...props})=>{return{...props,dI2V912ba:background??props.dI2V912ba??\"var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"YZg0La0FB\",YbsaeEF4R:text??props.YbsaeEF4R??\"Badge\"};};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,YbsaeEF4R,dI2V912ba,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YZg0La0FB\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1lbf5hf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"YZg0La0FB\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:dI2V912ba,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({lz5qbl1lH:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Badge\"})}),className:\"framer-fg93dk\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"vnsrh3oRJ\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YbsaeEF4R,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lz5qbl1lH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Badge\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Fm5DF.framer-zigtvp, .framer-Fm5DF .framer-zigtvp { display: block; }\",\".framer-Fm5DF.framer-1lbf5hf { 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: 12px 16px 12px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fm5DF .framer-fg93dk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Fm5DF.framer-1lbf5hf { gap: 0px; } .framer-Fm5DF.framer-1lbf5hf > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Fm5DF.framer-1lbf5hf > :first-child { margin-left: 0px; } .framer-Fm5DF.framer-1lbf5hf > :last-child { margin-right: 0px; } }\",\".framer-Fm5DF.framer-v-1xw5z1i.framer-1lbf5hf { padding: 8px 12px 8px 12px; }\",'.framer-Fm5DF[data-border=\"true\"]::after, .framer-Fm5DF [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 40\n * @framerIntrinsicWidth 77\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"lz5qbl1lH\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"YbsaeEF4R\":\"text\",\"dI2V912ba\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCMXrP5Gmq=withCSS(Component,css,\"framer-Fm5DF\");export default FramerCMXrP5Gmq;FramerCMXrP5Gmq.displayName=\"Elements/Badge 2\";FramerCMXrP5Gmq.defaultProps={height:40,width:77};addPropertyControls(FramerCMXrP5Gmq,{variant:{options:[\"YZg0La0FB\",\"lz5qbl1lH\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},YbsaeEF4R:{defaultValue:\"Badge\",displayTextArea:false,title:\"Text\",type:ControlType.String},dI2V912ba:{defaultValue:'var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48)) /* {\"name\":\"Navigation\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerCMXrP5Gmq,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCMXrP5Gmq\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lz5qbl1lH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"77\",\"framerVariables\":\"{\\\"YbsaeEF4R\\\":\\\"text\\\",\\\"dI2V912ba\\\":\\\"background\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CMXrP5Gmq.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-U1g8M\";const variantClassNames={YVMX7ktU4:\"framer-v-1y51ls7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,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 getProps=({avatar,height,id,width,...props})=>{return{...props,cpsLDpTtE:avatar??props.cpsLDpTtE};};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,cpsLDpTtE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YVMX7ktU4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(cpsLDpTtE)},className:cx(scopingClassNames,\"framer-1y51ls7\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"YVMX7ktU4\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-U1g8M.framer-au9ou2, .framer-U1g8M .framer-au9ou2 { display: block; }\",\".framer-U1g8M.framer-1y51ls7 { height: 40px; overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",'.framer-U1g8M[data-border=\"true\"]::after, .framer-U1g8M [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 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cpsLDpTtE\":\"avatar\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDd0AITqZJ=withCSS(Component,css,\"framer-U1g8M\");export default FramerDd0AITqZJ;FramerDd0AITqZJ.displayName=\"Elements/Avatar\";FramerDd0AITqZJ.defaultProps={height:40,width:40};addPropertyControls(FramerDd0AITqZJ,{cpsLDpTtE:{title:\"Avatar\",type:ControlType.ResponsiveImage}});addFonts(FramerDd0AITqZJ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDd0AITqZJ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"40\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"cpsLDpTtE\\\":\\\"avatar\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dd0AITqZJ.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"RaPA4o7UI\",\"an0zRdEBQ\",\"L_LrXDy8W\",\"iJtEl5Hzk\",\"LnCa2rv9d\",\"l_lQ5oaXF\",\"CiBDsnAcD\"];const serializationHash=\"framer-q7dyv\";const variantClassNames={an0zRdEBQ:\"framer-v-15y09n7\",CiBDsnAcD:\"framer-v-1146kgt\",iJtEl5Hzk:\"framer-v-oxmvk8\",l_lQ5oaXF:\"framer-v-73r88v\",L_LrXDy8W:\"framer-v-e9d44l\",LnCa2rv9d:\"framer-v-fgpw9u\",RaPA4o7UI:\"framer-v-q67te\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:950,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={\"1\":\"an0zRdEBQ\",\"2\":\"L_LrXDy8W\",\"3\":\"iJtEl5Hzk\",\"4\":\"LnCa2rv9d\",\"5\":\"l_lQ5oaXF\",\"6\":\"CiBDsnAcD\",Default:\"RaPA4o7UI\"};const getProps=({answer1,answer2,answer3,height,id,question1,question2,question3,width,...props})=>{return{...props,KjHOx49kL:answer1??props.KjHOx49kL??\"It doesn't have to! Web2App means selling subscriptions/your product outside the app, right on the website. So App Store / Google Play rules don't apply to it.\",oRIOycR3Y:answer2??props.oRIOycR3Y??\"Nope! When we say unlimited, we mean unlimited. Once you've susbcribed, you can add as many design requests to your queue as you'd like and they'll be delivered one by one. \",pj8TaM0YQ:question3??props.pj8TaM0YQ??\"How fast will I receive my designs?\",rawvYUUzX:question1??props.rawvYUUzX??\"Does using web funnels comply with the App Store rules?\",Tiiziaej8:answer3??props.Tiiziaej8??\"On average, most requests are completed in 2-3 days. However, mroe complex requests can take longer. \",tvNxOx7cw:question2??props.tvNxOx7cw??\"Is there a limit to how many requests I can have?\",variant:humanReadableVariantMap[props.variant]??props.variant??\"RaPA4o7UI\"};};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,rawvYUUzX,KjHOx49kL,tvNxOx7cw,oRIOycR3Y,pj8TaM0YQ,Tiiziaej8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RaPA4o7UI\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapzws986=activeVariantCallback(async(...args)=>{setVariant(\"an0zRdEBQ\");});const onTapwwwljs=activeVariantCallback(async(...args)=>{setVariant(\"RaPA4o7UI\");});const onTaprhqd5v=activeVariantCallback(async(...args)=>{setVariant(\"L_LrXDy8W\");});const onTap12sz043=activeVariantCallback(async(...args)=>{setVariant(\"iJtEl5Hzk\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"an0zRdEBQ\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"L_LrXDy8W\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"iJtEl5Hzk\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,\"aria-label\":\"Footer\",className:cx(scopingClassNames,\"framer-q67te\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"RaPA4o7UI\",ref:refBinding,style:{...style},...addPropertyOverrides({an0zRdEBQ:{\"data-framer-name\":\"1\"},CiBDsnAcD:{\"data-framer-name\":\"6\"},iJtEl5Hzk:{\"data-framer-name\":\"3\"},l_lQ5oaXF:{\"data-framer-name\":\"5\"},L_LrXDy8W:{\"data-framer-name\":\"2\"},LnCa2rv9d:{\"data-framer-name\":\"4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7hkpaa\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"iXRiL_t_6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2gzoye\",\"data-border\":true,\"data-framer-name\":\"Question 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hCGG7RX4t\",onTap:onTapzws986,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6fd28bff-c9cb-4dc9-82d6-cff772c3b219, rgb(235, 235, 235))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({an0zRdEBQ:{onTap:onTapwwwljs}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ihmayw\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"LEivFr9FP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Does using web funnels comply with the App Store rules?\"})}),className:\"framer-1f436mk\",\"data-framer-name\":\"Question\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"euiOXbmun\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:rawvYUUzX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6yh708\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"KsLfxpOjD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-56y58f\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"nodV3illG\",style:{backgroundColor:\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{an0zRdEBQ:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cs8izj\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"ZQHjHp7gy\",style:{backgroundColor:\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{an0zRdEBQ:{rotate:90}}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56)))\"},children:\"It doesn't have to! Web2App means selling subscriptions/your product outside the app, right on the website. So App Store / Google Play rules don't apply to it.\"})}),className:\"framer-776k29\",\"data-framer-name\":\"Answer\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"EtFPYDriS\",style:{\"--extracted-r6o4lv\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:KjHOx49kL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12726l6\",\"data-border\":true,\"data-framer-name\":\"Question 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"du5ZJugod\",onTap:onTaprhqd5v,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-6fd28bff-c9cb-4dc9-82d6-cff772c3b219, rgb(235, 235, 235))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({L_LrXDy8W:{onTap:onTapwwwljs}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dc9no9\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"YT8Qtl3Wx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Is there a limit to how many requests I can have?\"})}),className:\"framer-13h6iqp\",\"data-framer-name\":\"Question\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"QLJ_REZ6Y\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:tvNxOx7cw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15bfog\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"NWkW0oPkC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3t4gmb\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"aIGPibcUM\",style:{backgroundColor:\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{L_LrXDy8W:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dvj389\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"Tj61ptI4V\",style:{backgroundColor:\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{L_LrXDy8W:{rotate:90}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56)))\"},children:\"Nope! When we say unlimited, we mean unlimited. Once you've susbcribed, you can add as many design requests to your queue as you'd like and they'll be delivered one by one. \"})}),className:\"framer-jfx4j2\",\"data-framer-name\":\"Answer\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"GOn1N8H0z\",style:{\"--extracted-r6o4lv\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\",\"--framer-paragraph-spacing\":\"0px\"},text:oRIOycR3Y,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17kro9v\",\"data-border\":true,\"data-framer-name\":\"Question 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"St0xEo6Io\",onTap:onTap12sz043,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-6fd28bff-c9cb-4dc9-82d6-cff772c3b219, rgb(235, 235, 235))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({iJtEl5Hzk:{onTap:onTapwwwljs}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tg4j3q\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"heWxGwdjj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"How fast will I receive my designs?\"})}),className:\"framer-1uzfm4b\",\"data-framer-name\":\"Question\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"OwgXsNeOX\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:pj8TaM0YQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kfuhte\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Ad0akK91y\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-125sydo\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"kEfbDGYI9\",style:{backgroundColor:\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{iJtEl5Hzk:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lld39a\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"TUfqvL_xa\",style:{backgroundColor:\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{iJtEl5Hzk:{rotate:90}}})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56)))\"},children:\"On average, most requests are completed in 2-3 days. However, mroe complex requests can take longer. \"})}),className:\"framer-rwt1j7\",\"data-framer-name\":\"Answer\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"l9v4lymYy\",style:{\"--extracted-r6o4lv\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:Tiiziaej8,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-q7dyv.framer-1iomti2, .framer-q7dyv .framer-1iomti2 { display: block; }\",\".framer-q7dyv.framer-q67te { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 1100px; }\",\".framer-q7dyv .framer-7hkpaa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-q7dyv .framer-2gzoye, .framer-q7dyv .framer-12726l6, .framer-q7dyv .framer-17kro9v { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px 20px 18px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-q7dyv .framer-1ihmayw, .framer-q7dyv .framer-1dc9no9, .framer-q7dyv .framer-tg4j3q { align-content: center; align-items: center; 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-q7dyv .framer-1f436mk, .framer-q7dyv .framer-13h6iqp, .framer-q7dyv .framer-1uzfm4b { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-q7dyv .framer-6yh708, .framer-q7dyv .framer-15bfog, .framer-q7dyv .framer-kfuhte { flex: none; height: 12px; overflow: hidden; position: relative; width: 12px; }\",\".framer-q7dyv .framer-56y58f, .framer-q7dyv .framer-1cs8izj, .framer-q7dyv .framer-3t4gmb, .framer-q7dyv .framer-dvj389, .framer-q7dyv .framer-125sydo, .framer-q7dyv .framer-1lld39a { bottom: 0px; flex: none; left: calc(50.00000000000002% - 2px / 2); overflow: hidden; position: absolute; top: 0px; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-q7dyv .framer-776k29, .framer-q7dyv .framer-jfx4j2, .framer-q7dyv .framer-rwt1j7 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; 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-q7dyv.framer-q67te, .framer-q7dyv .framer-7hkpaa, .framer-q7dyv .framer-2gzoye, .framer-q7dyv .framer-1ihmayw, .framer-q7dyv .framer-12726l6, .framer-q7dyv .framer-1dc9no9, .framer-q7dyv .framer-17kro9v, .framer-q7dyv .framer-tg4j3q { gap: 0px; } .framer-q7dyv.framer-q67te > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-q7dyv.framer-q67te > :first-child, .framer-q7dyv .framer-7hkpaa > :first-child, .framer-q7dyv .framer-2gzoye > :first-child, .framer-q7dyv .framer-12726l6 > :first-child, .framer-q7dyv .framer-17kro9v > :first-child { margin-top: 0px; } .framer-q7dyv.framer-q67te > :last-child, .framer-q7dyv .framer-7hkpaa > :last-child, .framer-q7dyv .framer-2gzoye > :last-child, .framer-q7dyv .framer-12726l6 > :last-child, .framer-q7dyv .framer-17kro9v > :last-child { margin-bottom: 0px; } .framer-q7dyv .framer-7hkpaa > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-q7dyv .framer-2gzoye > *, .framer-q7dyv .framer-12726l6 > *, .framer-q7dyv .framer-17kro9v > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-q7dyv .framer-1ihmayw > *, .framer-q7dyv .framer-1dc9no9 > *, .framer-q7dyv .framer-tg4j3q > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-q7dyv .framer-1ihmayw > :first-child, .framer-q7dyv .framer-1dc9no9 > :first-child, .framer-q7dyv .framer-tg4j3q > :first-child { margin-left: 0px; } .framer-q7dyv .framer-1ihmayw > :last-child, .framer-q7dyv .framer-1dc9no9 > :last-child, .framer-q7dyv .framer-tg4j3q > :last-child { margin-right: 0px; } }\",'.framer-q7dyv[data-border=\"true\"]::after, .framer-q7dyv [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 221\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"an0zRdEBQ\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"L_LrXDy8W\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"iJtEl5Hzk\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"LnCa2rv9d\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"l_lQ5oaXF\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"CiBDsnAcD\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]}}}\n * @framerVariables {\"rawvYUUzX\":\"question1\",\"KjHOx49kL\":\"answer1\",\"tvNxOx7cw\":\"question2\",\"oRIOycR3Y\":\"answer2\",\"pj8TaM0YQ\":\"question3\",\"Tiiziaej8\":\"answer3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMvUPJh9PD=withCSS(Component,css,\"framer-q7dyv\");export default FramerMvUPJh9PD;FramerMvUPJh9PD.displayName=\"Elements/FAQ 2\";FramerMvUPJh9PD.defaultProps={height:221,width:1100};addPropertyControls(FramerMvUPJh9PD,{variant:{options:[\"RaPA4o7UI\",\"an0zRdEBQ\",\"L_LrXDy8W\",\"iJtEl5Hzk\",\"LnCa2rv9d\",\"l_lQ5oaXF\",\"CiBDsnAcD\"],optionTitles:[\"Default\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\"],title:\"Variant\",type:ControlType.Enum},rawvYUUzX:{defaultValue:\"Does using web funnels comply with the App Store rules?\",displayTextArea:false,title:\"Question 1\",type:ControlType.String},KjHOx49kL:{defaultValue:\"It doesn't have to! Web2App means selling subscriptions/your product outside the app, right on the website. So App Store / Google Play rules don't apply to it.\",displayTextArea:false,title:\"Answer 1\",type:ControlType.String},tvNxOx7cw:{defaultValue:\"Is there a limit to how many requests I can have?\",displayTextArea:false,title:\"Question 2\",type:ControlType.String},oRIOycR3Y:{defaultValue:\"Nope! When we say unlimited, we mean unlimited. Once you've susbcribed, you can add as many design requests to your queue as you'd like and they'll be delivered one by one. \",displayTextArea:false,title:\"Answer 2\",type:ControlType.String},pj8TaM0YQ:{defaultValue:\"How fast will I receive my designs?\",displayTextArea:false,title:\"Question 3\",type:ControlType.String},Tiiziaej8:{defaultValue:\"On average, most requests are completed in 2-3 days. However, mroe complex requests can take longer. \",displayTextArea:false,title:\"Answer 3\",type:ControlType.String}});addFonts(FramerMvUPJh9PD,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMvUPJh9PD\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"an0zRdEBQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"L_LrXDy8W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"iJtEl5Hzk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"LnCa2rv9d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"l_lQ5oaXF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"CiBDsnAcD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]}}}\",\"framerVariables\":\"{\\\"rawvYUUzX\\\":\\\"question1\\\",\\\"KjHOx49kL\\\":\\\"answer1\\\",\\\"tvNxOx7cw\\\":\\\"question2\\\",\\\"oRIOycR3Y\\\":\\\"answer2\\\",\\\"pj8TaM0YQ\\\":\\\"question3\\\",\\\"Tiiziaej8\\\":\\\"answer3\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"221\",\"framerIntrinsicWidth\":\"1100\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MvUPJh9PD.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ElementsAvatar from\"https://framerusercontent.com/modules/esRiozRDXsWpCSNPuPT2/n6ljEfYxWW2Amyo6oGML/EN8TiKyXy.js\";const ElementsAvatarFonts=getFonts(ElementsAvatar);const serializationHash=\"framer-tz4jP\";const variantClassNames={rRyOjdqFt:\"framer-v-id0zcw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??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,client,height,id,text,title,width,...props})=>{return{...props,c5PhFvhFc:avatar??props.c5PhFvhFc??{src:\"https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=1024 611w,https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=2048 1222w,https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=4096 2445w,https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg 3726w\"},ECqJZ1hHM:title??props.ECqJZ1hHM??\"Co-founder of Monday\",oRy6t91PU:client??props.oRy6t91PU??\"Matthew Love\",VePkjXSEB:text??props.VePkjXSEB??'\"Adorn took our brand to new heights with their innovative designs and strategic approach. Their team\\'s creativity and attention to detail truly set them apart.\"'};};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,VePkjXSEB,c5PhFvhFc,oRy6t91PU,ECqJZ1hHM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rRyOjdqFt\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-id0zcw\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"rRyOjdqFt\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6fd28bff-c9cb-4dc9-82d6-cff772c3b219, rgb(235, 235, 235))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56)))\"},children:'\"Adorn took our brand to new heights with their innovative designs and strategic approach. Their team\\'s creativity and attention to detail truly set them apart.\"'})}),className:\"framer-16r1nz7\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"v24FiCiGA\",style:{\"--extracted-r6o4lv\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VePkjXSEB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zgh3c7\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"huTpwXbg5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"36px\",y:(componentViewport?.y||0)+24+(((componentViewport?.height||204)-48-346)/2+112+24)+87,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1njz46r-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"rU5y8RuzR-container\",nodeId:\"rU5y8RuzR\",rendersWithMotion:true,scopeId:\"nhYYwaDnG\",children:/*#__PURE__*/_jsx(ElementsAvatar,{cpsLDpTtE:toResponsiveImage(c5PhFvhFc),height:\"100%\",id:\"rU5y8RuzR\",layoutId:\"rU5y8RuzR\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f3cq58\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"QacmmOpzi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Matthew Love\"})}),className:\"framer-c8c84j\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"dhtp3sEgy\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oRy6t91PU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56)))\"},children:\"Co-founder of Monday\"})}),className:\"framer-3g6jko\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"V_zp_4HLW\",style:{\"--extracted-r6o4lv\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ECqJZ1hHM,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tz4jP.framer-e8ir80, .framer-tz4jP .framer-e8ir80 { display: block; }\",\".framer-tz4jP.framer-id0zcw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 351px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tz4jP .framer-16r1nz7, .framer-tz4jP .framer-c8c84j, .framer-tz4jP .framer-3g6jko { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tz4jP .framer-zgh3c7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tz4jP .framer-1njz46r-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 36px; z-index: 1; }\",\".framer-tz4jP .framer-1f3cq58 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tz4jP.framer-id0zcw, .framer-tz4jP .framer-zgh3c7, .framer-tz4jP .framer-1f3cq58 { gap: 0px; } .framer-tz4jP.framer-id0zcw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-tz4jP.framer-id0zcw > :first-child, .framer-tz4jP .framer-1f3cq58 > :first-child { margin-top: 0px; } .framer-tz4jP.framer-id0zcw > :last-child, .framer-tz4jP .framer-1f3cq58 > :last-child { margin-bottom: 0px; } .framer-tz4jP .framer-zgh3c7 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-tz4jP .framer-zgh3c7 > :first-child { margin-left: 0px; } .framer-tz4jP .framer-zgh3c7 > :last-child { margin-right: 0px; } .framer-tz4jP .framer-1f3cq58 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",'.framer-tz4jP[data-border=\"true\"]::after, .framer-tz4jP [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 204\n * @framerIntrinsicWidth 351\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"VePkjXSEB\":\"text\",\"c5PhFvhFc\":\"avatar\",\"oRy6t91PU\":\"client\",\"ECqJZ1hHM\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernhYYwaDnG=withCSS(Component,css,\"framer-tz4jP\");export default FramernhYYwaDnG;FramernhYYwaDnG.displayName=\"Cards/Written Testimonial 5\";FramernhYYwaDnG.defaultProps={height:204,width:351};addPropertyControls(FramernhYYwaDnG,{VePkjXSEB:{defaultValue:'\"Adorn took our brand to new heights with their innovative designs and strategic approach. Their team\\'s creativity and attention to detail truly set them apart.\"',displayTextArea:false,title:\"Text\",type:ControlType.String},c5PhFvhFc:{__defaultAssetReference:\"data:framer/asset-reference,RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?originalFilename=photo-1599566147214-ce487862ea4f%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzMHx8YXZhdGFyfGVufDB8fHx8MTcxNDM4NTI3MHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Avatar\",type:ControlType.ResponsiveImage},oRy6t91PU:{defaultValue:\"Matthew Love\",displayTextArea:false,title:\"Client\",type:ControlType.String},ECqJZ1hHM:{defaultValue:\"Co-founder of Monday\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramernhYYwaDnG,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...ElementsAvatarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernhYYwaDnG\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"351\",\"framerIntrinsicHeight\":\"204\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"VePkjXSEB\\\":\\\"text\\\",\\\"c5PhFvhFc\\\":\\\"avatar\\\",\\\"oRy6t91PU\\\":\\\"client\\\",\\\"ECqJZ1hHM\\\":\\\"title\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nhYYwaDnG.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ElementsAvatar from\"https://framerusercontent.com/modules/esRiozRDXsWpCSNPuPT2/n6ljEfYxWW2Amyo6oGML/EN8TiKyXy.js\";const ElementsAvatarFonts=getFonts(ElementsAvatar);const serializationHash=\"framer-auVFy\";const variantClassNames={ghPGxSeGp:\"framer-v-f5739k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??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,client,height,id,text,title,width,...props})=>{return{...props,c5PhFvhFc:avatar??props.c5PhFvhFc??{src:\"https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=1024 611w,https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=2048 1222w,https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?scale-down-to=4096 2445w,https://framerusercontent.com/images/RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg 3726w\"},ECqJZ1hHM:title??props.ECqJZ1hHM??\"Co-founder of Monday\",oRy6t91PU:client??props.oRy6t91PU??\"Matthew Love\",VePkjXSEB:text??props.VePkjXSEB??'\"Adorn took our brand to new heights with their innovative designs and strategic approach. Their team\\'s creativity and attention to detail truly set them apart.\"'};};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,VePkjXSEB,c5PhFvhFc,oRy6t91PU,ECqJZ1hHM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ghPGxSeGp\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-f5739k\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ghPGxSeGp\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6fd28bff-c9cb-4dc9-82d6-cff772c3b219, rgb(235, 235, 235))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56)))\"},children:'\"Adorn took our brand to new heights with their innovative designs and strategic approach. Their team\\'s creativity and attention to detail truly set them apart.\"'})}),className:\"framer-1mautol\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"vKFvDDIhx\",style:{\"--extracted-r6o4lv\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VePkjXSEB,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15us5u7\",\"data-framer-name\":\"Client\",layoutDependency:layoutDependency,layoutId:\"xFdsJDqSw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"36px\",y:(componentViewport?.y||0)+24+(((componentViewport?.height||204)-48-346)/2+112+24)+87,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wkisey-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Qcye0vsI6-container\",nodeId:\"Qcye0vsI6\",rendersWithMotion:true,scopeId:\"NrlfR50qS\",children:/*#__PURE__*/_jsx(ElementsAvatar,{cpsLDpTtE:toResponsiveImage(c5PhFvhFc),height:\"100%\",id:\"Qcye0vsI6\",layoutId:\"Qcye0vsI6\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i70vwl\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"P6u_uVwIw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Matthew Love\"})}),className:\"framer-2szzpx\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"vYMboIjhp\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oRy6t91PU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56)))\"},children:\"Co-founder of Monday\"})}),className:\"framer-1vwoiu7\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"paPlgrl0s\",style:{\"--extracted-r6o4lv\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ECqJZ1hHM,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-auVFy.framer-1oh54pw, .framer-auVFy .framer-1oh54pw { display: block; }\",\".framer-auVFy.framer-f5739k { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 351px; will-change: var(--framer-will-change-override, transform); }\",\".framer-auVFy .framer-1mautol, .framer-auVFy .framer-2szzpx, .framer-auVFy .framer-1vwoiu7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-auVFy .framer-15us5u7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-auVFy .framer-1wkisey-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 36px; z-index: 1; }\",\".framer-auVFy .framer-i70vwl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-auVFy.framer-f5739k, .framer-auVFy .framer-15us5u7, .framer-auVFy .framer-i70vwl { gap: 0px; } .framer-auVFy.framer-f5739k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-auVFy.framer-f5739k > :first-child, .framer-auVFy .framer-i70vwl > :first-child { margin-top: 0px; } .framer-auVFy.framer-f5739k > :last-child, .framer-auVFy .framer-i70vwl > :last-child { margin-bottom: 0px; } .framer-auVFy .framer-15us5u7 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-auVFy .framer-15us5u7 > :first-child { margin-left: 0px; } .framer-auVFy .framer-15us5u7 > :last-child { margin-right: 0px; } .framer-auVFy .framer-i70vwl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",'.framer-auVFy[data-border=\"true\"]::after, .framer-auVFy [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 204\n * @framerIntrinsicWidth 351\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"VePkjXSEB\":\"text\",\"c5PhFvhFc\":\"avatar\",\"oRy6t91PU\":\"client\",\"ECqJZ1hHM\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNrlfR50qS=withCSS(Component,css,\"framer-auVFy\");export default FramerNrlfR50qS;FramerNrlfR50qS.displayName=\"Cards/Written Testimonial 4\";FramerNrlfR50qS.defaultProps={height:204,width:351};addPropertyControls(FramerNrlfR50qS,{VePkjXSEB:{defaultValue:'\"Adorn took our brand to new heights with their innovative designs and strategic approach. Their team\\'s creativity and attention to detail truly set them apart.\"',displayTextArea:false,title:\"Text\",type:ControlType.String},c5PhFvhFc:{__defaultAssetReference:\"data:framer/asset-reference,RnlZlUp5GcLVlfS43Q4nd6kA9c.jpg?originalFilename=photo-1599566147214-ce487862ea4f%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwzMHx8YXZhdGFyfGVufDB8fHx8MTcxNDM4NTI3MHww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Avatar\",type:ControlType.ResponsiveImage},oRy6t91PU:{defaultValue:\"Matthew Love\",displayTextArea:false,title:\"Client\",type:ControlType.String},ECqJZ1hHM:{defaultValue:\"Co-founder of Monday\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerNrlfR50qS,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...ElementsAvatarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNrlfR50qS\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"351\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"204\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"VePkjXSEB\\\":\\\"text\\\",\\\"c5PhFvhFc\\\":\\\"avatar\\\",\\\"oRy6t91PU\\\":\\\"client\\\",\\\"ECqJZ1hHM\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NrlfR50qS.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"DNdh7ahLJ\",\"Wf3yQMNVq\"];const serializationHash=\"framer-c7Fc0\";const variantClassNames={DNdh7ahLJ:\"framer-v-2qgyw9\",Wf3yQMNVq:\"framer-v-i1dc53\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={Large:\"DNdh7ahLJ\",Small:\"Wf3yQMNVq\"};const getProps=({background,height,id,text,width,...props})=>{return{...props,dI2V912ba:background??props.dI2V912ba??\"var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"DNdh7ahLJ\",YbsaeEF4R:text??props.YbsaeEF4R??\"Badge\"};};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,YbsaeEF4R,dI2V912ba,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DNdh7ahLJ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-2qgyw9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"DNdh7ahLJ\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:dI2V912ba,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({Wf3yQMNVq:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Badge\"})}),className:\"framer-1bvaxml\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"uqI0yalnl\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YbsaeEF4R,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Wf3yQMNVq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Badge\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c7Fc0.framer-1on5bnw, .framer-c7Fc0 .framer-1on5bnw { display: block; }\",\".framer-c7Fc0.framer-2qgyw9 { 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: 12px 16px 12px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-c7Fc0 .framer-1bvaxml { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c7Fc0.framer-2qgyw9 { gap: 0px; } .framer-c7Fc0.framer-2qgyw9 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-c7Fc0.framer-2qgyw9 > :first-child { margin-left: 0px; } .framer-c7Fc0.framer-2qgyw9 > :last-child { margin-right: 0px; } }\",\".framer-c7Fc0.framer-v-i1dc53.framer-2qgyw9 { padding: 8px 12px 8px 12px; }\",'.framer-c7Fc0[data-border=\"true\"]::after, .framer-c7Fc0 [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 40\n * @framerIntrinsicWidth 77\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Wf3yQMNVq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"YbsaeEF4R\":\"text\",\"dI2V912ba\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPhNvW8b5O=withCSS(Component,css,\"framer-c7Fc0\");export default FramerPhNvW8b5O;FramerPhNvW8b5O.displayName=\"Elements/Badge 4\";FramerPhNvW8b5O.defaultProps={height:40,width:77};addPropertyControls(FramerPhNvW8b5O,{variant:{options:[\"DNdh7ahLJ\",\"Wf3yQMNVq\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},YbsaeEF4R:{defaultValue:\"Badge\",displayTextArea:false,title:\"Text\",type:ControlType.String},dI2V912ba:{defaultValue:'var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48)) /* {\"name\":\"Navigation\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerPhNvW8b5O,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPhNvW8b5O\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Wf3yQMNVq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"77\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"YbsaeEF4R\\\":\\\"text\\\",\\\"dI2V912ba\\\":\\\"background\\\"}\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PhNvW8b5O.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"uVRWKwmhC\",\"PnpxSzzT6\"];const serializationHash=\"framer-6uSr0\";const variantClassNames={PnpxSzzT6:\"framer-v-1uuctxe\",uVRWKwmhC:\"framer-v-168nnww\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={Large:\"uVRWKwmhC\",Small:\"PnpxSzzT6\"};const getProps=({background,height,id,text,width,...props})=>{return{...props,dI2V912ba:background??props.dI2V912ba??\"var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"uVRWKwmhC\",YbsaeEF4R:text??props.YbsaeEF4R??\"Badge\"};};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,YbsaeEF4R,dI2V912ba,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uVRWKwmhC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-168nnww\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"uVRWKwmhC\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:dI2V912ba,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({PnpxSzzT6:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Badge\"})}),className:\"framer-mba3ix\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"I4NNfRCZ5\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YbsaeEF4R,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PnpxSzzT6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Badge\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6uSr0.framer-17p85ya, .framer-6uSr0 .framer-17p85ya { display: block; }\",\".framer-6uSr0.framer-168nnww { 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: 12px 16px 12px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-6uSr0 .framer-mba3ix { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6uSr0.framer-168nnww { gap: 0px; } .framer-6uSr0.framer-168nnww > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-6uSr0.framer-168nnww > :first-child { margin-left: 0px; } .framer-6uSr0.framer-168nnww > :last-child { margin-right: 0px; } }\",\".framer-6uSr0.framer-v-1uuctxe.framer-168nnww { padding: 8px 12px 8px 12px; }\",'.framer-6uSr0[data-border=\"true\"]::after, .framer-6uSr0 [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 40\n * @framerIntrinsicWidth 77\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"PnpxSzzT6\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"YbsaeEF4R\":\"text\",\"dI2V912ba\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrbPG_0ySu=withCSS(Component,css,\"framer-6uSr0\");export default FramerrbPG_0ySu;FramerrbPG_0ySu.displayName=\"Elements/Badge\";FramerrbPG_0ySu.defaultProps={height:40,width:77};addPropertyControls(FramerrbPG_0ySu,{variant:{options:[\"uVRWKwmhC\",\"PnpxSzzT6\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},YbsaeEF4R:{defaultValue:\"Badge\",displayTextArea:false,title:\"Text\",type:ControlType.String},dI2V912ba:{defaultValue:'var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48)) /* {\"name\":\"Navigation\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerrbPG_0ySu,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrbPG_0ySu\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PnpxSzzT6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"YbsaeEF4R\\\":\\\"text\\\",\\\"dI2V912ba\\\":\\\"background\\\"}\",\"framerIntrinsicWidth\":\"77\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rbPG_0ySu.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"VCehnBVpp\",\"md13Ck5lr\"];const serializationHash=\"framer-cqPDy\";const variantClassNames={md13Ck5lr:\"framer-v-9wz5ig\",VCehnBVpp:\"framer-v-b6quw2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={Large:\"VCehnBVpp\",Small:\"md13Ck5lr\"};const getProps=({background,height,id,text,width,...props})=>{return{...props,dI2V912ba:background??props.dI2V912ba??\"var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"VCehnBVpp\",YbsaeEF4R:text??props.YbsaeEF4R??\"Badge\"};};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,YbsaeEF4R,dI2V912ba,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VCehnBVpp\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-b6quw2\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"VCehnBVpp\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:dI2V912ba,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({md13Ck5lr:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Badge\"})}),className:\"framer-ivwn29\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"RJdYIsoN2\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YbsaeEF4R,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({md13Ck5lr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Badge\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cqPDy.framer-uljlm3, .framer-cqPDy .framer-uljlm3 { display: block; }\",\".framer-cqPDy.framer-b6quw2 { 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: 12px 16px 12px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-cqPDy .framer-ivwn29 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cqPDy.framer-b6quw2 { gap: 0px; } .framer-cqPDy.framer-b6quw2 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-cqPDy.framer-b6quw2 > :first-child { margin-left: 0px; } .framer-cqPDy.framer-b6quw2 > :last-child { margin-right: 0px; } }\",\".framer-cqPDy.framer-v-9wz5ig.framer-b6quw2 { padding: 8px 12px 8px 12px; }\",'.framer-cqPDy[data-border=\"true\"]::after, .framer-cqPDy [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 40\n * @framerIntrinsicWidth 76\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"md13Ck5lr\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"YbsaeEF4R\":\"text\",\"dI2V912ba\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerrj5LkR8qx=withCSS(Component,css,\"framer-cqPDy\");export default Framerrj5LkR8qx;Framerrj5LkR8qx.displayName=\"Elements/Badge 5\";Framerrj5LkR8qx.defaultProps={height:40,width:76};addPropertyControls(Framerrj5LkR8qx,{variant:{options:[\"VCehnBVpp\",\"md13Ck5lr\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},YbsaeEF4R:{defaultValue:\"Badge\",displayTextArea:false,title:\"Text\",type:ControlType.String},dI2V912ba:{defaultValue:'var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48)) /* {\"name\":\"Navigation\"} */',title:\"Background\",type:ControlType.Color}});addFonts(Framerrj5LkR8qx,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerrj5LkR8qx\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"76\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"md13Ck5lr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"YbsaeEF4R\\\":\\\"text\\\",\\\"dI2V912ba\\\":\\\"background\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rj5LkR8qx.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"Z9eCLAmdn\",\"V4VIeqtLa\"];const serializationHash=\"framer-ptcjR\";const variantClassNames={V4VIeqtLa:\"framer-v-ga3lb8\",Z9eCLAmdn:\"framer-v-887gh0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={Large:\"Z9eCLAmdn\",Small:\"V4VIeqtLa\"};const getProps=({background,height,id,text,width,...props})=>{return{...props,dI2V912ba:background??props.dI2V912ba??\"var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Z9eCLAmdn\",YbsaeEF4R:text??props.YbsaeEF4R??\"Badge\"};};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,YbsaeEF4R,dI2V912ba,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Z9eCLAmdn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-887gh0\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"Z9eCLAmdn\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:dI2V912ba,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({V4VIeqtLa:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Badge\"})}),className:\"framer-1qva5gi\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"ZRzQ1WQtu\",style:{\"--extracted-r6o4lv\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YbsaeEF4R,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({V4VIeqtLa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0)))\"},children:\"Badge\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ptcjR.framer-1ptkgao, .framer-ptcjR .framer-1ptkgao { display: block; }\",\".framer-ptcjR.framer-887gh0 { 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: 12px 16px 12px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ptcjR .framer-1qva5gi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ptcjR.framer-887gh0 { gap: 0px; } .framer-ptcjR.framer-887gh0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ptcjR.framer-887gh0 > :first-child { margin-left: 0px; } .framer-ptcjR.framer-887gh0 > :last-child { margin-right: 0px; } }\",\".framer-ptcjR.framer-v-ga3lb8.framer-887gh0 { padding: 8px 12px 8px 12px; }\",'.framer-ptcjR[data-border=\"true\"]::after, .framer-ptcjR [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 40\n * @framerIntrinsicWidth 77\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"V4VIeqtLa\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"YbsaeEF4R\":\"text\",\"dI2V912ba\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVdw_88OOg=withCSS(Component,css,\"framer-ptcjR\");export default FramerVdw_88OOg;FramerVdw_88OOg.displayName=\"Elements/Badge 3\";FramerVdw_88OOg.defaultProps={height:40,width:77};addPropertyControls(FramerVdw_88OOg,{variant:{options:[\"Z9eCLAmdn\",\"V4VIeqtLa\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},YbsaeEF4R:{defaultValue:\"Badge\",displayTextArea:false,title:\"Text\",type:ControlType.String},dI2V912ba:{defaultValue:'var(--token-6aa0c73c-cfba-499c-bfa2-5a2a88507ddb, rgba(237, 235, 232, 0.48)) /* {\"name\":\"Navigation\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerVdw_88OOg,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVdw_88OOg\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"YbsaeEF4R\\\":\\\"text\\\",\\\"dI2V912ba\\\":\\\"background\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"V4VIeqtLa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"77\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vdw_88OOg.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ButtonsButton from\"https://framerusercontent.com/modules/dLhTxLZRc0fDhgZn90iF/4XxmYPSlVQQboUpgOotC/beL7nB9Cx.js\";import{NumberCounter}from\"https://framerusercontent.com/modules/lHtQW691CaawQrpxF0jw/2EULFgmGgwoL320F0w07/Counter.js\";import ElementsAvatar1 from\"https://framerusercontent.com/modules/qiQJdPK1M2JVluYhS1aT/bXTTYYts3CsypLPzVik3/EN8TiKyXy.js\";import CardsResults2 from\"https://framerusercontent.com/modules/sMz9h3JdeUttLIu3HvpW/yIjrmJburQ5pPdZdXCSz/ylBNSDbKt.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import NavigationAnnouncementBar2 from\"#framer/local/canvasComponent/AhavovLZt/AhavovLZt.js\";import CardsWrittenTestimonial6 from\"#framer/local/canvasComponent/b17WYBX5G/b17WYBX5G.js\";import ElementsBadge2 from\"#framer/local/canvasComponent/CMXrP5Gmq/CMXrP5Gmq.js\";import ElementsAvatar from\"#framer/local/canvasComponent/Dd0AITqZJ/Dd0AITqZJ.js\";import FooterFooter3 from\"#framer/local/canvasComponent/Fh6mheqKa/Fh6mheqKa.js\";import UniversalSectionCallToAction2 from\"#framer/local/canvasComponent/izGATlFFP/izGATlFFP.js\";import ElementsFAQ2 from\"#framer/local/canvasComponent/MvUPJh9PD/MvUPJh9PD.js\";import CardsWrittenTestimonial5 from\"#framer/local/canvasComponent/nhYYwaDnG/nhYYwaDnG.js\";import CardsWrittenTestimonial4 from\"#framer/local/canvasComponent/NrlfR50qS/NrlfR50qS.js\";import ElementsBadge4 from\"#framer/local/canvasComponent/PhNvW8b5O/PhNvW8b5O.js\";import ElementsBadge from\"#framer/local/canvasComponent/rbPG_0ySu/rbPG_0ySu.js\";import ElementsBadge5 from\"#framer/local/canvasComponent/rj5LkR8qx/rj5LkR8qx.js\";import NavigationNavigation3 from\"#framer/local/canvasComponent/U0L1pYVUU/U0L1pYVUU.js\";import ElementsBadge3 from\"#framer/local/canvasComponent/Vdw_88OOg/Vdw_88OOg.js\";import metadataProvider from\"#framer/local/webPageMetadata/MssRQzrc9/MssRQzrc9.js\";const NavigationAnnouncementBar2Fonts=getFonts(NavigationAnnouncementBar2);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const NavigationNavigation3Fonts=getFonts(NavigationNavigation3);const ButtonsButtonFonts=getFonts(ButtonsButton);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const NumberCounterFonts=getFonts(NumberCounter);const CardsResults2Fonts=getFonts(CardsResults2);const ElementsAvatarFonts=getFonts(ElementsAvatar);const ElementsBadge4Fonts=getFonts(ElementsBadge4);const ElementsBadge5Fonts=getFonts(ElementsBadge5);const ImageWithFX=withFX(Image);const ElementsBadge3Fonts=getFonts(ElementsBadge3);const ElementsAvatar1Fonts=getFonts(ElementsAvatar1);const ElementsBadge2Fonts=getFonts(ElementsBadge2);const ElementsBadgeFonts=getFonts(ElementsBadge);const CardsWrittenTestimonial4Fonts=getFonts(CardsWrittenTestimonial4);const CardsWrittenTestimonial5Fonts=getFonts(CardsWrittenTestimonial5);const CardsWrittenTestimonial6Fonts=getFonts(CardsWrittenTestimonial6);const ElementsFAQ2Fonts=getFonts(ElementsFAQ2);const UniversalSectionCallToAction2Fonts=getFonts(UniversalSectionCallToAction2);const FooterFooter3Fonts=getFonts(FooterFooter3);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={FHUp2LxOk:\"(min-width: 1200px)\",IWrzqoArQ:\"(max-width: 809px)\",kmytHNRIW:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-iaaXs\";const variantClassNames={FHUp2LxOk:\"framer-v-1eut02m\",IWrzqoArQ:\"framer-v-1a8nazu\",kmytHNRIW:\"framer-v-11e2lg1\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition2={damping:100,delay:1,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:200,y:150};const transition3={damping:50,delay:0,mass:1,stiffness:600,type:\"spring\"};const transition4={delay:0,duration:8,ease:[0,0,1,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-880};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"FHUp2LxOk\",Phone:\"IWrzqoArQ\",Tablet:\"kmytHNRIW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FHUp2LxOk\"};};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,PF3AJdT1LaNpozvGvm,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"te4kVg57Q\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"Oj3UsVLB4\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"IWrzqoArQ\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"IWrzqoArQ\")return true;return false;};const elementId2=useRouteElementId(\"TOqrP5P8A\");const ref3=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"kmytHNRIW\")return false;return true;};const elementId3=useRouteElementId(\"bSS_Q6oHl\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"qSCcvlYg3\");const ref5=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"kmytHNRIW\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"kmytHNRIW\",\"IWrzqoArQ\"].includes(baseVariant))return false;return true;};const elementId5=useRouteElementId(\"PYa656U34\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"WA4AYMCFp\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"xg_4HZ4gi\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"FHUp2LxOk\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-25a3f2f2-7ef1-4389-97cc-abeb6c975eb2, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1eut02m\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1f1aczi-container\",\"data-framer-appear-id\":\"1f1aczi\",initial:animation1,layoutScroll:true,nodeId:\"pJGLhMc2w\",optimized:true,rendersWithMotion:true,scopeId:\"MssRQzrc9\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{C8WAwlX03:\"Download the Ultimate Guide to Web-to-App Funnels.\",variant:\"UGHVSduN0\"},kmytHNRIW:{C8WAwlX03:\"The Ultimate Guide to Web-to-App Funnels. Download for free.\",variant:\"UGHVSduN0\"}},children:/*#__PURE__*/_jsx(NavigationAnnouncementBar2,{C8WAwlX03:\"The Ultimate Guide to Web-to-App Funnels.\",height:\"100%\",id:\"pJGLhMc2w\",layoutId:\"pJGLhMc2w\",style:{width:\"100%\"},variant:\"L33bU6iE8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:44},kmytHNRIW:{y:44}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:\"100vw\",y:48,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1r7xi8h-container\",\"data-framer-appear-id\":\"1r7xi8h\",initial:animation1,layoutScroll:true,nodeId:\"Y5nNNfqfW\",optimized:true,rendersWithMotion:true,scopeId:\"MssRQzrc9\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{variant:\"czIcBofV1\"},kmytHNRIW:{variant:\"czIcBofV1\"}},children:/*#__PURE__*/_jsx(NavigationNavigation3,{height:\"100%\",id:\"Y5nNNfqfW\",layoutId:\"Y5nNNfqfW\",style:{width:\"100%\"},variant:\"IFWKcxcH1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ix9bsz\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8dk6rg\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sr9x5u\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v8uajf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Unlock your app revenue growth in\\xa0hours with web funnels\"})})},kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[\"Unlock your app revenue growth \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"53px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"in hours with web2app funnels\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"53px\"},children:\"Unlock your app revenue growth \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"53px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"53px\"},children:\"in hours with web2app funnels\"})]})}),className:\"framer-1tab5ev\",fonts:[\"FS;Poppins-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:\"Build and launch web2app funnels, integrate payments, optimize \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:\"with A/B testing and scale globally - all in one platform, no coding needed.\"})]})},kmytHNRIW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:\"Build and launch web2app funnels, integrate payments, optimize \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:\"with A/B testing and scale globally \u2014 all in one platform, no coding needed.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:\"Build and launch web2app funnels, integrate payments, optimize \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:\"with A/B testing and scale globally \u2014 all in one platform, no coding needed.\"})]}),className:\"framer-16i9oiq\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1ptxkf1\",\"data-framer-appear-id\":\"1ptxkf1\",\"data-framer-name\":\"Buttons\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+312+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7mw4e-container\",isModuleExternal:true,nodeId:\"G8LdVs9DY\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"G8LdVs9DY\",kTynE2FQc:\"regular\",layoutId:\"G8LdVs9DY\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:\"https://funnelfox.com/schedule-demo\",Q7omvm8K3:false,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Schedule a demo\",variant:\"NnNg9h8UK\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0c0jz\",\"data-framer-name\":\"Clients\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pcwex6\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ub2rfp\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Proven performance by top apps and the largest publishers\"})})},kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[\"Proven performance by top apps \",/*#__PURE__*/_jsx(\"br\",{}),\"and the largest publishers\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Proven performance by top apps and the largest publishers\"})}),className:\"framer-lekcdd\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ilbm2g\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1joq7q4\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-39ywky\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oli8fd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jVH0Qr55H\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{fontSize:30}},children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:1,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},fontColor:\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",fontSize:55,height:\"100%\",id:\"jVH0Qr55H\",layoutId:\"jVH0Qr55H\",loop:false,prefix:\"\",speed:20,startNumber:1,suffix:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"day\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"day\"})}),className:\"framer-1xp5pal\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"% Av. ROAS\"})})},kmytHNRIW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"To launch\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"To launch\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-j3wr70\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ijdmr8\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ecxvbq\",\"data-framer-name\":\"Text Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v4w9t9-container hidden-1a8nazu\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oBc1tdP36\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:3,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},fontColor:\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",fontSize:55,height:\"100%\",id:\"oBc1tdP36\",layoutId:\"oBc1tdP36\",loop:false,prefix:\"\",speed:90,startNumber:3,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"3-fold\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"-fold\"})}),className:\"framer-d9efep\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"Funnels\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"Cheaper than\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"in-house\"})]}),className:\"framer-195z1pk\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ptwbwx\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-132i3u1\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3r76st-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Nl3ENV1RL\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{fontSize:30}},children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:3300,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},fontColor:\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\",fontSize:55,height:\"100%\",id:\"Nl3ENV1RL\",layoutId:\"Nl3ENV1RL\",loop:false,prefix:\"\",speed:90,startNumber:3250,suffix:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"+\"})}),className:\"framer-1c8gubw\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"Top apps\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"Web funnels\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"running\"})]}),className:\"framer-jpzckp\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xyn1xj\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"99.9%\"})})},kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"99.9%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"49px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"99.9%\"})}),className:\"framer-p6nuya\",\"data-framer-name\":\"Paragraph\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"Historical\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"uptime\"})]})},kmytHNRIW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"Historical\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"uptime\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"Historical\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1ea94bb4-e366-48b2-a582-2a7d341cfb0a, rgb(150, 151, 156))\"},children:\"uptime\"})]}),className:\"framer-wnuebc\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ss108j\",\"data-framer-name\":\"Testimonials 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sq8qme\",\"data-framer-name\":\"Testimonial\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{width:\"537px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"380px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i8iweq-container hidden-1a8nazu\",isModuleExternal:true,nodeId:\"SASEIyefA\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(CardsResults2,{AHW2bVdJO:\"+80% ROAS increase\",height:\"100%\",id:\"SASEIyefA\",layoutId:\"SASEIyefA\",QUIw8Gp80:addImageAlt({pixelHeight:2160,pixelWidth:4096,src:\"https://framerusercontent.com/images/9t0Ntaz7hyWyysOgJL2yRF42bA.jpg\",srcSet:\"https://framerusercontent.com/images/9t0Ntaz7hyWyysOgJL2yRF42bA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9t0Ntaz7hyWyysOgJL2yRF42bA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9t0Ntaz7hyWyysOgJL2yRF42bA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9t0Ntaz7hyWyysOgJL2yRF42bA.jpg 4096w\"},\"\"),style:{height:\"100%\",width:\"100%\"},tvKFDMXb4:\"+42% CR to payment\",v_pYW9mfT:\"Meditation app\",width:\"100%\",XIsP8f0uD:\"3 months to scale\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ycmgo8\",\"data-framer-name\":\"Desc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\\xab1 day to launch. +80% ROAS increase in 3 months\\xbb\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"FunnelFox frees up my dev team to work on the core app experience instead of having to consistently work on onboarding. My growth team, who are not developers, can design and launch experiments on their own without using any dev resources and launch a new test every single week. That allows us to get results faster, which is why we\u2019ve seen such rapid growth in ROAS. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"That\u2019s huge. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})})},kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\\xab1 day to launch. +80% ROAS increase in 3 months\\xbb\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"FunnelFox frees up my dev team to work on the core app experience instead of having to consistently work on onboarding. My growth team, who are not developers, can design and launch experiments on their own without using any dev resources and launch a new test every single week. That allows us to get results faster, which is why we\u2019ve seen such rapid growth in ROAS. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"That\u2019s huge. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\\xab1 day to launch. +80% ROAS increase in 3 months\\xbb\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"FunnelFox frees up my dev team to work on the core app experience instead of having to consistently work on onboarding. My growth team, who are not developers, can design and launch experiments on their own without using any dev resources and launch a new test every single week. That allows us to get results faster, which is why we\u2019ve seen such rapid growth in ROAS. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"That\u2019s huge. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-1or6wub\",fonts:[\"FS;Poppins-regular\",\"FS;Poppins-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mq73f5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+516+75+1174.8+60+0+10+0+0+52.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"50px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lfer35-container\",nodeId:\"kb2NgbAmJ\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ElementsAvatar,{cpsLDpTtE:addImageAlt({pixelHeight:468,pixelWidth:648,src:\"https://framerusercontent.com/images/GfhjnqsOuqo6CzpPRgqkb1sGc4k.png\",srcSet:\"https://framerusercontent.com/images/GfhjnqsOuqo6CzpPRgqkb1sGc4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/GfhjnqsOuqo6CzpPRgqkb1sGc4k.png 648w\"},\"\"),height:\"100%\",id:\"kb2NgbAmJ\",layoutId:\"kb2NgbAmJ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nxljb7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Mike\"})}),className:\"framer-21507t\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"CEO & Founder, Health&Fitness App\"})}),className:\"framer-25ds9y\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+516+75+1457.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2xfiy0-container\",isModuleExternal:true,nodeId:\"tlnrnDi7l\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"tlnrnDi7l\",kTynE2FQc:\"regular\",layoutId:\"tlnrnDi7l\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:\"https://funnelfox.com/schedule-demo\",Q7omvm8K3:false,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Try now\",variant:\"NnNg9h8UK\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1en02jb hidden-1eut02m hidden-11e2lg1\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+2092.6+70+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pzefhx-container\",nodeId:\"sJADUbM4B\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ElementsBadge4,{dI2V912ba:\"var(--token-3f61e472-8e4d-4611-8f40-19a92ec907fd, rgba(235, 235, 235, 0.48))\",height:\"100%\",id:\"sJADUbM4B\",layoutId:\"sJADUbM4B\",variant:\"DNdh7ahLJ\",width:\"100%\",YbsaeEF4R:\"Benefits\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[\"Take full control \",/*#__PURE__*/_jsx(\"br\",{}),\"of your apps' growth\"]})}),className:\"framer-1an5i4c\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgb(153, 153, 153))\"},children:\"Bypass App Stores fees, target smarter, monetize flexibly, track everything you need.\"})}),className:\"framer-1sdz9tf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mxt0dr\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4k7ys\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 118, 26)\"},children:[\"No App Store \",/*#__PURE__*/_jsx(\"br\",{}),\"fees, \",/*#__PURE__*/_jsx(\"br\",{}),\"faster payouts \"]})}),className:\"framer-ro48lz\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"5% payment fee\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\" instead of 30%.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\" Keep more \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"of what you earn.\"})]}),className:\"framer-1dm8fxo\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1olde6s\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 118, 26)\"},children:[\"100% \",/*#__PURE__*/_jsx(\"br\",{}),\"seamless\",/*#__PURE__*/_jsx(\"br\",{}),\" traffic \",/*#__PURE__*/_jsx(\"br\",{}),\"attribution\"]})}),className:\"framer-10mmah0\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Escape IDFA\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\" restrictions.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-13bwdth\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ix3jpi\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 118, 26)\"},children:[\"85% new \",/*#__PURE__*/_jsx(\"br\",{}),\"audience \",/*#__PURE__*/_jsx(\"br\",{}),\"reach\"]})}),className:\"framer-1pcfzh6\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Unlock new UA \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"channels \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"and reach \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"new audience.\"})]}),className:\"framer-9sa4q6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m5f939\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 118, 26)\"},children:[\"High \",/*#__PURE__*/_jsx(\"br\",{}),\"subscription\",/*#__PURE__*/_jsx(\"br\",{}),\" retention\"]})}),className:\"framer-i0fdb8\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Take full control \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"of subscription \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"cancellation flow.\"})]}),className:\"framer-17gs8fx\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{height:44,y:(componentViewport?.y||0)+0+3155.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hxigk-container hidden-1eut02m hidden-11e2lg1\",isModuleExternal:true,nodeId:\"TR57vxwPN\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"TR57vxwPN\",kTynE2FQc:\"regular\",layoutId:\"TR57vxwPN\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:\"https://funnelfox.com/schedule-demo\",Q7omvm8K3:false,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Talk to an expert\",variant:\"NnNg9h8UK\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gcdfe9 hidden-1a8nazu\",\"data-framer-name\":\"Process\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pmoguq\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6c8zri\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oow2kp\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y6ic2j-container\",nodeId:\"evew82_3J\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ElementsBadge4,{dI2V912ba:\"var(--token-3f61e472-8e4d-4611-8f40-19a92ec907fd, rgba(235, 235, 235, 0.48))\",height:\"100%\",id:\"evew82_3J\",layoutId:\"evew82_3J\",variant:\"DNdh7ahLJ\",width:\"100%\",YbsaeEF4R:\"Benefits\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[\"Take full control \",/*#__PURE__*/_jsx(\"br\",{}),\"of your apps' growth\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:[\"Take full control \",/*#__PURE__*/_jsx(\"br\",{}),\"of your apps' growth\"]})}),className:\"framer-deqsgp\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgb(153, 153, 153))\"},children:\"Bypass App Stores fees, target smarter, monetize flexibly, track everything you need.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:\"Bypass App Stores fees, target smarter, monetize flexibly, track everything you need.\"})}),className:\"framer-zlgopu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g4u642\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6gqhsm\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 118, 26)\"},children:[\"No App Store \",/*#__PURE__*/_jsx(\"br\",{}),\"fees, \",/*#__PURE__*/_jsx(\"br\",{}),\"faster payouts \"]})}),className:\"framer-1wfiu2r\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"5% payment fee\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\" instead of 30%.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\" Keep more \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"of what you earn.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"5% payment fee\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\" instead of 30%.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\" Keep more \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"of what you earn.\"})]}),className:\"framer-ks5smh\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kugz16 hidden-11e2lg1\",\"data-border\":true,\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dex8jp\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 118, 26)\"},children:[\"100% \",/*#__PURE__*/_jsx(\"br\",{}),\"seamless\",/*#__PURE__*/_jsx(\"br\",{}),\" traffic \",/*#__PURE__*/_jsx(\"br\",{}),\"attribution\"]})}),className:\"framer-2rris2\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Escape IDFA\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\" restrictions.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Escape IDFA\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\" restrictions.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1ppydcc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-l36sub hidden-11e2lg1\",\"data-border\":true,\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hc87wj\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 118, 26)\"},children:[\"85% new \",/*#__PURE__*/_jsx(\"br\",{}),\"audience \",/*#__PURE__*/_jsx(\"br\",{}),\"reach\"]})}),className:\"framer-z4ycjt\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Unlock new UA \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"channels \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"and reach \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"new audience.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Unlock new UA \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"channels \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"and reach \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"new audience.\"})]}),className:\"framer-11l232n\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-saasdl hidden-11e2lg1\",\"data-border\":true,\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10gnarq\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 118, 26)\"},children:[\"High \",/*#__PURE__*/_jsx(\"br\",{}),\"subscription\",/*#__PURE__*/_jsx(\"br\",{}),\" retention\"]})}),className:\"framer-19caioh\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Take full control \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"of subscription \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"cancellation flow.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Take full control \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"of subscription \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"cancellation flow.\"})]}),className:\"framer-xw5xub\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rtb2pg-container\",isModuleExternal:true,nodeId:\"ogmmZnsaf\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"ogmmZnsaf\",kTynE2FQc:\"regular\",layoutId:\"ogmmZnsaf\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:\"https://funnelfox.com/schedule-demo\",Q7omvm8K3:false,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Talk to an expert\",variant:\"NnNg9h8UK\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1blx8j0\",\"data-framer-name\":\"Services\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-63h2iu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ybe7b\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6gj12n-container\",nodeId:\"fGzxyJNkp\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ElementsBadge5,{dI2V912ba:\"var(--token-3f61e472-8e4d-4611-8f40-19a92ec907fd, rgba(235, 235, 235, 0.48))\",height:\"100%\",id:\"fGzxyJNkp\",layoutId:\"fGzxyJNkp\",variant:\"VCehnBVpp\",width:\"100%\",YbsaeEF4R:\"Features\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[\"The ultimate platform to build, launch, and optimize \",/*#__PURE__*/_jsx(\"br\",{}),\"web2app funnels\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:[\"The ultimate platform to build, launch, and optimize \",/*#__PURE__*/_jsx(\"br\",{}),\"web2app funnels\"]})}),className:\"framer-1frxgi\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:\"Built by the growth team for growth teams.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:\"Built by the growth team for growth teams.\"})}),className:\"framer-1n28egr\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mclodm\",\"data-framer-name\":\"Bento\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rrxg3r\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ul1zz\",\"data-border\":true,\"data-framer-name\":\"Cards/Meta Ads\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s67m0v\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Build web2app funnels with the best practices in 1 hour \"})}),className:\"framer-1cp2fxl\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"No-code drag-and-drop builder \"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Industry-proven screen templates\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Library of the best practices mechanics to improve CR\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Solutions for every app vertical\"})})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"No-code drag-and-drop builder \"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Industry-proven screen templates\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Library of the best practices mechanics to improve CR\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Solutions for every app vertical\"})})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-tf4i0e\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y2yxfh\",\"data-border\":true,\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395.55556603419956,intrinsicWidth:457.22223433447505,pixelHeight:434,pixelWidth:433,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/NKAcauR7G7Pg2t9Nd0OMDjLiMM.png\"},className:\"framer-ztx1uq\",\"data-framer-name\":\"No-code-builder-funnelfox\"}),isDisplayed2()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:PF3AJdT1LaNpozvGvm,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1988,intrinsicWidth:2966,pixelHeight:631,pixelWidth:1104,sizes:`calc((max(max((min(max(min(${componentViewport?.width||\"100vw\"} - 256px, 1200px), 1px), 1000px) - 16px) / 2, 200px) - 48px, 1px) - 40px) * 1.058)`,src:\"https://framerusercontent.com/images/tXqTaJABHxfWzZtJunFEYvMHTy4.jpg\",srcSet:\"https://framerusercontent.com/images/tXqTaJABHxfWzZtJunFEYvMHTy4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tXqTaJABHxfWzZtJunFEYvMHTy4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tXqTaJABHxfWzZtJunFEYvMHTy4.jpg 1104w\"},className:\"framer-1gmc8zw hidden-11e2lg1\",\"data-border\":true,\"data-framer-name\":\"Calendar_view\"})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hh0tc\",\"data-border\":true,\"data-framer-name\":\"Cards/Google Ads\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dmj3mo\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Improve CR and LTV with seamless payment solution\"})}),className:\"framer-ctdw5s\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Ready-to-use checkouts designed to minimize friction and improve \",/*#__PURE__*/_jsx(\"strong\",{children:\"CR +30%\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Integrations with leading payment providers\\xa0\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Advanced monetization features (upsells, upgrades, payment routing), \",/*#__PURE__*/_jsx(\"strong\",{children:\"LTV +20%\"})]})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Ready-to-use checkouts designed to minimize friction and improve \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 117, 26)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"CR +30%\"})})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Integrations with leading payment providers\\xa0\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Advanced monetization features (upsells, upgrades, payment routing), \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 117, 26)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"LTV +20%\"})})]})})]})}),className:\"framer-1hi7ji1\",fonts:[\"Inter-Medium\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qqxzuw\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322.777786328469,intrinsicWidth:417.7777888451096,pixelHeight:581,pixelWidth:752,sizes:\"427px\",src:\"https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png?scale-down-to=512 512w,https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png 752w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322.777786328469,intrinsicWidth:417.7777888451096,pixelHeight:581,pixelWidth:752,sizes:\"360px\",src:\"https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png?scale-down-to=512 512w,https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png 752w\"},className:\"framer-1vxd2f0\",\"data-framer-name\":\"Checkout funnelfox\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1casisw\",\"data-border\":true,\"data-framer-name\":\"Cards/Google Ads\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nbja5t\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Track performance \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"in real-time \"})]}),className:\"framer-2ekm8x\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"See your funnel performance at a glance using our pre-defined dashboard\"})})}),/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Dive deeply into performance and user behavior analysis\"})})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"See your funnel performance at a glance using our pre-defined dashboard\"})})}),/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Dive deeply into performance and user behavior analysis\"})})})]}),className:\"framer-9kxs5c\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xw0b1n\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:371.6666765124712,intrinsicWidth:631.6666834001193,pixelHeight:669,pixelWidth:1066,positionX:\"left\",positionY:\"center\",sizes:\"546px\",src:\"https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png 1066w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:371.6666765124712,intrinsicWidth:631.6666834001193,pixelHeight:669,pixelWidth:1066,positionX:\"left\",positionY:\"center\",sizes:\"380px\",src:\"https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png 1066w\"},className:\"framer-17av5q9\",\"data-framer-name\":\"Funnelfox analytics\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-suvdgg\",\"data-border\":true,\"data-framer-name\":\"Cards/Meta Ads\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ovn9zy\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Optimize your funnels with A/B tests\"})}),className:\"framer-e81ayn\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Full-funnel A/B testing\"})}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Optimize every element from landing page to checkout for maximum conversions\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Full-funnel A/B testing\"})}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Optimize every element from landing page to checkout for maximum conversions\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})]})}),className:\"framer-yh85g7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ci12tl\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:403.33334401801807,intrinsicWidth:542.2222365862061,pixelHeight:726,pixelWidth:976,sizes:\"434px\",src:\"https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png\",srcSet:\"https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png?scale-down-to=512 512w,https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png 976w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:403.33334401801807,intrinsicWidth:542.2222365862061,pixelHeight:726,pixelWidth:976,sizes:\"324px\",src:\"https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png\",srcSet:\"https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png?scale-down-to=512 512w,https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png 976w\"},className:\"framer-xnu4hh\",\"data-framer-name\":\"Ab\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c2gp7s\",\"data-border\":true,\"data-framer-name\":\"Cards/Meta Ads\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13efp2k\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Auto-sync subscribers with your mobile app\"})}),className:\"framer-yrjo1k\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Automate user and subscription sync\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Provide users with instant access\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Automate user and subscription sync\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Provide users with instant access\"})})]})}),className:\"framer-8c40rt\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x8kvpi\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:220.5555613982826,intrinsicWidth:344.4444535691064,pixelHeight:397,pixelWidth:620,sizes:\"441px\",src:\"https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png 620w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:220.5555613982826,intrinsicWidth:344.4444535691064,pixelHeight:397,pixelWidth:620,sizes:\"352px\",src:\"https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png 620w\"},className:\"framer-1yuf5r8\",\"data-framer-name\":\"Sync subs\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ny9es4\",\"data-border\":true,\"data-framer-name\":\"Cards/Google Ads\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s2r9c4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Get signals\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"and insights\"})]}),className:\"framer-1invwkg\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Track each signal immediately\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Optimize your campaign and funnels\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Analyze user behavior\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Track each signal immediately\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Optimize your campaign and funnels\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Analyze user behavior\"})})]})}),className:\"framer-kozr43\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ot1jyg\",\"data-border\":true,\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 230 52.116\"><path d=\"M 6.795 32.408 C 6.795 34.929 7.321 36.867 8.011 38.037 C 8.914 39.571 10.262 40.221 11.635 40.221 C 13.407 40.221 15.029 39.76 18.152 35.224 C 20.654 31.588 23.603 26.485 25.586 23.285 L 28.946 17.865 C 31.28 14.101 33.981 9.917 37.08 7.08 C 39.608 4.766 42.335 3.48 45.081 3.48 C 49.69 3.48 54.081 6.284 57.441 11.543 C 61.117 17.304 62.902 24.557 62.902 32.047 C 62.902 36.496 62.066 39.767 60.644 42.351 C 59.271 44.849 56.594 47.345 52.089 47.345 L 52.089 40.221 C 55.946 40.221 56.908 36.5 56.908 32.243 C 56.908 26.175 55.562 19.441 52.593 14.63 C 50.486 11.217 47.757 9.132 44.753 9.132 C 41.505 9.132 38.891 11.704 35.953 16.29 C 34.391 18.727 32.788 21.696 30.988 25.047 L 29.005 28.734 C 25.025 36.144 24.017 37.831 22.025 40.619 C 18.536 45.497 15.557 47.345 11.635 47.345 C 6.983 47.345 4.04 45.23 2.219 42.044 C 0.729 39.444 0 36.036 0 32.152 L 6.795 32.405 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 5.355 12.046 C 8.469 7.004 12.966 3.48 18.121 3.48 C 21.108 3.48 24.076 4.407 27.175 7.065 C 30.566 9.969 34.179 14.753 38.688 22.638 L 40.303 25.467 C 44.206 32.294 46.426 35.805 47.726 37.461 C 49.397 39.587 50.568 40.221 52.088 40.221 C 55.945 40.221 56.907 36.5 56.907 32.243 L 62.901 32.045 C 62.901 36.497 62.065 39.767 60.643 42.349 C 59.268 44.849 56.591 47.345 52.088 47.345 C 49.287 47.345 46.808 46.707 44.065 43.99 C 41.955 41.905 39.49 38.201 37.594 34.87 L 31.952 24.977 C 29.122 20.011 26.524 16.309 25.024 14.633 C 23.405 12.829 21.328 10.652 18.012 10.652 C 15.327 10.652 13.048 12.63 11.14 15.656 L 5.356 12.046 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 18.014 10.652 C 15.33 10.652 13.05 12.63 11.142 15.656 C 8.445 19.929 6.795 26.295 6.795 32.407 C 6.795 34.929 7.321 36.867 8.011 38.037 L 2.219 42.042 C 0.729 39.446 0 36.037 0 32.154 C 0 25.09 1.846 17.73 5.357 12.046 C 8.471 7.004 12.967 3.48 18.122 3.48 L 18.013 10.652 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 108.024 18.346 C 111.245 20.776 115.099 22.078 119.05 22.07 L 119.05 13.72 C 118.272 13.72 117.496 13.634 116.735 13.464 L 116.735 20.038 C 112.624 20.038 108.818 18.657 105.71 16.314 L 105.71 33.354 C 105.71 41.88 99.162 48.791 91.087 48.791 C 88.073 48.791 85.273 47.829 82.947 46.18 C 85.703 49.157 89.471 50.831 93.402 50.823 C 101.478 50.823 108.026 43.914 108.026 35.386 L 108.026 18.346 Z M 110.881 9.921 C 109.249 8.045 108.244 5.65 108.024 3.106 L 108.024 2.033 L 105.831 2.033 C 106.381 5.305 108.218 8.174 110.881 9.921 Z M 88.055 39.638 C 87.168 38.411 86.689 36.908 86.69 35.363 C 86.69 31.463 89.685 28.302 93.38 28.302 C 94.067 28.302 94.752 28.413 95.408 28.632 L 95.408 20.094 C 94.641 19.984 93.868 19.937 93.094 19.954 L 93.094 26.6 C 92.437 26.38 91.752 26.268 91.063 26.269 C 87.369 26.269 84.374 29.43 84.374 33.33 C 84.376 36.003 85.802 38.445 88.055 39.638 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 105.716 16.314 C 108.936 18.743 112.791 20.045 116.742 20.036 L 116.742 13.465 C 114.491 12.958 112.446 11.719 110.888 9.921 C 108.225 8.174 106.389 5.306 105.838 2.034 L 100.074 2.034 L 100.074 35.389 C 100.061 39.279 97.073 42.427 93.386 42.427 C 91.299 42.43 89.329 41.4 88.061 39.641 C 85.809 38.447 84.385 36.005 84.382 33.333 C 84.382 29.433 87.376 26.272 91.072 26.272 C 91.778 26.272 92.46 26.388 93.101 26.603 L 93.101 19.957 C 85.166 20.13 78.786 26.974 78.786 35.389 C 78.786 39.591 80.375 43.4 82.954 46.183 C 85.364 47.891 88.197 48.799 91.094 48.794 C 99.171 48.794 105.717 41.883 105.717 33.357 L 105.717 16.314 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 116.736 13.464 L 116.736 11.689 C 114.668 11.692 112.64 11.081 110.882 9.923 C 112.44 11.721 114.486 12.96 116.736 13.467 Z M 105.832 2.033 C 105.78 1.715 105.74 1.395 105.712 1.074 L 105.712 0 L 97.754 0 L 97.754 33.357 C 97.742 37.243 94.753 40.393 91.065 40.393 C 89.983 40.393 88.961 40.122 88.056 39.641 C 89.325 41.399 91.295 42.429 93.381 42.425 C 97.067 42.425 100.057 39.277 100.071 35.389 L 100.071 2.033 Z M 93.095 19.956 L 93.095 18.065 C 92.431 17.969 91.761 17.92 91.09 17.92 C 83.012 17.92 76.465 24.831 76.465 33.357 C 76.465 38.701 79.039 43.411 82.949 46.182 C 80.275 43.308 78.777 39.429 78.781 35.389 C 78.781 26.974 85.162 20.13 93.095 19.956 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 166.493 34.716 C 160.847 31.77 159.947 27.221 159.906 26.884 C 159.858 26.475 159.804 26.155 160.222 25.738 C 160.626 25.336 162.415 24.141 162.912 23.768 C 163.732 23.15 164.094 22.532 163.827 21.772 C 163.641 21.247 163.186 21.049 162.71 21.049 C 162.559 21.05 162.408 21.068 162.261 21.104 C 161.359 21.314 160.484 21.802 159.976 21.933 C 159.915 21.95 159.853 21.959 159.79 21.96 C 159.52 21.96 159.418 21.83 159.443 21.481 C 159.506 20.417 159.641 18.343 159.485 16.406 C 159.272 13.741 158.474 12.42 157.529 11.252 C 157.072 10.687 154.947 8.252 150.848 8.252 C 146.748 8.252 144.628 10.685 144.172 11.245 C 143.224 12.412 142.428 13.733 142.216 16.399 C 142.06 18.337 142.2 20.41 142.258 21.473 C 142.277 21.807 142.182 21.953 141.911 21.953 C 141.848 21.951 141.786 21.943 141.725 21.926 C 141.22 21.795 140.343 21.308 139.442 21.096 C 139.294 21.061 139.144 21.043 138.993 21.043 C 138.513 21.043 138.062 21.244 137.875 21.765 C 137.609 22.524 137.969 23.142 138.792 23.76 C 139.289 24.134 141.078 25.328 141.482 25.73 C 141.899 26.147 141.845 26.467 141.796 26.877 C 141.757 27.219 140.855 31.768 135.211 34.709 C 134.88 34.883 134.317 35.248 135.309 35.839 C 136.865 36.767 137.903 36.667 138.71 37.227 C 139.393 37.702 138.99 38.726 139.487 39.096 C 140.098 39.551 141.904 39.064 144.238 39.894 C 146.194 40.589 147.384 42.553 150.853 42.553 C 154.322 42.553 155.546 40.58 157.467 39.894 C 159.797 39.064 161.607 39.551 162.219 39.096 C 162.715 38.726 162.313 37.702 162.996 37.227 C 163.802 36.667 164.838 36.767 166.397 35.839 C 167.387 35.255 166.824 34.889 166.493 34.716 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 168.946 34.371 C 168.694 33.626 168.211 33.23 167.662 32.901 C 167.571 32.844 167.477 32.791 167.381 32.743 C 167.218 32.651 167.05 32.563 166.883 32.469 C 165.169 31.49 163.832 30.255 162.905 28.792 C 162.641 28.379 162.412 27.942 162.222 27.486 C 162.142 27.242 162.146 27.103 162.203 26.977 C 162.259 26.879 162.334 26.795 162.422 26.729 C 162.717 26.521 163.02 26.306 163.226 26.163 C 163.593 25.907 163.883 25.705 164.07 25.56 C 164.774 25.03 165.266 24.468 165.573 23.838 C 166.006 22.955 166.063 21.918 165.73 20.988 C 165.265 19.665 164.106 18.845 162.704 18.845 C 162.329 18.844 161.955 18.898 161.593 19.004 C 161.61 18.071 161.583 17.137 161.513 16.206 C 161.248 12.905 160.177 11.174 159.058 9.795 C 158.344 8.932 157.501 8.2 156.563 7.63 C 154.866 6.586 152.942 6.054 150.845 6.054 C 148.748 6.054 146.833 6.586 145.134 7.63 C 144.193 8.201 143.348 8.934 142.634 9.799 C 141.516 11.18 140.444 12.911 140.179 16.211 C 140.11 17.141 140.083 18.074 140.098 19.007 C 139.737 18.901 139.364 18.847 138.989 18.848 C 137.585 18.848 136.425 19.67 135.959 20.992 C 135.624 21.923 135.68 22.961 136.114 23.845 C 136.422 24.473 136.915 25.036 137.619 25.568 C 137.804 25.709 138.095 25.91 138.463 26.171 C 138.662 26.309 138.951 26.513 139.234 26.714 C 139.334 26.784 139.42 26.875 139.484 26.982 C 139.543 27.115 139.544 27.256 139.456 27.519 C 139.268 27.965 139.043 28.392 138.784 28.796 C 137.877 30.227 136.578 31.441 134.92 32.411 C 134.041 32.913 133.128 33.25 132.742 34.378 C 132.452 35.232 132.641 36.201 133.38 37.02 C 133.652 37.325 133.967 37.581 134.313 37.779 C 135.031 38.206 135.797 38.536 136.592 38.762 C 136.756 38.808 136.912 38.883 137.052 38.985 C 137.321 39.239 137.283 39.621 137.641 40.181 C 137.823 40.471 138.05 40.722 138.317 40.921 C 139.07 41.481 139.916 41.517 140.812 41.554 C 141.621 41.587 142.54 41.625 143.587 41.998 C 144.021 42.153 144.472 42.452 144.995 42.802 C 146.251 43.633 147.967 44.77 150.844 44.77 C 153.719 44.77 155.448 43.627 156.713 42.791 C 157.232 42.449 157.679 42.151 158.101 42.002 C 159.15 41.628 160.067 41.591 160.877 41.558 C 161.773 41.521 162.618 41.485 163.372 40.926 C 163.687 40.687 163.949 40.381 164.14 40.022 C 164.398 39.548 164.391 39.218 164.634 38.987 C 164.766 38.89 164.911 38.819 165.066 38.774 C 165.871 38.547 166.647 38.213 167.375 37.782 C 167.744 37.569 168.076 37.29 168.354 36.956 L 168.364 36.944 C 169.057 36.144 169.231 35.202 168.946 34.371 Z M 166.391 35.851 C 164.833 36.779 163.796 36.68 162.991 37.239 C 162.306 37.715 162.711 38.738 162.215 39.109 C 161.603 39.563 159.797 39.076 157.463 39.907 C 155.537 40.592 154.309 42.565 150.848 42.565 C 147.385 42.565 146.186 40.597 144.23 39.901 C 141.9 39.07 140.091 39.559 139.478 39.103 C 138.982 38.734 139.386 37.709 138.701 37.234 C 137.895 36.674 136.858 36.774 135.3 35.851 C 134.309 35.26 134.871 34.895 135.202 34.722 C 140.848 31.776 141.749 27.227 141.789 26.889 C 141.837 26.481 141.892 26.159 141.474 25.742 C 141.071 25.34 139.28 24.147 138.784 23.774 C 137.962 23.154 137.602 22.538 137.868 21.778 C 138.055 21.253 138.509 21.055 138.986 21.055 C 139.136 21.055 139.287 21.073 139.435 21.108 C 140.335 21.32 141.212 21.808 141.718 21.938 C 141.778 21.955 141.84 21.964 141.903 21.966 C 142.174 21.966 142.269 21.819 142.251 21.485 C 142.192 20.422 142.053 18.349 142.209 16.412 C 142.422 13.747 143.218 12.426 144.165 11.257 C 144.62 10.696 146.755 8.263 150.841 8.263 C 154.926 8.263 157.069 10.685 157.523 11.245 C 158.47 12.414 159.268 13.735 159.48 16.4 C 159.635 18.336 159.501 20.411 159.438 21.473 C 159.417 21.825 159.513 21.954 159.784 21.954 C 159.847 21.953 159.91 21.943 159.971 21.926 C 160.477 21.795 161.353 21.308 162.255 21.096 C 162.402 21.061 162.552 21.043 162.703 21.043 C 163.182 21.043 163.635 21.244 163.82 21.765 C 164.087 22.524 163.728 23.142 162.905 23.76 C 162.408 24.135 160.619 25.328 160.216 25.73 C 159.797 26.147 159.851 26.467 159.9 26.877 C 159.941 27.219 160.84 31.768 166.488 34.709 C 166.822 34.891 167.384 35.255 166.391 35.851 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 205.916 0.7 C 193.061 0.7 182.64 11.765 182.64 25.413 C 182.64 35.881 188.775 44.831 197.434 48.433 C 197.231 46.477 197.046 43.47 197.514 41.335 C 197.937 39.407 200.243 29.052 200.243 29.052 C 200.243 29.052 199.547 27.572 199.547 25.383 C 199.547 21.947 201.423 19.383 203.759 19.383 C 205.745 19.383 206.704 20.965 206.704 22.862 C 206.704 24.983 205.432 28.153 204.776 31.091 C 204.227 33.551 205.938 35.558 208.223 35.558 C 212.36 35.558 215.539 30.925 215.539 24.241 C 215.539 18.322 211.536 14.186 205.818 14.186 C 199.194 14.186 195.308 19.46 195.308 24.911 C 195.308 27.035 196.078 29.313 197.04 30.55 C 197.207 30.74 197.268 31.009 197.201 31.259 C 197.024 32.039 196.632 33.719 196.555 34.061 C 196.454 34.514 196.217 34.611 195.776 34.392 C 192.869 32.955 191.051 28.443 191.051 24.817 C 191.051 17.022 196.386 9.863 206.431 9.863 C 214.504 9.863 220.779 15.973 220.779 24.137 C 220.779 32.654 215.722 39.508 208.701 39.508 C 206.344 39.508 204.126 38.207 203.366 36.67 C 203.366 36.67 202.199 41.389 201.916 42.544 C 201.392 44.691 199.972 47.382 199.024 49.023 C 201.202 49.738 203.516 50.125 205.916 50.125 C 218.771 50.125 229.191 39.061 229.191 25.413 C 229.191 11.765 218.771 0.7 205.916 0.7 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:8897099992}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1omcscg\",\"data-framer-name\":\"Social medias\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 181 41\"><path d=\"M 5.347 25.496 C 5.347 27.479 5.761 29.003 6.304 29.924 C 7.015 31.131 8.075 31.643 9.156 31.643 C 10.551 31.643 11.827 31.279 14.285 27.711 C 16.254 24.851 18.575 20.836 20.135 18.319 L 22.78 14.055 C 24.616 11.093 26.742 7.802 29.181 5.57 C 31.17 3.75 33.316 2.738 35.477 2.738 C 39.104 2.738 42.559 4.943 45.204 9.081 C 48.096 13.613 49.501 19.319 49.501 25.211 C 49.501 28.712 48.844 31.285 47.724 33.318 C 46.644 35.283 44.537 37.247 40.992 37.247 L 40.992 31.643 C 44.027 31.643 44.784 28.715 44.784 25.366 C 44.784 20.593 43.725 15.294 41.388 11.509 C 39.731 8.824 37.583 7.184 35.219 7.184 C 32.663 7.184 30.606 9.207 28.293 12.815 C 27.064 14.733 25.802 17.069 24.386 19.705 L 22.826 22.605 C 19.694 28.435 18.9 29.762 17.333 31.955 C 14.587 35.793 12.243 37.247 9.156 37.247 C 5.495 37.247 3.18 35.583 1.746 33.076 C 0.574 31.031 0 28.35 0 25.295 L 5.347 25.494 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 4.214 9.477 C 6.665 5.51 10.203 2.738 14.26 2.738 C 16.611 2.738 18.947 3.467 21.386 5.558 C 24.054 7.843 26.897 11.607 30.446 17.809 L 31.717 20.035 C 34.788 25.406 36.536 28.168 37.559 29.471 C 38.873 31.144 39.795 31.643 40.991 31.643 C 44.026 31.643 44.783 28.715 44.783 25.366 L 49.5 25.21 C 49.5 28.713 48.842 31.285 47.723 33.317 C 46.642 35.283 44.535 37.247 40.991 37.247 C 38.787 37.247 36.836 36.745 34.677 34.608 C 33.017 32.968 31.077 30.053 29.585 27.433 L 25.145 19.65 C 22.917 15.743 20.873 12.831 19.693 11.512 C 18.419 10.093 16.784 8.38 14.174 8.38 C 12.062 8.38 10.268 9.936 8.766 12.316 L 4.215 9.477 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 14.176 8.38 C 12.064 8.38 10.27 9.936 8.769 12.316 C 6.646 15.678 5.347 20.686 5.347 25.495 C 5.347 27.479 5.761 29.003 6.304 29.924 L 1.746 33.075 C 0.574 31.032 0 28.351 0 25.296 C 0 19.739 1.452 13.948 4.216 9.477 C 6.666 5.51 10.204 2.738 14.261 2.738 L 14.175 8.38 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 85.01 14.433 C 87.545 16.345 90.578 17.369 93.687 17.363 L 93.687 10.794 C 93.075 10.794 92.464 10.726 91.865 10.592 L 91.865 15.764 C 88.63 15.764 85.635 14.678 83.189 12.834 L 83.189 26.24 C 83.189 32.948 78.036 38.384 71.682 38.384 C 69.31 38.384 67.106 37.627 65.276 36.331 C 67.444 38.673 70.41 39.989 73.504 39.983 C 79.859 39.983 85.012 34.548 85.012 27.839 L 85.012 14.433 Z M 87.259 7.805 C 85.974 6.329 85.184 4.445 85.01 2.444 L 85.01 1.599 L 83.284 1.599 C 83.717 4.173 85.163 6.43 87.259 7.805 Z M 69.295 31.183 C 68.598 30.219 68.22 29.036 68.222 27.82 C 68.222 24.752 70.578 22.265 73.486 22.265 C 74.027 22.265 74.565 22.353 75.082 22.525 L 75.082 15.808 C 74.479 15.721 73.87 15.685 73.261 15.698 L 73.261 20.926 C 72.744 20.753 72.205 20.666 71.663 20.666 C 68.756 20.666 66.398 23.153 66.398 26.221 C 66.401 28.324 67.522 30.245 69.295 31.183 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 83.194 12.834 C 85.728 14.745 88.762 15.769 91.871 15.763 L 91.871 10.593 C 90.1 10.194 88.49 9.22 87.264 7.805 C 85.169 6.43 83.723 4.174 83.29 1.6 L 78.754 1.6 L 78.754 27.841 C 78.744 30.901 76.392 33.378 73.49 33.378 C 71.848 33.38 70.298 32.57 69.3 31.186 C 67.528 30.247 66.407 28.326 66.405 26.224 C 66.405 23.156 68.761 20.669 71.669 20.669 C 72.226 20.669 72.762 20.76 73.266 20.929 L 73.266 15.701 C 67.022 15.837 62.001 21.22 62.001 27.841 C 62.001 31.147 63.252 34.144 65.281 36.333 C 67.178 37.676 69.407 38.391 71.687 38.387 C 78.043 38.387 83.195 32.95 83.195 26.242 L 83.195 12.834 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 91.866 10.592 L 91.866 9.196 C 90.239 9.199 88.643 8.717 87.26 7.806 C 88.485 9.221 90.095 10.196 91.866 10.594 Z M 83.285 1.599 C 83.244 1.349 83.212 1.097 83.19 0.845 L 83.19 0 L 76.928 0 L 76.928 26.242 C 76.918 29.3 74.566 31.777 71.664 31.777 C 70.813 31.777 70.008 31.564 69.297 31.186 C 70.295 32.569 71.845 33.38 73.487 33.376 C 76.388 33.376 78.741 30.9 78.752 27.841 L 78.752 1.599 Z M 73.262 15.699 L 73.262 14.212 C 72.739 14.136 72.212 14.098 71.684 14.098 C 65.327 14.098 60.175 19.535 60.175 26.242 C 60.175 30.447 62.2 34.152 65.277 36.332 C 63.173 34.071 61.994 31.02 61.997 27.841 C 61.997 21.22 67.019 15.837 73.262 15.699 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 131.023 27.312 C 126.58 24.994 125.871 21.415 125.839 21.15 C 125.802 20.828 125.759 20.576 126.087 20.248 C 126.405 19.932 127.814 18.992 128.204 18.698 C 128.85 18.212 129.135 17.726 128.925 17.129 C 128.778 16.715 128.421 16.559 128.045 16.559 C 127.927 16.56 127.808 16.575 127.692 16.603 C 126.983 16.768 126.294 17.152 125.894 17.255 C 125.846 17.268 125.797 17.275 125.748 17.276 C 125.536 17.276 125.455 17.174 125.475 16.899 C 125.525 16.063 125.631 14.431 125.508 12.907 C 125.34 10.81 124.712 9.771 123.968 8.852 C 123.609 8.407 121.937 6.492 118.711 6.492 C 115.485 6.492 113.816 8.406 113.457 8.847 C 112.711 9.765 112.084 10.804 111.918 12.901 C 111.795 14.426 111.905 16.057 111.951 16.893 C 111.966 17.156 111.891 17.27 111.678 17.27 C 111.629 17.27 111.579 17.262 111.531 17.249 C 111.134 17.146 110.444 16.763 109.735 16.597 C 109.619 16.569 109.5 16.555 109.381 16.555 C 109.004 16.555 108.649 16.713 108.502 17.123 C 108.292 17.72 108.576 18.206 109.224 18.692 C 109.614 18.987 111.023 19.926 111.34 20.242 C 111.668 20.57 111.626 20.822 111.588 21.144 C 111.557 21.414 110.847 24.992 106.405 27.306 C 106.144 27.443 105.702 27.73 106.482 28.195 C 107.707 28.925 108.524 28.846 109.158 29.287 C 109.696 29.661 109.379 30.467 109.77 30.757 C 110.251 31.115 111.673 30.732 113.509 31.385 C 115.049 31.932 115.985 33.477 118.715 33.477 C 121.444 33.477 122.408 31.925 123.92 31.385 C 125.753 30.732 127.178 31.115 127.659 30.757 C 128.05 30.467 127.733 29.661 128.271 29.287 C 128.905 28.846 129.721 28.925 130.947 28.195 C 131.726 27.736 131.283 27.448 131.023 27.312 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 132.953 27.04 C 132.755 26.454 132.375 26.143 131.942 25.884 C 131.871 25.839 131.797 25.797 131.722 25.76 C 131.594 25.687 131.461 25.618 131.33 25.544 C 129.981 24.773 128.928 23.802 128.199 22.651 C 127.991 22.326 127.811 21.982 127.661 21.623 C 127.598 21.431 127.602 21.322 127.647 21.223 C 127.691 21.146 127.749 21.08 127.819 21.028 C 128.051 20.864 128.289 20.696 128.452 20.583 C 128.741 20.382 128.969 20.222 129.116 20.109 C 129.67 19.692 130.057 19.249 130.299 18.753 C 130.64 18.059 130.685 17.243 130.423 16.511 C 130.056 15.471 129.145 14.826 128.041 14.826 C 127.746 14.825 127.451 14.867 127.167 14.951 C 127.18 14.217 127.159 13.482 127.104 12.75 C 126.895 10.153 126.052 8.79 125.171 7.706 C 124.61 7.027 123.947 6.451 123.208 6.002 C 121.873 5.181 120.358 4.763 118.708 4.763 C 117.058 4.763 115.551 5.181 114.214 6.002 C 113.474 6.452 112.809 7.029 112.246 7.709 C 111.367 8.795 110.524 10.157 110.315 12.753 C 110.26 13.485 110.239 14.219 110.251 14.953 C 109.967 14.869 109.673 14.827 109.378 14.828 C 108.273 14.828 107.361 15.475 106.994 16.515 C 106.73 17.247 106.775 18.064 107.116 18.759 C 107.358 19.254 107.746 19.696 108.3 20.115 C 108.445 20.226 108.675 20.384 108.964 20.589 C 109.121 20.698 109.348 20.858 109.571 21.017 C 109.65 21.071 109.717 21.143 109.768 21.227 C 109.814 21.332 109.815 21.443 109.746 21.649 C 109.598 22 109.421 22.336 109.217 22.654 C 108.503 23.78 107.481 24.735 106.176 25.498 C 105.484 25.893 104.766 26.158 104.462 27.046 C 104.234 27.717 104.383 28.48 104.965 29.124 C 105.179 29.364 105.426 29.566 105.698 29.721 C 106.264 30.057 106.866 30.317 107.492 30.495 C 107.621 30.531 107.744 30.59 107.854 30.67 C 108.066 30.869 108.036 31.171 108.317 31.611 C 108.461 31.839 108.64 32.036 108.849 32.193 C 109.442 32.634 110.108 32.662 110.813 32.691 C 111.45 32.717 112.173 32.747 112.997 33.04 C 113.338 33.162 113.693 33.397 114.105 33.673 C 115.093 34.326 116.444 35.221 118.707 35.221 C 120.97 35.221 122.331 34.322 123.326 33.665 C 123.734 33.395 124.087 33.161 124.419 33.044 C 125.244 32.75 125.966 32.72 126.603 32.695 C 127.308 32.665 127.974 32.637 128.566 32.197 C 128.815 32.009 129.021 31.768 129.171 31.486 C 129.374 31.113 129.369 30.853 129.56 30.672 C 129.663 30.595 129.778 30.539 129.9 30.504 C 130.534 30.325 131.144 30.063 131.717 29.724 C 132.008 29.556 132.268 29.336 132.488 29.074 L 132.495 29.064 C 133.041 28.435 133.177 27.694 132.953 27.04 Z M 130.942 28.204 C 129.716 28.934 128.901 28.857 128.267 29.296 C 127.728 29.671 128.046 30.476 127.656 30.768 C 127.175 31.125 125.753 30.742 123.917 31.395 C 122.401 31.934 121.434 33.486 118.711 33.486 C 115.986 33.486 115.042 31.938 113.502 31.391 C 111.669 30.737 110.246 31.121 109.763 30.763 C 109.373 30.472 109.69 29.666 109.152 29.293 C 108.517 28.852 107.702 28.931 106.475 28.204 C 105.695 27.739 106.138 27.452 106.398 27.317 C 110.842 24.998 111.55 21.42 111.582 21.154 C 111.62 20.833 111.663 20.58 111.334 20.252 C 111.017 19.935 109.608 18.997 109.217 18.703 C 108.57 18.216 108.287 17.731 108.496 17.133 C 108.643 16.72 109.001 16.564 109.376 16.564 C 109.494 16.564 109.613 16.578 109.729 16.606 C 110.438 16.773 111.127 17.157 111.526 17.259 C 111.573 17.272 111.622 17.28 111.671 17.281 C 111.884 17.281 111.96 17.165 111.945 16.903 C 111.899 16.066 111.79 14.436 111.912 12.911 C 112.08 10.815 112.707 9.776 113.452 8.856 C 113.809 8.414 115.49 6.5 118.705 6.5 C 121.92 6.5 123.606 8.406 123.964 8.847 C 124.709 9.766 125.337 10.805 125.504 12.902 C 125.626 14.425 125.52 16.058 125.471 16.893 C 125.454 17.17 125.53 17.272 125.743 17.272 C 125.793 17.27 125.842 17.263 125.89 17.249 C 126.288 17.146 126.978 16.763 127.688 16.597 C 127.804 16.569 127.922 16.555 128.04 16.555 C 128.417 16.555 128.774 16.713 128.919 17.123 C 129.129 17.72 128.847 18.206 128.199 18.692 C 127.808 18.988 126.4 19.926 126.083 20.242 C 125.753 20.57 125.796 20.822 125.835 21.144 C 125.867 21.414 126.574 24.992 131.019 27.306 C 131.281 27.449 131.724 27.736 130.942 28.204 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 162.047 0.551 C 151.931 0.551 143.729 9.255 143.729 19.993 C 143.729 28.228 148.558 35.269 155.372 38.103 C 155.212 36.564 155.066 34.199 155.435 32.519 C 155.768 31.002 157.583 22.856 157.583 22.856 C 157.583 22.856 157.035 21.691 157.035 19.969 C 157.035 17.266 158.511 15.248 160.349 15.248 C 161.912 15.248 162.667 16.494 162.667 17.986 C 162.667 19.654 161.666 22.148 161.15 24.459 C 160.718 26.395 162.065 27.974 163.862 27.974 C 167.118 27.974 169.62 24.329 169.62 19.071 C 169.62 14.414 166.469 11.16 161.97 11.16 C 156.757 11.16 153.699 15.309 153.699 19.598 C 153.699 21.268 154.305 23.061 155.062 24.034 C 155.193 24.184 155.241 24.395 155.189 24.592 C 155.05 25.206 154.741 26.527 154.68 26.796 C 154.6 27.153 154.414 27.229 154.067 27.056 C 151.78 25.926 150.349 22.377 150.349 19.524 C 150.349 13.392 154.548 7.76 162.452 7.76 C 168.806 7.76 173.743 12.566 173.743 18.989 C 173.743 25.689 169.764 31.082 164.239 31.082 C 162.383 31.082 160.639 30.058 160.04 28.849 C 160.04 28.849 159.122 32.561 158.899 33.47 C 158.486 35.159 157.37 37.276 156.624 38.567 C 158.337 39.129 160.159 39.434 162.047 39.434 C 172.163 39.434 180.363 30.73 180.363 19.993 C 180.363 9.255 172.163 0.551 162.047 0.551 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9996547209,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 212.21 50.844\"><path d=\"M 0 38.426 L 12.708 38.426 L 12.708 37.09 L 11.756 37.09 C 9.897 37.09 9.453 36.59 9.453 34.761 L 9.453 18.216 C 10.746 16.048 12.491 14.657 14.686 14.657 C 17.445 14.657 19.127 16.657 19.127 20.435 L 19.127 34.761 C 19.127 36.594 18.676 37.09 16.875 37.09 L 15.861 37.09 L 15.861 38.425 L 28.288 38.425 L 28.288 37.096 L 27.388 37.096 C 25.528 37.096 25.084 36.596 25.084 34.765 L 25.084 19.82 C 25.084 19.319 25.084 18.819 25.027 18.322 C 26.264 16.099 28.122 14.659 30.312 14.659 C 33.07 14.659 34.759 16.657 34.759 20.433 L 34.759 34.761 C 34.759 36.594 34.308 37.09 32.506 37.09 L 31.491 37.09 L 31.491 38.425 L 43.92 38.425 L 43.92 37.096 L 43.077 37.096 C 41.159 37.096 40.715 36.596 40.715 34.765 L 40.715 19.82 C 40.715 14.213 37.511 11.099 32.843 11.099 C 29.36 11.099 26.32 12.992 24.691 16.763 C 23.739 13.099 20.923 11.101 17.211 11.101 C 13.894 11.101 11.026 12.873 9.446 16.432 L 9.446 11.764 L 0 11.764 L 0 13.099 L 1.123 13.099 C 3.038 13.099 3.483 13.6 3.483 15.429 L 3.483 34.754 C 3.483 36.59 3.033 37.086 1.123 37.086 L 0 37.086 Z M 51.405 7.328 C 53.447 7.309 55.098 5.679 55.115 3.662 C 55.096 1.647 53.446 0.018 51.405 0 C 49.363 0.018 47.711 1.647 47.693 3.664 C 47.71 5.681 49.362 7.312 51.405 7.329 Z M 45.106 38.423 L 57.59 38.423 L 57.59 37.089 L 56.747 37.089 C 54.887 37.089 54.443 36.588 54.443 34.759 L 54.443 11.771 L 44.992 11.771 L 44.992 13.104 L 46.115 13.104 C 48.03 13.104 48.474 13.606 48.474 15.435 L 48.474 34.761 C 48.474 36.594 48.023 37.09 46.114 37.09 L 45.099 37.09 L 45.106 38.425 Z M 66.701 22.769 L 70.298 22.769 C 69.396 22.211 69.06 21.435 68.609 19.993 L 67.258 15.051 C 66.643 12.827 66.135 11.774 63.661 11.774 L 58.49 11.774 L 58.49 13.109 L 59.227 13.109 C 60.742 13.109 60.914 13.666 61.365 15.332 L 62.544 19.666 C 63.161 21.772 64.123 22.769 66.699 22.769 Z M 75.029 22.769 L 78.627 22.769 C 81.214 22.769 82.11 21.768 82.731 19.661 L 83.91 15.327 C 84.361 13.66 84.583 13.102 86.048 13.102 L 86.785 13.102 L 86.785 11.771 L 81.665 11.771 C 79.134 11.771 78.627 12.773 78.06 15.047 L 76.711 19.99 C 76.266 21.487 75.924 22.213 75.029 22.771 Z M 70.302 27.43 L 75.03 27.43 L 75.03 22.761 L 70.302 22.761 Z M 58.49 38.429 L 63.663 38.429 C 66.138 38.429 66.643 37.371 67.26 35.152 L 68.611 30.211 C 69.062 28.769 69.399 27.986 70.299 27.434 L 66.701 27.434 C 64.114 27.434 63.156 28.436 62.54 30.542 L 61.36 34.876 C 60.909 36.543 60.744 37.101 59.222 37.101 L 58.487 37.101 L 58.492 38.429 Z M 81.659 38.429 L 86.778 38.429 L 86.778 37.095 L 86.043 37.095 C 84.584 37.095 84.355 36.537 83.906 34.872 L 82.724 30.536 C 82.11 28.425 81.209 27.43 78.621 27.43 L 75.029 27.43 C 75.929 27.986 76.255 28.709 76.705 30.203 L 78.056 35.147 C 78.621 37.428 79.128 38.429 81.66 38.429 Z M 87.509 49.535 L 100.553 49.535 L 100.553 48.201 L 99.2 48.201 C 97.406 48.201 96.949 47.7 96.949 45.871 L 96.949 35.264 C 98.579 37.653 101.338 39.099 104.599 39.099 C 110.728 39.099 115.619 33.768 115.619 24.553 C 115.619 16.222 111.008 11.116 105.044 11.116 C 101.561 11.116 98.631 13.115 96.943 16.666 L 96.943 11.782 L 87.491 11.782 L 87.491 13.116 L 88.615 13.116 C 90.472 13.116 90.974 13.617 90.974 15.446 L 90.974 45.872 C 90.974 47.706 90.467 48.202 88.615 48.202 L 87.491 48.202 L 87.491 49.536 L 87.507 49.536 Z M 102.922 14.551 C 106.576 14.551 109.558 17.94 109.558 24.656 C 109.558 31.984 106.798 35.987 103.036 35.987 C 100.612 35.987 98.479 34.708 96.958 32.487 L 96.958 18.712 C 98.419 15.993 100.505 14.546 102.922 14.552 Z M 124.517 38.987 C 128.17 38.987 131.096 37.264 133.29 33.382 L 133.29 33.989 C 133.29 37.321 135.427 38.762 138.969 38.762 C 140.04 38.762 141.391 38.654 142.287 38.374 L 142.287 36.984 C 141.836 37.092 141.499 37.153 141.163 37.153 C 139.754 37.153 139.305 36.32 139.305 34.986 L 139.305 20.772 C 139.305 14.219 135.593 11.106 129.35 11.106 C 125.19 11.106 121.142 12.998 118.552 14.996 L 119.454 16.555 C 122.156 14.72 124.797 13.668 127.663 13.668 C 131.375 13.668 133.285 15.666 133.285 20.333 L 133.285 21.553 L 126.363 24.222 C 120.064 26.778 117.755 29.165 117.755 32.773 C 117.761 36.375 120.35 38.987 124.517 38.987 Z M 123.673 31.32 C 123.673 28.547 125.304 26.547 128.621 25.1 L 133.29 23.102 L 133.29 31.765 C 131.545 34.152 129.521 35.542 127.328 35.542 C 125.138 35.542 123.678 34.046 123.673 31.32 Z M 143.409 38.431 L 156.236 38.431 L 156.236 37.096 L 155.164 37.096 C 153.306 37.096 152.861 36.596 152.861 34.765 L 152.861 18.273 C 154.156 16.05 156.065 14.665 158.316 14.665 C 161.242 14.665 163.101 16.665 163.101 20.441 L 163.101 34.767 C 163.101 36.602 162.65 37.098 160.849 37.098 L 159.777 37.098 L 159.777 38.432 L 172.541 38.432 L 172.541 37.098 L 171.417 37.098 C 169.503 37.098 169.058 36.597 169.058 34.767 L 169.058 19.822 C 169.058 14.215 165.683 11.101 160.905 11.101 C 157.422 11.101 154.492 12.876 152.861 16.432 L 152.861 11.767 L 143.409 11.767 L 143.409 13.101 L 144.532 13.101 C 146.448 13.101 146.893 13.602 146.893 15.431 L 146.893 34.756 C 146.893 36.591 146.442 37.087 144.532 37.087 L 143.409 37.087 L 143.409 38.432 Z M 187.163 39.093 C 190.875 39.093 194.364 37.429 196.895 35.429 L 196.051 34.209 C 193.799 35.818 191.268 36.539 188.907 36.539 C 183.173 36.539 179.798 32.542 179.798 24.767 L 179.798 23.766 L 197.567 23.766 C 197.46 16.269 192.785 11.163 185.983 11.163 C 179.182 11.163 173.72 17.213 173.72 25.214 C 173.727 33.995 178.788 39.101 187.163 39.095 Z M 186.039 12.546 C 189.415 12.546 191.496 16.156 191.832 22.264 L 179.912 22.264 C 180.419 16.105 182.78 12.548 186.039 12.548 Z M 198.805 38.425 L 211.848 38.425 L 211.848 37.09 L 210.554 37.09 C 208.696 37.09 208.251 36.59 208.251 34.761 L 208.251 0.663 L 198.799 0.663 L 198.799 1.997 L 199.922 1.997 C 201.78 1.997 202.281 2.498 202.281 4.328 L 202.281 34.758 C 202.281 36.594 201.774 37.089 199.922 37.089 L 198.799 37.089 L 198.805 38.423 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9573230453}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1suleb7\",\"data-framer-name\":\"Mixpanel logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 167 40\"><path d=\"M 0 30.23 L 10 30.23 L 10 29.179 L 9.251 29.179 C 7.789 29.179 7.439 28.785 7.439 27.347 L 7.439 14.331 C 8.457 12.625 9.83 11.531 11.557 11.531 C 13.728 11.531 15.052 13.104 15.052 16.076 L 15.052 27.347 C 15.052 28.789 14.697 29.179 13.28 29.179 L 12.482 29.179 L 12.482 30.229 L 22.261 30.229 L 22.261 29.184 L 21.553 29.184 C 20.089 29.184 19.74 28.79 19.74 27.35 L 19.74 15.593 C 19.74 15.199 19.74 14.805 19.695 14.415 C 20.669 12.665 22.131 11.532 23.854 11.532 C 26.025 11.532 27.354 13.104 27.354 16.075 L 27.354 27.347 C 27.354 28.789 26.999 29.179 25.58 29.179 L 24.782 29.179 L 24.782 30.229 L 34.563 30.229 L 34.563 29.184 L 33.9 29.184 C 32.391 29.184 32.041 28.79 32.041 27.35 L 32.041 15.593 C 32.041 11.182 29.52 8.732 25.846 8.732 C 23.105 8.732 20.713 10.221 19.431 13.188 C 18.682 10.305 16.465 8.733 13.544 8.733 C 10.934 8.733 8.677 10.127 7.434 12.927 L 7.434 9.255 L 0 9.255 L 0 10.305 L 0.884 10.305 C 2.391 10.305 2.741 10.699 2.741 12.138 L 2.741 27.342 C 2.741 28.785 2.387 29.176 0.884 29.176 L 0 29.176 Z M 40.453 5.765 C 42.06 5.75 43.359 4.468 43.373 2.881 C 43.358 1.296 42.059 0.014 40.453 0 C 38.846 0.014 37.547 1.296 37.532 2.882 C 37.546 4.469 38.846 5.752 40.453 5.766 Z M 35.496 30.228 L 45.321 30.228 L 45.321 29.178 L 44.658 29.178 C 43.194 29.178 42.844 28.784 42.844 27.345 L 42.844 9.261 L 35.406 9.261 L 35.406 10.309 L 36.291 10.309 C 37.797 10.309 38.147 10.704 38.147 12.143 L 38.147 27.347 C 38.147 28.789 37.792 29.179 36.289 29.179 L 35.491 29.179 L 35.496 30.229 Z M 52.491 17.913 L 55.321 17.913 C 54.611 17.474 54.347 16.863 53.993 15.728 L 52.929 11.841 C 52.445 10.091 52.045 9.263 50.099 9.263 L 46.029 9.263 L 46.029 10.313 L 46.609 10.313 C 47.801 10.313 47.936 10.752 48.291 12.062 L 49.22 15.472 C 49.705 17.128 50.462 17.913 52.49 17.913 Z M 59.044 17.913 L 61.876 17.913 C 63.912 17.913 64.617 17.125 65.105 15.468 L 66.034 12.058 C 66.389 10.747 66.563 10.308 67.716 10.308 L 68.296 10.308 L 68.296 9.261 L 64.267 9.261 C 62.275 9.261 61.876 10.048 61.43 11.838 L 60.368 15.726 C 60.018 16.904 59.749 17.475 59.044 17.914 Z M 55.325 21.579 L 59.046 21.579 L 59.046 17.907 L 55.325 17.907 Z M 46.029 30.233 L 50.1 30.233 C 52.048 30.233 52.445 29.4 52.93 27.655 L 53.994 23.767 C 54.349 22.633 54.614 22.017 55.322 21.583 L 52.491 21.583 C 50.455 21.583 49.701 22.371 49.216 24.028 L 48.288 27.438 C 47.933 28.749 47.803 29.188 46.605 29.188 L 46.027 29.188 L 46.031 30.233 Z M 64.262 30.233 L 68.291 30.233 L 68.291 29.183 L 67.712 29.183 C 66.564 29.183 66.384 28.744 66.03 27.434 L 65.101 24.023 C 64.617 22.362 63.908 21.579 61.871 21.579 L 59.044 21.579 C 59.753 22.017 60.009 22.585 60.363 23.761 L 61.427 27.651 C 61.871 29.445 62.27 30.233 64.263 30.233 Z M 68.865 38.97 L 79.131 38.97 L 79.131 37.92 L 78.066 37.92 C 76.654 37.92 76.294 37.526 76.294 36.087 L 76.294 27.743 C 77.578 29.622 79.749 30.76 82.315 30.76 C 87.138 30.76 90.987 26.566 90.987 19.316 C 90.987 12.762 87.358 8.745 82.665 8.745 C 79.924 8.745 77.618 10.318 76.29 13.112 L 76.29 9.269 L 68.852 9.269 L 68.852 10.319 L 69.736 10.319 C 71.197 10.319 71.593 10.713 71.593 12.152 L 71.593 36.088 C 71.593 37.531 71.194 37.921 69.736 37.921 L 68.852 37.921 L 68.852 38.971 L 68.864 38.971 Z M 80.995 11.447 C 83.871 11.447 86.217 14.114 86.217 19.398 C 86.217 25.162 84.045 28.312 81.085 28.312 C 79.178 28.312 77.499 27.305 76.302 25.558 L 76.302 14.721 C 77.451 12.582 79.093 11.444 80.995 11.448 Z M 97.99 30.672 C 100.864 30.672 103.167 29.316 104.893 26.262 L 104.893 26.739 C 104.893 29.361 106.575 30.495 109.363 30.495 C 110.205 30.495 111.269 30.41 111.973 30.189 L 111.973 29.096 C 111.619 29.181 111.353 29.229 111.089 29.229 C 109.981 29.229 109.627 28.573 109.627 27.524 L 109.627 16.342 C 109.627 11.187 106.706 8.737 101.793 8.737 C 98.519 8.737 95.334 10.225 93.295 11.798 L 94.005 13.024 C 96.132 11.581 98.21 10.753 100.465 10.753 C 103.387 10.753 104.89 12.325 104.89 15.996 L 104.89 16.956 L 99.442 19.056 C 94.485 21.067 92.668 22.944 92.668 25.783 C 92.673 28.617 94.71 30.672 97.99 30.672 Z M 97.325 24.64 C 97.325 22.458 98.609 20.885 101.219 19.747 L 104.893 18.175 L 104.893 24.99 C 103.52 26.868 101.928 27.961 100.201 27.961 C 98.478 27.961 97.329 26.784 97.325 24.64 Z M 112.856 30.234 L 122.951 30.234 L 122.951 29.184 L 122.108 29.184 C 120.645 29.184 120.295 28.79 120.295 27.35 L 120.295 14.376 C 121.314 12.627 122.816 11.537 124.588 11.537 C 126.891 11.537 128.353 13.11 128.353 16.081 L 128.353 27.352 C 128.353 28.795 127.998 29.185 126.581 29.185 L 125.737 29.185 L 125.737 30.235 L 135.782 30.235 L 135.782 29.185 L 134.898 29.185 C 133.391 29.185 133.041 28.792 133.041 27.352 L 133.041 15.594 C 133.041 11.183 130.385 8.733 126.625 8.733 C 123.885 8.733 121.578 10.13 120.295 12.927 L 120.295 9.257 L 112.856 9.257 L 112.856 10.307 L 113.741 10.307 C 115.248 10.307 115.598 10.701 115.598 12.139 L 115.598 27.343 C 115.598 28.787 115.244 29.177 113.741 29.177 L 112.856 29.177 L 112.856 30.235 Z M 147.289 30.755 C 150.21 30.755 152.956 29.446 154.948 27.873 L 154.283 26.913 C 152.512 28.178 150.52 28.745 148.662 28.745 C 144.149 28.745 141.493 25.601 141.493 19.485 L 141.493 18.697 L 155.477 18.697 C 155.392 12.799 151.713 8.782 146.361 8.782 C 141.008 8.782 136.71 13.542 136.71 19.836 C 136.715 26.744 140.699 30.761 147.289 30.756 Z M 146.405 9.87 C 149.061 9.87 150.699 12.71 150.963 17.515 L 141.583 17.515 C 141.982 12.67 143.84 9.872 146.405 9.872 Z M 156.451 30.229 L 166.715 30.229 L 166.715 29.179 L 165.697 29.179 C 164.235 29.179 163.885 28.785 163.885 27.347 L 163.885 0.521 L 156.446 0.521 L 156.446 1.571 L 157.33 1.571 C 158.792 1.571 159.187 1.965 159.187 3.405 L 159.187 27.344 C 159.187 28.789 158.788 29.178 157.33 29.178 L 156.446 29.178 L 156.451 30.228 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10889381269,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 179.171 62.284\"><path d=\"M 104.582 16.698 C 104.582 21.247 101.034 24.6 96.679 24.6 C 92.327 24.6 88.779 21.247 88.779 16.696 C 88.779 12.114 92.327 8.793 96.679 8.793 C 101.034 8.793 104.582 12.114 104.582 16.698 Z M 101.123 16.698 C 101.123 13.854 99.066 11.908 96.679 11.908 C 94.295 11.908 92.238 13.854 92.238 16.698 C 92.238 19.511 94.295 21.485 96.679 21.485 C 99.066 21.485 101.123 19.509 101.123 16.698 Z M 121.626 16.698 C 121.626 21.247 118.078 24.6 113.726 24.6 C 109.372 24.6 105.825 21.247 105.825 16.696 C 105.825 12.119 109.372 8.793 113.726 8.793 C 118.078 8.793 121.626 12.114 121.626 16.698 Z M 118.167 16.698 C 118.167 13.854 116.111 11.908 113.726 11.908 C 111.339 11.908 109.283 13.854 109.283 16.698 C 109.283 19.511 111.339 21.485 113.726 21.485 C 116.111 21.485 118.167 19.509 118.167 16.698 Z M 137.963 9.272 L 137.963 23.46 C 137.963 29.296 134.534 31.679 130.478 31.679 C 126.66 31.679 124.362 29.117 123.497 27.022 L 126.508 25.766 C 127.044 27.051 128.356 28.569 130.473 28.569 C 133.069 28.569 134.678 26.962 134.678 23.937 L 134.678 22.8 L 134.558 22.8 C 133.783 23.759 132.292 24.595 130.41 24.595 C 126.472 24.595 122.864 21.155 122.864 16.725 C 122.864 12.264 126.472 8.795 130.41 8.795 C 132.289 8.795 133.78 9.633 134.558 10.561 L 134.679 10.561 L 134.679 9.275 L 137.963 9.275 Z M 134.923 16.725 C 134.923 13.943 133.073 11.908 130.719 11.908 C 128.332 11.908 126.333 13.943 126.333 16.725 C 126.333 19.479 128.332 21.485 130.719 21.485 C 133.072 21.485 134.923 19.479 134.923 16.725 Z M 143.375 0.956 L 143.375 24.117 L 140 24.117 L 140 0.956 Z M 156.524 19.298 L 159.207 21.093 C 158.341 22.38 156.253 24.595 152.644 24.595 C 148.17 24.595 144.828 21.126 144.828 16.692 C 144.828 11.994 148.199 8.791 152.257 8.791 C 156.345 8.791 158.344 12.053 158.997 13.817 L 159.355 14.715 L 148.828 19.09 C 149.633 20.676 150.886 21.485 152.644 21.485 C 154.406 21.485 155.626 20.615 156.524 19.298 Z M 148.259 16.453 L 155.298 13.523 C 154.91 12.535 153.746 11.848 152.375 11.848 C 150.618 11.848 148.17 13.405 148.259 16.454 Z M 76.01 14.641 L 76.01 11.29 L 87.271 11.29 C 87.381 11.874 87.437 12.564 87.437 13.315 C 87.437 15.83 86.753 18.94 84.543 21.157 C 82.395 23.402 79.649 24.597 76.014 24.597 C 69.274 24.597 63.606 19.09 63.606 12.327 C 63.606 5.565 69.274 0.055 76.014 0.055 C 79.743 0.055 82.399 1.523 84.394 3.438 L 82.038 5.804 C 80.606 4.456 78.666 3.409 76.011 3.409 C 71.087 3.409 67.24 7.389 67.24 12.327 C 67.24 17.266 71.089 21.245 76.01 21.245 C 79.202 21.245 81.021 19.958 82.185 18.79 C 83.13 17.842 83.751 16.488 83.997 14.64 L 76.01 14.644 Z M 72.848 37.051 L 69.377 46.677 L 76.455 46.677 L 72.959 37.051 L 72.847 37.051 Z M 66.386 55.01 L 63.367 55.01 L 71.367 33.685 L 74.47 33.685 L 82.47 55.01 L 79.448 55.01 L 77.406 49.23 L 68.458 49.23 Z M 83.844 40.418 L 86.472 40.418 L 86.472 42.438 L 86.585 42.438 C 86.988 41.731 87.625 41.14 88.485 40.67 C 89.36 40.186 90.254 39.941 91.17 39.941 C 92.962 39.941 94.33 40.459 95.281 41.484 C 96.246 42.495 96.734 43.947 96.734 45.834 L 96.734 55.007 L 93.994 55.007 L 93.994 46.03 C 93.938 43.637 92.743 42.438 90.415 42.438 C 89.33 42.438 88.415 42.887 87.674 43.786 C 86.947 44.669 86.585 45.714 86.585 46.927 L 86.585 55.008 L 83.842 55.008 Z M 101.795 50.548 C 101.795 51.263 102.088 51.859 102.689 52.343 C 103.284 52.814 103.99 53.044 104.815 53.044 C 105.948 53.044 106.968 52.625 107.863 51.781 C 108.772 50.926 109.234 49.915 109.234 48.752 C 108.373 48.078 107.177 47.742 105.653 47.742 C 104.55 47.742 103.626 48.016 102.885 48.555 C 102.157 49.08 101.795 49.748 101.795 50.548 Z M 105.319 39.941 C 107.331 39.941 108.912 40.489 110.073 41.569 C 111.247 42.655 111.834 44.144 111.834 46.03 L 111.834 55.008 L 109.234 55.008 L 109.234 52.988 L 109.121 52.988 C 107.982 54.659 106.471 55.486 104.592 55.486 C 102.984 55.486 101.641 55.008 100.564 54.054 C 99.501 53.1 98.97 51.915 98.97 50.491 C 98.97 48.977 99.536 47.782 100.676 46.899 C 101.807 46.001 103.332 45.554 105.233 45.554 C 106.855 45.554 108.184 45.847 109.234 46.423 L 109.234 45.805 C 109.234 44.852 108.849 44.052 108.087 43.392 C 107.372 42.731 106.431 42.369 105.459 42.382 C 103.928 42.382 102.724 43.027 101.851 44.318 L 99.446 42.804 C 100.768 40.895 102.724 39.941 105.319 39.941 Z M 117.552 33.685 L 117.552 55.008 L 114.811 55.008 L 114.811 33.683 L 117.55 33.683 Z M 133.663 40.418 L 124.545 61.434 L 121.749 61.434 L 125.132 54.083 L 119.119 40.418 L 122.083 40.418 L 126.419 50.913 L 126.475 50.913 L 130.698 40.418 L 133.662 40.418 Z M 141.177 55.234 C 140.002 55.234 139.023 54.868 138.24 54.139 C 137.457 53.409 137.052 52.393 137.038 51.08 L 137.038 42.915 L 134.463 42.915 L 134.463 40.418 L 137.036 40.418 L 137.036 35.955 L 139.749 35.955 L 139.749 40.418 L 143.329 40.418 L 143.329 42.915 L 139.749 42.915 L 139.749 50.183 C 139.749 51.157 139.93 51.825 140.308 52.176 C 140.7 52.511 141.126 52.68 141.595 52.68 C 141.819 52.68 142.028 52.666 142.237 52.623 C 142.436 52.57 142.633 52.505 142.825 52.428 L 143.664 54.868 C 142.95 55.106 142.127 55.234 141.176 55.234 Z M 149.298 35.397 C 149.298 35.921 149.103 36.378 148.711 36.77 C 148.36 37.135 147.874 37.339 147.369 37.332 C 146.854 37.346 146.357 37.143 145.999 36.77 C 145.634 36.408 145.432 35.912 145.439 35.397 C 145.439 34.857 145.62 34.399 145.999 34.021 C 146.359 33.652 146.855 33.449 147.369 33.459 C 147.885 33.459 148.333 33.651 148.711 34.021 C 149.103 34.401 149.298 34.857 149.298 35.397 Z M 148.739 40.42 L 148.739 55.008 L 145.999 55.008 L 145.999 40.42 Z M 157.947 55.486 C 155.78 55.486 153.99 54.749 152.578 53.269 C 151.18 51.775 150.48 49.924 150.48 47.713 C 150.48 45.469 151.18 43.618 152.578 42.158 C 153.99 40.686 155.78 39.941 157.947 39.941 C 159.437 39.941 160.729 40.319 161.834 41.062 C 162.932 41.814 163.764 42.846 164.324 44.15 L 161.834 45.187 C 161.065 43.357 159.716 42.438 157.779 42.438 C 156.528 42.438 155.444 42.944 154.536 43.953 C 153.641 44.964 153.193 46.218 153.193 47.713 C 153.193 49.213 153.641 50.463 154.536 51.472 C 155.444 52.485 156.528 52.987 157.779 52.987 C 159.771 52.987 161.17 52.075 161.975 50.238 L 164.407 51.276 C 163.882 52.589 163.05 53.618 161.919 54.364 C 160.779 55.106 159.458 55.486 157.947 55.486 Z M 177.91 50.97 C 177.91 52.244 177.351 53.318 176.233 54.195 C 175.128 55.051 173.744 55.486 172.066 55.486 C 170.612 55.486 169.325 55.101 168.207 54.335 C 167.123 53.594 166.292 52.536 165.829 51.305 L 168.262 50.266 C 168.634 51.151 169.157 51.831 169.829 52.316 C 170.478 52.792 171.262 53.047 172.066 53.044 C 172.94 53.044 173.666 52.861 174.246 52.485 C 174.842 52.111 175.142 51.664 175.142 51.137 C 175.142 50.203 174.421 49.523 172.988 49.089 L 170.501 48.471 C 167.661 47.742 166.25 46.367 166.25 44.347 C 166.25 43.02 166.787 41.954 167.871 41.147 C 168.949 40.349 170.331 39.94 172.01 39.94 C 173.297 39.94 174.456 40.248 175.506 40.867 C 176.547 41.484 177.274 42.311 177.687 43.336 L 175.253 44.347 C 174.971 43.728 174.488 43.224 173.884 42.915 C 173.252 42.558 172.539 42.374 171.814 42.382 C 171.134 42.376 170.465 42.561 169.884 42.915 C 169.325 43.274 169.046 43.715 169.046 44.233 C 169.046 45.061 169.829 45.657 171.395 46.031 L 173.576 46.59 C 176.464 47.306 177.91 48.766 177.91 50.968 Z\" fill=\"var(--token-bb9eb227-c17e-42b8-81a9-2ba68353031e, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Background&quot;} */\"></path><path d=\"M 37.537 7.191 L 37.537 52.388 C 37.537 57.449 41.015 60.263 44.704 60.263 C 48.118 60.263 51.871 57.866 51.871 52.387 L 51.871 7.534 C 51.871 2.9 48.457 0 44.704 0 C 40.951 0 37.537 3.199 37.537 7.191 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 18.768 30.134 L 18.768 52.391 C 18.768 57.452 22.244 60.267 25.935 60.267 C 29.346 60.267 33.102 57.869 33.102 52.391 L 33.102 30.477 C 33.102 25.844 29.687 22.943 25.935 22.943 C 22.181 22.943 18.768 26.142 18.768 30.134 Z M 14.334 53.075 C 14.279 57.007 11.086 60.165 7.168 60.165 C 3.249 60.165 0.056 57.007 0.001 53.075 C 0.001 49.103 3.21 45.884 7.168 45.884 C 11.126 45.884 14.335 49.103 14.335 53.075 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11923591632}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1i2h71a\",\"data-framer-name\":\"GA logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 141 49\"><path d=\"M 82.302 13.136 C 82.302 16.716 79.51 19.353 76.082 19.353 C 72.657 19.353 69.865 16.716 69.865 13.135 C 69.865 9.531 72.657 6.918 76.082 6.918 C 79.51 6.918 82.302 9.531 82.302 13.136 Z M 79.58 13.136 C 79.58 10.899 77.961 9.368 76.082 9.368 C 74.206 9.368 72.587 10.899 72.587 13.136 C 72.587 15.349 74.206 16.903 76.082 16.903 C 77.961 16.903 79.58 15.348 79.58 13.136 Z M 95.715 13.136 C 95.715 16.716 92.922 19.353 89.497 19.353 C 86.071 19.353 83.28 16.716 83.28 13.135 C 83.28 9.534 86.071 6.918 89.497 6.918 C 92.922 6.918 95.715 9.531 95.715 13.136 Z M 92.992 13.136 C 92.992 10.899 91.375 9.368 89.497 9.368 C 87.619 9.368 86.001 10.899 86.001 13.136 C 86.001 15.349 87.619 16.903 89.497 16.903 C 91.375 16.903 92.992 15.348 92.992 13.136 Z M 108.571 7.294 L 108.571 18.456 C 108.571 23.048 105.872 24.922 102.68 24.922 C 99.676 24.922 97.867 22.906 97.187 21.258 L 99.556 20.27 C 99.978 21.282 101.01 22.475 102.677 22.475 C 104.72 22.475 105.985 21.211 105.985 18.832 L 105.985 17.937 L 105.891 17.937 C 105.281 18.691 104.108 19.349 102.627 19.349 C 99.528 19.349 96.688 16.643 96.688 13.158 C 96.688 9.649 99.528 6.919 102.627 6.919 C 104.106 6.919 105.279 7.578 105.891 8.309 L 105.986 8.309 L 105.986 7.297 L 108.571 7.297 Z M 106.179 13.158 C 106.179 10.969 104.723 9.368 102.87 9.368 C 100.992 9.368 99.418 10.969 99.418 13.158 C 99.418 15.325 100.992 16.903 102.87 16.903 C 104.722 16.903 106.179 15.325 106.179 13.158 Z M 112.83 0.752 L 112.83 18.973 L 110.174 18.973 L 110.174 0.752 Z M 123.177 15.182 L 125.289 16.594 C 124.607 17.607 122.964 19.349 120.124 19.349 C 116.604 19.349 113.974 16.62 113.974 13.132 C 113.974 9.436 116.626 6.916 119.82 6.916 C 123.036 6.916 124.61 9.483 125.124 10.87 L 125.406 11.576 L 117.121 15.019 C 117.755 16.266 118.741 16.903 120.124 16.903 C 121.511 16.903 122.471 16.218 123.177 15.182 Z M 116.674 12.944 L 122.213 10.639 C 121.907 9.861 120.991 9.321 119.912 9.321 C 118.53 9.321 116.604 10.546 116.674 12.945 Z M 59.816 11.518 L 59.816 8.882 L 68.678 8.882 C 68.765 9.341 68.809 9.885 68.809 10.475 C 68.809 12.454 68.271 14.9 66.532 16.644 C 64.841 18.411 62.681 19.351 59.82 19.351 C 54.516 19.351 50.055 15.018 50.055 9.698 C 50.055 4.378 54.516 0.043 59.82 0.043 C 62.754 0.043 64.844 1.198 66.414 2.705 L 64.56 4.566 C 63.433 3.506 61.907 2.682 59.817 2.682 C 55.943 2.682 52.915 5.813 52.915 9.698 C 52.915 13.583 55.944 16.713 59.816 16.713 C 62.329 16.713 63.76 15.701 64.676 14.782 C 65.42 14.036 65.908 12.972 66.102 11.517 L 59.816 11.521 Z M 57.328 29.148 L 54.597 36.721 L 60.167 36.721 L 57.416 29.148 L 57.327 29.148 Z M 52.243 43.277 L 49.867 43.277 L 56.162 26.5 L 58.605 26.5 L 64.9 43.277 L 62.522 43.277 L 60.915 38.73 L 53.873 38.73 Z M 65.981 31.798 L 68.05 31.798 L 68.05 33.387 L 68.139 33.387 C 68.456 32.83 68.957 32.366 69.634 31.996 C 70.322 31.615 71.026 31.422 71.747 31.422 C 73.157 31.422 74.234 31.83 74.982 32.636 C 75.741 33.431 76.126 34.574 76.126 36.058 L 76.126 43.275 L 73.969 43.275 L 73.969 36.212 C 73.925 34.33 72.985 33.387 71.153 33.387 C 70.299 33.387 69.579 33.74 68.996 34.447 C 68.424 35.142 68.139 35.964 68.139 36.918 L 68.139 43.276 L 65.98 43.276 Z M 80.108 39.767 C 80.108 40.329 80.339 40.798 80.812 41.179 C 81.28 41.55 81.836 41.73 82.485 41.73 C 83.377 41.73 84.179 41.401 84.883 40.737 C 85.599 40.064 85.962 39.269 85.962 38.354 C 85.285 37.824 84.344 37.56 83.144 37.56 C 82.276 37.56 81.549 37.775 80.966 38.199 C 80.393 38.612 80.108 39.138 80.108 39.767 Z M 82.881 31.422 C 84.465 31.422 85.709 31.853 86.623 32.703 C 87.547 33.557 88.008 34.729 88.008 36.212 L 88.008 43.276 L 85.962 43.276 L 85.962 41.687 L 85.873 41.687 C 84.977 43.001 83.788 43.651 82.31 43.651 C 81.044 43.651 79.987 43.276 79.14 42.525 C 78.303 41.775 77.885 40.843 77.885 39.722 C 77.885 38.531 78.33 37.591 79.228 36.896 C 80.118 36.19 81.318 35.838 82.814 35.838 C 84.09 35.838 85.136 36.068 85.962 36.522 L 85.962 36.035 C 85.962 35.286 85.659 34.656 85.06 34.137 C 84.497 33.617 83.757 33.332 82.991 33.342 C 81.787 33.342 80.84 33.85 80.152 34.866 L 78.259 33.674 C 79.3 32.173 80.84 31.422 82.881 31.422 Z M 92.508 26.5 L 92.508 43.276 L 90.351 43.276 L 90.351 26.499 L 92.507 26.499 Z M 105.187 31.798 L 98.012 48.331 L 95.811 48.331 L 98.474 42.548 L 93.742 31.798 L 96.074 31.798 L 99.486 40.054 L 99.53 40.054 L 102.853 31.798 L 105.186 31.798 Z M 111.1 43.453 C 110.175 43.453 109.405 43.166 108.789 42.592 C 108.173 42.017 107.854 41.218 107.843 40.186 L 107.843 33.762 L 105.817 33.762 L 105.817 31.798 L 107.842 31.798 L 107.842 28.286 L 109.977 28.286 L 109.977 31.798 L 112.793 31.798 L 112.793 33.762 L 109.977 33.762 L 109.977 39.48 C 109.977 40.246 110.119 40.771 110.416 41.048 C 110.725 41.311 111.06 41.444 111.429 41.444 C 111.605 41.444 111.77 41.433 111.934 41.399 C 112.091 41.358 112.246 41.306 112.397 41.246 L 113.058 43.166 C 112.496 43.353 111.847 43.453 111.099 43.453 Z M 117.491 27.848 C 117.491 28.26 117.338 28.619 117.029 28.928 C 116.753 29.215 116.371 29.375 115.973 29.37 C 115.568 29.381 115.176 29.221 114.895 28.928 C 114.608 28.643 114.449 28.253 114.454 27.848 C 114.454 27.422 114.596 27.062 114.895 26.765 C 115.178 26.474 115.568 26.314 115.973 26.323 C 116.379 26.323 116.731 26.473 117.029 26.765 C 117.338 27.064 117.491 27.422 117.491 27.848 Z M 117.051 31.799 L 117.051 43.276 L 114.895 43.276 L 114.895 31.799 Z M 124.298 43.651 C 122.592 43.651 121.183 43.072 120.072 41.907 C 118.972 40.732 118.421 39.276 118.421 37.536 C 118.421 35.771 118.972 34.314 120.072 33.166 C 121.183 32.008 122.592 31.422 124.298 31.422 C 125.47 31.422 126.487 31.72 127.356 32.304 C 128.22 32.896 128.875 33.708 129.316 34.733 L 127.356 35.549 C 126.751 34.11 125.69 33.387 124.165 33.387 C 123.181 33.387 122.328 33.784 121.613 34.578 C 120.909 35.374 120.556 36.36 120.556 37.536 C 120.556 38.717 120.909 39.7 121.613 40.494 C 122.328 41.29 123.181 41.686 124.165 41.686 C 125.733 41.686 126.833 40.968 127.467 39.523 L 129.381 40.339 C 128.968 41.373 128.313 42.182 127.423 42.769 C 126.526 43.353 125.487 43.651 124.298 43.651 Z M 140.007 40.099 C 140.007 41.101 139.568 41.946 138.687 42.636 C 137.818 43.309 136.729 43.651 135.409 43.651 C 134.264 43.651 133.252 43.348 132.371 42.746 C 131.518 42.163 130.865 41.331 130.5 40.363 L 132.415 39.545 C 132.708 40.241 133.12 40.776 133.648 41.158 C 134.159 41.532 134.776 41.733 135.409 41.73 C 136.096 41.73 136.668 41.587 137.124 41.29 C 137.593 40.996 137.829 40.644 137.829 40.23 C 137.829 39.495 137.262 38.961 136.134 38.619 L 134.176 38.133 C 131.942 37.56 130.831 36.477 130.831 34.888 C 130.831 33.845 131.254 33.006 132.107 32.371 C 132.955 31.743 134.043 31.421 135.364 31.421 C 136.377 31.421 137.29 31.664 138.116 32.151 C 138.935 32.636 139.507 33.287 139.832 34.093 L 137.917 34.888 C 137.694 34.401 137.315 34.005 136.839 33.762 C 136.342 33.481 135.78 33.336 135.21 33.342 C 134.675 33.338 134.149 33.483 133.691 33.762 C 133.252 34.044 133.032 34.391 133.032 34.799 C 133.032 35.45 133.648 35.919 134.88 36.213 L 136.597 36.653 C 138.869 37.217 140.007 38.365 140.007 40.098 Z\" fill=\"var(--token-bb9eb227-c17e-42b8-81a9-2ba68353031e, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Background&quot;} */\"></path><path d=\"M 29.54 5.657 L 29.54 41.215 C 29.54 45.196 32.277 47.41 35.18 47.41 C 37.867 47.41 40.82 45.524 40.82 41.213 L 40.82 5.927 C 40.82 2.282 38.133 0 35.18 0 C 32.227 0 29.54 2.517 29.54 5.657 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 14.769 23.707 L 14.769 41.217 C 14.769 45.198 17.505 47.413 20.409 47.413 C 23.094 47.413 26.049 45.527 26.049 41.217 L 26.049 23.977 C 26.049 20.332 23.363 18.05 20.409 18.05 C 17.455 18.05 14.769 20.567 14.769 23.707 Z M 11.28 41.755 C 11.237 44.848 8.725 47.333 5.641 47.333 C 2.557 47.333 0.044 44.848 0.001 41.755 C 0.001 38.63 2.526 36.097 5.641 36.097 C 8.756 36.097 11.281 38.63 11.281 41.755 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11754176219,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 217.293 44.489\"><path d=\"M 38.795 22.501 L 38.791 22.505 C 38.766 22.524 38.741 22.542 38.715 22.56 C 38.69 22.577 38.664 22.593 38.637 22.608 L 38.63 22.612 L 38.588 22.637 L 38.585 22.637 C 38.413 22.725 38.223 22.771 38.029 22.77 L 27.339 22.77 C 27.425 23.117 27.518 23.512 27.62 23.942 C 28.206 26.419 29.762 33 31.416 33 L 31.448 33 L 31.465 32.998 L 31.497 32.998 C 32.789 32.998 33.449 31.17 34.893 27.164 L 34.91 27.115 C 35.142 26.472 35.404 25.746 35.688 24.978 L 35.761 24.782 C 35.846 24.57 36.062 24.439 36.291 24.461 C 36.521 24.482 36.709 24.65 36.753 24.873 C 36.766 24.95 36.764 25.03 36.74 25.106 L 36.681 25.302 C 36.529 25.781 36.37 26.429 36.185 27.181 C 35.323 30.675 34.022 35.955 30.686 35.955 L 30.661 35.955 C 28.504 35.938 27.213 32.562 26.662 31.121 C 25.633 28.426 24.854 25.554 24.101 22.77 L 14.261 22.77 L 12.219 29.173 L 12.188 29.151 C 11.939 29.531 11.468 29.706 11.028 29.581 C 10.587 29.457 10.28 29.063 10.272 28.61 L 10.274 28.575 L 10.397 27.851 C 10.691 26.15 11.026 24.456 11.404 22.77 L 7.248 22.77 L 7.233 22.756 C 6.47 22.644 5.904 22 5.899 21.238 C 5.899 20.492 6.437 19.859 7.179 19.73 C 7.34 19.715 7.503 19.708 7.665 19.711 L 7.868 19.711 C 9.185 19.735 10.582 19.754 12.114 19.775 C 14.284 11.144 16.796 6.762 19.582 6.751 C 22.572 6.751 24.791 13.417 26.565 19.94 L 26.573 19.966 C 30.221 20.037 34.11 20.142 37.89 20.406 L 38.049 20.42 C 38.108 20.422 38.168 20.428 38.228 20.437 L 38.249 20.44 L 38.262 20.443 L 38.267 20.443 L 38.278 20.445 C 38.728 20.534 39.086 20.871 39.196 21.311 C 39.307 21.75 39.15 22.213 38.795 22.5 Z M 22.569 0 C 10.103 0 0 9.895 0 22.101 C 0 34.306 10.103 44.201 22.568 44.201 C 35.032 44.201 45.136 34.306 45.136 22.101 C 45.136 9.895 35.032 0 22.568 0 Z M 19.827 10.023 C 19.703 9.862 19.562 9.778 19.403 9.778 C 19.287 9.783 19.175 9.819 19.079 9.883 C 17.884 10.804 16.249 14.709 14.907 19.855 L 16.094 19.868 C 18.438 19.894 20.859 19.921 23.25 19.957 C 22.72 17.938 22.129 15.934 21.478 13.95 C 20.679 11.566 20.139 10.499 19.828 10.024 Z M 59.39 23.341 L 62.767 15.101 L 66.212 23.341 L 59.391 23.341 Z M 55.811 32.014 L 57.601 27.677 L 68.002 27.677 L 69.791 32.014 L 74.958 32.014 L 65.096 9.377 L 60.504 9.377 L 50.611 32.012 L 55.811 32.012 Z M 104.226 23.312 L 104.226 32.012 L 99.527 32.012 L 99.527 23.71 C 99.527 21.196 98.277 19.838 96.079 19.838 C 95.099 19.838 94.016 20.27 93.037 21.592 C 93.105 22.154 93.171 22.717 93.171 23.312 L 93.171 32.012 L 88.473 32.012 L 88.473 23.71 C 88.473 21.196 87.222 19.838 84.991 19.838 C 84.078 19.838 83.064 20.368 82.117 21.626 L 82.117 32.012 L 77.417 32.012 L 77.417 16.166 L 82.115 16.166 L 82.115 17.126 C 83.13 16.199 84.212 15.671 86.105 15.671 C 88.167 15.671 89.994 16.465 91.278 17.92 C 93.001 16.365 94.624 15.669 97.16 15.669 C 101.115 15.669 104.225 18.681 104.225 23.312 Z M 116.037 19.681 C 118.475 19.681 120.237 21.733 120.237 24.084 C 120.237 26.402 118.475 28.422 116.037 28.422 C 114.65 28.422 113.263 27.957 112.212 26.599 L 112.212 21.535 C 113.263 20.143 114.65 19.681 116.037 19.681 Z M 116.819 32.329 C 121.285 32.329 124.876 28.686 124.876 24.085 C 124.876 19.414 121.285 15.805 116.817 15.805 C 114.989 15.805 113.465 16.269 112.212 17.061 L 112.212 16.136 L 107.506 16.136 L 107.506 39.647 L 112.212 39.647 L 112.212 31.069 C 113.464 31.863 114.989 32.325 116.817 32.325 L 116.817 32.329 Z M 127.474 32.012 L 132.125 32.012 L 132.125 8.571 L 127.474 8.571 L 127.474 32.011 Z M 141.541 32.012 L 136.873 32.012 L 136.873 16.193 L 141.541 16.193 Z M 139.189 7.903 C 137.611 7.903 136.368 9.059 136.368 10.612 C 136.368 12.13 137.611 13.254 139.189 13.254 C 140.734 13.254 141.977 12.131 141.977 10.611 C 141.977 9.059 140.734 7.902 139.189 7.902 Z M 158.66 31.821 C 156.707 32.415 155.828 32.548 154.312 32.548 C 150.402 32.548 147.841 29.839 147.841 25.743 L 147.841 20.095 L 144.436 20.095 L 144.436 16.229 L 147.841 16.229 L 147.841 10.581 L 152.492 10.581 L 152.492 16.231 L 158.326 16.231 L 158.326 20.095 L 152.492 20.095 L 152.492 25.711 C 152.492 27.494 153.605 28.32 155.325 28.32 C 156.2 28.32 157.145 28.121 158.055 27.889 Z M 172.705 32.053 L 177.398 32.053 L 177.398 16.207 L 172.705 16.207 L 172.705 26.395 C 171.623 27.685 170.342 28.38 169.16 28.38 C 166.964 28.38 165.68 27.023 165.68 24.509 L 165.68 16.207 L 160.985 16.207 L 160.985 24.939 C 160.985 29.538 163.822 32.548 168.077 32.548 C 169.902 32.548 171.387 31.952 172.705 30.926 L 172.705 32.052 Z M 192.671 26.685 L 192.671 21.62 C 191.624 20.262 190.239 19.798 188.853 19.798 C 186.387 19.798 184.663 21.818 184.663 24.135 C 184.663 26.487 186.387 28.541 188.853 28.541 C 190.239 28.541 191.624 28.076 192.671 26.685 Z M 197.369 32.084 L 192.671 32.084 L 192.671 31.155 C 191.422 31.951 189.902 32.414 188.075 32.414 C 183.615 32.414 179.999 28.805 179.999 24.137 C 179.999 19.533 183.615 15.892 188.075 15.892 C 189.902 15.892 191.422 16.355 192.671 17.149 L 192.671 8.572 L 197.369 8.572 Z M 211.845 22.568 L 204.499 22.568 C 204.939 20.778 206.191 19.485 208.459 19.485 C 210.355 19.485 211.572 20.577 211.845 22.568 Z M 204.465 25.287 L 216.413 25.287 C 216.488 24.793 216.522 24.294 216.515 23.795 C 216.515 18.888 213.064 15.672 208.425 15.672 C 203.313 15.672 199.829 19.219 199.829 24.125 C 199.829 28.868 203.348 32.548 208.561 32.548 C 212.387 32.548 215.43 30.459 216.311 27.409 L 211.405 27.409 C 210.895 28.205 209.982 28.602 208.662 28.602 C 206.089 28.602 204.837 27.145 204.465 25.287 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10411321089}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13yzefu\",\"data-framer-name\":\"Amlpitude logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 171 35\"><path d=\"M 30.53 17.702 L 30.527 17.705 C 30.507 17.72 30.488 17.734 30.467 17.748 C 30.447 17.762 30.427 17.774 30.406 17.786 L 30.4 17.789 L 30.367 17.809 L 30.365 17.809 C 30.23 17.878 30.079 17.914 29.927 17.914 L 21.515 17.914 C 21.582 18.187 21.655 18.497 21.736 18.835 C 22.197 20.784 23.422 25.962 24.723 25.962 L 24.748 25.962 L 24.762 25.96 L 24.787 25.96 C 25.803 25.96 26.323 24.522 27.459 21.371 L 27.473 21.331 C 27.655 20.826 27.862 20.255 28.085 19.65 L 28.142 19.496 C 28.209 19.33 28.379 19.227 28.56 19.243 C 28.74 19.26 28.888 19.392 28.923 19.568 C 28.933 19.629 28.931 19.692 28.913 19.751 L 28.867 19.906 C 28.747 20.282 28.622 20.792 28.476 21.384 C 27.798 24.132 26.774 28.286 24.149 28.286 L 24.129 28.286 C 22.431 28.273 21.416 25.617 20.982 24.484 C 20.172 22.363 19.559 20.103 18.966 17.914 L 11.222 17.914 L 9.616 22.951 L 9.592 22.933 C 9.396 23.232 9.025 23.37 8.678 23.272 C 8.331 23.174 8.09 22.864 8.084 22.508 L 8.085 22.48 L 8.182 21.911 C 8.413 20.573 8.677 19.24 8.974 17.914 L 5.703 17.914 L 5.692 17.902 C 5.092 17.814 4.646 17.307 4.642 16.708 C 4.642 16.122 5.065 15.623 5.649 15.521 C 5.776 15.51 5.904 15.505 6.032 15.507 L 6.191 15.507 C 7.228 15.526 8.328 15.541 9.533 15.557 C 11.241 8.767 13.218 5.32 15.41 5.311 C 17.763 5.311 19.51 10.556 20.906 15.687 L 20.912 15.708 C 23.783 15.763 26.843 15.846 29.818 16.054 L 29.943 16.065 C 29.99 16.066 30.037 16.071 30.083 16.078 L 30.1 16.08 L 30.111 16.082 L 30.115 16.082 L 30.123 16.085 C 30.477 16.154 30.759 16.419 30.846 16.765 C 30.933 17.111 30.81 17.476 30.53 17.701 Z M 17.761 0 C 7.95 0 0 7.784 0 17.387 C 0 26.989 7.95 34.774 17.76 34.774 C 27.569 34.774 35.52 26.989 35.52 17.387 C 35.52 7.784 27.569 0 17.76 0 Z M 15.603 7.885 C 15.506 7.759 15.394 7.693 15.269 7.693 C 15.178 7.697 15.09 7.725 15.015 7.775 C 14.074 8.5 12.787 11.572 11.731 15.62 L 12.665 15.631 C 14.51 15.651 16.415 15.672 18.297 15.701 C 17.88 14.112 17.414 12.536 16.902 10.975 C 16.273 9.099 15.849 8.26 15.604 7.886 Z M 46.737 18.363 L 49.395 11.88 L 52.106 18.363 L 46.738 18.363 Z M 43.921 25.186 L 45.33 21.774 L 53.515 21.774 L 54.922 25.186 L 58.989 25.186 L 51.228 7.377 L 47.614 7.377 L 39.828 25.185 L 43.921 25.185 Z M 82.022 18.34 L 82.022 25.185 L 78.323 25.185 L 78.323 18.653 C 78.323 16.675 77.34 15.607 75.61 15.607 C 74.839 15.607 73.987 15.947 73.216 16.986 C 73.269 17.429 73.321 17.872 73.321 18.34 L 73.321 25.185 L 69.624 25.185 L 69.624 18.653 C 69.624 16.675 68.64 15.607 66.884 15.607 C 66.166 15.607 65.368 16.024 64.622 17.013 L 64.622 25.185 L 60.924 25.185 L 60.924 12.718 L 64.621 12.718 L 64.621 13.473 C 65.42 12.744 66.271 12.328 67.761 12.328 C 69.383 12.328 70.821 12.953 71.831 14.098 C 73.188 12.875 74.465 12.327 76.461 12.327 C 79.573 12.327 82.021 14.697 82.021 18.34 Z M 91.316 15.483 C 93.235 15.483 94.621 17.097 94.621 18.947 C 94.621 20.77 93.235 22.36 91.316 22.36 C 90.224 22.36 89.133 21.994 88.306 20.926 L 88.306 16.942 C 89.133 15.847 90.224 15.483 91.316 15.483 Z M 91.931 25.434 C 95.446 25.434 98.272 22.568 98.272 18.948 C 98.272 15.273 95.446 12.434 91.93 12.434 C 90.491 12.434 89.292 12.799 88.306 13.423 L 88.306 12.695 L 84.602 12.695 L 84.602 31.191 L 88.306 31.191 L 88.306 24.442 C 89.291 25.067 90.491 25.431 91.93 25.431 L 91.93 25.434 Z M 100.317 25.185 L 103.976 25.185 L 103.976 6.743 L 100.317 6.743 L 100.317 25.184 Z M 111.387 25.185 L 107.713 25.185 L 107.713 12.739 L 111.387 12.739 Z M 109.536 6.218 C 108.294 6.218 107.316 7.127 107.316 8.349 C 107.316 9.543 108.294 10.427 109.536 10.427 C 110.752 10.427 111.73 9.544 111.73 8.347 C 111.73 7.127 110.752 6.217 109.536 6.217 Z M 124.858 25.034 C 123.321 25.502 122.63 25.606 121.437 25.606 C 118.36 25.606 116.345 23.475 116.345 20.253 L 116.345 15.809 L 113.665 15.809 L 113.665 12.768 L 116.345 12.768 L 116.345 8.324 L 120.004 8.324 L 120.004 12.769 L 124.595 12.769 L 124.595 15.809 L 120.004 15.809 L 120.004 20.227 C 120.004 21.63 120.88 22.28 122.234 22.28 C 122.923 22.28 123.666 22.123 124.383 21.941 Z M 135.912 25.216 L 139.605 25.216 L 139.605 12.75 L 135.912 12.75 L 135.912 20.765 C 135.06 21.78 134.051 22.327 133.121 22.327 C 131.394 22.327 130.383 21.259 130.383 19.282 L 130.383 12.75 L 126.688 12.75 L 126.688 19.62 C 126.688 23.238 128.92 25.606 132.27 25.606 C 133.705 25.606 134.874 25.137 135.912 24.33 L 135.912 25.215 Z M 151.624 20.994 L 151.624 17.009 C 150.8 15.94 149.709 15.575 148.619 15.575 C 146.678 15.575 145.322 17.164 145.322 18.987 C 145.322 20.837 146.678 22.454 148.619 22.454 C 149.709 22.454 150.8 22.088 151.624 20.994 Z M 155.321 25.241 L 151.624 25.241 L 151.624 24.51 C 150.641 25.136 149.445 25.501 148.007 25.501 C 144.497 25.501 141.652 22.661 141.652 18.989 C 141.652 15.367 144.497 12.502 148.007 12.502 C 149.445 12.502 150.641 12.867 151.624 13.491 L 151.624 6.744 L 155.321 6.744 Z M 166.712 17.754 L 160.932 17.754 C 161.278 16.346 162.263 15.329 164.048 15.329 C 165.541 15.329 166.498 16.189 166.712 17.754 Z M 160.905 19.893 L 170.308 19.893 C 170.366 19.505 170.393 19.113 170.388 18.72 C 170.388 14.86 167.672 12.329 164.021 12.329 C 159.999 12.329 157.256 15.12 157.256 18.979 C 157.256 22.711 160.026 25.606 164.129 25.606 C 167.139 25.606 169.534 23.963 170.227 21.563 L 166.366 21.563 C 165.965 22.189 165.246 22.502 164.208 22.502 C 162.183 22.502 161.198 21.355 160.905 19.893 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12398744201,withExternalLayout:true})})]})]})})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1id9gvx-container\",isModuleExternal:true,nodeId:\"YKmmQHLEc\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"YKmmQHLEc\",kTynE2FQc:\"regular\",layoutId:\"YKmmQHLEc\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:\"https://funnelfox.com/schedule-demo\",Q7omvm8K3:false,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Schedule a demo\",variant:\"NnNg9h8UK\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a52qlw\",\"data-framer-name\":\"Services\",id:elementId4,ref:ref5,children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{height:44,y:(componentViewport?.y||0)+0+9815+64+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d8ijie-container hidden-1eut02m hidden-11e2lg1\",isModuleExternal:true,nodeId:\"J66vJ5lCs\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"J66vJ5lCs\",kTynE2FQc:\"regular\",layoutId:\"J66vJ5lCs\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:\"https://funnelfox.com/schedule-demo\",Q7omvm8K3:false,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Schedule a demo\",variant:\"NnNg9h8UK\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12a5jl6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+9815+64+84+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kswwzx-container\",nodeId:\"eEXBI6Kfr\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ElementsBadge3,{dI2V912ba:\"var(--token-3f61e472-8e4d-4611-8f40-19a92ec907fd, rgba(235, 235, 235, 0.48))\",height:\"100%\",id:\"eEXBI6Kfr\",layoutId:\"eEXBI6Kfr\",variant:\"Z9eCLAmdn\",width:\"100%\",YbsaeEF4R:\"Boost conversions\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Build from scratch or start with the industry-proven templates\"})})},kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Build from scratch or start with the industry-proven templates\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Build from scratch or start with the industry-proven templates\"})}),className:\"framer-9julax\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgb(153, 153, 153))\"},children:\"Industry-proven templates tailored for any vertical app, inspired by the world\u2019s largest Web2App apps. Up to 42% to your CRs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgb(153, 153, 153))\"},children:\"Industry-proven templates tailored for any vertical app, inspired by the world\u2019s largest Web2App apps. Up to 42% to your CRs.\"})}),className:\"framer-oc2l4b hidden-1eut02m hidden-11e2lg1\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:\"Industry-proven templates tailored for any vertical app, inspired by the world\u2019s largest Web2App apps. Up to 42% to your CRs.\"})}),className:\"framer-1ufxlhp hidden-1eut02m hidden-1a8nazu\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uwtjil hidden-1eut02m hidden-11e2lg1\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3z2ouk\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:594.5454416590292,intrinsicWidth:285.45453926748496,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9815+64+84+0+277.6+0+0+-1.5),pixelHeight:1231,pixelWidth:545,sizes:\"210px\",src:\"https://framerusercontent.com/images/5wAhWb5HCZ2WyQNDKUeWeWNBjbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5wAhWb5HCZ2WyQNDKUeWeWNBjbM.png 545w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:594.5454416590292,intrinsicWidth:285.45453926748496,pixelHeight:1231,pixelWidth:545,sizes:\"210px\",src:\"https://framerusercontent.com/images/5wAhWb5HCZ2WyQNDKUeWeWNBjbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5wAhWb5HCZ2WyQNDKUeWeWNBjbM.png 545w\"},className:\"framer-133cd5a\",\"data-framer-name\":\"Screenshot_2024_01_22_at_10_13_58\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4d6mxp\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:654,intrinsicWidth:317,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9815+64+84+0+277.6+0+440+0+0),pixelHeight:1231,pixelWidth:545,sizes:\"209.6524px\",src:\"https://framerusercontent.com/images/DcISkyyWjEnI8RYCV2G4BHXuWrc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DcISkyyWjEnI8RYCV2G4BHXuWrc.png 545w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:654,intrinsicWidth:317,pixelHeight:1231,pixelWidth:545,sizes:\"209.6524px\",src:\"https://framerusercontent.com/images/DcISkyyWjEnI8RYCV2G4BHXuWrc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DcISkyyWjEnI8RYCV2G4BHXuWrc.png 545w\"},className:\"framer-swc6dz\",\"data-framer-name\":\"Screenshot_2024_01_22_at_10_17_56\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-th58kq\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1580,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9815+64+84+0+277.6+0+880+10.5),pixelHeight:1231,pixelWidth:545,sizes:\"196px\",src:\"https://framerusercontent.com/images/joO9RzCeGp46wXfo1uZE9nSGr0M.png\",srcSet:\"https://framerusercontent.com/images/joO9RzCeGp46wXfo1uZE9nSGr0M.png 545w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1580,intrinsicWidth:750,pixelHeight:1231,pixelWidth:545,sizes:\"196px\",src:\"https://framerusercontent.com/images/joO9RzCeGp46wXfo1uZE9nSGr0M.png\",srcSet:\"https://framerusercontent.com/images/joO9RzCeGp46wXfo1uZE9nSGr0M.png 545w\"},className:\"framer-v4gp2i\",\"data-framer-name\":\"$11580\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s26so8\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1580,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9815+64+84+0+277.6+0+1320+24.5),pixelHeight:1231,pixelWidth:545,sizes:\"183px\",src:\"https://framerusercontent.com/images/ly6DpFww2DnzfjbKwe9XyW52s4k.png\",srcSet:\"https://framerusercontent.com/images/ly6DpFww2DnzfjbKwe9XyW52s4k.png 545w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1580,intrinsicWidth:750,pixelHeight:1231,pixelWidth:545,sizes:\"183px\",src:\"https://framerusercontent.com/images/ly6DpFww2DnzfjbKwe9XyW52s4k.png\",srcSet:\"https://framerusercontent.com/images/ly6DpFww2DnzfjbKwe9XyW52s4k.png 545w\"},className:\"framer-146jbfg\",\"data-framer-name\":\"$11465\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sjpxl0\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5170,intrinsicWidth:750,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9815+64+84+0+277.6+0+1760+10),pixelHeight:3021,pixelWidth:545,sizes:\"196px\",src:\"https://framerusercontent.com/images/5zZh7h1NVAyO355kds48Co70g.png\",srcSet:\"https://framerusercontent.com/images/5zZh7h1NVAyO355kds48Co70g.png 545w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:5170,intrinsicWidth:750,pixelHeight:3021,pixelWidth:545,sizes:\"196px\",src:\"https://framerusercontent.com/images/5zZh7h1NVAyO355kds48Co70g.png\",srcSet:\"https://framerusercontent.com/images/5zZh7h1NVAyO355kds48Co70g.png 545w\"},className:\"framer-r5gmnp\",\"data-framer-name\":\"$11472\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tbrhwt hidden-1eut02m hidden-1a8nazu\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gosxsv\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:594.5454416590292,intrinsicWidth:285.45453926748496,pixelHeight:1231,pixelWidth:545,sizes:\"210px\",src:\"https://framerusercontent.com/images/5wAhWb5HCZ2WyQNDKUeWeWNBjbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5wAhWb5HCZ2WyQNDKUeWeWNBjbM.png 545w\"},className:\"framer-u72xn3\",\"data-framer-name\":\"Screenshot_2024_01_22_at_10_13_58\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1do8wv\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:654,intrinsicWidth:317,pixelHeight:1231,pixelWidth:545,sizes:\"209.5px\",src:\"https://framerusercontent.com/images/DcISkyyWjEnI8RYCV2G4BHXuWrc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DcISkyyWjEnI8RYCV2G4BHXuWrc.png 545w\"},className:\"framer-1qm9se0\",\"data-framer-name\":\"Screenshot_2024_01_22_at_10_17_56\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ghc7dm\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1580,intrinsicWidth:750,pixelHeight:1231,pixelWidth:545,sizes:\"196px\",src:\"https://framerusercontent.com/images/joO9RzCeGp46wXfo1uZE9nSGr0M.png\",srcSet:\"https://framerusercontent.com/images/joO9RzCeGp46wXfo1uZE9nSGr0M.png 545w\"},className:\"framer-154dgsw\",\"data-framer-name\":\"$11580\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ndxxzt\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1580,intrinsicWidth:750,pixelHeight:1231,pixelWidth:545,sizes:\"185px\",src:\"https://framerusercontent.com/images/ly6DpFww2DnzfjbKwe9XyW52s4k.png\",srcSet:\"https://framerusercontent.com/images/ly6DpFww2DnzfjbKwe9XyW52s4k.png 545w\"},className:\"framer-sumw5j\",\"data-framer-name\":\"$11465\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16lfi9n\",\"data-border\":true,children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:5170,intrinsicWidth:750,pixelHeight:3004,pixelWidth:545,sizes:\"196px\",src:\"https://framerusercontent.com/images/cKU1hbgV3aclsZOmYG627qRzo5A.png\",srcSet:\"https://framerusercontent.com/images/cKU1hbgV3aclsZOmYG627qRzo5A.png 545w\"},className:\"framer-246p74\",\"data-framer-name\":\"$11472\"})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fmmbe0 hidden-11e2lg1 hidden-1a8nazu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7tt7cc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:\"Launch and scale your web2app funnels faster with templates tailored for any vertical app, inspired by the world's fastest growing apps.\"})}),className:\"framer-1bjsv9l\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mbqyp2\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13bepmv\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:594.5454416590292,intrinsicWidth:285.45453926748496,pixelHeight:1231,pixelWidth:545,sizes:\"199px\",src:\"https://framerusercontent.com/images/5wAhWb5HCZ2WyQNDKUeWeWNBjbM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/5wAhWb5HCZ2WyQNDKUeWeWNBjbM.png 545w\"},className:\"framer-1xk39y9\",\"data-framer-name\":\"Screenshot_2024_01_22_at_10_13_58\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mrdeif\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:654,intrinsicWidth:317,pixelHeight:1231,pixelWidth:545,positionX:\"center\",positionY:\"center\",sizes:\"209.6524px\",src:\"https://framerusercontent.com/images/DcISkyyWjEnI8RYCV2G4BHXuWrc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DcISkyyWjEnI8RYCV2G4BHXuWrc.png 545w\"},className:\"framer-1ojaerj\",\"data-framer-name\":\"Screenshot_2024_01_22_at_10_17_56\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1usj8ql\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1580,intrinsicWidth:750,pixelHeight:1231,pixelWidth:545,positionX:\"center\",positionY:\"center\",sizes:\"220px\",src:\"https://framerusercontent.com/images/joO9RzCeGp46wXfo1uZE9nSGr0M.png\",srcSet:\"https://framerusercontent.com/images/joO9RzCeGp46wXfo1uZE9nSGr0M.png 545w\"},className:\"framer-c4olhp\",\"data-framer-name\":\"$11580\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16fyvw7\",\"data-border\":true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1580,intrinsicWidth:750,pixelHeight:1231,pixelWidth:545,sizes:\"192px\",src:\"https://framerusercontent.com/images/ly6DpFww2DnzfjbKwe9XyW52s4k.png\",srcSet:\"https://framerusercontent.com/images/ly6DpFww2DnzfjbKwe9XyW52s4k.png 545w\"},className:\"framer-1k1yunj\",\"data-framer-name\":\"$11465\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12he8nd\",\"data-border\":true,children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:5170,intrinsicWidth:750,pixelHeight:3017,pixelWidth:545,sizes:\"181.4797px\",src:\"https://framerusercontent.com/images/t8qB5xzLEMeS85SMfp4Ynyo8Ts.png\",srcSet:\"https://framerusercontent.com/images/t8qB5xzLEMeS85SMfp4Ynyo8Ts.png 545w\"},className:\"framer-qv7mvv\",\"data-framer-name\":\"$11472\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16gbia3\",\"data-framer-name\":\"Testimonials 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l7z9c3\",\"data-framer-name\":\"Testimonial\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ns4a63\",\"data-framer-name\":\"Desc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:'\"The ultimate tool to launch working web funnels in just one hour\"'})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsxs(\"strong\",{children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"I\u2019m impressed with how quickly we got a working funnel up and running. The UI/UX is super intuitive and easy to navigate - you can set up your web funnel without any coding. The best part is that it\u2019s built with best practices in mind and includes components designed to boost conversion rates.\"})]})}),className:\"framer-1m9i911\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-of732c\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"50px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-j81aiq-container\",isModuleExternal:true,nodeId:\"xSH_ZIw2j\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ElementsAvatar1,{cpsLDpTtE:addImageAlt({pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/kXAHXSrlz83TqoCTWM6WKEi7gI4.webp\"},\"\"),height:\"100%\",id:\"xSH_ZIw2j\",layoutId:\"xSH_ZIw2j\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-183xwgp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Artyom P.\"})}),className:\"framer-cv33pu\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Growth manager, EdTech\"})}),className:\"framer-3fo08w\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"380px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fqf55o-container\",isModuleExternal:true,nodeId:\"a_Iv92j9P\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(CardsResults2,{AHW2bVdJO:\"+72% ROAS increase\",height:\"100%\",id:\"a_Iv92j9P\",layoutId:\"a_Iv92j9P\",QUIw8Gp80:addImageAlt({pixelHeight:750,pixelWidth:1e3,src:\"https://framerusercontent.com/images/S0MGx1DyEesbrfCRakPJBdniU.jpg\",srcSet:\"https://framerusercontent.com/images/S0MGx1DyEesbrfCRakPJBdniU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/S0MGx1DyEesbrfCRakPJBdniU.jpg 1000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},tvKFDMXb4:\"+20% CR to payment\",v_pYW9mfT:\"Language learning app\",width:\"100%\",XIsP8f0uD:\"3 months to scale\"})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+9815+64+2595.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g0q4df-container\",isModuleExternal:true,nodeId:\"Kv0gCuV4p\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"Kv0gCuV4p\",kTynE2FQc:\"regular\",layoutId:\"Kv0gCuV4p\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:\"https://funnelfox.com/schedule-demo\",Q7omvm8K3:false,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Start building now \",variant:\"NnNg9h8UK\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f00ttn hidden-1eut02m hidden-11e2lg1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Track performance \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"in real-time \"})]}),className:\"framer-1u2x046\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"See your funnel performance at a glance using our pre-defined dashboard\"})})}),/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Dive deeply into performance and user behavior analysis\"})})})]}),className:\"framer-1obe9ts\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wgjwc4\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:371.6666765124712,intrinsicWidth:631.6666834001193,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5698+60+684+40),pixelHeight:669,pixelWidth:1066,positionX:\"left\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png 1066w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:371.6666765124712,intrinsicWidth:631.6666834001193,pixelHeight:669,pixelWidth:1066,positionX:\"left\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=512 512w,https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SbrDdFHqiBP4ZCRQ4pdQTXNKU3w.png 1066w\"},className:\"framer-nsmxsx\",\"data-framer-name\":\"Funnelfox analytics\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15nkgqj hidden-1eut02m hidden-11e2lg1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Optimize your funnels with A/B tests\"})}),className:\"framer-1qhud30\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Full-funnel A/B testing \"})}),/*#__PURE__*/_jsxs(\"li\",{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Optimize every element from landing page to checkout for maximum conversions\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})]})}),className:\"framer-qzvw5t\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n9w2nf\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:403.33334401801807,intrinsicWidth:542.2222365862061,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6734+60+666+20),pixelHeight:726,pixelWidth:976,sizes:\"291px\",src:\"https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png\",srcSet:\"https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png?scale-down-to=512 512w,https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png 976w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:403.33334401801807,intrinsicWidth:542.2222365862061,pixelHeight:726,pixelWidth:976,sizes:\"291px\",src:\"https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png\",srcSet:\"https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png?scale-down-to=512 512w,https://framerusercontent.com/images/37RqsFif4GwAanohN9CX5VuDnA.png 976w\"},className:\"framer-ny3jd\",\"data-framer-name\":\"Ab\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a1mqms hidden-1eut02m hidden-11e2lg1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Auto-sync subscribers with your mobile app\"})}),className:\"framer-4ole5d\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Automate user and subscription sync\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Provide users with instant access\"})})]})}),className:\"framer-1sv97wo\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1et1r3m\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:220.5555613982826,intrinsicWidth:344.4444535691064,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7752+60+516+20),pixelHeight:397,pixelWidth:620,sizes:\"315px\",src:\"https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png 620w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:220.5555613982826,intrinsicWidth:344.4444535691064,pixelHeight:397,pixelWidth:620,sizes:\"315px\",src:\"https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png?scale-down-to=512 512w,https://framerusercontent.com/images/SR9YTB1HDSu0xGdBbm94ggNkY.png 620w\"},className:\"framer-3tkqny\",\"data-framer-name\":\"Sync subs\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11jxoep hidden-1eut02m hidden-11e2lg1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Get signals\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"and insights\"})]}),className:\"framer-1v9ez39\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Track each signal immediately\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Optimize your campaign and funnels\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Analyze user behavior\"})})]})}),className:\"framer-3zmdty\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qhalkr\",\"data-border\":true,\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 161.49 37.41\"><path d=\"M 4.771 22.706 C 4.771 24.472 5.14 25.83 5.625 26.65 C 6.259 27.724 7.205 28.18 8.169 28.18 C 9.414 28.18 10.552 27.857 12.745 24.679 C 14.502 22.131 16.573 18.556 17.965 16.314 L 20.324 12.517 C 21.963 9.88 23.859 6.948 26.036 4.961 C 27.81 3.339 29.725 2.438 31.653 2.438 C 34.889 2.438 37.972 4.403 40.331 8.087 C 42.912 12.124 44.166 17.205 44.166 22.453 C 44.166 25.57 43.579 27.862 42.581 29.672 C 41.617 31.423 39.737 33.171 36.574 33.171 L 36.574 28.18 C 39.282 28.18 39.957 25.573 39.957 22.59 C 39.957 18.339 39.012 13.621 36.927 10.25 C 35.448 7.859 33.532 6.398 31.423 6.398 C 29.142 6.398 27.307 8.2 25.244 11.413 C 24.147 13.121 23.021 15.201 21.758 17.548 L 20.366 20.132 C 17.571 25.324 16.863 26.506 15.465 28.459 C 13.015 31.876 10.923 33.171 8.169 33.171 C 4.903 33.171 2.837 31.69 1.558 29.457 C 0.512 27.636 0 25.248 0 22.527 L 4.771 22.704 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 3.76 8.44 C 5.947 4.907 9.104 2.438 12.723 2.438 C 14.821 2.438 16.904 3.088 19.081 4.95 C 21.462 6.985 23.998 10.336 27.164 15.86 L 28.298 17.843 C 31.039 22.626 32.598 25.086 33.51 26.246 C 34.683 27.736 35.505 28.18 36.573 28.18 C 39.281 28.18 39.956 25.573 39.956 22.59 L 44.165 22.452 C 44.165 25.571 43.578 27.862 42.58 29.671 C 41.615 31.423 39.735 33.171 36.573 33.171 C 34.606 33.171 32.865 32.725 30.939 30.821 C 29.458 29.36 27.727 26.765 26.396 24.431 L 22.434 17.499 C 20.447 14.02 18.624 11.427 17.57 10.252 C 16.434 8.989 14.975 7.463 12.647 7.463 C 10.762 7.463 9.162 8.849 7.821 10.969 L 3.761 8.44 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 12.649 7.463 C 10.764 7.463 9.163 8.849 7.823 10.969 C 5.93 13.963 4.771 18.423 4.771 22.705 C 4.771 24.472 5.14 25.83 5.625 26.65 L 1.558 29.456 C 0.512 27.637 0 25.249 0 22.528 C 0 17.579 1.296 12.422 3.762 8.44 C 5.948 4.907 9.105 2.438 12.724 2.438 L 12.648 7.463 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 76.769 13.028 C 79.03 14.73 81.736 15.643 84.511 15.637 L 84.511 9.786 C 83.964 9.787 83.419 9.726 82.885 9.607 L 82.885 14.213 C 79.999 14.213 77.326 13.246 75.144 11.604 L 75.144 23.543 C 75.144 29.516 70.546 34.358 64.877 34.358 C 62.76 34.358 60.794 33.684 59.161 32.529 C 61.096 34.615 63.742 35.788 66.502 35.782 C 72.172 35.782 76.77 30.941 76.77 24.967 L 76.77 13.028 Z M 79.029 7.133 C 77.882 5.818 77.177 4.14 77.023 2.358 L 77.023 1.605 L 75.483 1.605 C 75.869 3.898 77.159 5.908 79.029 7.133 Z M 62.763 27.941 C 62.141 27.082 61.804 26.029 61.805 24.946 C 61.805 22.214 63.908 19.999 66.502 19.999 C 66.985 19.999 67.465 20.077 67.926 20.23 L 67.926 14.248 C 67.388 14.171 66.845 14.138 66.301 14.15 L 66.301 18.806 C 65.84 18.652 65.359 18.574 64.876 18.575 C 62.282 18.575 60.179 20.79 60.179 23.522 C 60.181 25.395 61.181 27.106 62.763 27.941 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 74.227 11.43 C 76.488 13.132 79.195 14.044 81.969 14.038 L 81.969 9.434 C 80.389 9.079 78.952 8.211 77.858 6.951 C 75.989 5.727 74.699 3.717 74.313 1.425 L 70.265 1.425 L 70.265 24.795 C 70.257 27.52 68.158 29.725 65.569 29.725 C 64.104 29.728 62.721 29.006 61.83 27.773 C 60.249 26.937 59.249 25.226 59.248 23.354 C 59.248 20.622 61.35 18.407 63.945 18.407 C 64.441 18.407 64.92 18.488 65.37 18.639 L 65.37 13.983 C 59.798 14.104 55.319 18.898 55.319 24.795 C 55.319 27.739 56.434 30.408 58.245 32.357 C 59.937 33.554 61.926 34.19 63.96 34.186 C 69.631 34.186 74.228 29.344 74.228 23.371 L 74.228 11.43 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 81.965 9.433 L 81.965 8.189 C 80.512 8.192 79.089 7.763 77.855 6.952 C 78.948 8.212 80.384 9.08 81.965 9.435 Z M 74.309 1.424 C 74.272 1.201 74.244 0.977 74.224 0.752 L 74.224 0 L 68.637 0 L 68.637 23.371 C 68.628 26.094 66.529 28.3 63.94 28.3 C 63.181 28.3 62.463 28.11 61.828 27.773 C 62.719 29.006 64.101 29.727 65.566 29.724 C 68.154 29.724 70.254 27.519 70.263 24.795 L 70.263 1.424 Z M 65.366 13.982 L 65.366 12.657 C 64.899 12.589 64.428 12.556 63.957 12.555 C 58.286 12.555 53.689 17.397 53.689 23.371 C 53.689 27.115 55.496 30.415 58.241 32.356 C 56.364 30.342 55.312 27.625 55.315 24.795 C 55.315 18.898 59.795 14.104 65.366 13.982 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 116.901 24.323 C 112.937 22.259 112.304 19.072 112.276 18.836 C 112.242 18.549 112.204 18.325 112.497 18.033 C 112.781 17.751 114.037 16.914 114.386 16.652 C 114.962 16.219 115.216 15.786 115.029 15.254 C 114.898 14.886 114.579 14.747 114.244 14.747 C 114.138 14.748 114.033 14.761 113.929 14.786 C 113.296 14.933 112.682 15.275 112.325 15.367 C 112.282 15.379 112.238 15.385 112.194 15.386 C 112.005 15.386 111.933 15.295 111.951 15.05 C 111.995 14.305 112.09 12.852 111.98 11.494 C 111.831 9.627 111.27 8.702 110.607 7.884 C 110.286 7.487 108.794 5.782 105.916 5.782 C 103.037 5.782 101.548 7.486 101.228 7.879 C 100.563 8.697 100.003 9.622 99.855 11.489 C 99.745 12.848 99.844 14.3 99.884 15.045 C 99.898 15.278 99.831 15.381 99.641 15.381 C 99.597 15.38 99.553 15.374 99.51 15.362 C 99.156 15.27 98.54 14.929 97.907 14.781 C 97.804 14.756 97.698 14.743 97.592 14.743 C 97.255 14.743 96.938 14.884 96.807 15.249 C 96.62 15.781 96.873 16.214 97.451 16.647 C 97.8 16.909 99.056 17.746 99.34 18.027 C 99.632 18.319 99.595 18.544 99.56 18.831 C 99.533 19.071 98.9 22.258 94.936 24.318 C 94.704 24.44 94.309 24.696 95.005 25.11 C 96.098 25.76 96.827 25.69 97.393 26.082 C 97.873 26.415 97.59 27.133 97.939 27.392 C 98.368 27.711 99.636 27.37 101.275 27.951 C 102.648 28.438 103.483 29.814 105.92 29.814 C 108.355 29.814 109.214 28.432 110.563 27.951 C 112.199 27.37 113.47 27.711 113.9 27.392 C 114.248 27.133 113.966 26.415 114.445 26.082 C 115.011 25.69 115.739 25.76 116.833 25.11 C 117.528 24.701 117.133 24.444 116.901 24.323 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 118.623 24.622 C 118.446 24.1 118.107 23.823 117.721 23.592 C 117.657 23.552 117.592 23.515 117.524 23.481 C 117.41 23.417 117.292 23.355 117.175 23.289 C 115.971 22.603 115.032 21.738 114.381 20.713 C 114.196 20.423 114.035 20.117 113.902 19.798 C 113.845 19.627 113.848 19.53 113.889 19.441 C 113.928 19.372 113.98 19.313 114.042 19.268 C 114.249 19.122 114.462 18.971 114.607 18.871 C 114.865 18.692 115.068 18.55 115.199 18.449 C 115.694 18.077 116.039 17.683 116.255 17.242 C 116.559 16.623 116.599 15.897 116.365 15.245 C 116.038 14.319 115.225 13.744 114.24 13.744 C 113.977 13.743 113.714 13.781 113.46 13.855 C 113.472 13.201 113.453 12.547 113.404 11.895 C 113.218 9.582 112.466 8.369 111.68 7.403 C 111.179 6.798 110.587 6.286 109.928 5.886 C 108.737 5.155 107.386 4.782 105.914 4.782 C 104.442 4.782 103.096 5.155 101.904 5.886 C 101.243 6.286 100.65 6.8 100.148 7.406 C 99.363 8.373 98.611 9.586 98.425 11.898 C 98.376 12.55 98.357 13.204 98.368 13.857 C 98.114 13.783 97.852 13.745 97.589 13.746 C 96.603 13.746 95.789 14.322 95.462 15.248 C 95.227 15.9 95.266 16.628 95.57 17.247 C 95.787 17.687 96.133 18.082 96.627 18.454 C 96.757 18.553 96.962 18.694 97.22 18.877 C 97.36 18.974 97.562 19.116 97.761 19.257 C 97.832 19.306 97.891 19.37 97.937 19.445 C 97.978 19.538 97.979 19.637 97.917 19.821 C 97.785 20.133 97.627 20.433 97.445 20.716 C 96.808 21.718 95.896 22.569 94.732 23.249 C 94.115 23.6 93.474 23.836 93.203 24.627 C 92.999 25.225 93.132 25.904 93.651 26.478 C 93.842 26.691 94.063 26.871 94.306 27.01 C 94.81 27.308 95.348 27.54 95.906 27.698 C 96.021 27.731 96.131 27.783 96.229 27.855 C 96.418 28.032 96.392 28.3 96.643 28.692 C 96.771 28.896 96.93 29.071 97.117 29.211 C 97.646 29.603 98.24 29.628 98.869 29.654 C 99.437 29.677 100.082 29.704 100.818 29.965 C 101.122 30.074 101.439 30.283 101.806 30.529 C 102.688 31.111 103.893 31.908 105.913 31.908 C 107.931 31.908 109.145 31.107 110.034 30.521 C 110.398 30.281 110.712 30.073 111.009 29.968 C 111.745 29.706 112.389 29.68 112.957 29.657 C 113.586 29.631 114.18 29.606 114.709 29.214 C 114.931 29.047 115.115 28.832 115.249 28.581 C 115.43 28.249 115.425 28.017 115.595 27.856 C 115.688 27.788 115.79 27.738 115.899 27.707 C 116.464 27.547 117.009 27.314 117.52 27.012 C 117.779 26.862 118.012 26.667 118.208 26.433 L 118.215 26.424 C 118.701 25.864 118.823 25.204 118.623 24.622 Z M 116.829 25.657 C 115.735 26.307 115.007 26.238 114.442 26.63 C 113.961 26.963 114.245 27.68 113.897 27.94 C 113.467 28.258 112.199 27.917 110.56 28.499 C 109.208 28.979 108.346 30.361 105.916 30.361 C 103.484 30.361 102.642 28.982 101.269 28.495 C 99.633 27.913 98.363 28.255 97.933 27.936 C 97.584 27.677 97.868 26.959 97.387 26.626 C 96.821 26.234 96.093 26.304 94.999 25.657 C 94.303 25.243 94.698 24.987 94.93 24.866 C 98.895 22.802 99.527 19.615 99.555 19.378 C 99.589 19.092 99.627 18.867 99.334 18.575 C 99.051 18.293 97.794 17.457 97.445 17.195 C 96.868 16.761 96.615 16.33 96.802 15.798 C 96.933 15.429 97.252 15.29 97.587 15.29 C 97.692 15.29 97.799 15.303 97.902 15.328 C 98.534 15.476 99.15 15.818 99.505 15.909 C 99.548 15.921 99.591 15.928 99.635 15.929 C 99.825 15.929 99.892 15.826 99.879 15.592 C 99.838 14.847 99.741 13.395 99.85 12.038 C 100 10.17 100.559 9.245 101.224 8.426 C 101.543 8.033 103.042 6.328 105.911 6.328 C 108.779 6.328 110.284 8.025 110.603 8.418 C 111.267 9.237 111.828 10.162 111.976 12.029 C 112.086 13.386 111.991 14.84 111.947 15.584 C 111.932 15.83 112 15.921 112.19 15.921 C 112.234 15.92 112.278 15.913 112.321 15.901 C 112.677 15.809 113.292 15.468 113.925 15.32 C 114.029 15.295 114.134 15.282 114.239 15.282 C 114.576 15.282 114.894 15.423 115.024 15.788 C 115.211 16.32 114.959 16.753 114.381 17.186 C 114.033 17.449 112.776 18.285 112.493 18.566 C 112.199 18.858 112.237 19.083 112.272 19.37 C 112.3 19.61 112.932 22.797 116.897 24.857 C 117.131 24.984 117.526 25.24 116.829 25.657 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 144.581 0.49 C 135.555 0.49 128.238 8.243 128.238 17.805 C 128.238 25.139 132.546 31.41 138.626 33.934 C 138.483 32.563 138.353 30.457 138.682 28.961 C 138.979 27.61 140.598 20.355 140.598 20.355 C 140.598 20.355 140.109 19.318 140.109 17.784 C 140.109 15.376 141.426 13.58 143.067 13.58 C 144.461 13.58 145.134 14.689 145.134 16.018 C 145.134 17.504 144.241 19.725 143.78 21.783 C 143.395 23.506 144.597 24.913 146.201 24.913 C 149.106 24.913 151.338 21.667 151.338 16.984 C 151.338 12.837 148.527 9.939 144.512 9.939 C 139.861 9.939 137.133 13.634 137.133 17.454 C 137.133 18.941 137.673 20.537 138.349 21.404 C 138.466 21.537 138.509 21.726 138.462 21.901 C 138.338 22.448 138.062 23.624 138.008 23.864 C 137.937 24.181 137.771 24.249 137.462 24.096 C 135.42 23.089 134.144 19.928 134.144 17.388 C 134.144 11.926 137.89 6.91 144.942 6.91 C 150.611 6.91 155.017 11.191 155.017 16.911 C 155.017 22.878 151.466 27.68 146.537 27.68 C 144.881 27.68 143.325 26.769 142.791 25.692 C 142.791 25.692 141.972 28.998 141.773 29.808 C 141.404 31.312 140.408 33.197 139.742 34.347 C 141.271 34.848 142.896 35.119 144.581 35.119 C 153.607 35.119 160.923 27.368 160.923 17.805 C 160.923 8.243 153.607 0.49 144.581 0.49 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11181971572}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fqnvar\",\"data-framer-name\":\"Social medias\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 161.49 37.41\"><path d=\"M 4.771 22.706 C 4.771 24.472 5.14 25.83 5.625 26.65 C 6.259 27.724 7.205 28.18 8.169 28.18 C 9.414 28.18 10.552 27.857 12.745 24.679 C 14.502 22.131 16.573 18.556 17.965 16.314 L 20.324 12.517 C 21.963 9.88 23.859 6.948 26.036 4.961 C 27.81 3.339 29.725 2.438 31.653 2.438 C 34.889 2.438 37.972 4.403 40.331 8.087 C 42.912 12.124 44.166 17.205 44.166 22.453 C 44.166 25.57 43.579 27.862 42.581 29.672 C 41.617 31.423 39.737 33.171 36.574 33.171 L 36.574 28.18 C 39.282 28.18 39.957 25.573 39.957 22.59 C 39.957 18.339 39.012 13.621 36.927 10.25 C 35.448 7.859 33.532 6.398 31.423 6.398 C 29.142 6.398 27.307 8.2 25.244 11.413 C 24.147 13.121 23.021 15.201 21.758 17.548 L 20.366 20.132 C 17.571 25.324 16.863 26.506 15.465 28.459 C 13.015 31.876 10.923 33.171 8.169 33.171 C 4.903 33.171 2.837 31.69 1.558 29.457 C 0.512 27.636 0 25.248 0 22.527 L 4.771 22.704 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 3.76 8.44 C 5.947 4.907 9.104 2.438 12.723 2.438 C 14.821 2.438 16.904 3.088 19.081 4.95 C 21.462 6.985 23.998 10.336 27.164 15.86 L 28.298 17.843 C 31.039 22.626 32.598 25.086 33.51 26.246 C 34.683 27.736 35.505 28.18 36.573 28.18 C 39.281 28.18 39.956 25.573 39.956 22.59 L 44.165 22.452 C 44.165 25.571 43.578 27.862 42.58 29.671 C 41.615 31.423 39.735 33.171 36.573 33.171 C 34.606 33.171 32.865 32.725 30.939 30.821 C 29.458 29.36 27.727 26.765 26.396 24.431 L 22.434 17.499 C 20.447 14.02 18.624 11.427 17.57 10.252 C 16.434 8.989 14.975 7.463 12.647 7.463 C 10.762 7.463 9.162 8.849 7.821 10.969 L 3.761 8.44 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 12.649 7.463 C 10.764 7.463 9.163 8.849 7.823 10.969 C 5.93 13.963 4.771 18.423 4.771 22.705 C 4.771 24.472 5.14 25.83 5.625 26.65 L 1.558 29.456 C 0.512 27.637 0 25.249 0 22.528 C 0 17.579 1.296 12.422 3.762 8.44 C 5.948 4.907 9.105 2.438 12.724 2.438 L 12.648 7.463 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 75.855 12.847 C 78.116 14.549 80.822 15.461 83.596 15.456 L 83.596 9.605 C 83.05 9.605 82.505 9.545 81.971 9.426 L 81.971 14.032 C 79.084 14.032 76.412 13.065 74.23 11.423 L 74.23 23.361 C 74.23 29.335 69.632 34.177 63.962 34.177 C 61.846 34.177 59.88 33.503 58.247 32.348 C 60.182 34.434 62.828 35.606 65.588 35.601 C 71.258 35.601 75.856 30.76 75.856 24.786 L 75.856 12.847 Z M 77.846 6.951 C 76.699 5.637 75.994 3.958 75.84 2.176 L 75.84 1.424 L 74.3 1.424 C 74.686 3.717 75.976 5.727 77.846 6.951 Z M 61.833 27.76 C 61.21 26.901 60.873 25.848 60.874 24.765 C 60.874 22.032 62.977 19.818 65.571 19.818 C 66.054 19.818 66.535 19.896 66.995 20.049 L 66.995 14.067 C 66.457 13.99 65.914 13.957 65.371 13.969 L 65.371 18.625 C 64.909 18.471 64.428 18.393 63.945 18.394 C 61.351 18.394 59.248 20.608 59.248 23.341 C 59.25 25.213 60.25 26.924 61.833 27.76 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 74.227 11.43 C 76.488 13.132 79.195 14.044 81.969 14.038 L 81.969 9.434 C 80.389 9.079 78.952 8.211 77.858 6.951 C 75.989 5.727 74.699 3.717 74.313 1.425 L 70.265 1.425 L 70.265 24.795 C 70.257 27.52 68.158 29.725 65.569 29.725 C 64.104 29.728 62.721 29.006 61.83 27.773 C 60.249 26.937 59.249 25.226 59.248 23.354 C 59.248 20.622 61.35 18.407 63.945 18.407 C 64.441 18.407 64.92 18.488 65.37 18.639 L 65.37 13.983 C 59.798 14.104 55.319 18.898 55.319 24.795 C 55.319 27.739 56.434 30.408 58.245 32.357 C 59.937 33.554 61.926 34.19 63.96 34.186 C 69.631 34.186 74.228 29.344 74.228 23.371 L 74.228 11.43 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 81.965 9.433 L 81.965 8.189 C 80.512 8.192 79.089 7.763 77.855 6.952 C 78.948 8.212 80.384 9.08 81.965 9.435 Z M 74.309 1.424 C 74.272 1.201 74.244 0.977 74.224 0.752 L 74.224 0 L 68.637 0 L 68.637 23.371 C 68.628 26.094 66.529 28.3 63.94 28.3 C 63.181 28.3 62.463 28.11 61.828 27.773 C 62.719 29.006 64.101 29.727 65.566 29.724 C 68.154 29.724 70.254 27.519 70.263 24.795 L 70.263 1.424 Z M 65.366 13.982 L 65.366 12.657 C 64.899 12.589 64.428 12.556 63.957 12.555 C 58.286 12.555 53.689 17.397 53.689 23.371 C 53.689 27.115 55.496 30.415 58.241 32.356 C 56.364 30.342 55.312 27.625 55.315 24.795 C 55.315 18.898 59.795 14.104 65.366 13.982 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 116.901 24.323 C 112.937 22.259 112.304 19.072 112.276 18.836 C 112.242 18.549 112.204 18.325 112.497 18.033 C 112.781 17.751 114.037 16.914 114.386 16.652 C 114.962 16.219 115.216 15.786 115.029 15.254 C 114.898 14.886 114.579 14.747 114.244 14.747 C 114.138 14.748 114.033 14.761 113.929 14.786 C 113.296 14.933 112.682 15.275 112.325 15.367 C 112.282 15.379 112.238 15.385 112.194 15.386 C 112.005 15.386 111.933 15.295 111.951 15.05 C 111.995 14.305 112.09 12.852 111.98 11.494 C 111.831 9.627 111.27 8.702 110.607 7.884 C 110.286 7.487 108.794 5.782 105.916 5.782 C 103.037 5.782 101.548 7.486 101.228 7.879 C 100.563 8.697 100.003 9.622 99.855 11.489 C 99.745 12.848 99.844 14.3 99.884 15.045 C 99.898 15.278 99.831 15.381 99.641 15.381 C 99.597 15.38 99.553 15.374 99.51 15.362 C 99.156 15.27 98.54 14.929 97.907 14.781 C 97.804 14.756 97.698 14.743 97.592 14.743 C 97.255 14.743 96.938 14.884 96.807 15.249 C 96.62 15.781 96.873 16.214 97.451 16.647 C 97.8 16.909 99.056 17.746 99.34 18.027 C 99.632 18.319 99.595 18.544 99.56 18.831 C 99.533 19.071 98.9 22.258 94.936 24.318 C 94.704 24.44 94.309 24.696 95.005 25.11 C 96.098 25.76 96.827 25.69 97.393 26.082 C 97.873 26.415 97.59 27.133 97.939 27.392 C 98.368 27.711 99.636 27.37 101.275 27.951 C 102.648 28.438 103.483 29.814 105.92 29.814 C 108.355 29.814 109.214 28.432 110.563 27.951 C 112.199 27.37 113.47 27.711 113.9 27.392 C 114.248 27.133 113.966 26.415 114.445 26.082 C 115.011 25.69 115.739 25.76 116.833 25.11 C 117.528 24.701 117.133 24.444 116.901 24.323 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 118.623 24.082 C 118.446 23.56 118.107 23.283 117.721 23.052 C 117.657 23.012 117.592 22.975 117.524 22.942 C 117.41 22.877 117.292 22.815 117.175 22.75 C 115.971 22.063 115.032 21.198 114.381 20.173 C 114.196 19.884 114.035 19.577 113.902 19.258 C 113.845 19.087 113.848 18.99 113.889 18.901 C 113.928 18.833 113.98 18.774 114.042 18.728 C 114.249 18.582 114.462 18.432 114.607 18.331 C 114.865 18.152 115.068 18.01 115.199 17.909 C 115.694 17.537 116.039 17.143 116.255 16.702 C 116.559 16.083 116.599 15.357 116.365 14.705 C 116.038 13.779 115.225 13.204 114.24 13.204 C 113.977 13.203 113.714 13.241 113.46 13.315 C 113.472 12.661 113.453 12.007 113.404 11.355 C 113.218 9.042 112.466 7.829 111.68 6.863 C 111.179 6.258 110.587 5.746 109.928 5.346 C 108.737 4.615 107.386 4.242 105.914 4.242 C 104.442 4.242 103.096 4.615 101.904 5.346 C 101.243 5.746 100.65 6.26 100.148 6.866 C 99.363 7.833 98.611 9.047 98.425 11.358 C 98.376 12.01 98.357 12.664 98.368 13.318 C 98.114 13.243 97.852 13.205 97.589 13.206 C 96.603 13.206 95.789 13.782 95.462 14.708 C 95.227 15.36 95.266 16.088 95.57 16.707 C 95.787 17.147 96.133 17.542 96.627 17.914 C 96.757 18.013 96.962 18.154 97.22 18.337 C 97.36 18.434 97.562 18.577 97.761 18.717 C 97.832 18.766 97.891 18.83 97.937 18.905 C 97.978 18.998 97.979 19.097 97.917 19.281 C 97.785 19.593 97.627 19.893 97.445 20.176 C 96.808 21.178 95.896 22.029 94.732 22.709 C 94.115 23.06 93.474 23.296 93.203 24.087 C 92.999 24.685 93.132 25.364 93.651 25.938 C 93.842 26.152 94.063 26.331 94.306 26.47 C 94.81 26.768 95.348 27 95.906 27.158 C 96.021 27.191 96.131 27.243 96.229 27.315 C 96.418 27.492 96.392 27.76 96.643 28.153 C 96.771 28.356 96.93 28.531 97.117 28.671 C 97.646 29.063 98.24 29.088 98.869 29.114 C 99.437 29.137 100.082 29.164 100.818 29.425 C 101.122 29.534 101.439 29.743 101.806 29.989 C 102.688 30.571 103.893 31.368 105.913 31.368 C 107.931 31.368 109.145 30.567 110.034 29.981 C 110.398 29.741 110.712 29.533 111.009 29.428 C 111.745 29.167 112.389 29.14 112.957 29.118 C 113.586 29.091 114.18 29.066 114.709 28.674 C 114.931 28.507 115.115 28.292 115.249 28.041 C 115.43 27.709 115.425 27.478 115.595 27.316 C 115.688 27.248 115.79 27.198 115.899 27.167 C 116.464 27.007 117.009 26.774 117.52 26.472 C 117.779 26.323 118.012 26.127 118.208 25.893 L 118.215 25.885 C 118.701 25.324 118.823 24.664 118.623 24.082 Z M 116.829 25.117 C 115.735 25.767 115.007 25.698 114.442 26.09 C 113.961 26.423 114.245 27.14 113.897 27.4 C 113.467 27.718 112.199 27.377 110.56 27.959 C 109.208 28.439 108.346 29.821 105.916 29.821 C 103.484 29.821 102.642 28.442 101.269 27.955 C 99.633 27.373 98.363 27.715 97.933 27.396 C 97.584 27.137 97.868 26.419 97.387 26.087 C 96.821 25.694 96.093 25.764 94.999 25.117 C 94.303 24.703 94.698 24.448 94.93 24.327 C 98.895 22.262 99.527 19.075 99.555 18.838 C 99.589 18.552 99.627 18.327 99.334 18.035 C 99.051 17.753 97.794 16.917 97.445 16.656 C 96.868 16.222 96.615 15.79 96.802 15.258 C 96.933 14.889 97.252 14.751 97.587 14.751 C 97.692 14.751 97.799 14.763 97.902 14.788 C 98.534 14.936 99.15 15.278 99.505 15.369 C 99.548 15.381 99.591 15.388 99.635 15.389 C 99.825 15.389 99.892 15.286 99.879 15.052 C 99.838 14.307 99.741 12.855 99.85 11.498 C 100 9.63 100.559 8.705 101.224 7.886 C 101.543 7.493 103.042 5.788 105.911 5.788 C 108.779 5.788 110.284 7.485 110.603 7.878 C 111.267 8.697 111.828 9.622 111.976 11.489 C 112.086 12.846 111.991 14.3 111.947 15.044 C 111.932 15.29 112 15.381 112.19 15.381 C 112.234 15.38 112.278 15.373 112.321 15.361 C 112.677 15.269 113.292 14.928 113.925 14.78 C 114.029 14.755 114.134 14.742 114.239 14.742 C 114.576 14.742 114.894 14.883 115.024 15.248 C 115.211 15.78 114.959 16.213 114.381 16.646 C 114.033 16.909 112.776 17.745 112.493 18.026 C 112.199 18.318 112.237 18.543 112.272 18.83 C 112.3 19.07 112.932 22.257 116.897 24.317 C 117.131 24.444 117.526 24.7 116.829 25.117 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 144.581 0.49 C 135.555 0.49 128.238 8.243 128.238 17.805 C 128.238 25.139 132.546 31.41 138.626 33.934 C 138.483 32.563 138.353 30.457 138.682 28.961 C 138.979 27.61 140.598 20.355 140.598 20.355 C 140.598 20.355 140.109 19.318 140.109 17.784 C 140.109 15.376 141.426 13.58 143.067 13.58 C 144.461 13.58 145.134 14.689 145.134 16.018 C 145.134 17.504 144.241 19.725 143.78 21.783 C 143.395 23.506 144.597 24.913 146.201 24.913 C 149.106 24.913 151.338 21.667 151.338 16.984 C 151.338 12.837 148.527 9.939 144.512 9.939 C 139.861 9.939 137.133 13.634 137.133 17.454 C 137.133 18.941 137.673 20.537 138.349 21.404 C 138.466 21.537 138.509 21.726 138.462 21.901 C 138.338 22.448 138.062 23.624 138.008 23.864 C 137.937 24.181 137.771 24.249 137.462 24.096 C 135.42 23.089 134.144 19.928 134.144 17.388 C 134.144 11.926 137.89 6.91 144.942 6.91 C 150.611 6.91 155.017 11.191 155.017 16.911 C 155.017 22.878 151.466 27.68 146.537 27.68 C 144.881 27.68 143.325 26.769 142.791 25.692 C 142.791 25.692 141.972 28.998 141.773 29.808 C 141.404 31.312 140.408 33.197 139.742 34.347 C 141.271 34.848 142.896 35.119 144.581 35.119 C 153.607 35.119 160.923 27.368 160.923 17.805 C 160.923 8.243 153.607 0.49 144.581 0.49 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9994437494,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nd547w\",\"data-framer-name\":\"Mixpanel logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 149.07 35.62\"><path d=\"M 0 26.922 L 8.922 26.922 L 8.922 25.986 L 8.254 25.986 C 6.949 25.986 6.637 25.636 6.637 24.354 L 6.637 12.763 C 7.545 11.244 8.77 10.269 10.312 10.269 C 12.249 10.269 13.43 11.67 13.43 14.317 L 13.43 24.354 C 13.43 25.639 13.113 25.986 11.849 25.986 L 11.137 25.986 L 11.137 26.921 L 19.862 26.921 L 19.862 25.991 L 19.23 25.991 C 17.924 25.991 17.613 25.64 17.613 24.358 L 17.613 13.887 C 17.613 13.536 17.613 13.185 17.572 12.837 C 18.441 11.28 19.746 10.27 21.283 10.27 C 23.22 10.27 24.405 11.67 24.405 14.316 L 24.405 24.354 C 24.405 25.639 24.089 25.986 22.823 25.986 L 22.111 25.986 L 22.111 26.921 L 30.838 26.921 L 30.838 25.991 L 30.246 25.991 C 28.899 25.991 28.587 25.64 28.587 24.358 L 28.587 13.887 C 28.587 9.958 26.338 7.777 23.06 7.777 C 20.615 7.777 18.48 9.102 17.337 11.745 C 16.668 9.178 14.691 7.778 12.084 7.778 C 9.755 7.778 7.741 9.019 6.633 11.513 L 6.633 8.242 L 0 8.242 L 0 9.178 L 0.789 9.178 C 2.133 9.178 2.445 9.529 2.445 10.81 L 2.445 24.35 C 2.445 25.636 2.13 25.983 0.789 25.983 L 0 25.983 Z M 36.093 5.134 C 37.527 5.121 38.686 3.979 38.698 2.566 C 38.685 1.154 37.526 0.013 36.093 0 C 34.659 0.012 33.5 1.154 33.487 2.567 C 33.499 3.98 34.659 5.123 36.093 5.135 Z M 31.67 26.92 L 40.436 26.92 L 40.436 25.985 L 39.844 25.985 C 38.538 25.985 38.226 25.635 38.226 24.353 L 38.226 8.247 L 31.59 8.247 L 31.59 9.181 L 32.379 9.181 C 33.723 9.181 34.036 9.533 34.036 10.814 L 34.036 24.354 C 34.036 25.639 33.719 25.986 32.378 25.986 L 31.666 25.986 L 31.67 26.921 Z M 46.833 15.953 L 49.359 15.953 C 48.725 15.562 48.49 15.018 48.173 14.007 L 47.224 10.546 C 46.793 8.987 46.435 8.249 44.699 8.249 L 41.068 8.249 L 41.068 9.184 L 41.585 9.184 C 42.649 9.184 42.77 9.575 43.086 10.742 L 43.915 13.779 C 44.347 15.254 45.023 15.953 46.832 15.953 Z M 52.68 15.953 L 55.207 15.953 C 57.023 15.953 57.652 15.251 58.088 13.775 L 58.916 10.739 C 59.233 9.571 59.389 9.18 60.417 9.18 L 60.935 9.18 L 60.935 8.247 L 57.34 8.247 C 55.563 8.247 55.207 8.949 54.809 10.542 L 53.861 14.005 C 53.549 15.055 53.309 15.563 52.68 15.954 Z M 49.362 19.218 L 52.681 19.218 L 52.681 15.947 L 49.362 15.947 Z M 41.068 26.925 L 44.7 26.925 C 46.438 26.925 46.793 26.183 47.225 24.629 L 48.174 21.167 C 48.491 20.156 48.727 19.608 49.36 19.221 L 46.833 19.221 C 45.017 19.221 44.344 19.923 43.911 21.399 L 43.083 24.435 C 42.766 25.603 42.65 25.994 41.582 25.994 L 41.066 25.994 L 41.069 26.925 Z M 57.336 26.925 L 60.93 26.925 L 60.93 25.99 L 60.414 25.99 C 59.39 25.99 59.229 25.599 58.913 24.432 L 58.084 21.394 C 57.652 19.915 57.02 19.218 55.202 19.218 L 52.68 19.218 C 53.313 19.608 53.541 20.114 53.857 21.161 L 54.806 24.625 C 55.202 26.223 55.558 26.925 57.337 26.925 Z M 61.443 34.706 L 70.602 34.706 L 70.602 33.771 L 69.652 33.771 C 68.392 33.771 68.071 33.42 68.071 32.138 L 68.071 24.707 C 69.216 26.381 71.153 27.394 73.443 27.394 C 77.746 27.394 81.18 23.659 81.18 17.203 C 81.18 11.366 77.942 7.789 73.755 7.789 C 71.31 7.789 69.252 9.189 68.067 11.677 L 68.067 8.255 L 61.431 8.255 L 61.431 9.19 L 62.22 9.19 C 63.523 9.19 63.876 9.541 63.876 10.822 L 63.876 32.14 C 63.876 33.424 63.52 33.772 62.22 33.772 L 61.431 33.772 L 61.431 34.707 L 61.442 34.707 Z M 72.265 10.195 C 74.831 10.195 76.925 12.57 76.925 17.275 C 76.925 22.409 74.987 25.214 72.345 25.214 C 70.644 25.214 69.146 24.318 68.078 22.761 L 68.078 13.11 C 69.103 11.205 70.568 10.191 72.265 10.196 Z M 87.428 27.315 C 89.993 27.315 92.047 26.108 93.587 23.388 L 93.587 23.813 C 93.587 26.148 95.088 27.158 97.575 27.158 C 98.327 27.158 99.276 27.082 99.905 26.886 L 99.905 25.912 C 99.588 25.988 99.351 26.031 99.116 26.031 C 98.127 26.031 97.811 25.447 97.811 24.512 L 97.811 14.554 C 97.811 9.963 95.205 7.781 90.821 7.781 C 87.9 7.781 85.058 9.107 83.24 10.507 L 83.873 11.599 C 85.77 10.313 87.624 9.576 89.637 9.576 C 92.243 9.576 93.584 10.976 93.584 14.246 L 93.584 15.101 L 88.724 16.971 C 84.301 18.761 82.68 20.434 82.68 22.962 C 82.684 25.486 84.502 27.315 87.428 27.315 Z M 86.835 21.944 C 86.835 20.001 87.98 18.6 90.309 17.586 L 93.588 16.186 L 93.588 22.256 C 92.363 23.928 90.942 24.902 89.401 24.902 C 87.864 24.902 86.839 23.853 86.835 21.944 Z M 100.692 26.926 L 109.699 26.926 L 109.699 25.991 L 108.947 25.991 C 107.642 25.991 107.329 25.64 107.329 24.358 L 107.329 12.803 C 108.239 11.245 109.579 10.275 111.16 10.275 C 113.214 10.275 114.519 11.676 114.519 14.322 L 114.519 24.359 C 114.519 25.644 114.202 25.992 112.938 25.992 L 112.185 25.992 L 112.185 26.927 L 121.147 26.927 L 121.147 25.992 L 120.358 25.992 C 119.014 25.992 118.702 25.641 118.702 24.359 L 118.702 13.888 C 118.702 9.959 116.332 7.778 112.977 7.778 C 110.532 7.778 108.474 9.021 107.329 11.513 L 107.329 8.244 L 100.692 8.244 L 100.692 9.179 L 101.481 9.179 C 102.827 9.179 103.139 9.53 103.139 10.811 L 103.139 24.351 C 103.139 25.637 102.822 25.984 101.481 25.984 L 100.692 25.984 L 100.692 26.927 Z M 131.414 27.39 C 134.02 27.39 136.47 26.224 138.247 24.823 L 137.654 23.968 C 136.073 25.095 134.296 25.6 132.639 25.6 C 128.612 25.6 126.243 22.8 126.243 17.353 L 126.243 16.651 L 138.719 16.651 C 138.644 11.398 135.361 7.821 130.586 7.821 C 125.81 7.821 121.975 12.06 121.975 17.666 C 121.98 23.818 125.534 27.395 131.414 27.391 Z M 130.625 8.79 C 132.995 8.79 134.456 11.32 134.692 15.599 L 126.323 15.599 C 126.679 11.284 128.336 8.791 130.625 8.791 Z M 139.588 26.921 L 148.746 26.921 L 148.746 25.986 L 147.838 25.986 C 146.533 25.986 146.221 25.636 146.221 24.354 L 146.221 0.464 L 139.584 0.464 L 139.584 1.399 L 140.372 1.399 C 141.677 1.399 142.029 1.75 142.029 3.032 L 142.029 24.352 C 142.029 25.639 141.673 25.985 140.372 25.985 L 139.584 25.985 L 139.588 26.92 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12507477937,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 42\"><path d=\"M 72.617 11.421 C 72.617 14.535 70.185 16.829 67.202 16.829 C 64.22 16.829 61.789 14.535 61.789 11.42 C 61.789 8.285 64.22 6.012 67.202 6.012 C 70.185 6.012 72.617 8.285 72.617 11.421 Z M 70.284 11.419 C 70.284 9.473 68.875 8.141 67.239 8.141 C 65.605 8.141 64.196 9.473 64.196 11.419 C 64.196 13.344 65.605 14.696 67.239 14.696 C 68.875 14.696 70.284 13.343 70.284 11.419 Z M 84.479 11.421 C 84.479 14.535 82.048 16.829 79.066 16.829 C 76.083 16.829 73.653 14.535 73.653 11.42 C 73.653 8.288 76.083 6.012 79.066 6.012 C 82.048 6.012 84.479 8.285 84.479 11.421 Z M 82.146 11.419 C 82.146 9.473 80.738 8.141 79.103 8.141 C 77.468 8.141 76.059 9.473 76.059 11.419 C 76.059 13.344 77.468 14.696 79.103 14.696 C 80.738 14.696 82.146 13.343 82.146 11.419 Z M 95.857 6.34 L 95.857 16.049 C 95.857 20.043 93.507 21.673 90.728 21.673 C 88.112 21.673 86.538 19.92 85.945 18.486 L 88.008 17.627 C 88.375 18.507 89.274 19.545 90.725 19.545 C 92.504 19.545 93.605 18.446 93.605 16.375 L 93.605 15.598 L 93.523 15.598 C 92.993 16.253 91.971 16.826 90.681 16.826 C 87.984 16.826 85.511 14.472 85.511 11.44 C 85.511 8.387 87.984 6.013 90.681 6.013 C 91.969 6.013 92.991 6.587 93.523 7.222 L 93.606 7.222 L 93.606 6.341 L 95.857 6.341 Z M 93.811 11.438 C 93.811 9.534 92.544 8.141 90.931 8.141 C 89.295 8.141 87.926 9.534 87.926 11.438 C 87.926 13.323 89.295 14.696 90.931 14.696 C 92.543 14.696 93.811 13.323 93.811 11.438 Z M 99.75 0.653 L 99.75 16.503 L 97.438 16.503 L 97.438 0.653 Z M 108.811 13.201 L 110.65 14.429 C 110.056 15.31 108.626 16.826 106.153 16.826 C 103.088 16.826 100.798 14.452 100.798 11.418 C 100.798 8.202 103.107 6.01 105.888 6.01 C 108.689 6.01 110.058 8.243 110.506 9.45 L 110.751 10.064 L 103.539 13.059 C 104.09 14.143 104.949 14.698 106.153 14.698 C 107.36 14.698 108.197 14.102 108.811 13.201 Z M 103.186 11.252 L 108.009 9.247 C 107.743 8.57 106.945 8.101 106.006 8.101 C 104.802 8.101 103.125 9.166 103.186 11.253 Z M 52.767 10.019 L 52.767 7.726 L 60.483 7.726 C 60.558 8.126 60.597 8.598 60.597 9.112 C 60.597 10.833 60.128 12.961 58.614 14.478 C 57.142 16.015 55.261 16.832 52.77 16.832 C 48.152 16.832 44.269 13.064 44.269 8.436 C 44.269 3.808 48.152 0.038 52.77 0.038 C 55.325 0.038 57.145 1.042 58.512 2.353 L 56.897 3.972 C 55.916 3.049 54.587 2.333 52.768 2.333 C 49.395 2.333 46.759 5.057 46.759 8.436 C 46.759 11.815 49.396 14.538 52.767 14.538 C 54.954 14.538 56.2 13.658 56.998 12.859 C 57.646 12.21 58.071 11.284 58.24 10.018 L 52.767 10.021 Z M 50.663 25.332 L 48.286 31.919 L 53.135 31.919 L 50.74 25.332 L 50.662 25.332 Z M 46.171 37.624 L 44.103 37.624 L 49.583 23.03 L 51.71 23.03 L 57.191 37.624 L 55.12 37.624 L 53.721 33.669 L 47.59 33.669 Z M 58.354 27.634 L 60.155 27.634 L 60.155 29.017 L 60.232 29.017 C 60.508 28.532 60.944 28.128 61.534 27.807 C 62.133 27.476 62.746 27.308 63.373 27.308 C 64.601 27.308 65.539 27.662 66.19 28.364 C 66.851 29.055 67.186 30.049 67.186 31.341 L 67.186 37.618 L 65.309 37.618 L 65.309 31.474 C 65.27 29.837 64.451 29.017 62.856 29.017 C 62.113 29.017 61.486 29.324 60.978 29.939 C 60.48 30.543 60.232 31.258 60.232 32.089 L 60.232 37.619 L 58.353 37.619 Z M 70.848 34.562 C 70.848 35.051 71.049 35.459 71.46 35.79 C 71.868 36.112 72.352 36.269 72.917 36.269 C 73.693 36.269 74.392 35.983 75.005 35.405 C 75.628 34.82 75.944 34.129 75.944 33.332 C 75.355 32.871 74.535 32.642 73.491 32.642 C 72.735 32.642 72.102 32.829 71.595 33.198 C 71.096 33.557 70.848 34.014 70.848 34.562 Z M 73.231 27.308 C 74.61 27.308 75.693 27.683 76.489 28.422 C 77.293 29.165 77.695 30.184 77.695 31.474 L 77.695 37.619 L 75.914 37.619 L 75.914 36.237 L 75.837 36.237 C 75.056 37.38 74.021 37.945 72.734 37.945 C 71.632 37.945 70.712 37.619 69.974 36.966 C 69.245 36.313 68.882 35.502 68.882 34.528 C 68.882 33.491 69.269 32.674 70.05 32.069 C 70.826 31.455 71.871 31.149 73.173 31.149 C 74.284 31.149 75.195 31.349 75.914 31.744 L 75.914 31.32 C 75.914 30.668 75.65 30.121 75.128 29.67 C 74.638 29.217 73.994 28.969 73.327 28.978 C 72.278 28.978 71.454 29.42 70.856 30.303 L 69.208 29.267 C 70.113 27.961 71.454 27.308 73.231 27.308 Z M 81.785 23.03 L 81.785 37.623 L 79.906 37.623 L 79.906 23.029 L 81.784 23.029 Z M 92.87 27.634 L 86.623 42.016 L 84.707 42.016 L 87.025 36.985 L 82.905 27.634 L 84.936 27.634 L 87.906 34.816 L 87.945 34.816 L 90.838 27.634 L 92.869 27.634 Z M 98.184 37.775 C 97.379 37.775 96.708 37.526 96.172 37.027 C 95.635 36.527 95.358 35.831 95.348 34.933 L 95.348 29.346 L 93.584 29.346 L 93.584 27.637 L 95.347 27.637 L 95.347 24.583 L 97.206 24.583 L 97.206 27.637 L 99.658 27.637 L 99.658 29.346 L 97.206 29.346 L 97.206 34.319 C 97.206 34.986 97.33 35.443 97.589 35.683 C 97.858 35.913 98.15 36.028 98.47 36.028 C 98.624 36.028 98.767 36.018 98.91 35.989 C 99.047 35.953 99.182 35.908 99.313 35.855 L 99.888 37.526 C 99.399 37.688 98.835 37.775 98.183 37.775 Z M 103.867 24.202 C 103.867 24.561 103.734 24.874 103.465 25.142 C 103.224 25.392 102.892 25.531 102.546 25.527 C 102.193 25.536 101.852 25.397 101.607 25.142 C 101.357 24.894 101.219 24.555 101.223 24.202 C 101.223 23.832 101.347 23.52 101.607 23.261 C 101.853 23.008 102.193 22.869 102.546 22.876 C 102.899 22.876 103.206 23.007 103.465 23.261 C 103.734 23.52 103.867 23.832 103.867 24.202 Z M 103.49 27.635 L 103.49 37.619 L 101.613 37.619 L 101.613 27.635 Z M 109.848 37.945 C 108.363 37.945 107.137 37.442 106.169 36.428 C 105.211 35.406 104.732 34.139 104.732 32.626 C 104.732 31.091 105.211 29.824 106.169 28.825 C 107.137 27.817 108.363 27.308 109.848 27.308 C 110.869 27.308 111.754 27.567 112.511 28.075 C 113.263 28.59 113.833 29.296 114.217 30.188 L 112.511 30.898 C 111.984 29.645 111.06 29.017 109.733 29.017 C 108.876 29.017 108.133 29.363 107.511 30.053 C 106.898 30.745 106.59 31.603 106.59 32.626 C 106.59 33.653 106.898 34.508 107.511 35.199 C 108.133 35.892 108.876 36.236 109.733 36.236 C 111.098 36.236 112.056 35.612 112.608 34.354 L 114.274 35.064 C 113.914 35.963 113.344 36.668 112.569 37.178 C 111.788 37.686 110.883 37.945 109.848 37.945 Z M 123.692 34.855 C 123.692 35.727 123.309 36.462 122.542 37.062 C 121.786 37.648 120.837 37.945 119.688 37.945 C 118.691 37.945 117.81 37.682 117.043 37.158 C 116.301 36.651 115.732 35.927 115.415 35.085 L 117.081 34.374 C 117.336 34.979 117.695 35.444 118.155 35.776 C 118.6 36.102 119.137 36.277 119.688 36.274 C 120.286 36.274 120.784 36.149 121.181 35.892 C 121.589 35.636 121.795 35.33 121.795 34.969 C 121.795 34.33 121.301 33.865 120.319 33.568 L 118.615 33.145 C 116.669 32.647 115.703 31.705 115.703 30.323 C 115.703 29.415 116.071 28.685 116.813 28.133 C 117.552 27.587 118.499 27.307 119.649 27.307 C 120.531 27.307 121.325 27.518 122.045 27.941 C 122.758 28.364 123.256 28.93 123.539 29.631 L 121.872 30.323 C 121.678 29.899 121.347 29.554 120.933 29.343 C 120.501 29.099 120.011 28.973 119.515 28.978 C 119.049 28.974 118.591 29.1 118.193 29.343 C 117.81 29.588 117.619 29.891 117.619 30.245 C 117.619 30.812 118.155 31.22 119.228 31.475 L 120.722 31.858 C 122.701 32.348 123.692 33.347 123.692 34.854 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 25.718 4.921 L 25.718 35.851 C 25.718 39.314 28.101 41.24 30.629 41.24 C 32.968 41.24 35.539 39.6 35.539 35.85 L 35.539 5.155 C 35.539 1.985 33.2 0 30.629 0 C 28.058 0 25.718 2.189 25.718 4.921 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 12.847 20.87 L 12.847 36.101 C 12.847 39.565 15.229 41.491 17.757 41.491 C 20.094 41.491 22.668 39.85 22.668 36.101 L 22.668 21.105 C 22.668 17.934 20.328 15.949 17.757 15.949 C 15.185 15.949 12.847 18.139 12.847 20.87 Z M 9.821 36.818 C 9.783 39.508 7.596 41.67 4.911 41.67 C 2.226 41.67 0.039 39.508 0.001 36.818 C 0.001 34.1 2.199 31.896 4.911 31.896 C 7.623 31.896 9.822 34.1 9.822 36.818 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11162653225}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cqmo43\",\"data-framer-name\":\"GA logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 42\"><path d=\"M 72.616 11.421 C 72.616 14.535 70.185 16.829 67.202 16.829 C 64.22 16.829 61.789 14.535 61.789 11.42 C 61.789 8.285 64.22 6.012 67.202 6.012 C 70.185 6.012 72.616 8.285 72.616 11.421 Z M 70.284 11.419 C 70.284 9.473 68.875 8.141 67.239 8.141 C 65.605 8.141 64.196 9.473 64.196 11.419 C 64.196 13.344 65.605 14.696 67.239 14.696 C 68.875 14.696 70.284 13.343 70.284 11.419 Z M 84.479 11.421 C 84.479 14.535 82.048 16.829 79.066 16.829 C 76.083 16.829 73.653 14.535 73.653 11.42 C 73.653 8.288 76.083 6.012 79.066 6.012 C 82.048 6.012 84.479 8.285 84.479 11.421 Z M 82.146 11.419 C 82.146 9.473 80.738 8.141 79.103 8.141 C 77.468 8.141 76.059 9.473 76.059 11.419 C 76.059 13.344 77.468 14.696 79.103 14.696 C 80.738 14.696 82.146 13.343 82.146 11.419 Z M 95.857 6.34 L 95.857 16.049 C 95.857 20.043 93.507 21.673 90.728 21.673 C 88.112 21.673 86.538 19.92 85.945 18.486 L 88.008 17.627 C 88.375 18.507 89.274 19.545 90.725 19.545 C 92.504 19.545 93.605 18.446 93.605 16.375 L 93.605 15.598 L 93.523 15.598 C 92.993 16.253 91.971 16.826 90.681 16.826 C 87.984 16.826 85.511 14.472 85.511 11.44 C 85.511 8.387 87.984 6.013 90.681 6.013 C 91.969 6.013 92.991 6.587 93.523 7.222 L 93.606 7.222 L 93.606 6.341 L 95.857 6.341 Z M 93.811 11.438 C 93.811 9.534 92.544 8.141 90.931 8.141 C 89.295 8.141 87.926 9.534 87.926 11.438 C 87.926 13.323 89.295 14.696 90.931 14.696 C 92.543 14.696 93.811 13.323 93.811 11.438 Z M 99.75 0.653 L 99.75 16.503 L 97.438 16.503 L 97.438 0.653 Z M 108.811 13.201 L 110.65 14.429 C 110.056 15.31 108.626 16.826 106.153 16.826 C 103.088 16.826 100.798 14.452 100.798 11.418 C 100.798 8.202 103.107 6.01 105.888 6.01 C 108.689 6.01 110.058 8.243 110.506 9.45 L 110.751 10.064 L 103.539 13.059 C 104.09 14.143 104.949 14.698 106.153 14.698 C 107.36 14.698 108.197 14.102 108.811 13.201 Z M 103.186 11.252 L 108.009 9.247 C 107.743 8.57 106.945 8.101 106.006 8.101 C 104.802 8.101 103.125 9.166 103.186 11.253 Z M 52.767 10.019 L 52.767 7.726 L 60.483 7.726 C 60.558 8.126 60.597 8.598 60.597 9.112 C 60.597 10.833 60.128 12.961 58.614 14.478 C 57.142 16.015 55.261 16.832 52.77 16.832 C 48.152 16.832 44.269 13.064 44.269 8.436 C 44.269 3.808 48.152 0.038 52.77 0.038 C 55.325 0.038 57.145 1.042 58.512 2.353 L 56.897 3.972 C 55.916 3.049 54.587 2.333 52.768 2.333 C 49.395 2.333 46.759 5.057 46.759 8.436 C 46.759 11.815 49.396 14.538 52.767 14.538 C 54.954 14.538 56.2 13.658 56.998 12.859 C 57.646 12.21 58.071 11.284 58.24 10.018 L 52.767 10.021 Z M 50.663 25.332 L 48.286 31.919 L 53.135 31.919 L 50.74 25.332 L 50.662 25.332 Z M 46.171 37.624 L 44.103 37.624 L 49.583 23.03 L 51.71 23.03 L 57.191 37.624 L 55.12 37.624 L 53.721 33.669 L 47.59 33.669 Z M 58.354 27.634 L 60.155 27.634 L 60.155 29.017 L 60.232 29.017 C 60.508 28.532 60.944 28.128 61.534 27.807 C 62.133 27.476 62.746 27.308 63.373 27.308 C 64.601 27.308 65.539 27.662 66.19 28.364 C 66.851 29.055 67.186 30.049 67.186 31.341 L 67.186 37.618 L 65.309 37.618 L 65.309 31.474 C 65.27 29.837 64.451 29.017 62.856 29.017 C 62.113 29.017 61.486 29.324 60.978 29.939 C 60.48 30.543 60.232 31.258 60.232 32.089 L 60.232 37.619 L 58.353 37.619 Z M 70.848 34.562 C 70.848 35.051 71.049 35.459 71.46 35.79 C 71.868 36.112 72.352 36.269 72.917 36.269 C 73.693 36.269 74.392 35.983 75.005 35.405 C 75.628 34.82 75.944 34.129 75.944 33.332 C 75.355 32.871 74.535 32.642 73.491 32.642 C 72.735 32.642 72.102 32.829 71.595 33.198 C 71.096 33.557 70.848 34.014 70.848 34.562 Z M 73.231 27.308 C 74.61 27.308 75.693 27.683 76.489 28.422 C 77.293 29.165 77.695 30.184 77.695 31.474 L 77.695 37.619 L 75.914 37.619 L 75.914 36.237 L 75.837 36.237 C 75.056 37.38 74.021 37.945 72.734 37.945 C 71.632 37.945 70.712 37.619 69.974 36.966 C 69.245 36.313 68.882 35.502 68.882 34.528 C 68.882 33.491 69.269 32.674 70.05 32.069 C 70.826 31.455 71.871 31.149 73.173 31.149 C 74.284 31.149 75.195 31.349 75.914 31.744 L 75.914 31.32 C 75.914 30.668 75.65 30.121 75.128 29.67 C 74.638 29.217 73.994 28.969 73.327 28.978 C 72.278 28.978 71.454 29.42 70.856 30.303 L 69.208 29.267 C 70.113 27.961 71.454 27.308 73.231 27.308 Z M 81.785 23.03 L 81.785 37.623 L 79.906 37.623 L 79.906 23.029 L 81.784 23.029 Z M 92.87 27.634 L 86.623 42.016 L 84.707 42.016 L 87.025 36.985 L 82.905 27.634 L 84.936 27.634 L 87.906 34.816 L 87.945 34.816 L 90.838 27.634 L 92.869 27.634 Z M 98.184 37.775 C 97.379 37.775 96.708 37.526 96.172 37.027 C 95.635 36.527 95.358 35.831 95.348 34.933 L 95.348 29.346 L 93.584 29.346 L 93.584 27.637 L 95.347 27.637 L 95.347 24.583 L 97.206 24.583 L 97.206 27.637 L 99.658 27.637 L 99.658 29.346 L 97.206 29.346 L 97.206 34.319 C 97.206 34.986 97.33 35.443 97.589 35.683 C 97.858 35.913 98.15 36.028 98.47 36.028 C 98.624 36.028 98.767 36.018 98.91 35.989 C 99.047 35.953 99.182 35.908 99.313 35.855 L 99.888 37.526 C 99.399 37.688 98.835 37.775 98.183 37.775 Z M 103.867 24.202 C 103.867 24.561 103.734 24.874 103.465 25.142 C 103.224 25.392 102.892 25.531 102.546 25.527 C 102.193 25.536 101.852 25.397 101.607 25.142 C 101.357 24.894 101.219 24.555 101.223 24.202 C 101.223 23.832 101.347 23.52 101.607 23.261 C 101.853 23.008 102.193 22.869 102.546 22.876 C 102.899 22.876 103.206 23.007 103.465 23.261 C 103.734 23.52 103.867 23.832 103.867 24.202 Z M 103.49 27.635 L 103.49 37.619 L 101.613 37.619 L 101.613 27.635 Z M 109.848 37.945 C 108.363 37.945 107.137 37.442 106.169 36.428 C 105.211 35.406 104.732 34.139 104.732 32.626 C 104.732 31.091 105.211 29.824 106.169 28.825 C 107.137 27.817 108.363 27.308 109.848 27.308 C 110.869 27.308 111.754 27.567 112.511 28.075 C 113.263 28.59 113.833 29.296 114.217 30.188 L 112.511 30.898 C 111.984 29.645 111.06 29.017 109.733 29.017 C 108.876 29.017 108.133 29.363 107.511 30.053 C 106.898 30.745 106.59 31.603 106.59 32.626 C 106.59 33.653 106.898 34.508 107.511 35.199 C 108.133 35.892 108.876 36.236 109.733 36.236 C 111.098 36.236 112.056 35.612 112.608 34.354 L 114.274 35.064 C 113.914 35.963 113.344 36.668 112.569 37.178 C 111.788 37.686 110.883 37.945 109.848 37.945 Z M 123.692 34.855 C 123.692 35.727 123.309 36.462 122.542 37.062 C 121.786 37.648 120.837 37.945 119.688 37.945 C 118.691 37.945 117.81 37.682 117.043 37.158 C 116.301 36.651 115.732 35.927 115.415 35.085 L 117.081 34.374 C 117.336 34.979 117.695 35.444 118.155 35.776 C 118.6 36.102 119.137 36.277 119.688 36.274 C 120.286 36.274 120.784 36.149 121.181 35.892 C 121.589 35.636 121.795 35.33 121.795 34.969 C 121.795 34.33 121.301 33.865 120.319 33.568 L 118.615 33.145 C 116.669 32.647 115.703 31.705 115.703 30.323 C 115.703 29.415 116.071 28.685 116.813 28.133 C 117.552 27.587 118.499 27.307 119.649 27.307 C 120.531 27.307 121.325 27.518 122.045 27.941 C 122.758 28.364 123.256 28.93 123.539 29.631 L 121.872 30.323 C 121.678 29.899 121.347 29.554 120.933 29.343 C 120.501 29.099 120.011 28.973 119.515 28.978 C 119.049 28.974 118.591 29.1 118.193 29.343 C 117.81 29.588 117.619 29.891 117.619 30.245 C 117.619 30.812 118.155 31.22 119.228 31.475 L 120.722 31.858 C 122.701 32.348 123.692 33.347 123.692 34.854 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 25.718 4.921 L 25.718 35.851 C 25.718 39.314 28.101 41.24 30.629 41.24 C 32.968 41.24 35.539 39.6 35.539 35.85 L 35.539 5.155 C 35.539 1.985 33.2 0 30.629 0 C 28.058 0 25.718 2.189 25.718 4.921 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 12.847 20.87 L 12.847 36.101 C 12.847 39.565 15.229 41.491 17.757 41.491 C 20.094 41.491 22.668 39.85 22.668 36.101 L 22.668 21.105 C 22.668 17.934 20.328 15.949 17.757 15.949 C 15.185 15.949 12.847 18.139 12.847 20.87 Z M 9.821 36.818 C 9.783 39.508 7.596 41.67 4.911 41.67 C 2.226 41.67 0.039 39.508 0.001 36.818 C 0.001 34.1 2.199 31.896 4.911 31.896 C 7.623 31.896 9.822 34.1 9.822 36.818 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10033294181,withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-78o0sx\",\"data-framer-name\":\"Amlpitude logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 157.94 32.06\"><path d=\"M 28.198 16.215 L 28.196 16.218 C 28.178 16.232 28.159 16.245 28.141 16.258 C 28.122 16.27 28.103 16.282 28.084 16.293 L 28.079 16.295 L 28.048 16.313 L 28.046 16.313 C 27.921 16.377 27.783 16.41 27.642 16.409 L 19.872 16.409 C 19.934 16.659 20.002 16.944 20.076 17.253 C 20.502 19.038 21.633 23.782 22.835 23.782 L 22.858 23.782 L 22.871 23.78 L 22.894 23.78 C 23.833 23.78 24.312 22.462 25.362 19.576 L 25.375 19.54 C 25.543 19.077 25.734 18.554 25.94 18 L 25.993 17.859 C 26.055 17.706 26.212 17.612 26.379 17.627 C 26.546 17.643 26.682 17.764 26.714 17.925 C 26.724 17.98 26.722 18.038 26.705 18.093 L 26.662 18.234 C 26.552 18.579 26.436 19.046 26.301 19.588 C 25.675 22.106 24.729 25.911 22.304 25.911 L 22.286 25.911 C 20.718 25.899 19.78 23.466 19.38 22.427 C 18.631 20.485 18.065 18.415 17.518 16.409 L 10.365 16.409 L 8.881 21.023 L 8.859 21.007 C 8.678 21.281 8.336 21.407 8.016 21.318 C 7.695 21.228 7.472 20.944 7.467 20.618 L 7.468 20.592 L 7.557 20.071 C 7.771 18.845 8.015 17.624 8.289 16.409 L 5.268 16.409 L 5.257 16.399 C 4.703 16.318 4.291 15.854 4.288 15.305 C 4.288 14.768 4.679 14.311 5.218 14.218 C 5.335 14.207 5.453 14.203 5.571 14.205 L 5.719 14.205 C 6.676 14.222 7.692 14.236 8.805 14.251 C 10.383 8.031 12.209 4.873 14.233 4.865 C 16.407 4.865 18.02 9.669 19.309 14.37 L 19.315 14.389 C 21.966 14.44 24.793 14.515 27.541 14.706 L 27.656 14.716 C 27.7 14.717 27.743 14.722 27.786 14.728 L 27.802 14.73 L 27.811 14.732 L 27.815 14.732 L 27.823 14.734 C 28.15 14.798 28.41 15.04 28.49 15.357 C 28.571 15.674 28.457 16.008 28.198 16.214 Z M 16.405 0 C 7.343 0 0 7.131 0 15.927 C 0 24.723 7.343 31.853 16.404 31.853 C 25.463 31.853 32.808 24.723 32.808 15.927 C 32.808 7.131 25.463 0 16.404 0 Z M 14.411 7.223 C 14.322 7.107 14.219 7.047 14.103 7.047 C 14.019 7.05 13.938 7.076 13.868 7.122 C 12.999 7.786 11.811 10.6 10.835 14.309 L 11.698 14.318 C 13.402 14.337 15.161 14.356 16.9 14.382 C 16.514 12.927 16.085 11.483 15.611 10.053 C 15.03 8.335 14.639 7.566 14.412 7.224 Z M 43.168 16.821 L 45.623 10.883 L 48.127 16.821 L 43.169 16.821 Z M 40.567 23.071 L 41.868 19.946 L 49.428 19.946 L 50.728 23.071 L 54.484 23.071 L 47.316 6.757 L 43.978 6.757 L 36.787 23.07 L 40.567 23.07 Z M 75.758 16.8 L 75.758 23.07 L 72.342 23.07 L 72.342 17.087 C 72.342 15.275 71.434 14.296 69.836 14.296 C 69.124 14.296 68.337 14.607 67.625 15.56 C 67.674 15.965 67.722 16.371 67.722 16.8 L 67.722 23.07 L 64.307 23.07 L 64.307 17.087 C 64.307 15.275 63.398 14.296 61.777 14.296 C 61.113 14.296 60.376 14.678 59.688 15.584 L 59.688 23.07 L 56.272 23.07 L 56.272 11.65 L 59.687 11.65 L 59.687 12.342 C 60.424 11.674 61.21 11.293 62.586 11.293 C 64.085 11.293 65.413 11.865 66.346 12.914 C 67.599 11.794 68.779 11.292 70.622 11.292 C 73.497 11.292 75.757 13.463 75.757 16.8 Z M 84.343 14.183 C 86.115 14.183 87.396 15.662 87.396 17.356 C 87.396 19.026 86.115 20.482 84.343 20.482 C 83.335 20.482 82.326 20.147 81.563 19.169 L 81.563 15.519 C 82.326 14.516 83.335 14.183 84.343 14.183 Z M 84.911 23.298 C 88.158 23.298 90.768 20.673 90.768 17.357 C 90.768 13.991 88.158 11.39 84.91 11.39 C 83.581 11.39 82.474 11.724 81.563 12.295 L 81.563 11.629 L 78.142 11.629 L 78.142 28.572 L 81.563 28.572 L 81.563 22.39 C 82.473 22.962 83.581 23.295 84.91 23.295 L 84.91 23.298 Z M 92.656 23.07 L 96.036 23.07 L 96.036 6.176 L 92.656 6.176 L 92.656 23.069 Z M 102.881 23.07 L 99.488 23.07 L 99.488 11.669 L 102.881 11.669 Z M 101.172 5.696 C 100.025 5.696 99.121 6.528 99.121 7.647 C 99.121 8.741 100.025 9.551 101.172 9.551 C 102.294 9.551 103.198 8.742 103.198 7.646 C 103.198 6.528 102.294 5.695 101.172 5.695 Z M 115.324 22.932 C 113.904 23.36 113.266 23.455 112.164 23.455 C 109.322 23.455 107.46 21.503 107.46 18.552 L 107.46 14.481 L 104.985 14.481 L 104.985 11.696 L 107.46 11.696 L 107.46 7.625 L 110.841 7.625 L 110.841 11.697 L 115.081 11.697 L 115.081 14.481 L 110.841 14.481 L 110.841 18.528 C 110.841 19.814 111.65 20.409 112.9 20.409 C 113.536 20.409 114.223 20.265 114.885 20.098 Z M 125.533 23.099 L 128.944 23.099 L 128.944 11.68 L 125.533 11.68 L 125.533 19.021 C 124.746 19.951 123.815 20.452 122.956 20.452 C 121.36 20.452 120.427 19.474 120.427 17.663 L 120.427 11.68 L 117.014 11.68 L 117.014 17.972 C 117.014 21.286 119.076 23.455 122.169 23.455 C 123.495 23.455 124.575 23.026 125.533 22.287 L 125.533 23.098 Z M 140.045 19.231 L 140.045 15.581 C 139.285 14.602 138.277 14.267 137.27 14.267 C 135.478 14.267 134.225 15.723 134.225 17.393 C 134.225 19.087 135.478 20.568 137.27 20.568 C 138.277 20.568 139.285 20.233 140.045 19.231 Z M 143.46 23.121 L 140.045 23.121 L 140.045 22.452 C 139.137 23.025 138.033 23.359 136.705 23.359 C 133.463 23.359 130.835 20.758 130.835 17.394 C 130.835 14.077 133.463 11.452 136.705 11.452 C 138.033 11.452 139.137 11.786 140.045 12.358 L 140.045 6.177 L 143.46 6.177 Z M 153.982 16.263 L 148.643 16.263 C 148.962 14.973 149.873 14.042 151.521 14.042 C 152.899 14.042 153.784 14.829 153.982 16.263 Z M 148.618 18.223 L 157.303 18.223 C 157.357 17.867 157.382 17.507 157.377 17.148 C 157.377 13.612 154.868 11.294 151.496 11.294 C 147.781 11.294 145.248 13.85 145.248 17.385 C 145.248 20.804 147.806 23.455 151.595 23.455 C 154.376 23.455 156.588 21.95 157.228 19.752 L 153.662 19.752 C 153.291 20.326 152.628 20.612 151.669 20.612 C 149.798 20.612 148.888 19.562 148.618 18.223 Z\" fill=\"var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9863894759,withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xs8cs2 hidden-1eut02m hidden-11e2lg1\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o9lvbi\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+3199.4+0+0+50+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-63tsqx-container\",nodeId:\"xm6uwCxvC\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ElementsBadge5,{dI2V912ba:\"var(--token-3f61e472-8e4d-4611-8f40-19a92ec907fd, rgba(235, 235, 235, 0.48))\",height:\"100%\",id:\"xm6uwCxvC\",layoutId:\"xm6uwCxvC\",variant:\"VCehnBVpp\",width:\"100%\",YbsaeEF4R:\"Features\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[\"The ultimate platform to build, launch, and optimize \",/*#__PURE__*/_jsx(\"br\",{}),\"web2app funnels\"]})}),className:\"framer-v3xrlk\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:\"Built by the growth team for growth teams.\"})}),className:\"framer-jrunwe\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y1bora hidden-1eut02m hidden-11e2lg1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Build web2app funnels with the best practices in 1 hour \"})}),className:\"framer-1tczeyb\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"No-code drag-and-drop builder \"})})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Industry-proven screen templates\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Library of the best practices mechanics to improve CR\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Solutions for every app vertical\"})})]})]}),className:\"framer-9uegh1\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-znmwpl hidden-1eut02m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"Improve CR and LTV with seamless payment solution\"})}),className:\"framer-1ryyntv\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Ready-to-use checkouts designed to minimize friction and improve \",/*#__PURE__*/_jsx(\"strong\",{children:\"CR +30%\"})]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Integrations with leading payment providers\\xa0\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Advanced monetization features (upsells, upgrades, payment routing), \",/*#__PURE__*/_jsx(\"strong\",{children:\"LTV +20%\"})]})})]})}),className:\"framer-13fqtv5\",fonts:[\"Inter-Medium\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ghmxru\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322.777786328469,intrinsicWidth:417.7777888451096,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3503+30+1132+60+666+20),pixelHeight:581,pixelWidth:752,sizes:\"305px\",src:\"https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png?scale-down-to=512 512w,https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png 752w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322.777786328469,intrinsicWidth:417.7777888451096,pixelHeight:581,pixelWidth:752,sizes:\"305px\",src:\"https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png?scale-down-to=512 512w,https://framerusercontent.com/images/UYNJ58gnGrKufBX1bgedp1yJEE.png 752w\"},className:\"framer-yalgk4\",\"data-framer-name\":\"Checkout funnelfox\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zpmnj6\",\"data-border\":true,\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395.55556603419956,intrinsicWidth:457.22223433447505,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3503+30+816+0),pixelHeight:434,pixelWidth:433,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/NKAcauR7G7Pg2t9Nd0OMDjLiMM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395.55556603419956,intrinsicWidth:457.22223433447505,pixelHeight:434,pixelWidth:433,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/NKAcauR7G7Pg2t9Nd0OMDjLiMM.png\"},className:\"framer-cqjtmr\",\"data-framer-name\":\"No-code-builder-funnelfox\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zth1nd\",\"data-framer-name\":\"Results\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j18u5x\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ohmwol\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+12518.6+64+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wong1n-container\",nodeId:\"J0r0TBvap\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ElementsBadge2,{dI2V912ba:\"var(--token-3f61e472-8e4d-4611-8f40-19a92ec907fd, rgba(235, 235, 235, 0.48))\",height:\"100%\",id:\"J0r0TBvap\",layoutId:\"J0r0TBvap\",variant:\"YZg0La0FB\",width:\"100%\",YbsaeEF4R:\"Knowledge hub\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[\"Get more insights \",/*#__PURE__*/_jsx(\"br\",{}),\"into web2app \",/*#__PURE__*/_jsx(\"br\",{}),\"from our stories\"]})})},kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[\"Get more insights \",/*#__PURE__*/_jsx(\"br\",{}),\"into web2app \",/*#__PURE__*/_jsx(\"br\",{}),\"from our stories\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:[\"Get more insights \",/*#__PURE__*/_jsx(\"br\",{}),\"into web2app \",/*#__PURE__*/_jsx(\"br\",{}),\"from our stories\"]})}),className:\"framer-5vw7ge\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgb(153, 153, 153))\"},children:\"News, tips, tricks, and best practices on how to grow your revenue with web2app funnels.\"})})},kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d304fa28-2449-4693-b806-c72266e8a6f1, rgba(0, 0, 0, 0.56))\"},children:\"News, tips, tricks, and best practices on how to grow your revenue with web2app funnels.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-674f344e-aad2-4c64-9595-73370b53fd88, rgba(0, 0, 0, 0.56))\"},children:\"News, tips, tricks, and best practices on how to grow your revenue with web2app funnels.\"})}),className:\"framer-okgvci\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1byiemu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i1wlko\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://blog.funnelfox.com/full-guide-on-creative-testing-for-web-to-app/\",motionChild:true,nodeId:\"svMBDbl8N\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12518.6+64+317.6+0+0+0+0),pixelHeight:630,pixelWidth:800,positionX:\"right\",positionY:\"top\",sizes:\"380px\",src:\"https://framerusercontent.com/images/G2xzgxC8LR8vOYlXElmOhMzz1h0.jpg\",srcSet:\"https://framerusercontent.com/images/G2xzgxC8LR8vOYlXElmOhMzz1h0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G2xzgxC8LR8vOYlXElmOhMzz1h0.jpg 800w\"}},kmytHNRIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:630,pixelWidth:800,positionX:\"right\",positionY:\"top\",sizes:`max(min(1200px, ${componentViewport?.width||\"100vw\"}), 100px)`,src:\"https://framerusercontent.com/images/G2xzgxC8LR8vOYlXElmOhMzz1h0.jpg\",srcSet:\"https://framerusercontent.com/images/G2xzgxC8LR8vOYlXElmOhMzz1h0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G2xzgxC8LR8vOYlXElmOhMzz1h0.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:630,pixelWidth:800,positionX:\"right\",positionY:\"top\",sizes:\"320px\",src:\"https://framerusercontent.com/images/G2xzgxC8LR8vOYlXElmOhMzz1h0.jpg\",srcSet:\"https://framerusercontent.com/images/G2xzgxC8LR8vOYlXElmOhMzz1h0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G2xzgxC8LR8vOYlXElmOhMzz1h0.jpg 800w\"},className:\"framer-8toa5a framer-s7f8g3\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hopkd4\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Creative testing for web-to-app\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"Full guide on creative testing for web-to-app\"})}),className:\"framer-16kxoxq\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eh4ezg\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://blog.funnelfox.com/sell-app-on-web-monetization-strategies/\",motionChild:true,nodeId:\"kL3GF9M2C\",openInNewTab:true,scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12518.6+64+317.6+0+348+0+0),pixelHeight:630,pixelWidth:800,sizes:\"380px\",src:\"https://framerusercontent.com/images/vu1B9ScRlcVPL2akFJtJErq7DOE.jpg\",srcSet:\"https://framerusercontent.com/images/vu1B9ScRlcVPL2akFJtJErq7DOE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vu1B9ScRlcVPL2akFJtJErq7DOE.jpg 800w\"}},kmytHNRIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:630,pixelWidth:800,sizes:`min(1200px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/vu1B9ScRlcVPL2akFJtJErq7DOE.jpg\",srcSet:\"https://framerusercontent.com/images/vu1B9ScRlcVPL2akFJtJErq7DOE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vu1B9ScRlcVPL2akFJtJErq7DOE.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:630,pixelWidth:800,sizes:\"320px\",src:\"https://framerusercontent.com/images/vu1B9ScRlcVPL2akFJtJErq7DOE.jpg\",srcSet:\"https://framerusercontent.com/images/vu1B9ScRlcVPL2akFJtJErq7DOE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vu1B9ScRlcVPL2akFJtJErq7DOE.jpg 800w\"},className:\"framer-1yer5c6 framer-s7f8g3\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kctuvt\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"How to sell your app on the web\"})}),className:\"framer-10kahe3\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-20t7lk\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://blog.funnelfox.com/roas-increase-in-3-months-funnelfox/\",motionChild:true,nodeId:\"jinaedrhb\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12518.6+64+317.6+0+696+0+0),pixelHeight:630,pixelWidth:800,sizes:\"380px\",src:\"https://framerusercontent.com/images/1R7bfeVL1dDCSomMyARYn3IunXc.jpg\",srcSet:\"https://framerusercontent.com/images/1R7bfeVL1dDCSomMyARYn3IunXc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1R7bfeVL1dDCSomMyARYn3IunXc.jpg 800w\"}},kmytHNRIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:630,pixelWidth:800,sizes:`min(1200px, ${componentViewport?.width||\"100vw\"})`,src:\"https://framerusercontent.com/images/1R7bfeVL1dDCSomMyARYn3IunXc.jpg\",srcSet:\"https://framerusercontent.com/images/1R7bfeVL1dDCSomMyARYn3IunXc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1R7bfeVL1dDCSomMyARYn3IunXc.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:630,pixelWidth:800,sizes:\"320px\",src:\"https://framerusercontent.com/images/1R7bfeVL1dDCSomMyARYn3IunXc.jpg\",srcSet:\"https://framerusercontent.com/images/1R7bfeVL1dDCSomMyARYn3IunXc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1R7bfeVL1dDCSomMyARYn3IunXc.jpg 800w\"},className:\"framer-147i4jn framer-s7f8g3\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://blog.funnelfox.com/roas-increase-in-3-months-funnelfox/\",motionChild:true,nodeId:\"UN8d6bNro\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5q2fat framer-s7f8g3\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"+80% ROAS  in 3 months\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"+80% ROAS increase in just 3 months with FunnelFox\"})}),className:\"framer-vlebr7\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+12518.6+64+1405.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yye9rj-container\",isModuleExternal:true,nodeId:\"m4_1uaSTb\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"m4_1uaSTb\",kTynE2FQc:\"regular\",layoutId:\"m4_1uaSTb\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:\"https://blog.funnelfox.com/\",Q7omvm8K3:true,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Read more\",variant:\"NnNg9h8UK\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eo3sqe\",\"data-framer-name\":\"Testimonials\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fpawfp\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jiva8a\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nfe22j\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+14032.2+64+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z9u78e-container\",nodeId:\"RIVaEcVsS\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ElementsBadge,{dI2V912ba:\"var(--token-3f61e472-8e4d-4611-8f40-19a92ec907fd, rgba(235, 235, 235, 0.48))\",height:\"100%\",id:\"RIVaEcVsS\",layoutId:\"RIVaEcVsS\",variant:\"uVRWKwmhC\",width:\"100%\",YbsaeEF4R:\"Testimonials\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[\"What people say \",/*#__PURE__*/_jsx(\"br\",{}),\"about us\"]})})},kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:[\"What people say \",/*#__PURE__*/_jsx(\"br\",{}),\"about us\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:[\"What people say \",/*#__PURE__*/_jsx(\"br\",{}),\"about us\"]})}),className:\"framer-1ym6tfp\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17v2et\",\"data-framer-name\":\"Tickers\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+14032.2+64+0+0+173.6+0+0},kmytHNRIW:{width:\"200px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:204,width:\"336px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1amx3ex-container\",nodeId:\"TFJqEANka\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(CardsWrittenTestimonial4,{c5PhFvhFc:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Fy4D5RQeJLTqbGWdM1SrZU9Sizc.jpeg\",srcSet:\"https://framerusercontent.com/images/Fy4D5RQeJLTqbGWdM1SrZU9Sizc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Fy4D5RQeJLTqbGWdM1SrZU9Sizc.jpeg 800w\"},\"\"),ECqJZ1hHM:\"Growth Consultant | CEO @ Perceptycs\",height:\"100%\",id:\"TFJqEANka\",layoutId:\"TFJqEANka\",oRy6t91PU:\"Nathan H.\",style:{width:\"100%\"},VePkjXSEB:\"Personally, FunnelFox is the single tool that excites me the most as a growth person because I've literally spent 6+ weeks building web funnels that can now be made in under an hour. \uD83E\uDD2F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+14032.2+64+0+0+173.6+0+236},kmytHNRIW:{width:\"200px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:204,width:\"336px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cw0qbp-container\",nodeId:\"GZiJl2tI2\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kmytHNRIW:{VePkjXSEB:\"FunnelFox enables users to quickly create web funnels, integrate payment providers, and run multiple tests seamlessly. Its intuitive interface makes it easy to use, no developer needed. \"}},children:/*#__PURE__*/_jsx(CardsWrittenTestimonial5,{c5PhFvhFc:addImageAlt({pixelHeight:1330,pixelWidth:1530,src:\"https://framerusercontent.com/images/RbIGJvs01km0napIQ7SXIzGyWlo.png\",srcSet:\"https://framerusercontent.com/images/RbIGJvs01km0napIQ7SXIzGyWlo.png?scale-down-to=512 512w,https://framerusercontent.com/images/RbIGJvs01km0napIQ7SXIzGyWlo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RbIGJvs01km0napIQ7SXIzGyWlo.png 1530w\"},\"\"),ECqJZ1hHM:\"Head of Product, Health&Fitness\",height:\"100%\",id:\"GZiJl2tI2\",layoutId:\"GZiJl2tI2\",oRy6t91PU:\"Mattew H.\",style:{width:\"100%\"},VePkjXSEB:\"FunnelFox enables users to quickly create web funnels, integrate payment providers, and run multiple tests seamlessly. Its intuitive interface makes it easy to use, no developer needed.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+14032.2+64+0+0+173.6+0+472},kmytHNRIW:{width:\"200px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:204,width:\"336px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-29cgoz-container\",nodeId:\"eYbUgItAl\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(CardsWrittenTestimonial6,{c5PhFvhFc:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Vun8vxRv9KNUU5jt6a0IfiiVts.jpeg\",srcSet:\"https://framerusercontent.com/images/Vun8vxRv9KNUU5jt6a0IfiiVts.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Vun8vxRv9KNUU5jt6a0IfiiVts.jpeg 800w\"},\"\"),ECqJZ1hHM:\"Monetization & CRM Strategy | App Growth Consultant \",height:\"100%\",id:\"eYbUgItAl\",layoutId:\"eYbUgItAl\",oRy6t91PU:\"Vahe B.\",style:{width:\"100%\"},VePkjXSEB:'\"FunnelFox is a truly solid platform. all the data flows smoothly, everything looks professional, and works clearly without glitches. And most importantly, it\\'s stable.\"',width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+14032.2+64+889.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w0djh1-container\",isModuleExternal:true,nodeId:\"PoAqV7K76\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"PoAqV7K76\",kTynE2FQc:\"regular\",layoutId:\"PoAqV7K76\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:\"https://www.g2.com/products/funnelfox-funnelfox/reviews\",Q7omvm8K3:true,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Read reviews\",variant:\"NnNg9h8UK\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t71hji\",\"data-framer-name\":\"FAQ\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"FAQ\"})})},kmytHNRIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-885cffe4-c21e-4cb5-b754-c98900859a49, rgb(0, 0, 0))\"},children:\"FAQ\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-27641af7-45df-4684-af90-316060078250, rgb(0, 0, 0))\"},children:\"FAQ\"})}),className:\"framer-mw8284\",fonts:[\"FS;Poppins-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{width:\"323px\",y:(componentViewport?.y||0)+0+15029.8+64+69.6},kmytHNRIW:{width:\"640px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:221,width:\"800px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b4yxsc-container\",nodeId:\"rXYXo120c\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(ElementsFAQ2,{height:\"100%\",id:\"rXYXo120c\",KjHOx49kL:\"It doesn't have to! Web2App means selling subscriptions/your product outside the app, right on the website. So App Store / Google Play rules don't apply to it.\",layoutId:\"rXYXo120c\",oRIOycR3Y:\"You must have a mobile app that grants premium access (= sells subscriptions). With FunnelFox, you can create a Web2App funnel and it will automatically sync your subscribers. If you want to try FunnelFox, join the waitlist and we'll reach out to you.\",pj8TaM0YQ:\"How long does it take to start?\",rawvYUUzX:\"Does using web funnels comply with the App Store rules?\",style:{width:\"100%\"},Tiiziaej8:\"It normally takes around 6 months of development to build a good web-funnel. With FunnelFox, you can start in one hour.\",tvNxOx7cw:\"What do I need to get started?\",variant:\"RaPA4o7UI\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+15384.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:645,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vg8122-container\",nodeId:\"ZzPPHb2pe\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{variant:\"BHJBTLdRo\"},kmytHNRIW:{variant:\"nZ7IFqYfR\"}},children:/*#__PURE__*/_jsx(UniversalSectionCallToAction2,{height:\"100%\",id:\"ZzPPHb2pe\",layoutId:\"ZzPPHb2pe\",style:{width:\"100%\"},variant:\"i4LoSpy6I\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{y:(componentViewport?.y||0)+0+16029.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:364,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mzx9ob-container\",nodeId:\"crhxJoKDg\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IWrzqoArQ:{variant:\"x9mNj9Rpk\"}},children:/*#__PURE__*/_jsx(FooterFooter3,{height:\"100%\",id:\"crhxJoKDg\",layoutId:\"crhxJoKDg\",style:{width:\"100%\"},variant:\"xuOoR1bp0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o4fwsx-container\",isModuleExternal:true,nodeId:\"GBrnGvws0\",scopeId:\"MssRQzrc9\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"GBrnGvws0\",intensity:10,layoutId:\"GBrnGvws0\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iaaXs.framer-s7f8g3, .framer-iaaXs .framer-s7f8g3 { display: block; }\",\".framer-iaaXs.framer-1eut02m { align-content: center; align-items: center; background-color: var(--token-25a3f2f2-7ef1-4389-97cc-abeb6c975eb2, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-iaaXs .framer-1f1aczi-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-iaaXs .framer-1r7xi8h-container { flex: none; height: auto; left: 50%; position: fixed; top: 48px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-iaaXs .framer-ix9bsz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 300px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 64px 0px 64px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-iaaXs .framer-8dk6rg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-iaaXs .framer-sr9x5u { 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-iaaXs .framer-1v8uajf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 312px; justify-content: center; overflow: visible; padding: 31px 0px 31px 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-1tab5ev { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-16i9oiq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 902px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-1ptxkf1 { 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-iaaXs .framer-7mw4e-container, .framer-iaaXs .framer-1oli8fd-container, .framer-iaaXs .framer-v4w9t9-container, .framer-iaaXs .framer-3r76st-container, .framer-iaaXs .framer-2xfiy0-container, .framer-iaaXs .framer-pzefhx-container, .framer-iaaXs .framer-hxigk-container, .framer-iaaXs .framer-1y6ic2j-container, .framer-iaaXs .framer-rtb2pg-container, .framer-iaaXs .framer-6gj12n-container, .framer-iaaXs .framer-1id9gvx-container, .framer-iaaXs .framer-d8ijie-container, .framer-iaaXs .framer-kswwzx-container, .framer-iaaXs .framer-g0q4df-container, .framer-iaaXs .framer-63tsqx-container, .framer-iaaXs .framer-1wong1n-container, .framer-iaaXs .framer-yye9rj-container, .framer-iaaXs .framer-z9u78e-container, .framer-iaaXs .framer-1w0djh1-container, .framer-iaaXs .framer-1o4fwsx-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-iaaXs .framer-q0c0jz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 75px 64px 75px 64px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-iaaXs .framer-pcwex6, .framer-iaaXs .framer-fmmbe0, .framer-iaaXs .framer-j18u5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-ub2rfp, .framer-iaaXs .framer-19ybe7b, .framer-iaaXs .framer-12a5jl6, .framer-iaaXs .framer-ohmwol, .framer-iaaXs .framer-1nfe22j { 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-iaaXs .framer-lekcdd, .framer-iaaXs .framer-deqsgp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-ilbm2g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-iaaXs .framer-1joq7q4, .framer-iaaXs .framer-1ijdmr8, .framer-iaaXs .framer-1ptwbwx, .framer-iaaXs .framer-xyn1xj { --border-bottom-width: 1px; --border-color: var(--token-6863c549-6e12-4275-92ea-9dac67123b30, rgba(255, 255, 255, 0.12)); --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-b5b41e2a-a99b-444f-b24f-cbbccfd25a09, #ebebeb); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 40px 20px 40px 20px; position: relative; width: 1px; }\",\".framer-iaaXs .framer-39ywky, .framer-iaaXs .framer-1ecxvbq, .framer-iaaXs .framer-132i3u1 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-1xp5pal, .framer-iaaXs .framer-d9efep, .framer-iaaXs .framer-1c8gubw, .framer-iaaXs .framer-1wfiu2r, .framer-iaaXs .framer-ks5smh, .framer-iaaXs .framer-2rris2, .framer-iaaXs .framer-1ppydcc, .framer-iaaXs .framer-z4ycjt, .framer-iaaXs .framer-11l232n, .framer-iaaXs .framer-19caioh, .framer-iaaXs .framer-xw5xub { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-iaaXs .framer-j3wr70, .framer-iaaXs .framer-195z1pk, .framer-iaaXs .framer-jpzckp, .framer-iaaXs .framer-p6nuya, .framer-iaaXs .framer-wnuebc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-1ss108j, .framer-iaaXs .framer-16gbia3 { align-content: center; align-items: center; background-color: var(--token-b5b41e2a-a99b-444f-b24f-cbbccfd25a09, #ebebeb); 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: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 43px 40px 43px 40px; position: relative; width: 976px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1sq8qme, .framer-iaaXs .framer-1l7z9c3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1018px; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-i8iweq-container, .framer-iaaXs .framer-fqf55o-container { flex: none; height: 400px; position: relative; width: 380px; }\",\".framer-iaaXs .framer-1ycmgo8, .framer-iaaXs .framer-1ns4a63 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iaaXs .framer-1or6wub, .framer-iaaXs .framer-1m9i911 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-mq73f5, .framer-iaaXs .framer-of732c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-iaaXs .framer-1lfer35-container, .framer-iaaXs .framer-j81aiq-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; z-index: 1; }\",\".framer-iaaXs .framer-1nxljb7, .framer-iaaXs .framer-183xwgp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-iaaXs .framer-21507t, .framer-iaaXs .framer-25ds9y, .framer-iaaXs .framer-cv33pu, .framer-iaaXs .framer-3fo08w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-iaaXs .framer-1en02jb { 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: 70px 0px 0px 0px; position: relative; width: 380px; }\",\".framer-iaaXs .framer-1an5i4c, .framer-iaaXs .framer-1sdz9tf, .framer-iaaXs .framer-v3xrlk, .framer-iaaXs .framer-jrunwe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-1mxt0dr { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: grid; flex: none; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(51px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1n4k7ys, .framer-iaaXs .framer-1olde6s, .framer-iaaXs .framer-1ix3jpi, .framer-iaaXs .framer-1m5f939 { align-self: start; display: grid; flex: none; gap: 6px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-ro48lz, .framer-iaaXs .framer-1dm8fxo, .framer-iaaXs .framer-10mmah0, .framer-iaaXs .framer-13bwdth, .framer-iaaXs .framer-1pcfzh6, .framer-iaaXs .framer-9sa4q6, .framer-iaaXs .framer-i0fdb8, .framer-iaaXs .framer-17gs8fx { --framer-paragraph-spacing: 0px; align-self: start; flex: none; height: auto; justify-self: start; position: relative; white-space: pre; width: 100%; }\",\".framer-iaaXs .framer-gcdfe9, .framer-iaaXs .framer-1a52qlw, .framer-iaaXs .framer-1eo3sqe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 64px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-iaaXs .framer-1pmoguq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-6c8zri, .framer-iaaXs .framer-1jiva8a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-oow2kp { 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: 976px; }\",\".framer-iaaXs .framer-zlgopu, .framer-iaaXs .framer-1n28egr, .framer-iaaXs .framer-1ufxlhp, .framer-iaaXs .framer-1bjsv9l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 559px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-g4u642 { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 40px 16px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-6gqhsm, .framer-iaaXs .framer-dex8jp, .framer-iaaXs .framer-hc87wj, .framer-iaaXs .framer-10gnarq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-iaaXs .framer-1kugz16 { --border-bottom-width: 1px; --border-color: var(--token-76135782-7eca-4047-bc2f-6b78bf501189, #404040); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-iaaXs .framer-l36sub { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-iaaXs .framer-saasdl { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; flex: none; height: 224px; overflow: hidden; position: relative; width: 1px; }\",\".framer-iaaXs .framer-1blx8j0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 84px 64px 84px 64px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-iaaXs .framer-63h2iu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 92px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-1frxgi, .framer-iaaXs .framer-9julax { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 880px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-mclodm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-1rrxg3r { display: grid; flex: 1 0 0px; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-iaaXs .framer-6ul1zz { --border-bottom-width: 1px; --border-color: var(--token-6863c549-6e12-4275-92ea-9dac67123b30, rgba(255, 255, 255, 0.12)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; 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: nowrap; gap: 10px; height: 747px; justify-content: center; justify-self: start; overflow: hidden; padding: 49px 24px 49px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1s67m0v { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 14px 0px 14px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-iaaXs .framer-1cp2fxl, .framer-iaaXs .framer-ctdw5s, .framer-iaaXs .framer-e81ayn, .framer-iaaXs .framer-yrjo1k, .framer-iaaXs .framer-1invwkg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 370px; position: relative; white-space: pre-wrap; width: 342px; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-tf4i0e, .framer-iaaXs .framer-1hi7ji1, .framer-iaaXs .framer-9kxs5c, .framer-iaaXs .framer-yh85g7, .framer-iaaXs .framer-8c40rt, .framer-iaaXs .framer-kozr43 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 370px; position: relative; white-space: pre-wrap; width: 342px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-iaaXs .framer-y2yxfh { --border-bottom-width: 1px; --border-color: var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-ed0e419a-3e76-4878-9c1d-d98160bdf853, #1a1a1a); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 312px); justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-ztx1uq { aspect-ratio: 1.1558988764044944 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 326px); overflow: visible; position: relative; width: 377px; }\",\".framer-iaaXs .framer-1gmc8zw { --border-bottom-width: 2px; --border-color: var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2)); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1.2871046228710463 / 1; border-top-left-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 309px); overflow: visible; position: relative; width: 106%; }\",\".framer-iaaXs .framer-1hh0tc { --border-bottom-width: 1px; --border-color: var(--token-6863c549-6e12-4275-92ea-9dac67123b30, rgba(255, 255, 255, 0.12)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; 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: nowrap; gap: 10px; height: 746px; justify-content: center; justify-self: start; overflow: hidden; padding: 48px 24px 48px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1dmj3mo, .framer-iaaXs .framer-nbja5t, .framer-iaaXs .framer-13efp2k, .framer-iaaXs .framer-s2r9c4 { align-content: center; align-items: center; 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; z-index: 1; }\",\".framer-iaaXs .framer-1qqxzuw, .framer-iaaXs .framer-xw0b1n, .framer-iaaXs .framer-ci12tl, .framer-iaaXs .framer-1x8kvpi { --border-bottom-width: 1px; --border-color: var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-58a2b73a-50ea-4a90-8fd3-f72ef77d7806, #17191b); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 312px); justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1vxd2f0 { aspect-ratio: 1.2943201376936317 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 278px); overflow: visible; position: relative; width: 360px; }\",\".framer-iaaXs .framer-1casisw, .framer-iaaXs .framer-ny9es4 { --border-bottom-width: 1px; --border-color: var(--token-6863c549-6e12-4275-92ea-9dac67123b30, rgba(255, 255, 255, 0.12)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; 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: nowrap; gap: 10px; height: 700px; justify-content: center; justify-self: start; overflow: hidden; padding: 48px 24px 48px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-2ekm8x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 370px; position: relative; white-space: pre-wrap; width: 370px; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-17av5q9 { aspect-ratio: 1.6995515695067265 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 224px); overflow: visible; position: relative; width: 380px; }\",\".framer-iaaXs .framer-suvdgg { --border-bottom-width: 1px; --border-color: var(--token-6863c549-6e12-4275-92ea-9dac67123b30, rgba(255, 255, 255, 0.12)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; 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: nowrap; gap: 10px; height: 700px; justify-content: center; justify-self: start; overflow: hidden; padding: 43px 24px 43px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-ovn9zy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-iaaXs .framer-xnu4hh { aspect-ratio: 1.3443526170798898 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 241px); overflow: visible; position: relative; width: 324px; }\",\".framer-iaaXs .framer-c2gp7s { --border-bottom-width: 1px; --border-color: var(--token-6863c549-6e12-4275-92ea-9dac67123b30, rgba(255, 255, 255, 0.12)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; 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: nowrap; gap: 10px; height: 700px; justify-content: center; justify-self: start; overflow: hidden; padding: 37px 24px 37px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1yuf5r8 { aspect-ratio: 1.5617128463476073 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 226px); overflow: visible; position: relative; width: 352px; }\",\".framer-iaaXs .framer-ot1jyg { --border-bottom-width: 1px; --border-color: var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-58a2b73a-50ea-4a90-8fd3-f72ef77d7806, #17191b); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 312px); justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1omcscg { background-color: rgba(0, 0, 0, 0); flex: none; height: 41px; position: relative; width: 181px; }\",\".framer-iaaXs .framer-1suleb7 { flex: none; height: 40px; position: relative; width: 167px; }\",\".framer-iaaXs .framer-1i2h71a { flex: none; height: 49px; position: relative; width: 141px; }\",\".framer-iaaXs .framer-13yzefu { flex: none; height: 35px; position: relative; width: 171px; }\",\".framer-iaaXs .framer-oc2l4b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 559px; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-1uwtjil { 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: 6px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-3z2ouk { --border-bottom-width: 10px; --border-color: #222222; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; aspect-ratio: 0.48306997742663654 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 434px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 210px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-133cd5a, .framer-iaaXs .framer-u72xn3 { aspect-ratio: 0.4801223241590214 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 437px); overflow: visible; position: relative; width: 210px; }\",\".framer-iaaXs .framer-4d6mxp { --border-bottom-width: 10px; --border-color: #222222; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; aspect-ratio: 0.48306997742663654 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 434px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 210px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-swc6dz, .framer-iaaXs .framer-1qm9se0 { aspect-ratio: 0.4847094801223242 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 413px); overflow: visible; position: relative; width: 100%; }\",\".framer-iaaXs .framer-th58kq { --border-bottom-width: 12px; --border-color: #000000; --border-left-width: 12px; --border-right-width: 12px; --border-style: solid; --border-top-width: 12px; align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 434px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 220px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-v4gp2i, .framer-iaaXs .framer-154dgsw { aspect-ratio: 0.47468354430379744 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 413px); overflow: visible; position: relative; width: 196px; }\",\".framer-iaaXs .framer-s26so8 { --border-bottom-width: 12px; --border-color: #000000; --border-left-width: 12px; --border-right-width: 12px; --border-style: solid; --border-top-width: 12px; align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 434px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 214px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-146jbfg { aspect-ratio: 0.47468354430379744 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 385px); overflow: visible; position: relative; width: 183px; z-index: 1; }\",\".framer-iaaXs .framer-sjpxl0 { --border-bottom-width: 10px; --border-color: #000000; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 434px; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 214px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-r5gmnp, .framer-iaaXs .framer-246p74 { aspect-ratio: 0.1450676982591876 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1351px); overflow: visible; position: relative; width: 196px; }\",\".framer-iaaXs .framer-tbrhwt { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: grid; flex: none; gap: 12px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 929px; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-gosxsv { --border-bottom-width: 10px; --border-color: #222222; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 434px; justify-content: center; justify-self: center; overflow: hidden; padding: 0px; position: relative; width: 210px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1do8wv { --border-bottom-width: 10px; --border-color: #222222; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 434px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 210px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-ghc7dm { --border-bottom-width: 11px; --border-color: #000000; --border-left-width: 11px; --border-right-width: 11px; --border-style: solid; --border-top-width: 11px; align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 434px; justify-content: center; justify-self: center; overflow: hidden; padding: 0px; position: relative; width: 214px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1ndxxzt { --border-bottom-width: 12px; --border-color: #000000; --border-left-width: 12px; --border-right-width: 12px; --border-style: solid; --border-top-width: 12px; align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 434px; justify-content: center; justify-self: center; overflow: hidden; padding: 0px; position: relative; width: 214px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-sumw5j { aspect-ratio: 0.47468354430379744 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 389px); overflow: visible; position: relative; width: 185px; z-index: 1; }\",\".framer-iaaXs .framer-16lfi9n { --border-bottom-width: 11px; --border-color: #000000; --border-left-width: 11px; --border-right-width: 11px; --border-style: solid; --border-top-width: 11px; align-content: flex-start; align-items: flex-start; align-self: start; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 434px; justify-content: center; justify-self: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 214px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-7tt7cc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 578px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-iaaXs .framer-mbqyp2 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 1100px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-13bepmv { --border-bottom-width: 10px; --border-color: #222222; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 434px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 207px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1xk39y9 { aspect-ratio: 0.4801223241590214 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 415px); overflow: visible; position: relative; width: 199px; }\",\".framer-iaaXs .framer-1mrdeif { --border-bottom-width: 10px; --border-color: #222222; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: center; align-items: center; aspect-ratio: 0.48306997742663654 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 434px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 210px); will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1ojaerj { aspect-ratio: 0.4847094801223242 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 433px); overflow: visible; position: relative; width: 100%; }\",\".framer-iaaXs .framer-1usj8ql { --border-bottom-width: 12px; --border-color: #000000; --border-left-width: 12px; --border-right-width: 12px; --border-style: solid; --border-top-width: 12px; align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 434px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 217px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-c4olhp { aspect-ratio: 0.47468354430379744 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 464px); overflow: visible; position: relative; width: 220px; }\",\".framer-iaaXs .framer-16fyvw7 { --border-bottom-width: 12px; --border-color: #000000; --border-left-width: 12px; --border-right-width: 12px; --border-style: solid; --border-top-width: 12px; align-content: center; align-items: center; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 434px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 211px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1k1yunj { aspect-ratio: 0.47468354430379744 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 405px); overflow: hidden; position: relative; width: 192px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-iaaXs .framer-12he8nd { --border-bottom-width: 10px; --border-color: #000000; --border-left-width: 10px; --border-right-width: 10px; --border-style: solid; --border-top-width: 10px; align-content: flex-start; align-items: flex-start; background-color: var(--token-3115fe5a-7dc9-47ed-9fdc-9d6aa626bc10, #ffffff); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 434px; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 211px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-qv7mvv { aspect-ratio: 0.1450676982591876 / 1; flex: none; height: 1251px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 182px); }\",\".framer-iaaXs .framer-1f00ttn, .framer-iaaXs .framer-15nkgqj, .framer-iaaXs .framer-11jxoep, .framer-iaaXs .framer-znmwpl { 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: 60px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-iaaXs .framer-1u2x046, .framer-iaaXs .framer-1qhud30, .framer-iaaXs .framer-1v9ez39, .framer-iaaXs .framer-1ryyntv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 370px; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-1obe9ts, .framer-iaaXs .framer-qzvw5t, .framer-iaaXs .framer-3zmdty { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-iaaXs .framer-1wgjwc4 { --border-bottom-width: 1px; --border-color: var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-58a2b73a-50ea-4a90-8fd3-f72ef77d7806, #17191b); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 292px); justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 20px; position: relative; width: 340px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-nsmxsx { aspect-ratio: 1.6995515695067265 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 188px); overflow: visible; position: relative; width: 320px; }\",\".framer-iaaXs .framer-1n9w2nf { --border-bottom-width: 1px; --border-color: var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-58a2b73a-50ea-4a90-8fd3-f72ef77d7806, #17191b); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 292px); justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 40px; position: relative; width: 340px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-ny3jd { aspect-ratio: 1.3443526170798898 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 216px); overflow: visible; position: relative; width: 291px; }\",\".framer-iaaXs .framer-a1mqms { 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: 60px 0px 0px 0px; position: relative; width: 88%; z-index: 1; }\",\".framer-iaaXs .framer-4ole5d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 310px; position: relative; white-space: pre-wrap; width: 310px; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-1sv97wo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-iaaXs .framer-1et1r3m { --border-bottom-width: 1px; --border-color: var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-58a2b73a-50ea-4a90-8fd3-f72ef77d7806, #17191b); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 150px); justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-3tkqny { aspect-ratio: 1.5617128463476073 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 201px); overflow: visible; position: relative; width: 315px; }\",\".framer-iaaXs .framer-qhalkr { --border-bottom-width: 1px; --border-color: var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-58a2b73a-50ea-4a90-8fd3-f72ef77d7806, #17191b); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 293px); justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 340px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1fqnvar { background-color: rgba(0, 0, 0, 0); flex: none; height: 37px; position: relative; width: 161px; }\",\".framer-iaaXs .framer-1nd547w { flex: none; height: 36px; position: relative; width: 149px; }\",\".framer-iaaXs .framer-cqmo43 { flex: none; height: 42px; position: relative; width: 132px; }\",\".framer-iaaXs .framer-78o0sx { flex: none; height: 32px; position: relative; width: 158px; }\",\".framer-iaaXs .framer-1xs8cs2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-o9lvbi { 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: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-1y1bora { 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: 30px 0px 14px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-iaaXs .framer-1tczeyb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 370px; position: relative; white-space: pre-wrap; width: 290px; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-9uegh1, .framer-iaaXs .framer-13fqtv5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 370px; position: relative; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-iaaXs .framer-ghmxru { --border-bottom-width: 1px; --border-color: var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-58a2b73a-50ea-4a90-8fd3-f72ef77d7806, #17191b); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 293px); justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 340px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-yalgk4 { aspect-ratio: 1.2943201376936317 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 236px); overflow: visible; position: relative; width: 305px; }\",\".framer-iaaXs .framer-zpmnj6 { --border-bottom-width: 1px; --border-color: var(--token-b5ecd879-47d5-47a3-ba13-eda05d3b0a90, rgba(184, 184, 184, 0.2)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-ed0e419a-3e76-4878-9c1d-d98160bdf853, #1a1a1a); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 292px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 340px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-cqjtmr { aspect-ratio: 1.1558988764044944 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 299px); overflow: visible; position: relative; width: 346px; }\",\".framer-iaaXs .framer-zth1nd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px; position: relative; scroll-margin-top: 150px; width: 100%; z-index: 1; }\",\".framer-iaaXs .framer-5vw7ge { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 689px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-okgvci { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 662px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-1byiemu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-iaaXs .framer-1i1wlko { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-8toa5a, .framer-iaaXs .framer-1yer5c6, .framer-iaaXs .framer-147i4jn { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-1hopkd4, .framer-iaaXs .framer-kctuvt { align-content: flex-start; align-items: flex-start; background-color: var(--token-b5b41e2a-a99b-444f-b24f-cbbccfd25a09, #ebebeb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-16kxoxq, .framer-iaaXs .framer-10kahe3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-eh4ezg, .framer-iaaXs .framer-20t7lk { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iaaXs .framer-5q2fat { align-content: flex-start; align-items: flex-start; background-color: var(--token-b5b41e2a-a99b-444f-b24f-cbbccfd25a09, #ebebeb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; text-decoration: none; width: 100%; }\",\".framer-iaaXs .framer-vlebr7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-fpawfp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-1ym6tfp, .framer-iaaXs .framer-mw8284 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 593px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-iaaXs .framer-17v2et { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iaaXs .framer-1amx3ex-container, .framer-iaaXs .framer-cw0qbp-container, .framer-iaaXs .framer-29cgoz-container { flex: none; height: auto; position: relative; width: 336px; }\",\".framer-iaaXs .framer-1t71hji { -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); border-bottom-left-radius: 96px; border-bottom-right-radius: 96px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px; pointer-events: auto; position: relative; scroll-margin-top: 150px; width: 1200px; z-index: 1; }\",\".framer-iaaXs .framer-b4yxsc-container { flex: none; height: auto; position: relative; width: 800px; z-index: 1; }\",\".framer-iaaXs .framer-1vg8122-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-iaaXs .framer-1mzx9ob-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-iaaXs.framer-1eut02m, .framer-iaaXs .framer-ix9bsz, .framer-iaaXs .framer-8dk6rg, .framer-iaaXs .framer-sr9x5u, .framer-iaaXs .framer-1v8uajf, .framer-iaaXs .framer-1ptxkf1, .framer-iaaXs .framer-q0c0jz, .framer-iaaXs .framer-pcwex6, .framer-iaaXs .framer-ub2rfp, .framer-iaaXs .framer-ilbm2g, .framer-iaaXs .framer-1joq7q4, .framer-iaaXs .framer-39ywky, .framer-iaaXs .framer-1ijdmr8, .framer-iaaXs .framer-1ecxvbq, .framer-iaaXs .framer-1ptwbwx, .framer-iaaXs .framer-132i3u1, .framer-iaaXs .framer-xyn1xj, .framer-iaaXs .framer-1ss108j, .framer-iaaXs .framer-1sq8qme, .framer-iaaXs .framer-1ycmgo8, .framer-iaaXs .framer-mq73f5, .framer-iaaXs .framer-1nxljb7, .framer-iaaXs .framer-1en02jb, .framer-iaaXs .framer-gcdfe9, .framer-iaaXs .framer-1pmoguq, .framer-iaaXs .framer-6c8zri, .framer-iaaXs .framer-oow2kp, .framer-iaaXs .framer-6gqhsm, .framer-iaaXs .framer-dex8jp, .framer-iaaXs .framer-hc87wj, .framer-iaaXs .framer-10gnarq, .framer-iaaXs .framer-1blx8j0, .framer-iaaXs .framer-63h2iu, .framer-iaaXs .framer-19ybe7b, .framer-iaaXs .framer-mclodm, .framer-iaaXs .framer-6ul1zz, .framer-iaaXs .framer-1s67m0v, .framer-iaaXs .framer-y2yxfh, .framer-iaaXs .framer-1hh0tc, .framer-iaaXs .framer-1dmj3mo, .framer-iaaXs .framer-1qqxzuw, .framer-iaaXs .framer-1casisw, .framer-iaaXs .framer-nbja5t, .framer-iaaXs .framer-xw0b1n, .framer-iaaXs .framer-suvdgg, .framer-iaaXs .framer-ovn9zy, .framer-iaaXs .framer-ci12tl, .framer-iaaXs .framer-c2gp7s, .framer-iaaXs .framer-13efp2k, .framer-iaaXs .framer-1x8kvpi, .framer-iaaXs .framer-ny9es4, .framer-iaaXs .framer-s2r9c4, .framer-iaaXs .framer-ot1jyg, .framer-iaaXs .framer-1a52qlw, .framer-iaaXs .framer-12a5jl6, .framer-iaaXs .framer-1uwtjil, .framer-iaaXs .framer-3z2ouk, .framer-iaaXs .framer-4d6mxp, .framer-iaaXs .framer-th58kq, .framer-iaaXs .framer-s26so8, .framer-iaaXs .framer-sjpxl0, .framer-iaaXs .framer-gosxsv, .framer-iaaXs .framer-1do8wv, .framer-iaaXs .framer-ghc7dm, .framer-iaaXs .framer-1ndxxzt, .framer-iaaXs .framer-16lfi9n, .framer-iaaXs .framer-fmmbe0, .framer-iaaXs .framer-7tt7cc, .framer-iaaXs .framer-mbqyp2, .framer-iaaXs .framer-13bepmv, .framer-iaaXs .framer-1mrdeif, .framer-iaaXs .framer-1usj8ql, .framer-iaaXs .framer-16fyvw7, .framer-iaaXs .framer-12he8nd, .framer-iaaXs .framer-16gbia3, .framer-iaaXs .framer-1l7z9c3, .framer-iaaXs .framer-1ns4a63, .framer-iaaXs .framer-of732c, .framer-iaaXs .framer-183xwgp, .framer-iaaXs .framer-1f00ttn, .framer-iaaXs .framer-1wgjwc4, .framer-iaaXs .framer-15nkgqj, .framer-iaaXs .framer-1n9w2nf, .framer-iaaXs .framer-a1mqms, .framer-iaaXs .framer-1et1r3m, .framer-iaaXs .framer-11jxoep, .framer-iaaXs .framer-qhalkr, .framer-iaaXs .framer-1xs8cs2, .framer-iaaXs .framer-o9lvbi, .framer-iaaXs .framer-1y1bora, .framer-iaaXs .framer-znmwpl, .framer-iaaXs .framer-ghmxru, .framer-iaaXs .framer-zpmnj6, .framer-iaaXs .framer-zth1nd, .framer-iaaXs .framer-j18u5x, .framer-iaaXs .framer-ohmwol, .framer-iaaXs .framer-1byiemu, .framer-iaaXs .framer-1i1wlko, .framer-iaaXs .framer-1hopkd4, .framer-iaaXs .framer-eh4ezg, .framer-iaaXs .framer-kctuvt, .framer-iaaXs .framer-20t7lk, .framer-iaaXs .framer-5q2fat, .framer-iaaXs .framer-1eo3sqe, .framer-iaaXs .framer-fpawfp, .framer-iaaXs .framer-1jiva8a, .framer-iaaXs .framer-1nfe22j, .framer-iaaXs .framer-17v2et, .framer-iaaXs .framer-1t71hji { gap: 0px; } .framer-iaaXs.framer-1eut02m > *, .framer-iaaXs .framer-sr9x5u > *, .framer-iaaXs .framer-1nxljb7 > *, .framer-iaaXs .framer-183xwgp > *, .framer-iaaXs .framer-1xs8cs2 > *, .framer-iaaXs .framer-1i1wlko > *, .framer-iaaXs .framer-eh4ezg > *, .framer-iaaXs .framer-20t7lk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-iaaXs.framer-1eut02m > :first-child, .framer-iaaXs .framer-ix9bsz > :first-child, .framer-iaaXs .framer-8dk6rg > :first-child, .framer-iaaXs .framer-sr9x5u > :first-child, .framer-iaaXs .framer-1v8uajf > :first-child, .framer-iaaXs .framer-1ptxkf1 > :first-child, .framer-iaaXs .framer-q0c0jz > :first-child, .framer-iaaXs .framer-pcwex6 > :first-child, .framer-iaaXs .framer-ub2rfp > :first-child, .framer-iaaXs .framer-1joq7q4 > :first-child, .framer-iaaXs .framer-1ijdmr8 > :first-child, .framer-iaaXs .framer-1ptwbwx > :first-child, .framer-iaaXs .framer-xyn1xj > :first-child, .framer-iaaXs .framer-1ss108j > :first-child, .framer-iaaXs .framer-1ycmgo8 > :first-child, .framer-iaaXs .framer-1nxljb7 > :first-child, .framer-iaaXs .framer-1en02jb > :first-child, .framer-iaaXs .framer-gcdfe9 > :first-child, .framer-iaaXs .framer-1pmoguq > :first-child, .framer-iaaXs .framer-6c8zri > :first-child, .framer-iaaXs .framer-oow2kp > :first-child, .framer-iaaXs .framer-6gqhsm > :first-child, .framer-iaaXs .framer-dex8jp > :first-child, .framer-iaaXs .framer-hc87wj > :first-child, .framer-iaaXs .framer-10gnarq > :first-child, .framer-iaaXs .framer-1blx8j0 > :first-child, .framer-iaaXs .framer-63h2iu > :first-child, .framer-iaaXs .framer-19ybe7b > :first-child, .framer-iaaXs .framer-1s67m0v > :first-child, .framer-iaaXs .framer-1dmj3mo > :first-child, .framer-iaaXs .framer-nbja5t > :first-child, .framer-iaaXs .framer-ovn9zy > :first-child, .framer-iaaXs .framer-13efp2k > :first-child, .framer-iaaXs .framer-s2r9c4 > :first-child, .framer-iaaXs .framer-ot1jyg > :first-child, .framer-iaaXs .framer-1a52qlw > :first-child, .framer-iaaXs .framer-12a5jl6 > :first-child, .framer-iaaXs .framer-1uwtjil > :first-child, .framer-iaaXs .framer-4d6mxp > :first-child, .framer-iaaXs .framer-1do8wv > :first-child, .framer-iaaXs .framer-fmmbe0 > :first-child, .framer-iaaXs .framer-7tt7cc > :first-child, .framer-iaaXs .framer-1mrdeif > :first-child, .framer-iaaXs .framer-16gbia3 > :first-child, .framer-iaaXs .framer-1ns4a63 > :first-child, .framer-iaaXs .framer-183xwgp > :first-child, .framer-iaaXs .framer-1f00ttn > :first-child, .framer-iaaXs .framer-15nkgqj > :first-child, .framer-iaaXs .framer-a1mqms > :first-child, .framer-iaaXs .framer-11jxoep > :first-child, .framer-iaaXs .framer-qhalkr > :first-child, .framer-iaaXs .framer-1xs8cs2 > :first-child, .framer-iaaXs .framer-o9lvbi > :first-child, .framer-iaaXs .framer-1y1bora > :first-child, .framer-iaaXs .framer-znmwpl > :first-child, .framer-iaaXs .framer-zth1nd > :first-child, .framer-iaaXs .framer-j18u5x > :first-child, .framer-iaaXs .framer-ohmwol > :first-child, .framer-iaaXs .framer-1i1wlko > :first-child, .framer-iaaXs .framer-1hopkd4 > :first-child, .framer-iaaXs .framer-eh4ezg > :first-child, .framer-iaaXs .framer-kctuvt > :first-child, .framer-iaaXs .framer-20t7lk > :first-child, .framer-iaaXs .framer-5q2fat > :first-child, .framer-iaaXs .framer-1eo3sqe > :first-child, .framer-iaaXs .framer-fpawfp > :first-child, .framer-iaaXs .framer-1jiva8a > :first-child, .framer-iaaXs .framer-1nfe22j > :first-child, .framer-iaaXs .framer-1t71hji > :first-child { margin-top: 0px; } .framer-iaaXs.framer-1eut02m > :last-child, .framer-iaaXs .framer-ix9bsz > :last-child, .framer-iaaXs .framer-8dk6rg > :last-child, .framer-iaaXs .framer-sr9x5u > :last-child, .framer-iaaXs .framer-1v8uajf > :last-child, .framer-iaaXs .framer-1ptxkf1 > :last-child, .framer-iaaXs .framer-q0c0jz > :last-child, .framer-iaaXs .framer-pcwex6 > :last-child, .framer-iaaXs .framer-ub2rfp > :last-child, .framer-iaaXs .framer-1joq7q4 > :last-child, .framer-iaaXs .framer-1ijdmr8 > :last-child, .framer-iaaXs .framer-1ptwbwx > :last-child, .framer-iaaXs .framer-xyn1xj > :last-child, .framer-iaaXs .framer-1ss108j > :last-child, .framer-iaaXs .framer-1ycmgo8 > :last-child, .framer-iaaXs .framer-1nxljb7 > :last-child, .framer-iaaXs .framer-1en02jb > :last-child, .framer-iaaXs .framer-gcdfe9 > :last-child, .framer-iaaXs .framer-1pmoguq > :last-child, .framer-iaaXs .framer-6c8zri > :last-child, .framer-iaaXs .framer-oow2kp > :last-child, .framer-iaaXs .framer-6gqhsm > :last-child, .framer-iaaXs .framer-dex8jp > :last-child, .framer-iaaXs .framer-hc87wj > :last-child, .framer-iaaXs .framer-10gnarq > :last-child, .framer-iaaXs .framer-1blx8j0 > :last-child, .framer-iaaXs .framer-63h2iu > :last-child, .framer-iaaXs .framer-19ybe7b > :last-child, .framer-iaaXs .framer-1s67m0v > :last-child, .framer-iaaXs .framer-1dmj3mo > :last-child, .framer-iaaXs .framer-nbja5t > :last-child, .framer-iaaXs .framer-ovn9zy > :last-child, .framer-iaaXs .framer-13efp2k > :last-child, .framer-iaaXs .framer-s2r9c4 > :last-child, .framer-iaaXs .framer-ot1jyg > :last-child, .framer-iaaXs .framer-1a52qlw > :last-child, .framer-iaaXs .framer-12a5jl6 > :last-child, .framer-iaaXs .framer-1uwtjil > :last-child, .framer-iaaXs .framer-4d6mxp > :last-child, .framer-iaaXs .framer-1do8wv > :last-child, .framer-iaaXs .framer-fmmbe0 > :last-child, .framer-iaaXs .framer-7tt7cc > :last-child, .framer-iaaXs .framer-1mrdeif > :last-child, .framer-iaaXs .framer-16gbia3 > :last-child, .framer-iaaXs .framer-1ns4a63 > :last-child, .framer-iaaXs .framer-183xwgp > :last-child, .framer-iaaXs .framer-1f00ttn > :last-child, .framer-iaaXs .framer-15nkgqj > :last-child, .framer-iaaXs .framer-a1mqms > :last-child, .framer-iaaXs .framer-11jxoep > :last-child, .framer-iaaXs .framer-qhalkr > :last-child, .framer-iaaXs .framer-1xs8cs2 > :last-child, .framer-iaaXs .framer-o9lvbi > :last-child, .framer-iaaXs .framer-1y1bora > :last-child, .framer-iaaXs .framer-znmwpl > :last-child, .framer-iaaXs .framer-zth1nd > :last-child, .framer-iaaXs .framer-j18u5x > :last-child, .framer-iaaXs .framer-ohmwol > :last-child, .framer-iaaXs .framer-1i1wlko > :last-child, .framer-iaaXs .framer-1hopkd4 > :last-child, .framer-iaaXs .framer-eh4ezg > :last-child, .framer-iaaXs .framer-kctuvt > :last-child, .framer-iaaXs .framer-20t7lk > :last-child, .framer-iaaXs .framer-5q2fat > :last-child, .framer-iaaXs .framer-1eo3sqe > :last-child, .framer-iaaXs .framer-fpawfp > :last-child, .framer-iaaXs .framer-1jiva8a > :last-child, .framer-iaaXs .framer-1nfe22j > :last-child, .framer-iaaXs .framer-1t71hji > :last-child { margin-bottom: 0px; } .framer-iaaXs .framer-ix9bsz > * { margin: 0px; margin-bottom: calc(300px / 2); margin-top: calc(300px / 2); } .framer-iaaXs .framer-8dk6rg > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-iaaXs .framer-1v8uajf > *, .framer-iaaXs .framer-q0c0jz > *, .framer-iaaXs .framer-gcdfe9 > *, .framer-iaaXs .framer-1blx8j0 > *, .framer-iaaXs .framer-1a52qlw > *, .framer-iaaXs .framer-1eo3sqe > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-iaaXs .framer-1ptxkf1 > *, .framer-iaaXs .framer-ub2rfp > *, .framer-iaaXs .framer-1en02jb > *, .framer-iaaXs .framer-oow2kp > *, .framer-iaaXs .framer-19ybe7b > *, .framer-iaaXs .framer-1s67m0v > *, .framer-iaaXs .framer-1dmj3mo > *, .framer-iaaXs .framer-nbja5t > *, .framer-iaaXs .framer-ovn9zy > *, .framer-iaaXs .framer-13efp2k > *, .framer-iaaXs .framer-s2r9c4 > *, .framer-iaaXs .framer-12a5jl6 > *, .framer-iaaXs .framer-7tt7cc > *, .framer-iaaXs .framer-1f00ttn > *, .framer-iaaXs .framer-15nkgqj > *, .framer-iaaXs .framer-a1mqms > *, .framer-iaaXs .framer-11jxoep > *, .framer-iaaXs .framer-o9lvbi > *, .framer-iaaXs .framer-1y1bora > *, .framer-iaaXs .framer-znmwpl > *, .framer-iaaXs .framer-ohmwol > *, .framer-iaaXs .framer-1nfe22j > *, .framer-iaaXs .framer-1t71hji > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-iaaXs .framer-pcwex6 > *, .framer-iaaXs .framer-6c8zri > *, .framer-iaaXs .framer-fmmbe0 > *, .framer-iaaXs .framer-zth1nd > *, .framer-iaaXs .framer-j18u5x > *, .framer-iaaXs .framer-fpawfp > *, .framer-iaaXs .framer-1jiva8a > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-iaaXs .framer-ilbm2g > *, .framer-iaaXs .framer-1byiemu > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-iaaXs .framer-ilbm2g > :first-child, .framer-iaaXs .framer-39ywky > :first-child, .framer-iaaXs .framer-1ecxvbq > :first-child, .framer-iaaXs .framer-132i3u1 > :first-child, .framer-iaaXs .framer-1sq8qme > :first-child, .framer-iaaXs .framer-mq73f5 > :first-child, .framer-iaaXs .framer-mclodm > :first-child, .framer-iaaXs .framer-6ul1zz > :first-child, .framer-iaaXs .framer-y2yxfh > :first-child, .framer-iaaXs .framer-1hh0tc > :first-child, .framer-iaaXs .framer-1qqxzuw > :first-child, .framer-iaaXs .framer-1casisw > :first-child, .framer-iaaXs .framer-xw0b1n > :first-child, .framer-iaaXs .framer-suvdgg > :first-child, .framer-iaaXs .framer-ci12tl > :first-child, .framer-iaaXs .framer-c2gp7s > :first-child, .framer-iaaXs .framer-1x8kvpi > :first-child, .framer-iaaXs .framer-ny9es4 > :first-child, .framer-iaaXs .framer-3z2ouk > :first-child, .framer-iaaXs .framer-th58kq > :first-child, .framer-iaaXs .framer-s26so8 > :first-child, .framer-iaaXs .framer-sjpxl0 > :first-child, .framer-iaaXs .framer-gosxsv > :first-child, .framer-iaaXs .framer-ghc7dm > :first-child, .framer-iaaXs .framer-1ndxxzt > :first-child, .framer-iaaXs .framer-16lfi9n > :first-child, .framer-iaaXs .framer-mbqyp2 > :first-child, .framer-iaaXs .framer-13bepmv > :first-child, .framer-iaaXs .framer-1usj8ql > :first-child, .framer-iaaXs .framer-16fyvw7 > :first-child, .framer-iaaXs .framer-12he8nd > :first-child, .framer-iaaXs .framer-1l7z9c3 > :first-child, .framer-iaaXs .framer-of732c > :first-child, .framer-iaaXs .framer-1wgjwc4 > :first-child, .framer-iaaXs .framer-1n9w2nf > :first-child, .framer-iaaXs .framer-1et1r3m > :first-child, .framer-iaaXs .framer-ghmxru > :first-child, .framer-iaaXs .framer-zpmnj6 > :first-child, .framer-iaaXs .framer-1byiemu > :first-child, .framer-iaaXs .framer-17v2et > :first-child { margin-left: 0px; } .framer-iaaXs .framer-ilbm2g > :last-child, .framer-iaaXs .framer-39ywky > :last-child, .framer-iaaXs .framer-1ecxvbq > :last-child, .framer-iaaXs .framer-132i3u1 > :last-child, .framer-iaaXs .framer-1sq8qme > :last-child, .framer-iaaXs .framer-mq73f5 > :last-child, .framer-iaaXs .framer-mclodm > :last-child, .framer-iaaXs .framer-6ul1zz > :last-child, .framer-iaaXs .framer-y2yxfh > :last-child, .framer-iaaXs .framer-1hh0tc > :last-child, .framer-iaaXs .framer-1qqxzuw > :last-child, .framer-iaaXs .framer-1casisw > :last-child, .framer-iaaXs .framer-xw0b1n > :last-child, .framer-iaaXs .framer-suvdgg > :last-child, .framer-iaaXs .framer-ci12tl > :last-child, .framer-iaaXs .framer-c2gp7s > :last-child, .framer-iaaXs .framer-1x8kvpi > :last-child, .framer-iaaXs .framer-ny9es4 > :last-child, .framer-iaaXs .framer-3z2ouk > :last-child, .framer-iaaXs .framer-th58kq > :last-child, .framer-iaaXs .framer-s26so8 > :last-child, .framer-iaaXs .framer-sjpxl0 > :last-child, .framer-iaaXs .framer-gosxsv > :last-child, .framer-iaaXs .framer-ghc7dm > :last-child, .framer-iaaXs .framer-1ndxxzt > :last-child, .framer-iaaXs .framer-16lfi9n > :last-child, .framer-iaaXs .framer-mbqyp2 > :last-child, .framer-iaaXs .framer-13bepmv > :last-child, .framer-iaaXs .framer-1usj8ql > :last-child, .framer-iaaXs .framer-16fyvw7 > :last-child, .framer-iaaXs .framer-12he8nd > :last-child, .framer-iaaXs .framer-1l7z9c3 > :last-child, .framer-iaaXs .framer-of732c > :last-child, .framer-iaaXs .framer-1wgjwc4 > :last-child, .framer-iaaXs .framer-1n9w2nf > :last-child, .framer-iaaXs .framer-1et1r3m > :last-child, .framer-iaaXs .framer-ghmxru > :last-child, .framer-iaaXs .framer-zpmnj6 > :last-child, .framer-iaaXs .framer-1byiemu > :last-child, .framer-iaaXs .framer-17v2et > :last-child { margin-right: 0px; } .framer-iaaXs .framer-1joq7q4 > *, .framer-iaaXs .framer-1ijdmr8 > *, .framer-iaaXs .framer-1ptwbwx > *, .framer-iaaXs .framer-xyn1xj > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-iaaXs .framer-39ywky > *, .framer-iaaXs .framer-1ecxvbq > *, .framer-iaaXs .framer-132i3u1 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-iaaXs .framer-1ss108j > *, .framer-iaaXs .framer-16gbia3 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-iaaXs .framer-1sq8qme > *, .framer-iaaXs .framer-1l7z9c3 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-iaaXs .framer-1ycmgo8 > *, .framer-iaaXs .framer-1ns4a63 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-iaaXs .framer-mq73f5 > *, .framer-iaaXs .framer-of732c > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-iaaXs .framer-1pmoguq > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-iaaXs .framer-6gqhsm > *, .framer-iaaXs .framer-dex8jp > *, .framer-iaaXs .framer-hc87wj > *, .framer-iaaXs .framer-10gnarq > *, .framer-iaaXs .framer-1uwtjil > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-iaaXs .framer-63h2iu > * { margin: 0px; margin-bottom: calc(92px / 2); margin-top: calc(92px / 2); } .framer-iaaXs .framer-mclodm > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-iaaXs .framer-6ul1zz > *, .framer-iaaXs .framer-1hh0tc > *, .framer-iaaXs .framer-1casisw > *, .framer-iaaXs .framer-suvdgg > *, .framer-iaaXs .framer-c2gp7s > *, .framer-iaaXs .framer-ny9es4 > *, .framer-iaaXs .framer-3z2ouk > *, .framer-iaaXs .framer-th58kq > *, .framer-iaaXs .framer-s26so8 > *, .framer-iaaXs .framer-gosxsv > *, .framer-iaaXs .framer-ghc7dm > *, .framer-iaaXs .framer-1ndxxzt > *, .framer-iaaXs .framer-13bepmv > *, .framer-iaaXs .framer-1usj8ql > *, .framer-iaaXs .framer-16fyvw7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-iaaXs .framer-y2yxfh > *, .framer-iaaXs .framer-1qqxzuw > *, .framer-iaaXs .framer-xw0b1n > *, .framer-iaaXs .framer-ci12tl > *, .framer-iaaXs .framer-1x8kvpi > *, .framer-iaaXs .framer-sjpxl0 > *, .framer-iaaXs .framer-16lfi9n > *, .framer-iaaXs .framer-12he8nd > *, .framer-iaaXs .framer-1wgjwc4 > *, .framer-iaaXs .framer-1n9w2nf > *, .framer-iaaXs .framer-1et1r3m > *, .framer-iaaXs .framer-ghmxru > *, .framer-iaaXs .framer-zpmnj6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-iaaXs .framer-ot1jyg > *, .framer-iaaXs .framer-qhalkr > *, .framer-iaaXs .framer-1hopkd4 > *, .framer-iaaXs .framer-kctuvt > *, .framer-iaaXs .framer-5q2fat > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-iaaXs .framer-4d6mxp > *, .framer-iaaXs .framer-1do8wv > *, .framer-iaaXs .framer-1mrdeif > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-iaaXs .framer-mbqyp2 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-iaaXs .framer-17v2et > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",'.framer-iaaXs[data-border=\"true\"]::after, .framer-iaaXs [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-iaaXs.framer-1eut02m { width: 810px; } .framer-iaaXs .framer-1r7xi8h-container { top: 44px; } .framer-iaaXs .framer-ix9bsz { padding: 160px 32px 0px 32px; } .framer-iaaXs .framer-8dk6rg { gap: 24px; } .framer-iaaXs .framer-16i9oiq, .framer-iaaXs .framer-lekcdd, .framer-iaaXs .framer-deqsgp, .framer-iaaXs .framer-zlgopu, .framer-iaaXs .framer-1frxgi, .framer-iaaXs .framer-1n28egr, .framer-iaaXs .framer-9kxs5c, .framer-iaaXs .framer-yh85g7, .framer-iaaXs .framer-8c40rt, .framer-iaaXs .framer-kozr43, .framer-iaaXs .framer-9julax, .framer-iaaXs .framer-1ufxlhp, .framer-iaaXs .framer-5vw7ge, .framer-iaaXs .framer-okgvci, .framer-iaaXs .framer-1ym6tfp, .framer-iaaXs .framer-mw8284 { --framer-text-wrap: balance; max-width: unset; } .framer-iaaXs .framer-pcwex6 { order: 0; } .framer-iaaXs .framer-ilbm2g { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; order: 1; } .framer-iaaXs .framer-1joq7q4, .framer-iaaXs .framer-1ijdmr8, .framer-iaaXs .framer-1ptwbwx, .framer-iaaXs .framer-xyn1xj { align-self: start; flex: none; gap: 4px; height: 100%; justify-self: start; width: 100%; } .framer-iaaXs .framer-1ss108j { order: 2; padding: 72px 40px 72px 40px; width: 617px; } .framer-iaaXs .framer-1sq8qme { align-content: unset; align-items: unset; display: grid; gap: 42px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-iaaXs .framer-i8iweq-container, .framer-iaaXs .framer-6gqhsm, .framer-iaaXs .framer-dex8jp, .framer-iaaXs .framer-hc87wj, .framer-iaaXs .framer-10gnarq, .framer-iaaXs .framer-1amx3ex-container, .framer-iaaXs .framer-cw0qbp-container, .framer-iaaXs .framer-29cgoz-container { align-self: start; justify-self: start; width: 100%; } .framer-iaaXs .framer-1ycmgo8 { align-self: start; flex: none; justify-self: start; width: 100%; } .framer-iaaXs .framer-2xfiy0-container { order: 3; } .framer-iaaXs .framer-oow2kp { width: 686px; } .framer-iaaXs .framer-g4u642 { align-content: unset; align-items: unset; display: grid; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; padding: 0px; width: 72%; } .framer-iaaXs .framer-1rrxg3r { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-iaaXs .framer-6ul1zz { height: 929px; } .framer-iaaXs .framer-y2yxfh, .framer-iaaXs .framer-1qqxzuw, .framer-iaaXs .framer-ci12tl { height: var(--framer-aspect-ratio-supported, 380px); } .framer-iaaXs .framer-ztx1uq { height: var(--framer-aspect-ratio-supported, 397px); width: 458px; } .framer-iaaXs .framer-1hh0tc { height: 909px; } .framer-iaaXs .framer-1vxd2f0 { height: var(--framer-aspect-ratio-supported, 330px); width: 427px; } .framer-iaaXs .framer-nbja5t { padding: 33px 0px 33px 0px; } .framer-iaaXs .framer-xw0b1n { height: var(--framer-aspect-ratio-supported, 380px); padding: 40px 20px 0px 0px; } .framer-iaaXs .framer-17av5q9 { height: var(--framer-aspect-ratio-supported, 321px); width: 546px; } .framer-iaaXs .framer-suvdgg { height: 808px; } .framer-iaaXs .framer-xnu4hh { height: var(--framer-aspect-ratio-supported, 323px); width: 434px; } .framer-iaaXs .framer-13efp2k { height: 700px; order: 0; } .framer-iaaXs .framer-yrjo1k { width: 370px; } .framer-iaaXs .framer-1x8kvpi { height: var(--framer-aspect-ratio-supported, 380px); width: 507px; } .framer-iaaXs .framer-1yuf5r8 { height: var(--framer-aspect-ratio-supported, 283px); width: 441px; } .framer-iaaXs .framer-ot1jyg { height: var(--framer-aspect-ratio-supported, 380px); padding: 60px 0px 0px 0px; } .framer-iaaXs .framer-1omcscg { height: 52px; width: 230px; } .framer-iaaXs .framer-1suleb7 { height: 51px; width: 212px; } .framer-iaaXs .framer-1i2h71a { height: 62px; width: 179px; } .framer-iaaXs .framer-13yzefu { height: 44px; width: 217px; } .framer-iaaXs .framer-u72xn3 { height: var(--framer-aspect-ratio-supported, 438px); } .framer-iaaXs .framer-1qm9se0 { height: var(--framer-aspect-ratio-supported, 433px); } .framer-iaaXs .framer-sumw5j { height: var(--framer-aspect-ratio-supported, 390px); } .framer-iaaXs .framer-246p74 { height: var(--framer-aspect-ratio-supported, 1352px); order: 0; } .framer-iaaXs .framer-1i1wlko, .framer-iaaXs .framer-eh4ezg, .framer-iaaXs .framer-20t7lk { flex: 1 0 0px; width: 1px; } .framer-iaaXs .framer-8toa5a, .framer-iaaXs .framer-1yer5c6, .framer-iaaXs .framer-147i4jn { height: var(--framer-aspect-ratio-supported, 161px); } .framer-iaaXs .framer-17v2et { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); width: 640px; } .framer-iaaXs .framer-1t71hji, .framer-iaaXs .framer-b4yxsc-container { width: 640px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-iaaXs .framer-8dk6rg, .framer-iaaXs .framer-ilbm2g, .framer-iaaXs .framer-1joq7q4, .framer-iaaXs .framer-1ijdmr8, .framer-iaaXs .framer-1ptwbwx, .framer-iaaXs .framer-xyn1xj, .framer-iaaXs .framer-1sq8qme, .framer-iaaXs .framer-g4u642, .framer-iaaXs .framer-17v2et { gap: 0px; } .framer-iaaXs .framer-8dk6rg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-iaaXs .framer-8dk6rg > :first-child, .framer-iaaXs .framer-1joq7q4 > :first-child, .framer-iaaXs .framer-1ijdmr8 > :first-child, .framer-iaaXs .framer-1ptwbwx > :first-child, .framer-iaaXs .framer-xyn1xj > :first-child { margin-top: 0px; } .framer-iaaXs .framer-8dk6rg > :last-child, .framer-iaaXs .framer-1joq7q4 > :last-child, .framer-iaaXs .framer-1ijdmr8 > :last-child, .framer-iaaXs .framer-1ptwbwx > :last-child, .framer-iaaXs .framer-xyn1xj > :last-child { margin-bottom: 0px; } .framer-iaaXs .framer-ilbm2g > *, .framer-iaaXs .framer-ilbm2g > :first-child, .framer-iaaXs .framer-ilbm2g > :last-child, .framer-iaaXs .framer-1sq8qme > *, .framer-iaaXs .framer-1sq8qme > :first-child, .framer-iaaXs .framer-1sq8qme > :last-child, .framer-iaaXs .framer-g4u642 > *, .framer-iaaXs .framer-g4u642 > :first-child, .framer-iaaXs .framer-g4u642 > :last-child, .framer-iaaXs .framer-17v2et > *, .framer-iaaXs .framer-17v2et > :first-child, .framer-iaaXs .framer-17v2et > :last-child { margin: 0px; } .framer-iaaXs .framer-1joq7q4 > *, .framer-iaaXs .framer-1ijdmr8 > *, .framer-iaaXs .framer-1ptwbwx > *, .framer-iaaXs .framer-xyn1xj > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }}\",\"@media (max-width: 809px) { .framer-iaaXs.framer-1eut02m { width: 390px; } .framer-iaaXs .framer-1f1aczi-container, .framer-iaaXs .framer-7mw4e-container, .framer-iaaXs .framer-1tczeyb { order: 0; } .framer-iaaXs .framer-1r7xi8h-container { order: 1; top: 44px; } .framer-iaaXs .framer-ix9bsz { order: 2; padding: 160px 24px 0px 24px; } .framer-iaaXs .framer-1v8uajf { gap: 17px; } .framer-iaaXs .framer-1tab5ev { width: 340px; } .framer-iaaXs .framer-16i9oiq, .framer-iaaXs .framer-9julax, .framer-iaaXs .framer-oc2l4b, .framer-iaaXs .framer-5vw7ge, .framer-iaaXs .framer-1ym6tfp, .framer-iaaXs .framer-mw8284 { --framer-text-wrap: balance; max-width: unset; } .framer-iaaXs .framer-q0c0jz { order: 3; padding: 75px 0px 0px 0px; } .framer-iaaXs .framer-lekcdd, .framer-iaaXs .framer-okgvci { --framer-text-wrap: balance; max-width: unset; width: 340px; } .framer-iaaXs .framer-ilbm2g { align-content: unset; align-items: unset; display: grid; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-iaaXs .framer-1joq7q4, .framer-iaaXs .framer-1ijdmr8, .framer-iaaXs .framer-1ptwbwx, .framer-iaaXs .framer-xyn1xj { align-self: start; flex: none; height: 100%; justify-self: start; padding: 20px 12px 20px 12px; width: 100%; } .framer-iaaXs .framer-1ss108j { padding: 60px 20px 60px 20px; width: 340px; } .framer-iaaXs .framer-1sq8qme { flex-direction: column; gap: 40px; max-width: 320px; } .framer-iaaXs .framer-1ycmgo8 { align-content: center; align-items: center; flex: none; gap: 24px; width: 320px; } .framer-iaaXs .framer-1or6wub { width: 300px; } .framer-iaaXs .framer-1en02jb { order: 4; } .framer-iaaXs .framer-hxigk-container { order: 5; } .framer-iaaXs .framer-1a52qlw { order: 13; padding: 64px 24px 0px 24px; width: 380px; } .framer-iaaXs .framer-1f00ttn { order: 8; } .framer-iaaXs .framer-15nkgqj { order: 9; } .framer-iaaXs .framer-a1mqms { order: 10; } .framer-iaaXs .framer-11jxoep { order: 11; } .framer-iaaXs .framer-1xs8cs2 { order: 6; } .framer-iaaXs .framer-1y1bora { order: 7; } .framer-iaaXs .framer-9uegh1 { order: 1; } .framer-iaaXs .framer-znmwpl { order: 3; } .framer-iaaXs .framer-zpmnj6 { order: 2; } .framer-iaaXs .framer-zth1nd { order: 14; padding: 64px 24px 0px 24px; width: 380px; } .framer-iaaXs .framer-1byiemu, .framer-iaaXs .framer-17v2et { flex-direction: column; } .framer-iaaXs .framer-1i1wlko, .framer-iaaXs .framer-eh4ezg, .framer-iaaXs .framer-20t7lk { width: 100%; } .framer-iaaXs .framer-8toa5a, .framer-iaaXs .framer-1yer5c6, .framer-iaaXs .framer-147i4jn { height: var(--framer-aspect-ratio-supported, 150px); } .framer-iaaXs .framer-1eo3sqe { order: 15; padding: 64px 24px 0px 24px; } .framer-iaaXs .framer-1t71hji { order: 16; padding: 64px 64px 0px 64px; } .framer-iaaXs .framer-b4yxsc-container { width: 323px; } .framer-iaaXs .framer-1vg8122-container { order: 17; } .framer-iaaXs .framer-1mzx9ob-container { order: 18; } .framer-iaaXs .framer-1o4fwsx-container { order: 19; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-iaaXs .framer-1v8uajf, .framer-iaaXs .framer-ilbm2g, .framer-iaaXs .framer-1sq8qme, .framer-iaaXs .framer-1ycmgo8, .framer-iaaXs .framer-1byiemu, .framer-iaaXs .framer-17v2et { gap: 0px; } .framer-iaaXs .framer-1v8uajf > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-iaaXs .framer-1v8uajf > :first-child, .framer-iaaXs .framer-1sq8qme > :first-child, .framer-iaaXs .framer-1ycmgo8 > :first-child, .framer-iaaXs .framer-1byiemu > :first-child, .framer-iaaXs .framer-17v2et > :first-child { margin-top: 0px; } .framer-iaaXs .framer-1v8uajf > :last-child, .framer-iaaXs .framer-1sq8qme > :last-child, .framer-iaaXs .framer-1ycmgo8 > :last-child, .framer-iaaXs .framer-1byiemu > :last-child, .framer-iaaXs .framer-17v2et > :last-child { margin-bottom: 0px; } .framer-iaaXs .framer-ilbm2g > *, .framer-iaaXs .framer-ilbm2g > :first-child, .framer-iaaXs .framer-ilbm2g > :last-child { margin: 0px; } .framer-iaaXs .framer-1sq8qme > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-iaaXs .framer-1ycmgo8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-iaaXs .framer-1byiemu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-iaaXs .framer-17v2et > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10070\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kmytHNRIW\":{\"layout\":[\"fixed\",\"auto\"]},\"IWrzqoArQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"te4kVg57Q\":{\"pattern\":\":te4kVg57Q\",\"name\":\"hero\"},\"Oj3UsVLB4\":{\"pattern\":\":Oj3UsVLB4\",\"name\":\"clients\"},\"TOqrP5P8A\":{\"pattern\":\":TOqrP5P8A\",\"name\":\"process\"},\"bSS_Q6oHl\":{\"pattern\":\":bSS_Q6oHl\",\"name\":\"services\"},\"qSCcvlYg3\":{\"pattern\":\":qSCcvlYg3\",\"name\":\"services\"},\"PYa656U34\":{\"pattern\":\":PYa656U34\",\"name\":\"results\"},\"WA4AYMCFp\":{\"pattern\":\":WA4AYMCFp\",\"name\":\"testimonials\"},\"xg_4HZ4gi\":{\"pattern\":\":xg_4HZ4gi\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FramerMssRQzrc9=withCSS(Component,css,\"framer-iaaXs\");export default FramerMssRQzrc9;FramerMssRQzrc9.displayName=\"Ff V2\";FramerMssRQzrc9.defaultProps={height:10070,width:1200};addFonts(FramerMssRQzrc9,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\",weight:\"800\"},{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:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.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/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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...NavigationAnnouncementBar2Fonts,...NavigationNavigation3Fonts,...ButtonsButtonFonts,...NumberCounterFonts,...CardsResults2Fonts,...ElementsAvatarFonts,...ElementsBadge4Fonts,...ElementsBadge5Fonts,...ElementsBadge3Fonts,...ElementsAvatar1Fonts,...ElementsBadge2Fonts,...ElementsBadgeFonts,...CardsWrittenTestimonial4Fonts,...CardsWrittenTestimonial5Fonts,...CardsWrittenTestimonial6Fonts,...ElementsFAQ2Fonts,...UniversalSectionCallToAction2Fonts,...FooterFooter3Fonts,...SmoothScrollFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMssRQzrc9\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kmytHNRIW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IWrzqoArQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"te4kVg57Q\\\":{\\\"pattern\\\":\\\":te4kVg57Q\\\",\\\"name\\\":\\\"hero\\\"},\\\"Oj3UsVLB4\\\":{\\\"pattern\\\":\\\":Oj3UsVLB4\\\",\\\"name\\\":\\\"clients\\\"},\\\"TOqrP5P8A\\\":{\\\"pattern\\\":\\\":TOqrP5P8A\\\",\\\"name\\\":\\\"process\\\"},\\\"bSS_Q6oHl\\\":{\\\"pattern\\\":\\\":bSS_Q6oHl\\\",\\\"name\\\":\\\"services\\\"},\\\"qSCcvlYg3\\\":{\\\"pattern\\\":\\\":qSCcvlYg3\\\",\\\"name\\\":\\\"services\\\"},\\\"PYa656U34\\\":{\\\"pattern\\\":\\\":PYa656U34\\\",\\\"name\\\":\\\"results\\\"},\\\"WA4AYMCFp\\\":{\\\"pattern\\\":\\\":WA4AYMCFp\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"xg_4HZ4gi\\\":{\\\"pattern\\\":\\\":xg_4HZ4gi\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"10070\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["NumberCounterStyles", "NumberCounter", "props", "startNumber", "endNumber", "speed", "prefix", "suffix", "loop", "decimalSeparator", "fontSize", "font", "fontColor", "count", "setCount", "ye", "isVisible", "setIsVisible", "ref", "e", "ue", "observer", "entries", "entry", "intervalId", "prevCount", "formatCount", "number", "u", "motion", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "avatar", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "cpsLDpTtE", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "cx", "serializationHash", "css", "FramerEN8TiKyXy", "withCSS", "EN8TiKyXy_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "badge1", "badge2", "description", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "QUIw8Gp80", "v_pYW9mfT", "AHW2bVdJO", "tvKFDMXb4", "XIsP8f0uD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerylBNSDbKt", "withCSS", "ylBNSDbKt_default", "addPropertyControls", "ControlType", "addFonts", "t", "r", "h", "a", "c", "e", "i", "u", "p", "d", "s", "window", "o", "n", "l", "m", "v", "g", "S", "w", "f", "y", "T", "z", "_", "M", "L", "b", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "handleMutation", "mutationsList", "observer", "mutation", "htmlElement", "window", "config", "l", "raf", "time", "p", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "avatar", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "cpsLDpTtE", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "cx", "serializationHash", "css", "FramerEN8TiKyXy", "withCSS", "EN8TiKyXy_default", "addPropertyControls", "ControlType", "addFonts", "ElementsAvatarFonts", "getFonts", "EN8TiKyXy_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "avatar", "client", "height", "id", "text", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "VePkjXSEB", "c5PhFvhFc", "oRy6t91PU", "ECqJZ1hHM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "EN8TiKyXy_default", "css", "Framerb17WYBX5G", "withCSS", "b17WYBX5G_default", "addPropertyControls", "ControlType", "addFonts", "ElementsAvatarFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "YbsaeEF4R", "dI2V912ba", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "FramerCMXrP5Gmq", "withCSS", "CMXrP5Gmq_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "avatar", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "cpsLDpTtE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerDd0AITqZJ", "withCSS", "Dd0AITqZJ_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer1", "answer2", "answer3", "height", "id", "question1", "question2", "question3", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "rawvYUUzX", "KjHOx49kL", "tvNxOx7cw", "oRIOycR3Y", "pj8TaM0YQ", "Tiiziaej8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapzws986", "args", "onTapwwwljs", "onTaprhqd5v", "onTap12sz043", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "RichText", "css", "FramerMvUPJh9PD", "withCSS", "MvUPJh9PD_default", "addPropertyControls", "ControlType", "addFonts", "ElementsAvatarFonts", "getFonts", "EN8TiKyXy_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "avatar", "client", "height", "id", "text", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "VePkjXSEB", "c5PhFvhFc", "oRy6t91PU", "ECqJZ1hHM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "EN8TiKyXy_default", "css", "FramernhYYwaDnG", "withCSS", "nhYYwaDnG_default", "addPropertyControls", "ControlType", "addFonts", "ElementsAvatarFonts", "ElementsAvatarFonts", "getFonts", "EN8TiKyXy_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "avatar", "client", "height", "id", "text", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "VePkjXSEB", "c5PhFvhFc", "oRy6t91PU", "ECqJZ1hHM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "EN8TiKyXy_default", "css", "FramerNrlfR50qS", "withCSS", "NrlfR50qS_default", "addPropertyControls", "ControlType", "addFonts", "ElementsAvatarFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "YbsaeEF4R", "dI2V912ba", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "FramerPhNvW8b5O", "withCSS", "PhNvW8b5O_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "YbsaeEF4R", "dI2V912ba", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "FramerrbPG_0ySu", "withCSS", "rbPG_0ySu_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "YbsaeEF4R", "dI2V912ba", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "Framerrj5LkR8qx", "withCSS", "rj5LkR8qx_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "YbsaeEF4R", "dI2V912ba", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "FramerVdw_88OOg", "withCSS", "Vdw_88OOg_default", "addPropertyControls", "ControlType", "addFonts", "NavigationAnnouncementBar2Fonts", "getFonts", "AhavovLZt_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "NavigationNavigation3Fonts", "U0L1pYVUU_default", "ButtonsButtonFonts", "beL7nB9Cx_default", "MotionDivWithOptimizedAppearEffect", "motion", "NumberCounterFonts", "NumberCounter", "CardsResults2Fonts", "ylBNSDbKt_default", "ElementsAvatarFonts", "Dd0AITqZJ_default", "ElementsBadge4Fonts", "PhNvW8b5O_default", "ElementsBadge5Fonts", "rj5LkR8qx_default", "ImageWithFX", "withFX", "Image2", "ElementsBadge3Fonts", "Vdw_88OOg_default", "ElementsAvatar1Fonts", "EN8TiKyXy_default", "ElementsBadge2Fonts", "CMXrP5Gmq_default", "ElementsBadgeFonts", "rbPG_0ySu_default", "CardsWrittenTestimonial4Fonts", "NrlfR50qS_default", "CardsWrittenTestimonial5Fonts", "nhYYwaDnG_default", "CardsWrittenTestimonial6Fonts", "b17WYBX5G_default", "ElementsFAQ2Fonts", "MvUPJh9PD_default", "UniversalSectionCallToAction2Fonts", "izGATlFFP_default", "FooterFooter3Fonts", "Fh6mheqKa_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "addImageAlt", "image", "alt", "animation4", "transition3", "transition4", "animation5", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "PF3AJdT1LaNpozvGvm", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "isDisplayed1", "elementId2", "ref3", "isDisplayed2", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed3", "isDisplayed4", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "RichText", "SVG", "getLoadingLazyAtYPosition", "Link", "css", "FramerMssRQzrc9", "withCSS", "MssRQzrc9_default", "addFonts", "__FramerMetadata__"]
}
