{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/sIxZFVxIOBdfeANYhkj2/lGu9VayhxpYD2v9lbKlh/AnimatedCounter.js", "ssg:https://framerusercontent.com/modules/xlaeWZshEjLYdPPhgb8G/yO6w23BnFnQMXxrCXfWW/jQ8mig0qG.js", "ssg:https://framerusercontent.com/modules/sIHh4pzAx63EDuWLYKgR/EoAJeZFu5iFFW70Bqz2U/augiA20Il.js", "ssg:https://framerusercontent.com/modules/zDCYTqG8QBaFpzeeIuTe/aQe5C1YXgugpDwXl3vqh/augiA20Il.js"],
  "sourcesContent": ["/*\n * Animated Counter by framer.today\n * v1.0.1\n *\n * hi@framer.today\n * _joerl on \uD835\uDD4F\n *\n * Full terms here \u21B4\n * https://framer.today/license\n *\n */import{jsx as _jsx}from\"react/jsx-runtime\";import{animate,motion,useInView}from\"framer-motion\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";/**\n * @framerDisableUnlink\n */export default function AnimatedCounter(props){const{from,to,duration,decimalPlaces,decimalSeparator,font:{fontFamily,fontWeight,fontSize,lineHeight,letterSpacing,textAlign},color,playOnLoad,once,animationType}=props;const ref=useRef(null);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const ariaLabel=`Counter ends at ${to}`;// Pass 'once' to useInView\nconst isInView=useInView(ref,{once});const[hasAnimated,setHasAnimated]=useState(false);const[displayValue,setDisplayValue]=useState(()=>formatNumber(from));function formatNumber(value){let formattedNumber=value.toFixed(decimalPlaces).replace(\".\",decimalSeparator);return formattedNumber;}useEffect(()=>{// Determine if animation should play\nif(!isCanvas&&(playOnLoad||isInView)&&!hasAnimated){const animationControl=animate(from,to,{duration,ease:animationType===\"smooth\"?\"easeInOut\":\"linear\",onUpdate:latest=>{setDisplayValue(formatNumber(latest));},onComplete:()=>{if(once){setHasAnimated(true);}}});return()=>animationControl.stop();}},[from,to,duration,decimalPlaces,decimalSeparator,playOnLoad,isInView,animationType,once,hasAnimated]);return /*#__PURE__*/_jsx(motion.div,{ref:ref,initial:{opacity:isCanvas?1:0},whileInView:{opacity:1},style:{fontFamily,fontWeight,fontSize,lineHeight,letterSpacing,textAlign,color,fontVariantNumeric:\"tabular-nums\",userSelect:\"none\"},\"aria-label\":ariaLabel,children:isCanvas?formatNumber(to):displayValue});}AnimatedCounter.defaultProps={from:0,to:24,duration:5,decimalPlaces:0,decimalSeparator:\".\",font:{fontFamily:\"Manrope\",fontWeight:\"400\",fontSize:40,lineHeight:\"1.5em\",letterSpacing:\"normal\",textAlign:\"left\"},color:\"#FFF\",playOnLoad:true,once:true,animationType:\"smooth\"};addPropertyControls(AnimatedCounter,{from:{type:ControlType.Number,title:\"From\",defaultValue:0,min:0,step:.1,displayStepper:true},to:{type:ControlType.Number,title:\"To\",defaultValue:16,min:0,step:.1,displayStepper:true},animationType:{type:ControlType.Enum,title:\"Animation Type\",defaultValue:\"smooth\",options:[\"smooth\",\"linear\"],optionTitles:[\"Smooth\",\"Linear\"]},duration:{type:ControlType.Number,title:\"Duration\",defaultValue:2.5,min:0,step:.1,displayStepper:true},decimalPlaces:{type:ControlType.Number,displayStepper:true,title:\"Decimal Places\",defaultValue:0,min:0,max:2,step:1},decimalSeparator:{type:ControlType.Enum,title:\"\u21B3 Separator\",defaultValue:\".\",options:[\".\",\",\"],optionTitles:[\".\",\",\"],hidden:({decimalPlaces})=>decimalPlaces===0},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",defaultValue:{fontFamily:\"Manrope\",fontWeight:\"400\",fontSize:64,lineHeight:\"1.5em\",letterSpacing:\"Medium\",textAlign:\"left\"},displayFontSize:true,displayTextAlignment:false,defaultFontType:\"monospace\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\"},once:{type:ControlType.Boolean,title:\"Once\",defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},playOnLoad:{type:ControlType.Boolean,title:\"Play on Load\",defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\",description:`\n        \n        *from framer.today*\n [License](https://framer.today/license)\n    `}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimatedCounter.map", "// Generated by Framer (5088480)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AnimatedCounter from\"https://framerusercontent.com/modules/sIxZFVxIOBdfeANYhkj2/lGu9VayhxpYD2v9lbKlh/AnimatedCounter.js\";const AnimatedCounterFonts=getFonts(AnimatedCounter);const cycleOrder=[\"zGqSKbdxD\",\"QyOykBY4S\"];const serializationHash=\"framer-KXcIl\";const variantClassNames={QyOykBY4S:\"framer-v-1c2n9v4\",zGqSKbdxD:\"framer-v-b0b4jv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"zGqSKbdxD\",Phone:\"QyOykBY4S\"};const getProps=({height,id,suffix,text,to,width,...props})=>{return{...props,MZEQ4ooJp:text??props.MZEQ4ooJp??\"Client Satisfaction\",qyU0FNyk4:suffix??props.qyU0FNyk4??\"%\",uoxCH45ky:to??props.uoxCH45ky??100,variant:humanReadableVariantMap[props.variant]??props.variant??\"zGqSKbdxD\"};};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,uoxCH45ky,qyU0FNyk4,MZEQ4ooJp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zGqSKbdxD\",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-b0b4jv\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"zGqSKbdxD\",ref:refBinding,style:{...style},...addPropertyOverrides({QyOykBY4S:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-548hkw\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"V_rQZoxP3\",opacity:1,radius:100,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81 82\"><path d=\"M 41.06 82 C 18.383 82 0 82 0 82 L 0 0 C 0 0 18.383 0 41.06 0 L 41.06 0 C 63.737 0 82.121 0 82.121 0 L 82.121 82 C 82.121 82 63.737 82 41.06 82 Z\" fill=\"var(--token-d80bf188-57e8-4b0c-b4b4-84bb9c218671, rgb(105, 198, 255)) /* {&quot;name&quot;:&quot;Primary Color&quot;} */\"></path><path d=\"M 40 26 L 45.114 33.962 L 54.266 36.365 L 48.274 43.688 L 48.817 53.135 L 40 49.7 L 31.183 53.135 L 31.726 43.688 L 25.734 36.365 L 34.886 33.962 Z\" fill=\"rgb(18,44,36)\"></path></svg>',svgContentId:9220079688,withExternalLayout:true,...addPropertyOverrides({QyOykBY4S:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 59 60\"><path d=\"M 29.908 60 C 13.39 60 0 60 0 60 L 0 0 C 0 0 13.39 0 29.908 0 L 29.908 0 C 46.426 0 59.816 0 59.816 0 L 59.816 60 C 59.816 60 46.426 60 29.908 60 Z\" fill=\"var(--token-d80bf188-57e8-4b0c-b4b4-84bb9c218671, rgb(105, 198, 255)) /* {&quot;name&quot;:&quot;Primary Color&quot;} */\"></path><path d=\"M 29.136 19.024 L 32.861 24.85 L 39.527 26.608 L 35.163 31.967 L 35.558 38.879 L 29.136 36.366 L 22.714 38.879 L 23.109 31.967 L 18.745 26.608 L 25.411 24.85 Z\" fill=\"rgb(18,44,36)\"></path></svg>',svgContentId:12253928378}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g17gj2\",\"data-framer-name\":\"Counter Text\",layoutDependency:layoutDependency,layoutId:\"BkBO9TRae\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vcadlo\",\"data-framer-name\":\"Counter Number\",layoutDependency:layoutDependency,layoutId:\"ycdXuP0xw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1eyb1ca-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wJwA0AWwg-container\",nodeId:\"wJwA0AWwg\",rendersWithMotion:true,scopeId:\"jQ8mig0qG\",children:/*#__PURE__*/_jsx(AnimatedCounter,{animationType:\"smooth\",color:\"var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255))\",decimalPlaces:0,decimalSeparator:\".\",duration:2.5,font:{fontFamily:'\"Figtree\", \"Figtree Placeholder\", sans-serif',fontSize:\"62px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"-0.05em\",lineHeight:\"1.1em\"},from:0,height:\"100%\",id:\"wJwA0AWwg\",layoutId:\"wJwA0AWwg\",once:true,playOnLoad:true,to:uoxCH45ky,width:\"100%\",...addPropertyOverrides({QyOykBY4S:{font:{fontFamily:'\"Figtree\", \"Figtree Placeholder\", sans-serif',fontSize:\"40px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"-0.05em\",lineHeight:\"1.1em\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"+\"})}),className:\"framer-6h0wzk\",\"data-framer-name\":\"139+\",fonts:[\"GF;Figtree-600\"],layoutDependency:layoutDependency,layoutId:\"g4WDw2xDC\",style:{\"--extracted-a0htzi\":\"var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:qyU0FNyk4,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QyOykBY4S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"+\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255)))\"},children:\"Client Satisfaction\"})}),className:\"framer-hoqp\",\"data-framer-name\":\"Client Satisfaction\",fonts:[\"FS;Manrope-medium\"],layoutDependency:layoutDependency,layoutId:\"KR9zqa31l\",style:{\"--extracted-r6o4lv\":\"var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:MZEQ4ooJp,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QyOykBY4S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255)))\"},children:\"Client Satisfaction\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KXcIl.framer-nf8oo4, .framer-KXcIl .framer-nf8oo4 { display: block; }\",\".framer-KXcIl.framer-b0b4jv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KXcIl .framer-548hkw { flex: none; height: 82px; position: relative; width: 81px; }\",\".framer-KXcIl .framer-1g17gj2 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KXcIl .framer-1vcadlo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KXcIl .framer-1eyb1ca-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KXcIl .framer-6h0wzk, .framer-KXcIl .framer-hoqp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KXcIl.framer-v-1c2n9v4.framer-b0b4jv { gap: 12px; }\",\".framer-KXcIl.framer-v-1c2n9v4 .framer-548hkw { height: 60px; width: 59px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 92\n * @framerIntrinsicWidth 265\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"QyOykBY4S\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"uoxCH45ky\":\"to\",\"qyU0FNyk4\":\"suffix\",\"MZEQ4ooJp\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjQ8mig0qG=withCSS(Component,css,\"framer-KXcIl\");export default FramerjQ8mig0qG;FramerjQ8mig0qG.displayName=\"Cliect Review Counter\";FramerjQ8mig0qG.defaultProps={height:92,width:265};addPropertyControls(FramerjQ8mig0qG,{variant:{options:[\"zGqSKbdxD\",\"QyOykBY4S\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},uoxCH45ky:{defaultValue:100,displayStepper:true,min:0,step:.1,title:\"To\",type:ControlType.Number},qyU0FNyk4:{defaultValue:\"%\",displayTextArea:false,title:\"Suffix\",type:ControlType.String},MZEQ4ooJp:{defaultValue:\"Client Satisfaction\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerjQ8mig0qG,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v8/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BNWG6MUI4RTC6WEND2VPDH4MHMIVU3XZ/R5YXY5FMVG6PXU36GNEEA24MIPMEPGSM/CIM4KQCLZSMMLWPVH25IDDSTY4ENPHEY.woff2\",weight:\"500\"}]},...AnimatedCounterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjQ8mig0qG\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QyOykBY4S\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"265\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"92\",\"framerVariables\":\"{\\\"uoxCH45ky\\\":\\\"to\\\",\\\"qyU0FNyk4\\\":\\\"suffix\\\",\\\"MZEQ4ooJp\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jQ8mig0qG.map", "// Generated by Framer (0320f5c)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={TDg5mR38A:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0320f5c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CTA from\"#framer/local/canvasComponent/bzpNGQwE7/bzpNGQwE7.js\";import BlogCard from\"#framer/local/canvasComponent/cEqMFCHLj/cEqMFCHLj.js\";import CliectReviewCounter from\"#framer/local/canvasComponent/jQ8mig0qG/jQ8mig0qG.js\";import BrandLogoTicker from\"#framer/local/canvasComponent/nCwzca9f_/nCwzca9f_.js\";import Button from\"#framer/local/canvasComponent/oYWOa5fS4/oYWOa5fS4.js\";import GenericBox from\"#framer/local/canvasComponent/qyFuLZHIh/qyFuLZHIh.js\";import TestimonialCardTicker from\"#framer/local/canvasComponent/VhhU0OBlR/VhhU0OBlR.js\";import Industries from\"#framer/local/collection/Rj2pEQ_kV/Rj2pEQ_kV.js\";import BlogDetails from\"#framer/local/collection/X8_LW6C_Z/X8_LW6C_Z.js\";import*as sharedStyle1 from\"#framer/local/css/G0RJrDVzU/G0RJrDVzU.js\";import*as sharedStyle4 from\"#framer/local/css/HSd6JggN7/HSd6JggN7.js\";import*as sharedStyle from\"#framer/local/css/iSJ7QSqfp/iSJ7QSqfp.js\";import*as sharedStyle3 from\"#framer/local/css/lQizFmxSX/lQizFmxSX.js\";import*as sharedStyle2 from\"#framer/local/css/N93hfsqp6/N93hfsqp6.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ButtonFonts=getFonts(Button);const CliectReviewCounterFonts=getFonts(CliectReviewCounter);const BrandLogoTickerFonts=getFonts(BrandLogoTicker);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const GenericBoxFonts=getFonts(GenericBox);const RichTextWithFX=withFX(RichText);const TestimonialCardTickerFonts=getFonts(TestimonialCardTicker);const BlogCardFonts=getFonts(BlogCard);const CTAFonts=getFonts(CTA);const breakpoints={AAKtd9fGu:\"(min-width: 810px) and (max-width: 1199px)\",wd1YKFB1x:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-lhr67\";const variantClassNames={AAKtd9fGu:\"framer-v-e1xdqj\",wd1YKFB1x:\"framer-v-135qzly\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition1={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:60,y:0};const transition2={damping:80,delay:.2,mass:1,stiffness:400,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 QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition3={damping:80,delay:.4,mass:1,stiffness:400,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"wd1YKFB1x\",Tablet:\"AAKtd9fGu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,pW1qf8SvtEkBn1Tq8J,HaMnDkrnKEkBn1Tq8J,Ujw_QkswgEkBn1Tq8J,Yd_ZFOEBMEkBn1Tq8J,q3JVJoONwEkBn1Tq8J,idEkBn1Tq8J,gKZuWx45_JPo4MKXNV,Ud7IPV_QJJPo4MKXNV,yjk1QYeO3JPo4MKXNV,idJPo4MKXNV,...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=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const elementId=useRouteElementId(\"vl73SJ7Di\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"AAKtd9fGu\",\"wd1YKFB1x\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AAKtd9fGu\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"wd1YKFB1x\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-49ggz7\",\"data-framer-name\":\"Hero Area\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-27ib5g\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wd1YKFB1x:{background:{alt:getLocalizedValue(\"v0\",activeLocale)??\"Hero Bg Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:3242,pixelWidth:2943,positionX:\"right\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/YWQNnU8DYYm8JCiMjA6W09nOyos.png\",srcSet:\"https://framerusercontent.com/images/YWQNnU8DYYm8JCiMjA6W09nOyos.png?scale-down-to=1024 929w,https://framerusercontent.com/images/YWQNnU8DYYm8JCiMjA6W09nOyos.png?scale-down-to=2048 1859w,https://framerusercontent.com/images/YWQNnU8DYYm8JCiMjA6W09nOyos.png 2943w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v0\",activeLocale)??\"Hero Bg Image\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:4424,pixelWidth:6915,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/KJL3JU5Sqa4g5jabfa4hTpmNd78.svg\",srcSet:\"https://framerusercontent.com/images/KJL3JU5Sqa4g5jabfa4hTpmNd78.svg?scale-down-to=512 512w,https://framerusercontent.com/images/KJL3JU5Sqa4g5jabfa4hTpmNd78.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KJL3JU5Sqa4g5jabfa4hTpmNd78.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KJL3JU5Sqa4g5jabfa4hTpmNd78.svg?scale-down-to=4096 4096w,https://framerusercontent.com/images/KJL3JU5Sqa4g5jabfa4hTpmNd78.svg 6915w\"},className:\"framer-17hhuz7\",\"data-framer-name\":\"Bg Image\",id:elementId,ref:ref1})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rtjvp2\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12y0a3a\",\"data-framer-name\":\"Section Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18riw1p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-zejs5w\",\"data-styles-preset\":\"iSJ7QSqfp\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255))\"},children:[\"Bringing AI Vision\",/*#__PURE__*/_jsx(\"br\",{}),\"to Industry\"]})}),className:\"framer-h0z1hl\",\"data-framer-name\":\"Marketing Approaches\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255))\"},children:[\"We develop cutting-edge computer-vision solutions that empower industries\",/*#__PURE__*/_jsx(\"br\",{}),\"to stay competitive in the age of AI.\"]})}),className:\"framer-czxy2s\",\"data-framer-name\":\"Marketing Approaches\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"t2CYdVJXy\"},implicitPathVariables:undefined},{href:{webPageId:\"t2CYdVJXy\"},implicitPathVariables:undefined},{href:{webPageId:\"t2CYdVJXy\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{y:(componentViewport?.y||0)+0+0+0+0+140+0+0+0+250.84},wd1YKFB1x:{y:(componentViewport?.y||0)+0+0+0+0+150+0+0+0+250.84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+0+0+0+242+0+0+0+250.84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fklpx4-container\",nodeId:\"yOtzOuJZp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{ht2onZ8wU:resolvedLinks[1]},wd1YKFB1x:{ht2onZ8wU:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",ht2onZ8wU:resolvedLinks[0],id:\"yOtzOuJZp\",layoutId:\"yOtzOuJZp\",pheigkZJA:getLocalizedValue(\"v3\",activeLocale)??\"Contact us\",variant:\"I43:796;43:787\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d9xb2q\",\"data-framer-name\":\"Client Satisfaction\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14thmpu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{y:(componentViewport?.y||0)+0+0+0+0+642.84-113+0+0+1},wd1YKFB1x:{y:(componentViewport?.y||0)+0+0+0+0+602.84-133+0+0+1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,y:(componentViewport?.y||0)+0+0+0+0+849.84-125+0+0+1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wqj7kg-container\",nodeId:\"PbBaPWmp0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{variant:\"QyOykBY4S\"},wd1YKFB1x:{variant:\"QyOykBY4S\"}},children:/*#__PURE__*/_jsx(CliectReviewCounter,{height:\"100%\",id:\"PbBaPWmp0\",layoutId:\"PbBaPWmp0\",MZEQ4ooJp:getLocalizedValue(\"v5\",activeLocale)??\"Client Satisfaction\",qyU0FNyk4:getLocalizedValue(\"v4\",activeLocale)??\"%\",uoxCH45ky:100,variant:\"zGqSKbdxD\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l2ut0y\",\"data-framer-name\":\"Brand Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pnz3j1\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{y:(componentViewport?.y||0)+0+0+542.3824+0+22},wd1YKFB1x:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px), 1px)`,y:(componentViewport?.y||0)+0+0+0+602.84+0+7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1280px), 1px)`,y:(componentViewport?.y||0)+0+0+705.5245+0+48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-momlj-container\",nodeId:\"fHFOSKtZe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wd1YKFB1x:{variant:\"plqzu3j9Q\"}},children:/*#__PURE__*/_jsx(BrandLogoTicker,{height:\"100%\",id:\"fHFOSKtZe\",layoutId:\"fHFOSKtZe\",style:{width:\"100%\"},variant:\"jV_6hYMac\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1eywjku\",\"data-framer-name\":\"About us\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jjek5n\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fq2ed6\",\"data-framer-name\":\"Content Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11u9ctz\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ug41ug\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-xqg597\",\"data-styles-preset\":\"N93hfsqp6\",children:\"WHO ARE WE?\"})}),className:\"framer-as43a0\",\"data-framer-name\":\"Why We Are Your Best Choice\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"WE MAKE IT Smarter, Faster, Cheaper!\"})}),className:\"framer-ou63h7\",\"data-framer-name\":\"We work in sa a way tha the dashboards provides easy-to-read charts, graphs, and summaries for executives or stakeholders. storytelling, and value propositions, marketing can sway consumer choices.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",children:\"We at AI Vision help companies automate their production workflows by training AI models on video and image data to detect anomalies. When things go wrong in production and logistics, it can quickly become costly \u2013 whether it's due to machine errors or human factors. To prevent downtime and guarantee high product quality, manual inspection is often required. We at AI Vision possess extensive knowledge in Artificiell Intelligens and Computer Vision, enabling us to automate this work and act accordingly.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",children:\"With the latest advancements in AI, we deliver cost savings and increased efficiency. When fewer faulty components need to be replaced, both transportation costs and environmental impact decrease. Simultaneously, the efficiency of the production workflow increases as operators are relieved of their daily tasks. Through a synergy between cameras and AI models trained to detect deviations tailored to the customer's needs, stressful and sometimes monotonous work tasks are eliminated. Work can instead be invested in other crucial aspects of the business. It's a winning strategy for everyone.\"})]}),className:\"framer-tvo2jb\",\"data-framer-name\":\"We work in sa a way tha the dashboards provides easy-to-read charts, graphs, and summaries for executives or stakeholders. storytelling, and value propositions, marketing can sway consumer choices.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X2SB4ffcv\"},implicitPathVariables:undefined},{href:{webPageId:\"X2SB4ffcv\"},implicitPathVariables:undefined},{href:{webPageId:\"X2SB4ffcv\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{y:(componentViewport?.y||0)+0+642.84+80+0+0+0+0+0+422.2},wd1YKFB1x:{y:(componentViewport?.y||0)+0+662.84+60+0+0+0+0+0+422.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+849.84+100+99.9+0+0+0+422.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-288hiu-container\",nodeId:\"IymrHQZO9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{ht2onZ8wU:resolvedLinks1[1]},wd1YKFB1x:{ht2onZ8wU:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",ht2onZ8wU:resolvedLinks1[0],id:\"IymrHQZO9\",layoutId:\"IymrHQZO9\",pheigkZJA:getLocalizedValue(\"v9\",activeLocale)??\"More about us\",variant:\"gxJPFXDiY\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642.84+80+0+534.2),pixelHeight:1621,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px), min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px) * 0.8)`,src:\"https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp\",srcSet:\"https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp 2048w\"}},wd1YKFB1x:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+662.84+60+0+514.2),pixelHeight:1621,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`min(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1280px), 582px)`,src:\"https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp\",srcSet:\"https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp 2048w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+849.84+100+0),pixelHeight:1621,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`min(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1280px) - 10px) / 2, 1px), 582px)`,src:\"https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp\",srcSet:\"https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/8guj7mWidR6iNIYgnpuBGGulzM.webp 2048w\"},className:\"framer-pyoj43\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-19fhgmy\",\"data-border\":true,\"data-framer-name\":\"Industries\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n0umcw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q1vvqb\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1471r7p\",\"data-framer-name\":\"Section Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-xqg597\",\"data-styles-preset\":\"N93hfsqp6\",style:{\"--framer-text-alignment\":\"center\"},children:\"industries we work with\"})}),className:\"framer-zubiz7\",\"data-framer-name\":\"Meet Our team\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-alignment\":\"center\"},children:[\"We automate quality control and inspection, detect production and logistics deviations,\",/*#__PURE__*/_jsx(\"br\",{}),\"and highlight risky incidents.\"]})}),className:\"framer-s1qvs1\",\"data-framer-name\":\"Where each team member understands their role, responsibilities, and how they contribute.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mxaa2k\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"EkBn1Tq8J\",data:Industries,type:\"Collection\"},select:[{collection:\"EkBn1Tq8J\",name:\"pW1qf8Svt\",type:\"Identifier\"},{collection:\"EkBn1Tq8J\",name:\"HaMnDkrnK\",type:\"Identifier\"},{collection:\"EkBn1Tq8J\",name:\"Ujw_Qkswg\",type:\"Identifier\"},{collection:\"EkBn1Tq8J\",name:\"Yd_ZFOEBM\",type:\"Identifier\"},{collection:\"EkBn1Tq8J\",name:\"q3JVJoONw\",type:\"Identifier\"},{collection:\"EkBn1Tq8J\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({HaMnDkrnK:HaMnDkrnKEkBn1Tq8J,id:idEkBn1Tq8J,pW1qf8Svt:pW1qf8SvtEkBn1Tq8J,q3JVJoONw:q3JVJoONwEkBn1Tq8J,Ujw_Qkswg:Ujw_QkswgEkBn1Tq8J,Yd_ZFOEBM:Yd_ZFOEBMEkBn1Tq8J},index)=>{pW1qf8SvtEkBn1Tq8J??=\"\";Ujw_QkswgEkBn1Tq8J??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`EkBn1Tq8J-${idEkBn1Tq8J}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{pW1qf8Svt:pW1qf8SvtEkBn1Tq8J},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{pW1qf8Svt:pW1qf8SvtEkBn1Tq8J},webPageId:\"SGIz7nQOR\"},motionChild:true,nodeId:\"PXi4wRuW0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1t4vho0 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1280px), 1px)`,y:(componentViewport?.y||0)+0+1787.04+80+0+0+268.2+0+0+0},wd1YKFB1x:{height:288,width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1280px), 1px)`,y:(componentViewport?.y||0)+0+1597.04+60+0+0+248.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1280px) - 48px) / 3, 50px), 1px)`,y:(componentViewport?.y||0)+0+1723.84+100+0+0+268.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nxvaj7-container\",nodeId:\"LIOivvUSM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{variant:\"JzyWPBPxl\"},wd1YKFB1x:{variant:\"ul0Txq8hn\"}},children:/*#__PURE__*/_jsx(GenericBox,{BTY1x5BCu:Ujw_QkswgEkBn1Tq8J,height:\"100%\",id:\"LIOivvUSM\",kj05MlXdE:toResponsiveImage(q3JVJoONwEkBn1Tq8J),layoutId:\"LIOivvUSM\",liFRg9rGi:Yd_ZFOEBMEkBn1Tq8J,style:{width:\"100%\"},th0oLkR3V:toResponsiveImage(HaMnDkrnKEkBn1Tq8J),variant:\"NY4mwN9xc\",width:\"100%\"})})})})})})})})},idEkBn1Tq8J);})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CjEWDTIy6\"},implicitPathVariables:undefined},{href:{webPageId:\"CjEWDTIy6\"},implicitPathVariables:undefined},{href:{webPageId:\"CjEWDTIy6\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{y:(componentViewport?.y||0)+0+1787.04+80+0+0+628.2},wd1YKFB1x:{y:(componentViewport?.y||0)+0+1597.04+60+0+0+576.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+1723.84+100+0+0+958.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iuw9d9-container\",nodeId:\"PBYvwKfPr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{ht2onZ8wU:resolvedLinks2[1]},wd1YKFB1x:{ht2onZ8wU:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",ht2onZ8wU:resolvedLinks2[0],id:\"PBYvwKfPr\",layoutId:\"PBYvwKfPr\",pheigkZJA:getLocalizedValue(\"v12\",activeLocale)??\"Learn more\",variant:\"gxJPFXDiY\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-doycib\",\"data-framer-name\":\"How does it work\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j5o3oq\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mrzigh\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-xqg597\",\"data-styles-preset\":\"N93hfsqp6\",style:{\"--framer-text-color\":\"var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, rgb(255, 255, 255))\"},children:[\"HoW DOES\",/*#__PURE__*/_jsx(\"br\",{}),\"IT WORK?\"]})}),className:\"framer-1nu3ybq\",\"data-framer-name\":\"Service Expertise\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-color\":\"var(--token-726ba06d-897d-4915-8a22-97de262ef110, rgb(228, 235, 237))\"},children:\"Our vision systems use standard IP cameras. Artificial Intelligence is the cognitive component of the system, which can analyze and understand visual material from the camera and what it means for your business. Through the use of AI and object detection, the system has the capacity to interpret and assess different situations by learning from examples from your business. We thereby have the ability to solve problematic situations that traditional vision systems cannot handle.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-color\":\"var(--token-726ba06d-897d-4915-8a22-97de262ef110, rgb(228, 235, 237))\"},children:\"AI Vision specializes in applying the latest research to meet concrete business needs. The heart of our expertise lies in Deep Learning, which allows us to adapt our systems to many different purposes. We offer a complete system solution that includes all necessary aspects: web interfaces, statistical reports and hardware integrations, completely tailored to individual needs and wishes.\"})]}),className:\"framer-1v5ppza\",\"data-framer-name\":\"We offer a comprehensive range of plumbing services to meet all of your needs.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ezug9r\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eqwmjy\",\"data-framer-name\":\"Content \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ozyxq7\",\"data-framer-name\":\"Content Left\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-regrzu hidden-e1xdqj hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-19s67ie\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-26y442\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-kiup55\",\"data-styles-preset\":\"HSd6JggN7\",style:{\"--framer-text-color\":\"var(--token-e0348c7c-eed0-4b90-84fb-c1743f633168, rgb(18, 44, 36))\"},children:\"Discover\"})}),className:\"framer-dttuna\",\"data-framer-name\":\"Media Marketing\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-color\":\"var(--token-39a57e87-154f-426a-b131-7ddd10f6870b, rgb(111, 123, 128))\"},children:\"We collaborate with your team to identify operational challenges and uncover high-impact opportunities for AI-driven vision systems.\"})}),className:\"framer-arme8k\",\"data-framer-name\":\"Social media marketing is about building relationships through engagement.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19q08bg hidden-72rtr7 hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-gzy0nk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2srjm6 hidden-72rtr7 hidden-e1xdqj\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-to8uqm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hg18su\",\"data-framer-name\":\"Content \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fckkyb\",\"data-framer-name\":\"Content Left\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jdjxq9 hidden-e1xdqj hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"02\"})}),className:\"framer-1iezcsm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qkn4qs\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-kiup55\",\"data-styles-preset\":\"HSd6JggN7\",style:{\"--framer-text-color\":\"var(--token-e0348c7c-eed0-4b90-84fb-c1743f633168, rgb(18, 44, 36))\"},children:\"Scope\"})}),className:\"framer-ru532b\",\"data-framer-name\":\"Media Marketing\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-color\":\"var(--token-39a57e87-154f-426a-b131-7ddd10f6870b, rgb(111, 123, 128))\"},children:\"We assess feasibility, data readiness, and expected ROI\u2014then define a clear technical and business case for action.\"})}),className:\"framer-124j8h9\",\"data-framer-name\":\"Social media marketing is about building relationships through engagement.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wkw10r hidden-72rtr7 hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-siv8s4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qid3le hidden-72rtr7 hidden-e1xdqj\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-rvuuly\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qo5aii\",\"data-framer-name\":\"Content \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vatqm\",\"data-framer-name\":\"Content Left\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9jox4q hidden-e1xdqj hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"03\"})}),className:\"framer-1dl51l1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jydcvp\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-kiup55\",\"data-styles-preset\":\"HSd6JggN7\",style:{\"--framer-text-color\":\"var(--token-e0348c7c-eed0-4b90-84fb-c1743f633168, rgb(18, 44, 36))\"},children:\"Prototype\"})}),className:\"framer-ymopmf\",\"data-framer-name\":\"Media Marketing\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-color\":\"var(--token-39a57e87-154f-426a-b131-7ddd10f6870b, rgb(111, 123, 128))\"},children:\"We develop a pilot using real production data to demonstrate value, validate model performance, and gather stakeholder feedback.\"})}),className:\"framer-9kwvfk\",\"data-framer-name\":\"Social media marketing is about building relationships through engagement.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-i1xxqz hidden-72rtr7 hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-kqdbl4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-8c3avz hidden-72rtr7 hidden-e1xdqj\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-imqyxb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7hswuy\",\"data-framer-name\":\"Content \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v0j5fl\",\"data-framer-name\":\"Content Left\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-5asks5 hidden-e1xdqj hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"04\"})}),className:\"framer-bqvcan\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h9qyge\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-kiup55\",\"data-styles-preset\":\"HSd6JggN7\",style:{\"--framer-text-color\":\"var(--token-e0348c7c-eed0-4b90-84fb-c1743f633168, rgb(18, 44, 36))\"},children:\"Development\"})}),className:\"framer-1mwje1v\",\"data-framer-name\":\"Media Marketing\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-color\":\"var(--token-39a57e87-154f-426a-b131-7ddd10f6870b, rgb(111, 123, 128))\"},children:\"We design the full solution\u2014tailored computer vision models, hardware setup, and software architecture\u2014to meet your industrial requirements.\"})}),className:\"framer-1hyxnu6\",\"data-framer-name\":\"Social media marketing is about building relationships through engagement.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-5iz7kt hidden-72rtr7 hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-1t0fpf3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ko2vp2 hidden-72rtr7 hidden-e1xdqj\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-ssi46b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-raodfb\",\"data-framer-name\":\"Content \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qpzswt\",\"data-framer-name\":\"Content Left\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dbsr6q hidden-e1xdqj hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"05\"})}),className:\"framer-1xea6gd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-179n6hi\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-kiup55\",\"data-styles-preset\":\"HSd6JggN7\",style:{\"--framer-text-color\":\"var(--token-e0348c7c-eed0-4b90-84fb-c1743f633168, rgb(18, 44, 36))\"},children:\" Deploy & Integrate\"})}),className:\"framer-1b5defr\",\"data-framer-name\":\"Media Marketing\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-color\":\"var(--token-39a57e87-154f-426a-b131-7ddd10f6870b, rgb(111, 123, 128))\"},children:\"We deploy the system and integrate it with your existing production workflows, ensuring robust performance and minimal disruption.\"})}),className:\"framer-z8u2be\",\"data-framer-name\":\"Social media marketing is about building relationships through engagement.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qeoykc hidden-72rtr7 hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-1srgv1n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18z7qb3 hidden-72rtr7 hidden-e1xdqj\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-1d7g5c3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a5wzoe\",\"data-framer-name\":\"Content \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15pfp2n\",\"data-framer-name\":\"Content Left\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-hmk5sq hidden-e1xdqj hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"06\"})}),className:\"framer-whjoq3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4vgzz5\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-kiup55\",\"data-styles-preset\":\"HSd6JggN7\",style:{\"--framer-text-color\":\"var(--token-e0348c7c-eed0-4b90-84fb-c1743f633168, rgb(18, 44, 36))\"},children:\"Support & Improve\"})}),className:\"framer-14inzdb\",\"data-framer-name\":\"Media Marketing\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-color\":\"var(--token-39a57e87-154f-426a-b131-7ddd10f6870b, rgb(111, 123, 128))\"},children:\"We monitor performance, retrain models as needed, and continuously optimize to ensure long-term success and scalability.\"})}),className:\"framer-f6rsot\",\"data-framer-name\":\"Social media marketing is about building relationships through engagement.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-18fbvuv hidden-72rtr7 hidden-135qzly\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-111pcyx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ferdk3 hidden-72rtr7 hidden-e1xdqj\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1w4emni\",\"data-styles-preset\":\"lQizFmxSX\",children:\"01\"})}),className:\"framer-w0fbxs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1z0u17h\",\"data-border\":true,\"data-framer-name\":\"Testimnial Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17atg0m\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d7xh4e\",\"data-framer-name\":\"Content Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bqr6vn\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-xqg597\",\"data-styles-preset\":\"N93hfsqp6\",children:\"WORDs of  Our Clients\"})}),className:\"framer-172wg27\",\"data-framer-name\":\"WORDs of Our Clients\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-color\":\"var(--token-39a57e87-154f-426a-b131-7ddd10f6870b, rgb(86, 88, 89))\"},children:\"Effective marketing strategies attract and nurture potential customers, moving them through the sales funnel and converting them into buyers.\"})}),className:\"framer-1qj7dtu\",\"data-framer-name\":\"Effective marketing strategies attract and nurture potential customers, moving them through the sales funnel and converting them into buyers.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f9cow5\",\"data-framer-name\":\"Testimonal Card Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{width:`max(min(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1280px) - 30px) / 2, 1px), 545px), 1px)`,y:(componentViewport?.y||0)+0+4657.24+0+0+0},wd1YKFB1x:{width:`max(min(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1280px), 545px), 1px)`,y:(componentViewport?.y||0)+0+4127.44+60+0+240.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:`max(min(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1280px) - 10px) / 2, 1px), 545px), 1px)`,y:(componentViewport?.y||0)+0+5004.04+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yma0ec-container\",nodeId:\"XVJDLm_oK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{variant:\"QQq9HrM3Z\"},wd1YKFB1x:{variant:\"oLBfM7R_g\"}},children:/*#__PURE__*/_jsx(TestimonialCardTicker,{height:\"100%\",id:\"XVJDLm_oK\",layoutId:\"XVJDLm_oK\",style:{width:\"100%\"},variant:\"TAhbwrZI6\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-kdsfgs\",\"data-framer-name\":\"Blog Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dyzrzg\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m6ohxt\",\"data-framer-name\":\"Section Content\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-xqg597\",\"data-styles-preset\":\"N93hfsqp6\",style:{\"--framer-text-alignment\":\"center\"},children:\"Recent NEWS\"})}),className:\"framer-1w6kgst\",\"data-framer-name\":\"Recent Blog Updates\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7ls2eb\",\"data-styles-preset\":\"G0RJrDVzU\",style:{\"--framer-text-alignment\":\"center\"},children:\"Be up-to-date with what's going on in AI VISION.\"})}),className:\"framer-14qgu48\",\"data-framer-name\":\"We offer a comprehensive range of plumbing services to meet.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ity2b4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JPo4MKXNV\",data:BlogDetails,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"JPo4MKXNV\",name:\"gKZuWx45_\",type:\"Identifier\"},{collection:\"JPo4MKXNV\",name:\"Ud7IPV_QJ\",type:\"Identifier\"},{collection:\"JPo4MKXNV\",name:\"yjk1QYeO3\",type:\"Identifier\"},{collection:\"JPo4MKXNV\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({gKZuWx45_:gKZuWx45_JPo4MKXNV,id:idJPo4MKXNV,Ud7IPV_QJ:Ud7IPV_QJJPo4MKXNV,yjk1QYeO3:yjk1QYeO3JPo4MKXNV},index1)=>{Ud7IPV_QJJPo4MKXNV??=\"\";yjk1QYeO3JPo4MKXNV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JPo4MKXNV-${idJPo4MKXNV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{yjk1QYeO3:yjk1QYeO3JPo4MKXNV},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{yjk1QYeO3:yjk1QYeO3JPo4MKXNV},webPageId:\"IqvZz81t4\"},implicitPathVariables:undefined},{href:{pathVariables:{yjk1QYeO3:yjk1QYeO3JPo4MKXNV},webPageId:\"IqvZz81t4\"},implicitPathVariables:undefined},{href:{pathVariables:{yjk1QYeO3:yjk1QYeO3JPo4MKXNV},webPageId:\"IqvZz81t4\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1280px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5457.24+80+0+268.2+0+0},wd1YKFB1x:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1280px), 50px)`,y:(componentViewport?.y||0)+0+5287.64+60+0+224.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:290,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1280px) - 30px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5804.04+100+0+288.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1npm7q1-container\",nodeId:\"wO69S3MUi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{E_MvnsdTs:resolvedLinks3[1],variant:\"lsA7hwaWD\"},wd1YKFB1x:{E_MvnsdTs:resolvedLinks3[2],variant:\"lsA7hwaWD\"}},children:/*#__PURE__*/_jsx(BlogCard,{E_MvnsdTs:resolvedLinks3[0],height:\"100%\",id:\"wO69S3MUi\",layoutId:\"wO69S3MUi\",pSHZhP8gF:Ud7IPV_QJJPo4MKXNV,r7IGvuh5v:toResponsiveImage(gKZuWx45_JPo4MKXNV),style:{width:\"100%\"},variant:\"L48LoWaDf\",width:\"100%\"})})})})})})})},idJPo4MKXNV);})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rw8g6i\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"t2CYdVJXy\"},implicitPathVariables:undefined},{href:{webPageId:\"t2CYdVJXy\"},implicitPathVariables:undefined},{href:{webPageId:\"t2CYdVJXy\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{y:(componentViewport?.y||0)+0+6485.44+0},wd1YKFB1x:{y:(componentViewport?.y||0)+0+6231.84+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:496,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+6902.24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4whwqq-container\",nodeId:\"d4sszGOnB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AAKtd9fGu:{variant:\"YSwQBcNmh\",Vl5HVbd1j:resolvedLinks4[1]},wd1YKFB1x:{variant:\"xWcyq1MT_\",Vl5HVbd1j:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"d4sszGOnB\",layoutId:\"d4sszGOnB\",RYqw1mV4Q:getLocalizedValue(\"v3\",activeLocale)??\"Contact us\",style:{width:\"100%\"},variant:\"xM8HdrMx0\",Vl5HVbd1j:resolvedLinks4[0],width:\"100%\",z8nSJWmbi:getLocalizedValue(\"v31\",activeLocale)??\"Let\u2019s work together\",zsSVuzz2J:getLocalizedValue(\"v32\",activeLocale)??\"If computer vision systems have caught your interest, we would be happy to schedule a digital meeting to discuss your needs. Our engineers will be available to answer all of your questions.\"})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lhr67.framer-lux5qc, .framer-lhr67 .framer-lux5qc { display: block; }\",\".framer-lhr67.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, #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-lhr67 .framer-49ggz7 { 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-lhr67 .framer-27ib5g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 242px 30px 305px 30px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-17hhuz7 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 2; }\",\".framer-lhr67 .framer-1rtjvp2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-lhr67 .framer-12y0a3a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-18riw1p { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-h0z1hl, .framer-lhr67 .framer-czxy2s, .framer-lhr67 .framer-as43a0, .framer-lhr67 .framer-ou63h7, .framer-lhr67 .framer-zubiz7, .framer-lhr67 .framer-s1qvs1, .framer-lhr67 .framer-dttuna, .framer-lhr67 .framer-arme8k, .framer-lhr67 .framer-ru532b, .framer-lhr67 .framer-124j8h9, .framer-lhr67 .framer-ymopmf, .framer-lhr67 .framer-9kwvfk, .framer-lhr67 .framer-1mwje1v, .framer-lhr67 .framer-1hyxnu6, .framer-lhr67 .framer-1b5defr, .framer-lhr67 .framer-z8u2be, .framer-lhr67 .framer-14inzdb, .framer-lhr67 .framer-f6rsot, .framer-lhr67 .framer-1qj7dtu, .framer-lhr67 .framer-1w6kgst, .framer-lhr67 .framer-14qgu48 { --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-lhr67 .framer-fklpx4-container, .framer-lhr67 .framer-wqj7kg-container, .framer-lhr67 .framer-288hiu-container, .framer-lhr67 .framer-1iuw9d9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-lhr67 .framer-d9xb2q { align-content: center; align-items: center; bottom: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; left: 50%; max-width: 1280px; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 90%; z-index: 4; }\",\".framer-lhr67 .framer-14thmpu { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 93px; justify-content: flex-end; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1l2ut0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 30px 0px 30px; position: absolute; top: 91%; transform: translate(-50%, -50%); width: 100%; z-index: 1; }\",\".framer-lhr67 .framer-pnz3j1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 142px; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-momlj-container, .framer-lhr67 .framer-1yma0ec-container, .framer-lhr67 .framer-4whwqq-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-lhr67 .framer-1eywjku, .framer-lhr67 .framer-kdsfgs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1jjek5n, .framer-lhr67 .framer-17atg0m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-1fq2ed6 { 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: flex-start; max-width: 542px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-11u9ctz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-ug41ug { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-tvo2jb { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 90%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lhr67 .framer-pyoj43 { aspect-ratio: 0.8635014836795252 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 674px); max-width: 582px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-19fhgmy { --border-bottom-width: 1px; --border-color: var(--token-726ba06d-897d-4915-8a22-97de262ef110, #b5bbbd); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-d20dfdb0-054a-4aff-a7e7-2f66489a0928, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-n0umcw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1q1vvqb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1471r7p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 710px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1mxaa2k { display: grid; flex: none; gap: 30px 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1t4vho0 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-lhr67 .framer-1nxvaj7-container { flex: 1 0 0px; height: auto; min-height: 300px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-doycib { align-content: center; align-items: center; background-color: var(--token-e0348c7c-eed0-4b90-84fb-c1743f633168, #061824); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1j5o3oq, .framer-lhr67 .framer-1dyzrzg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-1mrzigh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1nu3ybq { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 292px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-lhr67 .framer-1v5ppza { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-lhr67 .framer-ezug9r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1eqwmjy, .framer-lhr67 .framer-hg18su, .framer-lhr67 .framer-qo5aii, .framer-lhr67 .framer-7hswuy, .framer-lhr67 .framer-raodfb, .framer-lhr67 .framer-a5wzoe { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-ozyxq7, .framer-lhr67 .framer-fckkyb, .framer-lhr67 .framer-vatqm, .framer-lhr67 .framer-1v0j5fl, .framer-lhr67 .framer-1qpzswt, .framer-lhr67 .framer-15pfp2n { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-regrzu, .framer-lhr67 .framer-19q08bg, .framer-lhr67 .framer-2srjm6, .framer-lhr67 .framer-jdjxq9, .framer-lhr67 .framer-1wkw10r, .framer-lhr67 .framer-qid3le, .framer-lhr67 .framer-9jox4q, .framer-lhr67 .framer-i1xxqz, .framer-lhr67 .framer-8c3avz, .framer-lhr67 .framer-5asks5, .framer-lhr67 .framer-5iz7kt, .framer-lhr67 .framer-ko2vp2, .framer-lhr67 .framer-1dbsr6q, .framer-lhr67 .framer-1qeoykc, .framer-lhr67 .framer-18z7qb3, .framer-lhr67 .framer-hmk5sq, .framer-lhr67 .framer-18fbvuv, .framer-lhr67 .framer-1ferdk3 { align-content: center; align-items: center; background-color: var(--token-d80bf188-57e8-4b0c-b4b4-84bb9c218671, #d3ff55); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 58px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 58px; }\",\".framer-lhr67 .framer-19s67ie, .framer-lhr67 .framer-1iezcsm, .framer-lhr67 .framer-1dl51l1, .framer-lhr67 .framer-bqvcan, .framer-lhr67 .framer-1xea6gd, .framer-lhr67 .framer-whjoq3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lhr67 .framer-26y442, .framer-lhr67 .framer-qkn4qs, .framer-lhr67 .framer-1jydcvp, .framer-lhr67 .framer-h9qyge, .framer-lhr67 .framer-179n6hi, .framer-lhr67 .framer-4vgzz5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-gzy0nk, .framer-lhr67 .framer-to8uqm, .framer-lhr67 .framer-siv8s4, .framer-lhr67 .framer-rvuuly, .framer-lhr67 .framer-kqdbl4, .framer-lhr67 .framer-imqyxb, .framer-lhr67 .framer-1t0fpf3, .framer-lhr67 .framer-ssi46b, .framer-lhr67 .framer-1srgv1n, .framer-lhr67 .framer-1d7g5c3, .framer-lhr67 .framer-111pcyx, .framer-lhr67 .framer-w0fbxs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lhr67 .framer-1z0u17h { --border-bottom-width: 1px; --border-color: var(--token-726ba06d-897d-4915-8a22-97de262ef110, #b5bbbd); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-d7xh4e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 81px; height: min-content; justify-content: flex-start; max-width: 484px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-1bqr6vn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-172wg27 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 370px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lhr67 .framer-f9cow5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 545px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-lhr67 .framer-m6ohxt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 660px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-ity2b4 { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1npm7q1-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-lhr67 .framer-1rw8g6i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-lhr67[data-border=\"true\"]::after, .framer-lhr67 [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-lhr67.framer-72rtr7 { width: 810px; } .framer-lhr67 .framer-27ib5g { padding: 140px 30px 200px 30px; } .framer-lhr67 .framer-d9xb2q { bottom: 20px; left: unset; right: 40px; transform: unset; width: min-content; } .framer-lhr67 .framer-pnz3j1 { height: 90px; } .framer-lhr67 .framer-1eywjku { padding: 80px 0px 80px 0px; } .framer-lhr67 .framer-1jjek5n { flex-direction: column; gap: 60px; justify-content: center; } .framer-lhr67 .framer-1fq2ed6 { flex: none; max-width: 80%; width: 100%; } .framer-lhr67 .framer-11u9ctz { width: 95%; } .framer-lhr67 .framer-tvo2jb { max-width: 100%; } .framer-lhr67 .framer-pyoj43 { aspect-ratio: unset; flex: none; height: 450px; max-width: 80%; width: 100%; } .framer-lhr67 .framer-19fhgmy, .framer-lhr67 .framer-doycib, .framer-lhr67 .framer-kdsfgs { padding: 80px 30px 80px 30px; } .framer-lhr67 .framer-1q1vvqb, .framer-lhr67 .framer-1dyzrzg { gap: 60px; } .framer-lhr67 .framer-1mxaa2k { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-lhr67 .framer-1t4vho0 { align-self: unset; } .framer-lhr67 .framer-1eqwmjy, .framer-lhr67 .framer-hg18su, .framer-lhr67 .framer-qo5aii, .framer-lhr67 .framer-7hswuy, .framer-lhr67 .framer-raodfb, .framer-lhr67 .framer-a5wzoe { gap: 20px; justify-content: center; } .framer-lhr67 .framer-26y442, .framer-lhr67 .framer-qkn4qs, .framer-lhr67 .framer-1jydcvp, .framer-lhr67 .framer-h9qyge, .framer-lhr67 .framer-179n6hi, .framer-lhr67 .framer-4vgzz5 { order: 2; } .framer-lhr67 .framer-19q08bg, .framer-lhr67 .framer-1wkw10r, .framer-lhr67 .framer-i1xxqz, .framer-lhr67 .framer-5iz7kt, .framer-lhr67 .framer-1qeoykc, .framer-lhr67 .framer-18fbvuv { order: 1; } .framer-lhr67 .framer-gzy0nk, .framer-lhr67 .framer-siv8s4, .framer-lhr67 .framer-kqdbl4, .framer-lhr67 .framer-1t0fpf3, .framer-lhr67 .framer-1srgv1n, .framer-lhr67 .framer-111pcyx { order: 0; } .framer-lhr67 .framer-17atg0m { gap: 30px; justify-content: center; } .framer-lhr67 .framer-d7xh4e { gap: 70px; max-width: 320px; } .framer-lhr67 .framer-ity2b4 { gap: 20px; }}\",\"@media (max-width: 809px) { .framer-lhr67.framer-72rtr7 { width: 390px; } .framer-lhr67 .framer-27ib5g { gap: 40px; padding: 150px 20px 150px 20px; } .framer-lhr67 .framer-d9xb2q { bottom: 40px; left: unset; right: 20px; transform: unset; width: min-content; } .framer-lhr67 .framer-14thmpu { order: 0; } .framer-lhr67 .framer-1l2ut0y { left: unset; padding: 0px; position: relative; top: unset; transform: unset; } .framer-lhr67 .framer-pnz3j1 { height: 60px; } .framer-lhr67 .framer-1eywjku, .framer-lhr67 .framer-19fhgmy, .framer-lhr67 .framer-doycib, .framer-lhr67 .framer-1z0u17h, .framer-lhr67 .framer-kdsfgs { padding: 60px 20px 60px 20px; } .framer-lhr67 .framer-1jjek5n, .framer-lhr67 .framer-17atg0m { flex-direction: column; gap: 40px; justify-content: center; } .framer-lhr67 .framer-1fq2ed6 { flex: none; gap: 30px; width: 100%; } .framer-lhr67 .framer-pyoj43 { aspect-ratio: unset; flex: none; height: 300px; width: 100%; } .framer-lhr67 .framer-n0umcw, .framer-lhr67 .framer-1q1vvqb { gap: 40px; } .framer-lhr67 .framer-1mxaa2k { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; } .framer-lhr67 .framer-1t4vho0 { align-self: unset; } .framer-lhr67 .framer-1nxvaj7-container { min-height: 200px; } .framer-lhr67 .framer-1mrzigh { flex-direction: column; gap: 12px; justify-content: center; } .framer-lhr67 .framer-1nu3ybq, .framer-lhr67 .framer-ozyxq7, .framer-lhr67 .framer-fckkyb, .framer-lhr67 .framer-vatqm, .framer-lhr67 .framer-1v0j5fl, .framer-lhr67 .framer-1qpzswt, .framer-lhr67 .framer-15pfp2n, .framer-lhr67 .framer-f9cow5 { flex: none; width: 100%; } .framer-lhr67 .framer-1v5ppza { flex: none; max-width: unset; width: 100%; } .framer-lhr67 .framer-1eqwmjy, .framer-lhr67 .framer-hg18su, .framer-lhr67 .framer-qo5aii, .framer-lhr67 .framer-7hswuy, .framer-lhr67 .framer-raodfb, .framer-lhr67 .framer-a5wzoe { flex-direction: column; gap: 20px; justify-content: center; padding: 16px; } .framer-lhr67 .framer-26y442, .framer-lhr67 .framer-qkn4qs, .framer-lhr67 .framer-1jydcvp, .framer-lhr67 .framer-h9qyge, .framer-lhr67 .framer-179n6hi, .framer-lhr67 .framer-4vgzz5 { max-width: 280px; order: 2; } .framer-lhr67 .framer-2srjm6, .framer-lhr67 .framer-qid3le, .framer-lhr67 .framer-8c3avz, .framer-lhr67 .framer-ko2vp2, .framer-lhr67 .framer-18z7qb3, .framer-lhr67 .framer-1ferdk3 { order: 1; } .framer-lhr67 .framer-d7xh4e { flex: none; gap: 24px; width: 100%; } .framer-lhr67 .framer-1bqr6vn, .framer-lhr67 .framer-m6ohxt { gap: 12px; } .framer-lhr67 .framer-172wg27 { max-width: 250px; } .framer-lhr67 .framer-1dyzrzg { gap: 24px; } .framer-lhr67 .framer-ity2b4 { gap: 20px; grid-template-columns: repeat(1, minmax(50px, 1fr)); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6905\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AAKtd9fGu\":{\"layout\":[\"fixed\",\"auto\"]},\"wd1YKFB1x\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"vl73SJ7Di\":{\"pattern\":\":vl73SJ7Di\",\"name\":\"header\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-lhr67\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6905,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonFonts,...CliectReviewCounterFonts,...BrandLogoTickerFonts,...GenericBoxFonts,...TestimonialCardTickerFonts,...BlogCardFonts,...CTAFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"6905\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AAKtd9fGu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wd1YKFB1x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"vl73SJ7Di\\\":{\\\"pattern\\\":\\\":vl73SJ7Di\\\",\\\"name\\\":\\\"header\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["AnimatedCounter", "props", "from", "to", "duration", "decimalPlaces", "decimalSeparator", "fontFamily", "fontWeight", "fontSize", "lineHeight", "letterSpacing", "textAlign", "color", "playOnLoad", "once", "animationType", "ref", "pe", "isCanvas", "RenderTarget", "ariaLabel", "isInView", "useInView", "hasAnimated", "setHasAnimated", "ye", "displayValue", "setDisplayValue", "formatNumber", "value", "ue", "animationControl", "animate", "latest", "p", "motion", "addPropertyControls", "ControlType", "AnimatedCounterFonts", "getFonts", "AnimatedCounter", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "suffix", "text", "to", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "uoxCH45ky", "qyU0FNyk4", "MZEQ4ooJp", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerjQ8mig0qG", "withCSS", "jQ8mig0qG_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "ButtonFonts", "getFonts", "oYWOa5fS4_default", "CliectReviewCounterFonts", "jQ8mig0qG_default", "BrandLogoTickerFonts", "nCwzca9f_default", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "GenericBoxFonts", "qyFuLZHIh_default", "RichTextWithFX", "RichText2", "TestimonialCardTickerFonts", "VhhU0OBlR_default", "BlogCardFonts", "cEqMFCHLj_default", "CTAFonts", "bzpNGQwE7_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition3", "HTMLStyle", "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", "pW1qf8SvtEkBn1Tq8J", "HaMnDkrnKEkBn1Tq8J", "Ujw_QkswgEkBn1Tq8J", "Yd_ZFOEBMEkBn1Tq8J", "q3JVJoONwEkBn1Tq8J", "idEkBn1Tq8J", "gKZuWx45_JPo4MKXNV", "Ud7IPV_QJJPo4MKXNV", "yjk1QYeO3JPo4MKXNV", "idJPo4MKXNV", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "getLocalizedValue", "getLoadingLazyAtYPosition", "x", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "resolvedLinks1", "ChildrenCanSuspend", "Rj2pEQ_kV_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "resolvedLinks2", "X8_LW6C_Z_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks3", "resolvedLinks4", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
