{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@emotion/hash@0.8.0/dist/hash.browser.esm.js", "ssg:https://framerusercontent.com/modules/dZ9c6z10n71dmz3JQVi4/0dSuyhnHD9HrUa3w2XFr/Arc.js", "ssg:https://framerusercontent.com/modules/vbaJXlyVEeIvuEevvudG/FFzmSCr65SYC2698Eaml/UnicornStudioEmbed.js", "ssg:https://framerusercontent.com/modules/8DOHZH4A7WkEuGie1wS7/bmMMQKwYZFvm8g33CCAs/AbyqlCEWS.js", "ssg:https://framerusercontent.com/modules/2XsqqfZgUgS8lKHKRcR6/j5UYt57XKuPnNfj19HZG/bekDgL8Xx.js", "ssg:https://framerusercontent.com/modules/uk6rq7W3rTjUbRxJj6zr/aAc1IJ9CzQurjJ29WrJL/cJbLSeeht.js", "ssg:https://framerusercontent.com/modules/eksgdKSkhMAa8AJ9w6HW/REU3GqqsOO7oJIov7PQp/EZCerEe_R.js", "ssg:https://framerusercontent.com/modules/JcV9WO0P77boaZJYPjoe/M4rSbu2nyBNb1lsl3xGu/gmoP0c19Q.js", "ssg:https://framerusercontent.com/modules/nALWQXYtG9ZncseyGNjx/jfPZQf5XrMTLiEWgVasV/NZ8TpQAr6.js", "ssg:https://framerusercontent.com/modules/ht3YyusYF7GczGaFWmwT/iTyVHZGkIV4pFs2xGjoO/pgbg7gFC2.js", "ssg:https://framerusercontent.com/modules/lNRdxOUJkrBMQjIfkGA1/XS26QdaVmH1OpOH1h5tP/rxxcIrSeC.js", "ssg:https://framerusercontent.com/modules/r1C2vakZ0w2J1KKsMuxA/dtDwWBGcQVWQkMhl3h7w/SYMJ_npgv.js", "ssg:https://framerusercontent.com/modules/OaorDDVrV0Zrq1Z0BPej/geIrC1XTPcyonwHR2FsK/ZkTrS_b_g.js", "ssg:https://framerusercontent.com/modules/TlyepU8Lr3tBz9LqWNP9/TvPtplgZQPEJb2E2iEyZ/K7Hq8WtC6.js"],
  "sourcesContent": ["function murmur2(r){var t=0;var a,e=0,c=r.length;for(;c>=4;++e,c-=4){a=255&r.charCodeAt(e)|(255&r.charCodeAt(++e))<<8|(255&r.charCodeAt(++e))<<16|(255&r.charCodeAt(++e))<<24;a=1540483477*(65535&a)+(59797*(a>>>16)<<16);a^=a>>>24;t=1540483477*(65535&a)+(59797*(a>>>16)<<16)^1540483477*(65535&t)+(59797*(t>>>16)<<16)}switch(c){case 3:t^=(255&r.charCodeAt(e+2))<<16;case 2:t^=(255&r.charCodeAt(e+1))<<8;case 1:t^=255&r.charCodeAt(e);t=1540483477*(65535&t)+(59797*(t>>>16)<<16)}t^=t>>>13;t=1540483477*(65535&t)+(59797*(t>>>16)<<16);return((t^t>>>15)>>>0).toString(36)}export{murmur2 as default};\n\n//# sourceMappingURL=hash.browser.esm.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import hash from\"@emotion/hash\";function getAlignmentIcon(alignmentBaseline){switch(alignmentBaseline){case\"top\":return\"Text Top\";case\"center\":return\"Central\";case\"bottom\":return\"Hanging\";}}/**\n * ARC TEXT FOR INSERT\n * By Adam and Benjamin\n *\n * @framerIntrinsicWidth 150\n * @framerIntrinsicHeight 150\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */const Arc=withCSS(function Arc(props){// Checks\nconst isCanvas=RenderTarget.current()===RenderTarget.canvas;// For Ellipse\nconst isEllipse=!props.type;const cylinder=isEllipse?props.cylinderHeight/2:0;// Base arc path\nconst path=createPath(props.flip,cylinder);// Unique IDs to avoid multiple instances on the canvas sharing a single path\nconst id=`curve-${hash(path)}`;// Alignment icon conversion\nconst alignmentValue=getAlignmentIcon(props.alignmentBaseline);return /*#__PURE__*/_jsxs(\"svg\",{className:\"transform-origin-center-center\",style:{width:\"100%\",height:\"100%\",transformOrigin:\"center\"},viewBox:`0 0 100 100`,overflow:\"visible\",children:[/*#__PURE__*/_jsx(\"path\",{id:id,d:path,strokeWidth:\"none\",fill:\"transparent\"}),/*#__PURE__*/_jsx(\"text\",{children:/*#__PURE__*/_jsx(\"textPath\",{href:`#${id}`,startOffset:props.startOffset,dominantBaseline:alignmentValue,style:{letterSpacing:props.font.letterSpacing?props.font.letterSpacing:1.85,...props.font,fill:props.color},children:props.text})})]});},// Work around a bug with framer-motion that calculates a px origin when animating SVG elements.\n[\".transform-origin-center-center { transform-origin: center center !important; }\"]);export default Arc;Arc.defaultProps={height:50,width:50};addPropertyControls(Arc,{text:{title:\"Content\",type:ControlType.String,defaultValue:\"DESIGN SITES LIKE A PRO WITH FRAMER\",displayTextArea:true},type:{title:\"Type\",type:ControlType.Boolean,enabledTitle:\"Circle\",disabledTitle:\"Ellipse\",defaultValue:true},cylinderHeight:{title:\"Height\",type:ControlType.Number,min:0,max:1e3,displayStepper:true,hidden:props=>props.type},alignmentBaseline:{title:\"Align\",type:ControlType.Enum,options:[\"top\",\"center\",\"bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:\"bottom\",displaySegmentedControl:true},flip:{type:ControlType.Boolean,defaultValue:false,title:\"Direction\",enabledTitle:\"CW\",disabledTitle:\"CCW\"},startOffset:{title:\"Offset\",type:ControlType.Number,defaultValue:0,max:360,unit:\"\\xb0\",step:.5},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",displayTextAlignment:false},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#999\"}});/* Path creation method */const createPath=(flip,cylinder)=>{const cylinderTop=50-cylinder;const cylinderBottom=50+cylinder;return!flip?`M 0 50 L 0 ${cylinderTop} A 1 1 0 0 1 100 ${cylinderTop} L 100 50 L 100 ${cylinderBottom} A 1 1 0 0 1 0 ${cylinderBottom} L 0 ${cylinderTop}`:`M 0 50 L 0 ${cylinderBottom} A 1 1 0 1 0 100 ${cylinderBottom} L 100 ${cylinderTop} A 1 1 0 1 0 0 ${cylinderTop} L 0 50`;};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Arc\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"150\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"150\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Arc.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 800\n */export default function UnicornStudioEmbed(props){const elementRef=useRef(null);const sceneRef=useRef(null);const scriptId=useRef(`unicorn-project-${Math.random().toString(36).substr(2,9)}`);useEffect(()=>{const isEditingOrPreviewing=[\"CANVAS\",\"PREVIEW\"].includes(RenderTarget.current());if(RenderTarget.current()===\"CANVAS\"){return;}const initializeScript=callback=>{const existingScript=document.querySelector('script[src^=\"https://cdn.unicorn.studio\"]');if(!existingScript){const script=document.createElement(\"script\");script.src=\"https://cdn.unicorn.studio/v1.4.1/unicornStudio.umd.js\";script.onload=callback;document.head.appendChild(script);}else{callback();}};const initializeUnicornStudio=()=>{if(props.projectJSON){try{// Create script element for JSON data\nconst dataScript=document.createElement(\"script\");dataScript.id=scriptId.current;dataScript.type=\"application/json\";dataScript.textContent=props.projectJSON;document.head.appendChild(dataScript);elementRef.current.setAttribute(\"data-us-project-src\",`${scriptId.current}`);}catch(e){console.error(\"Failed to parse project JSON:\",e);return;}}else if(props.projectId){const query=props.projectId.split(\"?\");const projectId=query[0];const production=query[1]&&query[1].includes(\"production\");const cacheBuster=isEditingOrPreviewing?\"?update=\"+Math.random():\"\";elementRef.current.setAttribute(\"data-us-project\",projectId+cacheBuster);if(production){elementRef.current.setAttribute(\"data-us-production\",1);}}if(window.UnicornStudio){const existingScene=window.UnicornStudio.scenes?.find(scene=>scene.element===elementRef.current||scene.element.contains(elementRef.current));if(existingScene){existingScene.destroy();}else{window.UnicornStudio.destroy();}window.UnicornStudio.init().then(scenes=>{const ourScene=scenes.find(scene=>scene.element===elementRef.current||scene.element.contains(elementRef.current));if(ourScene){sceneRef.current=ourScene;}});}};if(props.projectId||props.projectJSON){if(window.UnicornStudio){initializeUnicornStudio();}else{initializeScript(initializeUnicornStudio);}}return()=>{if(sceneRef.current){sceneRef.current.destroy();sceneRef.current=null;}// Clean up JSON script if it exists\nconst dataScript=document.getElementById(scriptId.current);if(dataScript){dataScript.remove();}};},[props.projectId,props.projectJSON]);if(RenderTarget.current()===\"CANVAS\"){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\",height:\"100%\",backgroundColor:\"rgba(0, 0, 0, 0.15)\",color:\"#4B5563\",fontWeight:500,textAlign:\"center\",padding:\"16px\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"1.25rem\",marginBottom:\"12px\"},children:\"Scene will render in Preview and on your published site.\"}),!props.projectId&&!props.projectJSON?/*#__PURE__*/_jsx(\"p\",{style:{fontSize:\"1rem\",color:\"#EF4444\"},children:\"No project ID, please export your scene and add its project ID in the detail panel.\"}):\" \"]});}return /*#__PURE__*/_jsx(\"div\",{ref:elementRef,\"data-us-dpi\":props.dpi,\"data-us-scale\":props.scale,\"data-us-fps\":props.fps,\"data-us-altText\":props.altText,\"data-us-ariaLabel\":props.ariaLabel,\"data-us-lazyload\":props.lazyLoad?\"true\":\"\",style:{width:\"100%\",height:\"100%\",...props.style},children:props.header&&/*#__PURE__*/_jsx(\"h1\",{style:{width:\"1px\",height:\"1px\",margin:\"-1px\",padding:\"0\",overflow:\"hidden\",clip:\"rect(0, 0, 0, 0)\",border:\"0\"},children:props.header})});}UnicornStudioEmbed.displayName=\"Unicorn Studio Embed\";addPropertyControls(UnicornStudioEmbed,{projectId:{type:ControlType.String,title:\"Project ID\"},projectJSON:{type:ControlType.String,title:\"Project JSON\"},scale:{type:ControlType.Number,title:\"Scale\",defaultValue:1,min:.25,max:1,step:.01},dpi:{type:ControlType.Number,title:\"DPI\",defaultValue:1.5,min:.5,max:2,step:.1},fps:{type:ControlType.Number,title:\"FPS\",defaultValue:60,min:10,max:120,step:5},header:{type:ControlType.String,title:\"H1 text\"},altText:{type:ControlType.String,title:\"Alt text\"},ariaLabel:{type:ControlType.String,title:\"Aria label\"},lazyLoad:{type:ControlType.Boolean,title:\"Lazy Load\",defaultValue:false}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"UnicornStudioEmbed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"800\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UnicornStudioEmbed.map", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"EQNB1eTqT\",\"HLv5wjpNd\"];const serializationHash=\"framer-sMzhI\";const variantClassNames={EQNB1eTqT:\"framer-v-165krth\",HLv5wjpNd:\"framer-v-1s1rffz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Thick:\"EQNB1eTqT\",Thin:\"HLv5wjpNd\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"EQNB1eTqT\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EQNB1eTqT\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-165krth\",className,classNames),\"data-framer-name\":\"Thick\",layoutDependency:layoutDependency,layoutId:\"EQNB1eTqT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},tabIndex:-1,...addPropertyOverrides({HLv5wjpNd:{\"data-framer-name\":\"Thin\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-izzfoj\",layoutDependency:layoutDependency,layoutId:\"oByMA4xaK\",style:{backgroundColor:\"var(--token-6555779b-6d9a-4514-84e6-845325a32d37, rgb(0, 0, 0))\"},variants:{HLv5wjpNd:{backgroundColor:\"var(--token-1e4de996-fe4b-4667-88fc-284e9577f815, rgba(0, 0, 0, 0.08))\"}}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sMzhI.framer-cdliv, .framer-sMzhI .framer-cdliv { display: block; }\",\".framer-sMzhI.framer-165krth { height: 1px; overflow: hidden; position: relative; width: 1040px; }\",\".framer-sMzhI .framer-izzfoj { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1\n * @framerIntrinsicWidth 1040\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HLv5wjpNd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAbyqlCEWS=withCSS(Component,css,\"framer-sMzhI\");export default FramerAbyqlCEWS;FramerAbyqlCEWS.displayName=\"Component / Divider\";FramerAbyqlCEWS.defaultProps={height:1,width:1040};addPropertyControls(FramerAbyqlCEWS,{variant:{options:[\"EQNB1eTqT\",\"HLv5wjpNd\"],optionTitles:[\"Thick\",\"Thin\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAbyqlCEWS,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAbyqlCEWS\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HLv5wjpNd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1040\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AbyqlCEWS.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Jle1y8BFYrExBaw7YLZB/gSwRypVqKuZBiUg72GM2/nJ8oO2AZU.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZonMULLfMDGUYTSEpqZY/QQX9BB0zuTjW1uhy9gua/tQnFuf07h.js\";const RichTextWithFX=withFX(RichText);const enabledGestures={Ncewg1GQh:{hover:true}};const serializationHash=\"framer-KttUJ\";const variantClassNames={Ncewg1GQh:\"framer-v-1p9nps1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.5,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={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,transformPerspective:1200,transition:transition2,x:0,y:10};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:10};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Ncewg1GQh\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-1p9nps1\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Ncewg1GQh\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\",...style},...addPropertyOverrides({\"Ncewg1GQh-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qmyiq8\",layoutDependency:layoutDependency,layoutId:\"UwIUyKJoU\",style:{backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"},variants:{\"Ncewg1GQh-hover\":{backgroundColor:\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u4omt0\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"N0LGTkPJZ\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255)))\"},children:\"Custom Integrations\"})}),className:\"framer-12bp8d2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B1ciwoTOR\",style:{\"--extracted-1lwpl3i\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},variants:{\"Ncewg1GQh-hover\":{\"--extracted-1lwpl3i\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Ncewg1GQh-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Custom Integrations\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-181jp9u\",\"data-framer-name\":\"Frame 37\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"InYAvtbrf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 166\"><path d=\"M 0.369 83 C 0.369 37.364 37.364 0.369 83 0.369 C 128.636 0.369 165.631 37.364 165.631 83 C 165.631 128.636 128.636 165.631 83 165.631 C 37.364 165.631 0.369 128.636 0.369 83 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 0 82.262 L 165.262 82.262\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 11.804 125.053 L 154.196 125.053\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 11.804 40.209 L 154.196 40.209\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path></svg>',svgContentId:9110467856,withExternalLayout:true,...addPropertyOverrides({\"Ncewg1GQh-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 166\"><path d=\"M 0.369 83 C 0.369 37.364 37.364 0.369 83 0.369 C 128.636 0.369 165.631 37.364 165.631 83 C 165.631 128.636 128.636 165.631 83 165.631 C 37.364 165.631 0.369 128.636 0.369 83 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 0 82.262 L 165.262 82.262\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 11.804 125.053 L 154.196 125.053\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 11.804 40.209 L 154.196 40.209\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path></svg>',svgContentId:10597340135}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255)))\"},children:\"Modernise legacy systems and integrate cutting-edge technology into existing infrastructure for seamless automation and scalability.\"})}),className:\"framer-73ynjf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qtJtN6iy5\",style:{\"--extracted-r6o4lv\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\",transformPerspective:1200},variants:{\"Ncewg1GQh-hover\":{\"--extracted-r6o4lv\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Ncewg1GQh-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Modernise legacy systems and integrate cutting-edge technology into existing infrastructure for seamless automation and scalability.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KttUJ.framer-lulqbn, .framer-KttUJ .framer-lulqbn { display: block; }\",\".framer-KttUJ.framer-1p9nps1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 28px; position: relative; width: 358px; }\",\".framer-KttUJ .framer-qmyiq8 { bottom: -7px; flex: none; height: 5px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 0; }\",\".framer-KttUJ .framer-1u4omt0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1800px; padding: 0px; position: relative; width: 100%; }\",\".framer-KttUJ .framer-12bp8d2, .framer-KttUJ .framer-73ynjf { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KttUJ .framer-181jp9u { flex: none; height: 166px; position: relative; width: 166px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KttUJ.framer-1p9nps1, .framer-KttUJ .framer-1u4omt0 { gap: 0px; } .framer-KttUJ.framer-1p9nps1 > *, .framer-KttUJ .framer-1u4omt0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-KttUJ.framer-1p9nps1 > :first-child, .framer-KttUJ .framer-1u4omt0 > :first-child { margin-top: 0px; } .framer-KttUJ.framer-1p9nps1 > :last-child, .framer-KttUJ .framer-1u4omt0 > :last-child { margin-bottom: 0px; } }\",\".framer-KttUJ.framer-v-1p9nps1.hover .framer-qmyiq8 { height: 104%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-KttUJ[data-border=\"true\"]::after, .framer-KttUJ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 358\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QRFWILZ2E\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbekDgL8Xx=withCSS(Component,css,\"framer-KttUJ\");export default FramerbekDgL8Xx;FramerbekDgL8Xx.displayName=\"Card6\";FramerbekDgL8Xx.defaultProps={height:400,width:358};addFonts(FramerbekDgL8Xx,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbekDgL8Xx\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"358\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QRFWILZ2E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bekDgL8Xx.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Jle1y8BFYrExBaw7YLZB/gSwRypVqKuZBiUg72GM2/nJ8oO2AZU.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZonMULLfMDGUYTSEpqZY/QQX9BB0zuTjW1uhy9gua/tQnFuf07h.js\";const RichTextWithFX=withFX(RichText);const enabledGestures={mU3sdtDMY:{hover:true}};const serializationHash=\"framer-J6D7M\";const variantClassNames={mU3sdtDMY:\"framer-v-z4n0hc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.5,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={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,transformPerspective:1200,transition:transition2,x:0,y:10};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:10};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"mU3sdtDMY\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-z4n0hc\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mU3sdtDMY\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-ea43085b-5643-474c-96c5-b28c391ece07, rgb(68, 68, 68))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\",...style},variants:{\"mU3sdtDMY-hover\":{\"--border-color\":\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\",backgroundColor:\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\"}},...addPropertyOverrides({\"mU3sdtDMY-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1igu082\",layoutDependency:layoutDependency,layoutId:\"unbWWzjj_\",style:{backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"},variants:{\"mU3sdtDMY-hover\":{backgroundColor:\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18qocf6\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"dZD3GKx0P\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255)))\"},children:\"AI & Machine Learning\"})}),className:\"framer-1q89w98\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MV0pV6D5Y\",style:{\"--extracted-1lwpl3i\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},variants:{\"mU3sdtDMY-hover\":{\"--extracted-1lwpl3i\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"mU3sdtDMY-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"AI & Machine Learning\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ft46qk\",\"data-framer-name\":\"Frame 35\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"n5OkfwRb1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 166\"><path d=\"M 0.369 165.631 L 0.369 0.369 L 165.631 0.369 L 165.631 165.631 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(222,222,222)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 41.684 82.631 C 41.684 60.017 60.017 41.684 82.631 41.684 C 105.245 41.684 123.578 60.017 123.578 82.631 C 123.578 105.245 105.245 123.578 82.631 123.578 C 60.017 123.578 41.684 105.245 41.684 82.631 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 83 0.738 L 83 165.262\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path></svg>',svgContentId:11069348596,withExternalLayout:true,...addPropertyOverrides({\"mU3sdtDMY-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 166\"><path d=\"M 0.369 165.631 L 0.369 0.369 L 165.631 0.369 L 165.631 165.631 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 41.684 82.631 C 41.684 60.017 60.017 41.684 82.631 41.684 C 105.245 41.684 123.578 60.017 123.578 82.631 C 123.578 105.245 105.245 123.578 82.631 123.578 C 60.017 123.578 41.684 105.245 41.684 82.631 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 83 0.738 L 83 165.262\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path></svg>',svgContentId:10146837809}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Build AI-powered solutions for real-time data processing, predictive analytics, and intelligent automation, driving smarter decision-making.\"})}),className:\"framer-u6zml5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"h90tWfqR8\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",transformPerspective:1200},variants:{\"mU3sdtDMY-hover\":{\"--extracted-r6o4lv\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"mU3sdtDMY-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Build AI-powered solutions for real-time data processing, predictive analytics, and intelligent automation, driving smarter decision-making.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-J6D7M.framer-2yymg8, .framer-J6D7M .framer-2yymg8 { display: block; }\",\".framer-J6D7M.framer-z4n0hc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 28px; position: relative; width: 358px; }\",\".framer-J6D7M .framer-1igu082 { bottom: -7px; flex: none; height: 5px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 0; }\",\".framer-J6D7M .framer-18qocf6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1800px; padding: 0px; position: relative; width: 100%; }\",\".framer-J6D7M .framer-1q89w98, .framer-J6D7M .framer-u6zml5 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J6D7M .framer-ft46qk { flex: none; height: 166px; position: relative; width: 166px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J6D7M.framer-z4n0hc, .framer-J6D7M .framer-18qocf6 { gap: 0px; } .framer-J6D7M.framer-z4n0hc > *, .framer-J6D7M .framer-18qocf6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-J6D7M.framer-z4n0hc > :first-child, .framer-J6D7M .framer-18qocf6 > :first-child { margin-top: 0px; } .framer-J6D7M.framer-z4n0hc > :last-child, .framer-J6D7M .framer-18qocf6 > :last-child { margin-bottom: 0px; } }\",\".framer-J6D7M.framer-v-z4n0hc.hover .framer-1igu082 { height: 104%; order: 0; }\",\".framer-J6D7M.framer-v-z4n0hc.hover .framer-18qocf6 { order: 1; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-J6D7M[data-border=\"true\"]::after, .framer-J6D7M [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 382\n * @framerIntrinsicWidth 358\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RY3GA8Rft\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercJbLSeeht=withCSS(Component,css,\"framer-J6D7M\");export default FramercJbLSeeht;FramercJbLSeeht.displayName=\"Card2\";FramercJbLSeeht.defaultProps={height:382,width:358};addFonts(FramercJbLSeeht,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercJbLSeeht\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"382\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RY3GA8Rft\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"358\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cJbLSeeht.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={HdZ1P2nS4:{hover:true},TgwcHobcz:{hover:true}};const cycleOrder=[\"TgwcHobcz\",\"HdZ1P2nS4\"];const serializationHash=\"framer-pfjMR\";const variantClassNames={HdZ1P2nS4:\"framer-v-fumj7n\",TgwcHobcz:\"framer-v-5uuto\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Black:\"HdZ1P2nS4\",White:\"TgwcHobcz\"};const getProps=({action,height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,qFgvb8BjV:link!==null&&link!==void 0?link:props.qFgvb8BjV,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"TgwcHobcz\",WqbHYVdhP:(_ref1=action!==null&&action!==void 0?action:props.WqbHYVdhP)!==null&&_ref1!==void 0?_ref1:\"Action\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WqbHYVdhP,qFgvb8BjV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TgwcHobcz\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:qFgvb8BjV,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-5uuto\",className,classNames)} framer-xrn9ti`,\"data-border\":true,\"data-framer-name\":\"White\",layoutDependency:layoutDependency,layoutId:\"TgwcHobcz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-3ef014c9-ad51-4ceb-b698-92ed0047912a, rgb(255, 255, 255))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{\"HdZ1P2nS4-hover\":{\"--border-color\":\"var(--token-ea43085b-5643-474c-96c5-b28c391ece07, rgb(68, 68, 68))\",backgroundColor:\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\"},\"TgwcHobcz-hover\":{\"--border-color\":\"var(--token-ce2e7739-d2ec-4f54-8930-15144ae6239e, rgb(175, 175, 172))\",backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"},HdZ1P2nS4:{\"--border-color\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\",backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},...addPropertyOverrides({\"HdZ1P2nS4-hover\":{\"data-framer-name\":undefined},\"TgwcHobcz-hover\":{\"data-framer-name\":undefined},HdZ1P2nS4:{\"data-framer-name\":\"Black\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-266c8d71-9990-411c-9a11-ecf80446ea66, rgb(34, 38, 47)))\"},children:\"Action\"})}),className:\"framer-1pstyhy\",fonts:[\"GF;Manrope-500\"],layoutDependency:layoutDependency,layoutId:\"DiUkAV_RG\",style:{\"--extracted-r6o4lv\":\"var(--token-266c8d71-9990-411c-9a11-ecf80446ea66, rgb(34, 38, 47))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WqbHYVdhP,variants:{\"HdZ1P2nS4-hover\":{\"--extracted-r6o4lv\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"},\"TgwcHobcz-hover\":{\"--extracted-r6o4lv\":\"var(--token-c57afec9-2c27-4b60-a9d8-4e5c927c1cfe, rgb(232, 233, 238))\"},HdZ1P2nS4:{\"--extracted-r6o4lv\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"HdZ1P2nS4-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Action\"})})},\"TgwcHobcz-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c57afec9-2c27-4b60-a9d8-4e5c927c1cfe, rgb(232, 233, 238)))\"},children:\"Action\"})})},HdZ1P2nS4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255)))\"},children:\"Action\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pfjMR.framer-xrn9ti, .framer-pfjMR .framer-xrn9ti { display: block; }\",\".framer-pfjMR.framer-5uuto { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; padding: 10px 40px 10px 40px; position: relative; text-decoration: none; width: min-content; }\",\".framer-pfjMR .framer-1pstyhy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pfjMR.framer-5uuto { gap: 0px; } .framer-pfjMR.framer-5uuto > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pfjMR.framer-5uuto > :first-child { margin-left: 0px; } .framer-pfjMR.framer-5uuto > :last-child { margin-right: 0px; } }\",'.framer-pfjMR[data-border=\"true\"]::after, .framer-pfjMR [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 123\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"HdZ1P2nS4\":{\"layout\":[\"auto\",\"fixed\"]},\"Lf64W_Ak7\":{\"layout\":[\"auto\",\"fixed\"]},\"aQviZeUli\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"WqbHYVdhP\":\"action\",\"qFgvb8BjV\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEZCerEe_R=withCSS(Component,css,\"framer-pfjMR\");export default FramerEZCerEe_R;FramerEZCerEe_R.displayName=\"Button\";FramerEZCerEe_R.defaultProps={height:44,width:123};addPropertyControls(FramerEZCerEe_R,{variant:{options:[\"TgwcHobcz\",\"HdZ1P2nS4\"],optionTitles:[\"White\",\"Black\"],title:\"Variant\",type:ControlType.Enum},WqbHYVdhP:{defaultValue:\"Action\",displayTextArea:false,placeholder:\"Action\",title:\"Action\",type:ControlType.String},qFgvb8BjV:{title:\"Link\",type:ControlType.Link}});addFonts(FramerEZCerEe_R,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEZCerEe_R\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"123\",\"framerIntrinsicHeight\":\"44\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"HdZ1P2nS4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Lf64W_Ak7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"aQviZeUli\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"WqbHYVdhP\\\":\\\"action\\\",\\\"qFgvb8BjV\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EZCerEe_R.map", "// Generated by Framer (b62c1c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={occR_KdsC:{hover:true}};const cycleOrder=[\"occR_KdsC\",\"x8U9cX1xJ\"];const serializationHash=\"framer-sk3IY\";const variantClassNames={occR_KdsC:\"framer-v-1y8usgl\",x8U9cX1xJ:\"framer-v-g5dww6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"occR_KdsC\",\"Variant 2\":\"x8U9cX1xJ\"};const getProps=({advancedSystemArchitectureForSeamlessIntegrationAndExpansion,height,id,width,...props})=>{return{...props,MmFioAApL:advancedSystemArchitectureForSeamlessIntegrationAndExpansion??props.MmFioAApL??\"Advanced system architecture for seamless integration and expansion\",variant:humanReadableVariantMap[props.variant]??props.variant??\"occR_KdsC\"};};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,MmFioAApL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"occR_KdsC\",enabledGestures,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-1y8usgl\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"occR_KdsC\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-ea43085b-5643-474c-96c5-b28c391ece07, rgb(68, 68, 68))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",borderBottomLeftRadius:300,borderBottomRightRadius:300,borderTopLeftRadius:300,borderTopRightRadius:300,...style},...addPropertyOverrides({\"occR_KdsC-hover\":{\"data-framer-name\":undefined},x8U9cX1xJ:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19oyzge\",layoutDependency:layoutDependency,layoutId:\"jrV2wmX9d\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{\"occR_KdsC-hover\":{backgroundColor:\"var(--token-266c8d71-9990-411c-9a11-ecf80446ea66, rgb(42, 42, 40))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10t0zje\",layoutDependency:layoutDependency,layoutId:\"prkf6aLjk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Bespoke software solutions designed for complex business needs.\"})}),className:\"framer-1g0sv09\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"RzkThF0LZ\",style:{\"--extracted-r6o4lv\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:MmFioAApL,variants:{\"occR_KdsC-hover\":{\"--extracted-r6o4lv\":\"var(--token-3ef014c9-ad51-4ceb-b698-92ed0047912a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"occR_KdsC-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3ef014c9-ad51-4ceb-b698-92ed0047912a, rgb(255, 255, 255)))\"},children:\"Bespoke software solutions designed for complex business needs.\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sk3IY.framer-1tun8o0, .framer-sk3IY .framer-1tun8o0 { display: block; }\",\".framer-sk3IY.framer-1y8usgl { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 196px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 196px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sk3IY .framer-19oyzge { bottom: 0px; flex: none; height: 2px; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; width: 100%; z-index: 0; }\",\".framer-sk3IY .framer-10t0zje { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 143px; }\",\".framer-sk3IY .framer-1g0sv09 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sk3IY.framer-1y8usgl, .framer-sk3IY .framer-10t0zje { gap: 0px; } .framer-sk3IY.framer-1y8usgl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sk3IY.framer-1y8usgl > :first-child { margin-left: 0px; } .framer-sk3IY.framer-1y8usgl > :last-child { margin-right: 0px; } .framer-sk3IY .framer-10t0zje > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-sk3IY .framer-10t0zje > :first-child { margin-top: 0px; } .framer-sk3IY .framer-10t0zje > :last-child { margin-bottom: 0px; } }\",\".framer-sk3IY.framer-v-g5dww6.framer-1y8usgl { aspect-ratio: 1 / 1; cursor: unset; height: var(--framer-aspect-ratio-supported, 154px); width: 154px; }\",\".framer-sk3IY.framer-v-1y8usgl.hover.framer-1y8usgl { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 196px); }\",\".framer-sk3IY.framer-v-1y8usgl.hover .framer-19oyzge { height: 100%; order: 0; }\",\".framer-sk3IY.framer-v-1y8usgl.hover .framer-10t0zje { order: 1; }\",'.framer-sk3IY[data-border=\"true\"]::after, .framer-sk3IY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 196\n * @framerIntrinsicWidth 196\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"x8U9cX1xJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"h8NXFYK7S\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"MmFioAApL\":\"advancedSystemArchitectureForSeamlessIntegrationAndExpansion\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergmoP0c19Q=withCSS(Component,css,\"framer-sk3IY\");export default FramergmoP0c19Q;FramergmoP0c19Q.displayName=\"circle\";FramergmoP0c19Q.defaultProps={height:196,width:196};addPropertyControls(FramergmoP0c19Q,{variant:{options:[\"occR_KdsC\",\"x8U9cX1xJ\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},MmFioAApL:{defaultValue:\"Advanced system architecture for seamless integration and expansion\",description:\" \",displayTextArea:false,placeholder:\"\",title:\"Advanced system architecture for seamless integration and expansion\",type:ControlType.String}});addFonts(FramergmoP0c19Q,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergmoP0c19Q\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"196\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x8U9cX1xJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h8NXFYK7S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"196\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"MmFioAApL\\\":\\\"advancedSystemArchitectureForSeamlessIntegrationAndExpansion\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gmoP0c19Q.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Jle1y8BFYrExBaw7YLZB/gSwRypVqKuZBiUg72GM2/nJ8oO2AZU.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZonMULLfMDGUYTSEpqZY/QQX9BB0zuTjW1uhy9gua/tQnFuf07h.js\";const RichTextWithFX=withFX(RichText);const enabledGestures={A5WYyF0Jw:{hover:true}};const serializationHash=\"framer-FyLin\";const variantClassNames={A5WYyF0Jw:\"framer-v-1g4yto4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.5,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={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,transformPerspective:1200,transition:transition2,x:0,y:10};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:10};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"A5WYyF0Jw\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-1g4yto4\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"A5WYyF0Jw\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-ea43085b-5643-474c-96c5-b28c391ece07, rgb(68, 68, 68))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\",...style},variants:{\"A5WYyF0Jw-hover\":{\"--border-color\":\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\",backgroundColor:\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\"}},...addPropertyOverrides({\"A5WYyF0Jw-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aydkx4\",layoutDependency:layoutDependency,layoutId:\"Yqe6HBQpV\",style:{backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"},variants:{\"A5WYyF0Jw-hover\":{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8i5rd8\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"KgwegpnqF\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255)))\"},children:\"Research & Development\"})}),className:\"framer-a3rvfv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AFSyyMnSK\",style:{\"--extracted-1lwpl3i\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},variants:{\"A5WYyF0Jw-hover\":{\"--extracted-1lwpl3i\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"A5WYyF0Jw-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Research & Development\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-psc83u\",\"data-framer-name\":\"Frame 27\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"exegTNE4a\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 166\"><path d=\"M 0.369 83 C 0.369 37.364 37.364 0.369 83 0.369 C 128.636 0.369 165.631 37.364 165.631 83 C 165.631 128.636 128.636 165.631 83 165.631 C 37.364 165.631 0.369 128.636 0.369 83 Z\" fill=\"transparent\" stroke-width=\"0.74\" stroke=\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222)) /* {&quot;name&quot;:&quot;Grey&quot;} */\" stroke-miterlimit=\"5.4222222222222225\"></path><path d=\"M 1.107 75.991 C 1.107 53.377 19.439 35.044 42.053 35.044 C 64.668 35.044 83 53.377 83 75.991 C 83 98.605 64.668 116.938 42.053 116.938 C 19.439 116.938 1.107 98.605 1.107 75.991 Z\" fill=\"transparent\" stroke-width=\"0.74\" stroke=\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222)) /* {&quot;name&quot;:&quot;Grey&quot;} */\" stroke-miterlimit=\"5.4222222222222225\"></path><path d=\"M 35.782 15.493 L 35.782 150.507\" fill=\"transparent\" stroke-width=\"0.74\" stroke=\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222)) /* {&quot;name&quot;:&quot;Grey&quot;} */\" stroke-miterlimit=\"5.4222222222222225\"></path><path d=\"M 0 75.622 L 165.262 75.622\" fill=\"transparent\" stroke-width=\"0.74\" stroke=\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222)) /* {&quot;name&quot;:&quot;Grey&quot;} */\" stroke-miterlimit=\"5.4222222222222225\"></path></svg>',svgContentId:11907611712,withExternalLayout:true,...addPropertyOverrides({\"A5WYyF0Jw-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 166\"><path d=\"M 0.369 83 C 0.369 37.364 37.364 0.369 83 0.369 C 128.636 0.369 165.631 37.364 165.631 83 C 165.631 128.636 128.636 165.631 83 165.631 C 37.364 165.631 0.369 128.636 0.369 83 Z\" fill=\"transparent\" stroke-width=\"0.74\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"5.4222222222222225\"></path><path d=\"M 1.107 75.991 C 1.107 53.377 19.439 35.044 42.053 35.044 C 64.668 35.044 83 53.377 83 75.991 C 83 98.605 64.668 116.938 42.053 116.938 C 19.439 116.938 1.107 98.605 1.107 75.991 Z\" fill=\"transparent\" stroke-width=\"0.74\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"5.4222222222222225\"></path><path d=\"M 35.782 15.493 L 35.782 150.507\" fill=\"transparent\" stroke-width=\"0.74\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"5.4222222222222225\"></path><path d=\"M 0 75.622 L 165.262 75.622\" fill=\"transparent\" stroke-width=\"0.74\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"5.4222222222222225\"></path></svg>',svgContentId:10279196220}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222)))\"},children:\"Conduct cutting-edge research in AI, blockchain, and automation to develop scalable, high-performance systems for enterprises and startups.\"})}),className:\"framer-1gk4hj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S8b1WsfT4\",style:{\"--extracted-r6o4lv\":\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\",transformPerspective:1200},variants:{\"A5WYyF0Jw-hover\":{\"--extracted-r6o4lv\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"A5WYyF0Jw-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Conduct cutting-edge research in AI, blockchain, and automation to develop scalable, high-performance systems for enterprises and startups.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FyLin.framer-g5dg44, .framer-FyLin .framer-g5dg44 { display: block; }\",\".framer-FyLin.framer-1g4yto4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 28px; position: relative; width: 454px; }\",\".framer-FyLin .framer-1aydkx4 { bottom: -7px; flex: none; height: 5px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-FyLin .framer-8i5rd8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; max-width: 1800px; padding: 0px; position: relative; width: 100%; }\",\".framer-FyLin .framer-a3rvfv, .framer-FyLin .framer-1gk4hj { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FyLin .framer-psc83u { flex: none; height: 166px; position: relative; width: 166px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FyLin.framer-1g4yto4, .framer-FyLin .framer-8i5rd8 { gap: 0px; } .framer-FyLin.framer-1g4yto4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FyLin.framer-1g4yto4 > :first-child, .framer-FyLin .framer-8i5rd8 > :first-child { margin-top: 0px; } .framer-FyLin.framer-1g4yto4 > :last-child, .framer-FyLin .framer-8i5rd8 > :last-child { margin-bottom: 0px; } .framer-FyLin .framer-8i5rd8 > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } }\",\".framer-FyLin.framer-v-1g4yto4.hover .framer-1aydkx4 { height: 105%; z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-FyLin[data-border=\"true\"]::after, .framer-FyLin [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 380\n * @framerIntrinsicWidth 454\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KPwc868wu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNZ8TpQAr6=withCSS(Component,css,\"framer-FyLin\");export default FramerNZ8TpQAr6;FramerNZ8TpQAr6.displayName=\"Card\";FramerNZ8TpQAr6.defaultProps={height:380,width:454};addFonts(FramerNZ8TpQAr6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNZ8TpQAr6\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"380\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"454\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KPwc868wu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NZ8TpQAr6.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Jle1y8BFYrExBaw7YLZB/gSwRypVqKuZBiUg72GM2/nJ8oO2AZU.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZonMULLfMDGUYTSEpqZY/QQX9BB0zuTjW1uhy9gua/tQnFuf07h.js\";const RichTextWithFX=withFX(RichText);const enabledGestures={aco9wxZMd:{hover:true}};const serializationHash=\"framer-wL57e\";const variantClassNames={aco9wxZMd:\"framer-v-bsb2p4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.5,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={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,transformPerspective:1200,transition:transition2,x:0,y:10};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:10};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"aco9wxZMd\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-bsb2p4\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"aco9wxZMd\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-ea43085b-5643-474c-96c5-b28c391ece07, rgb(68, 68, 68))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\",...style},variants:{\"aco9wxZMd-hover\":{\"--border-color\":\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\",backgroundColor:\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\"}},...addPropertyOverrides({\"aco9wxZMd-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ws2526\",layoutDependency:layoutDependency,layoutId:\"Ggev1tA58\",style:{backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"},variants:{\"aco9wxZMd-hover\":{backgroundColor:\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16g8hbr\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"FlMMio4iy\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255)))\"},children:\"Blockchain Solutions\"})}),className:\"framer-hsi2vy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MHJjxgABq\",style:{\"--extracted-1lwpl3i\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},variants:{\"aco9wxZMd-hover\":{\"--extracted-1lwpl3i\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"aco9wxZMd-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Blockchain Solutions\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tylf6w\",\"data-framer-name\":\"Frame 34\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tpFF9isF3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 166\"><path d=\"M 0.369 83 C 0.369 37.364 37.364 0.369 83 0.369 C 128.636 0.369 165.631 37.364 165.631 83 C 165.631 128.636 128.636 165.631 83 165.631 C 37.364 165.631 0.369 128.636 0.369 83 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 139.071 83 C 139.071 105.856 132.771 126.531 122.604 141.482 C 112.436 156.435 98.427 165.631 83 165.631 C 67.573 165.631 53.564 156.435 43.396 141.482 C 33.229 126.531 26.929 105.856 26.929 83 C 26.929 60.144 33.229 39.469 43.396 24.518 C 53.564 9.564 67.573 0.369 83 0.369 C 98.427 0.369 112.436 9.564 122.604 24.518 C 132.771 39.469 139.071 60.144 139.071 83 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 0 82.262 L 165.262 82.262\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path></svg>',svgContentId:12333773352,withExternalLayout:true,...addPropertyOverrides({\"aco9wxZMd-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 166\"><path d=\"M 0.369 83 C 0.369 37.364 37.364 0.369 83 0.369 C 128.636 0.369 165.631 37.364 165.631 83 C 165.631 128.636 128.636 165.631 83 165.631 C 37.364 165.631 0.369 128.636 0.369 83 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 139.071 83 C 139.071 105.856 132.771 126.531 122.604 141.482 C 112.436 156.435 98.427 165.631 83 165.631 C 67.573 165.631 53.564 156.435 43.396 141.482 C 33.229 126.531 26.929 105.856 26.929 83 C 26.929 60.144 33.229 39.469 43.396 24.518 C 53.564 9.564 67.573 0.369 83 0.369 C 98.427 0.369 112.436 9.564 122.604 24.518 C 132.771 39.469 139.071 60.144 139.071 83 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 0 82.262 L 165.262 82.262\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path></svg>',svgContentId:10178774129}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Develop enterprise-grade blockchain infrastructure, enabling decentralised applications, smart contracts, and secure digital transactions.\"})}),className:\"framer-1nhug7z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BeaZPJYM_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",transformPerspective:1200},variants:{\"aco9wxZMd-hover\":{\"--extracted-r6o4lv\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"aco9wxZMd-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Develop enterprise-grade blockchain infrastructure, enabling decentralised applications, smart contracts, and secure digital transactions.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wL57e.framer-idnc1b, .framer-wL57e .framer-idnc1b { display: block; }\",\".framer-wL57e.framer-bsb2p4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 28px; position: relative; width: 358px; }\",\".framer-wL57e .framer-ws2526 { bottom: -7px; flex: none; height: 5px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 0; }\",\".framer-wL57e .framer-16g8hbr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1800px; padding: 0px; position: relative; width: 100%; }\",\".framer-wL57e .framer-hsi2vy, .framer-wL57e .framer-1nhug7z { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wL57e .framer-1tylf6w { flex: none; height: 166px; position: relative; width: 166px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wL57e.framer-bsb2p4, .framer-wL57e .framer-16g8hbr { gap: 0px; } .framer-wL57e.framer-bsb2p4 > *, .framer-wL57e .framer-16g8hbr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wL57e.framer-bsb2p4 > :first-child, .framer-wL57e .framer-16g8hbr > :first-child { margin-top: 0px; } .framer-wL57e.framer-bsb2p4 > :last-child, .framer-wL57e .framer-16g8hbr > :last-child { margin-bottom: 0px; } }\",\".framer-wL57e.framer-v-bsb2p4.hover .framer-ws2526 { height: 104%; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-wL57e[data-border=\"true\"]::after, .framer-wL57e [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 358\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dzDze3rNP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerpgbg7gFC2=withCSS(Component,css,\"framer-wL57e\");export default Framerpgbg7gFC2;Framerpgbg7gFC2.displayName=\"Card4\";Framerpgbg7gFC2.defaultProps={height:400,width:358};addFonts(Framerpgbg7gFC2,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpgbg7gFC2\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dzDze3rNP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"358\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"400\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pgbg7gFC2.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"sUIifSd6J\",\"jNkcz83sg\",\"g0kMSLh3y\",\"DFDq8WyQb\"];const serializationHash=\"framer-WVIr4\";const variantClassNames={DFDq8WyQb:\"framer-v-jo1mpq\",g0kMSLh3y:\"framer-v-1trjnkz\",jNkcz83sg:\"framer-v-25yuto\",sUIifSd6J:\"framer-v-ijwf9w\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};const transition2={bounce:.2,delay:0,duration:.5,type:\"spring\"};const transition3={delay:0,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const transition4={duration:0,type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition5={delay:0,duration:5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:180,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:180,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"sUIifSd6J\",\"Variant 2\":\"jNkcz83sg\",\"Variant 4\":\"g0kMSLh3y\",\"Variant 5\":\"DFDq8WyQb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"sUIifSd6J\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sUIifSd6J\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearxv5gnz=activeVariantCallback(async(...args)=>{setVariant(\"jNkcz83sg\");});const onAppearpcz0q4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"g0kMSLh3y\"),600);});const onAppear1etnum8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"DFDq8WyQb\"),1e3);});useOnVariantChange(baseVariant,{default:onAppearxv5gnz,DFDq8WyQb:undefined,g0kMSLh3y:onAppear1etnum8,jNkcz83sg:onAppearpcz0q4});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,...addPropertyOverrides({DFDq8WyQb:{value:transition4},g0kMSLh3y:{value:transition3},jNkcz83sg:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ijwf9w\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sUIifSd6J\",ref:refBinding,style:{backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\",...style},variants:{DFDq8WyQb:{backgroundColor:\"rgba(0, 0, 0, 0)\"},g0kMSLh3y:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({DFDq8WyQb:{\"data-framer-name\":\"Variant 5\",\"data-highlight\":undefined},g0kMSLh3y:{\"data-framer-name\":\"Variant 4\"},jNkcz83sg:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r76txw\",\"data-framer-name\":\"TXT\",layoutDependency:layoutDependency,layoutId:\"GcOYvAHv8\",style:{opacity:1},variants:{DFDq8WyQb:{opacity:0},g0kMSLh3y:{opacity:0}},...addPropertyOverrides({DFDq8WyQb:{transformTemplate:transformTemplate1},g0kMSLh3y:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gtsqek\",layoutDependency:layoutDependency,layoutId:\"mzXnib2mK\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uyamcc\",layoutDependency:layoutDependency,layoutId:\"o3r261OXI\",style:{opacity:.5},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-15t0g5m\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"uVza9O1xz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:231,borderBottomRightRadius:231,borderTopLeftRadius:231,borderTopRightRadius:231,rotateX:60,rotateY:45},transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1h641on\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"CmLh2H61V\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:231,borderBottomRightRadius:231,borderTopLeftRadius:231,borderTopRightRadius:231,rotateX:-60,rotateY:45},transformTemplate:transformTemplate2})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WVIr4.framer-1jxc1q6, .framer-WVIr4 .framer-1jxc1q6 { display: block; }\",\".framer-WVIr4.framer-ijwf9w { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 1200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-WVIr4 .framer-1r76txw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WVIr4 .framer-1gtsqek { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-WVIr4 .framer-1uyamcc { flex: none; height: 393px; overflow: hidden; position: relative; width: 475px; }\",\".framer-WVIr4 .framer-15t0g5m { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 292px); left: 50%; overflow: hidden; position: absolute; top: 48%; width: 292px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WVIr4 .framer-1h641on { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 292px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 292px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WVIr4.framer-ijwf9w, .framer-WVIr4 .framer-1r76txw, .framer-WVIr4 .framer-1gtsqek { gap: 0px; } .framer-WVIr4.framer-ijwf9w > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-WVIr4.framer-ijwf9w > :first-child { margin-left: 0px; } .framer-WVIr4.framer-ijwf9w > :last-child { margin-right: 0px; } .framer-WVIr4 .framer-1r76txw > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-WVIr4 .framer-1r76txw > :first-child, .framer-WVIr4 .framer-1gtsqek > :first-child { margin-top: 0px; } .framer-WVIr4 .framer-1r76txw > :last-child, .framer-WVIr4 .framer-1gtsqek > :last-child { margin-bottom: 0px; } .framer-WVIr4 .framer-1gtsqek > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-WVIr4.framer-v-25yuto.framer-ijwf9w { flex-direction: column; }\",\".framer-WVIr4.framer-v-25yuto .framer-1gtsqek { align-self: unset; width: 475px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WVIr4.framer-v-25yuto.framer-ijwf9w { gap: 0px; } .framer-WVIr4.framer-v-25yuto.framer-ijwf9w > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-WVIr4.framer-v-25yuto.framer-ijwf9w > :first-child { margin-top: 0px; } .framer-WVIr4.framer-v-25yuto.framer-ijwf9w > :last-child { margin-bottom: 0px; } }\",\".framer-WVIr4.framer-v-1trjnkz.framer-ijwf9w { align-content: flex-start; align-items: flex-start; justify-content: flex-start; }\",\".framer-WVIr4.framer-v-1trjnkz .framer-1r76txw, .framer-WVIr4.framer-v-jo1mpq .framer-1r76txw { left: 52%; position: absolute; top: -500px; z-index: 1; }\",\".framer-WVIr4.framer-v-jo1mpq.framer-ijwf9w { height: 1px; justify-content: flex-start; }\",'.framer-WVIr4[data-border=\"true\"]::after, .framer-WVIr4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1200\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jNkcz83sg\":{\"layout\":[\"fixed\",\"fixed\"]},\"g0kMSLh3y\":{\"layout\":[\"fixed\",\"fixed\"]},\"DFDq8WyQb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrxxcIrSeC=withCSS(Component,css,\"framer-WVIr4\");export default FramerrxxcIrSeC;FramerrxxcIrSeC.displayName=\"Welcome 3\";FramerrxxcIrSeC.defaultProps={height:1200,width:1200};addPropertyControls(FramerrxxcIrSeC,{variant:{options:[\"sUIifSd6J\",\"jNkcz83sg\",\"g0kMSLh3y\",\"DFDq8WyQb\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrxxcIrSeC,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrxxcIrSeC\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jNkcz83sg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g0kMSLh3y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DFDq8WyQb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"1200\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rxxcIrSeC.map", "// Generated by Framer (3eae0e1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,CycleVariantState,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-SxAdU\";const variantClassNames={d7sgbjIhh:\"framer-v-md7kg2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:6.7,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:100,delay:0,mass:1,stiffness:300,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"d7sgbjIhh\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearfzmf19=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),1e3);});useOnVariantChange(baseVariant,{default:onAppearfzmf19});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-md7kg2\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"d7sgbjIhh\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(50, 89, 110))\",...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SxAdU.framer-g0hir6, .framer-SxAdU .framer-g0hir6 { display: block; }\",\".framer-SxAdU.framer-md7kg2 { height: 14px; overflow: hidden; position: relative; width: 14px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14\n * @framerIntrinsicWidth 14\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSYMJ_npgv=withCSS(Component,css,\"framer-SxAdU\");export default FramerSYMJ_npgv;FramerSYMJ_npgv.displayName=\"Square\";FramerSYMJ_npgv.defaultProps={height:14,width:14};addFonts(FramerSYMJ_npgv,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSYMJ_npgv\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"14\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"14\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SYMJ_npgv.map", "// Generated by Framer (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Jle1y8BFYrExBaw7YLZB/gSwRypVqKuZBiUg72GM2/nJ8oO2AZU.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZonMULLfMDGUYTSEpqZY/QQX9BB0zuTjW1uhy9gua/tQnFuf07h.js\";const RichTextWithFX=withFX(RichText);const enabledGestures={VxxoxBjJR:{hover:true}};const serializationHash=\"framer-hUPJ2\";const variantClassNames={VxxoxBjJR:\"framer-v-iom3ji\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.5,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={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,transformPerspective:1200,transition:transition2,x:0,y:10};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:10};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"VxxoxBjJR\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-iom3ji\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VxxoxBjJR\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-ea43085b-5643-474c-96c5-b28c391ece07, rgb(68, 68, 68))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\",...style},variants:{\"VxxoxBjJR-hover\":{\"--border-color\":\"var(--token-c1d8a42b-cab6-4c30-b90b-6178fd18a0c3, rgb(222, 222, 222))\"}},...addPropertyOverrides({\"VxxoxBjJR-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-188et3b\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"PVKjzB_VW\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255)))\"},children:\"Software Engineering\"})}),className:\"framer-1mut63e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QWqDpXnHP\",style:{\"--extracted-1lwpl3i\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},variants:{\"VxxoxBjJR-hover\":{\"--extracted-1lwpl3i\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"VxxoxBjJR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Software Engineering\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pt3gce\",\"data-framer-name\":\"Frame 36\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"u0bD446eT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 166\"><path d=\"M 0.369 165.631 L 0.369 0.369 L 165.631 0.369 L 165.631 165.631 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(222,222,222)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 0 82.262 L 165.262 82.262\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(255,255,255)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 44.86 82.803 C 44.86 62.158 61.596 45.422 82.242 45.422 C 102.887 45.422 119.623 62.158 119.623 82.803 C 119.623 103.448 102.887 120.184 82.242 120.184 C 61.596 120.184 44.86 103.448 44.86 82.803 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"rgb(222,222,222)\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 165.225 82.803 C 154.108 48.041 121.536 22.871 83.085 22.871 C 44.633 22.871 12.061 48.041 0.944 82.803 L 0.169 82.803 C 11.313 47.627 44.221 22.133 83.085 22.133 C 121.948 22.133 154.857 47.627 166 82.803 Z\" fill=\"rgb(222,222,222)\"></path><path d=\"M 165.056 82.803 C 153.939 117.566 121.367 142.735 82.915 142.735 C 44.464 142.735 11.891 117.566 0.774 82.803 L 0 82.803 C 11.143 117.98 44.052 143.473 82.915 143.473 C 121.778 143.473 154.687 117.98 165.83 82.803 Z\" fill=\"rgb(222,222,222)\"></path></svg>',svgContentId:10775186149,withExternalLayout:true,...addPropertyOverrides({\"VxxoxBjJR-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 166 166\"><path d=\"M 0.369 165.631 L 0.369 0.369 L 165.631 0.369 L 165.631 165.631 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 0 82.262 L 165.262 82.262\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 44.86 82.803 C 44.86 62.158 61.596 45.422 82.242 45.422 C 102.887 45.422 119.623 62.158 119.623 82.803 C 119.623 103.448 102.887 120.184 82.242 120.184 C 61.596 120.184 44.86 103.448 44.86 82.803 Z\" fill=\"transparent\" stroke-width=\"0.7377777777777778\" stroke=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\" stroke-miterlimit=\"7.377777777777777\" stroke-dasharray=\"\"></path><path d=\"M 165.225 82.803 C 154.108 48.041 121.536 22.871 83.085 22.871 C 44.633 22.871 12.061 48.041 0.944 82.803 L 0.169 82.803 C 11.313 47.627 44.221 22.133 83.085 22.133 C 121.948 22.133 154.857 47.627 166 82.803 Z\" fill=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\"></path><path d=\"M 165.056 82.803 C 153.939 117.566 121.367 142.735 82.915 142.735 C 44.464 142.735 11.891 117.566 0.774 82.803 L 0 82.803 C 11.143 117.98 44.052 143.473 82.915 143.473 C 121.778 143.473 154.687 117.98 165.83 82.803 Z\" fill=\"var(--token-bdb220ca-2b40-429c-99c4-6058e286e403, rgb(0, 219, 212)) /* {&quot;name&quot;:&quot;Blue&quot;} */\"></path></svg>',svgContentId:11067981956}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255)))\"},children:\"Design and develop bespoke, scalable software optimised for flexibility, performance, and growth, from prototypes to enterprise-scale deployment.\"})}),className:\"framer-1kivdn3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sPihMIkve\",style:{\"--extracted-r6o4lv\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\",transformPerspective:1200},variants:{\"VxxoxBjJR-hover\":{\"--extracted-r6o4lv\":\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"VxxoxBjJR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)))\"},children:\"Design and develop bespoke, scalable software optimised for flexibility, performance, and growth, from prototypes to enterprise-scale deployment.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-153xy92\",layoutDependency:layoutDependency,layoutId:\"DIcdY3JTU\",style:{backgroundColor:\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27))\"},variants:{\"VxxoxBjJR-hover\":{backgroundColor:\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\"}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hUPJ2.framer-b13kgs, .framer-hUPJ2 .framer-b13kgs { display: block; }\",\".framer-hUPJ2.framer-iom3ji { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 28px; position: relative; width: 358px; }\",\".framer-hUPJ2 .framer-188et3b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1800px; padding: 0px; position: relative; width: 100%; }\",\".framer-hUPJ2 .framer-1mut63e, .framer-hUPJ2 .framer-1kivdn3 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hUPJ2 .framer-pt3gce { flex: none; height: 166px; position: relative; width: 166px; }\",\".framer-hUPJ2 .framer-153xy92 { bottom: -7px; flex: none; height: 5px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hUPJ2.framer-iom3ji, .framer-hUPJ2 .framer-188et3b { gap: 0px; } .framer-hUPJ2.framer-iom3ji > *, .framer-hUPJ2 .framer-188et3b > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hUPJ2.framer-iom3ji > :first-child, .framer-hUPJ2 .framer-188et3b > :first-child { margin-top: 0px; } .framer-hUPJ2.framer-iom3ji > :last-child, .framer-hUPJ2 .framer-188et3b > :last-child { margin-bottom: 0px; } }\",\".framer-hUPJ2.framer-v-iom3ji.hover .framer-188et3b { order: 1; z-index: 1; }\",\".framer-hUPJ2.framer-v-iom3ji.hover .framer-153xy92 { height: 104%; order: 0; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-hUPJ2[data-border=\"true\"]::after, .framer-hUPJ2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 358\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dX7fgrmzB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZkTrS_b_g=withCSS(Component,css,\"framer-hUPJ2\");export default FramerZkTrS_b_g;FramerZkTrS_b_g.displayName=\"Card5\";FramerZkTrS_b_g.defaultProps={height:400,width:358};addFonts(FramerZkTrS_b_g,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZkTrS_b_g\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dX7fgrmzB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"358\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZkTrS_b_g.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Arc from\"https://framerusercontent.com/modules/dZ9c6z10n71dmz3JQVi4/0dSuyhnHD9HrUa3w2XFr/Arc.js\";import UnicornStudioEmbed from\"https://framerusercontent.com/modules/vbaJXlyVEeIvuEevvudG/FFzmSCr65SYC2698Eaml/UnicornStudioEmbed.js\";import ComponentDivider from\"#framer/local/canvasComponent/AbyqlCEWS/AbyqlCEWS.js\";import Card6 from\"#framer/local/canvasComponent/bekDgL8Xx/bekDgL8Xx.js\";import Card2 from\"#framer/local/canvasComponent/cJbLSeeht/cJbLSeeht.js\";import Button from\"#framer/local/canvasComponent/EZCerEe_R/EZCerEe_R.js\";import Circle from\"#framer/local/canvasComponent/gmoP0c19Q/gmoP0c19Q.js\";import Footer from\"#framer/local/canvasComponent/nVlljsZ33/nVlljsZ33.js\";import CallToAction from\"#framer/local/canvasComponent/NYrENVqwW/NYrENVqwW.js\";import Card from\"#framer/local/canvasComponent/NZ8TpQAr6/NZ8TpQAr6.js\";import Card4 from\"#framer/local/canvasComponent/pgbg7gFC2/pgbg7gFC2.js\";import Cursor from\"#framer/local/canvasComponent/QNKbhbnlN/QNKbhbnlN.js\";import Welcome3 from\"#framer/local/canvasComponent/rxxcIrSeC/rxxcIrSeC.js\";import Navigation from\"#framer/local/canvasComponent/sgz_zJtQG/sgz_zJtQG.js\";import Square from\"#framer/local/canvasComponent/SYMJ_npgv/SYMJ_npgv.js\";import Card5 from\"#framer/local/canvasComponent/ZkTrS_b_g/ZkTrS_b_g.js\";import*as sharedStyle2 from\"#framer/local/css/IkMC8Jr8e/IkMC8Jr8e.js\";import*as sharedStyle1 from\"#framer/local/css/nJ8oO2AZU/nJ8oO2AZU.js\";import*as sharedStyle5 from\"#framer/local/css/OpekfAotK/OpekfAotK.js\";import*as sharedStyle4 from\"#framer/local/css/tQnFuf07h/tQnFuf07h.js\";import*as sharedStyle3 from\"#framer/local/css/ykNAFI4fN/ykNAFI4fN.js\";import*as sharedStyle from\"#framer/local/css/yxoqvUR2X/yxoqvUR2X.js\";import metadataProvider from\"#framer/local/webPageMetadata/K7Hq8WtC6/K7Hq8WtC6.js\";const Welcome3Fonts=getFonts(Welcome3);const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const UnicornStudioEmbedFonts=getFonts(UnicornStudioEmbed);const RichTextWithFX=withFX(RichText);const ArcFonts=getFonts(Arc);const ButtonFonts=getFonts(Button);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const SquareFonts=getFonts(Square);const CircleFonts=getFonts(Circle);const ComponentDividerFonts=getFonts(ComponentDivider);const CardFonts=getFonts(Card);const Card2Fonts=getFonts(Card2);const Card4Fonts=getFonts(Card4);const Card5Fonts=getFonts(Card5);const Card6Fonts=getFonts(Card6);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CallToActionFonts=getFonts(CallToAction);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={eHGpN1ySS:\"(max-width: 679px)\",gj5iHc5SU:\"(min-width: 680px) and (max-width: 1199px)\",ohi6NopgL:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-b1bJa\";const variantClassNames={eHGpN1ySS:\"framer-v-lmf39n\",gj5iHc5SU:\"framer-v-m2bvcd\",ohi6NopgL:\"framer-v-1twapsh\"};const transition1={damping:35,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-90};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={damping:100,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:10};const transition3={delay:0,duration:12.3,ease:[0,0,1,1],type:\"tween\"};const animation3={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={damping:100,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:10};const transition5={damping:100,delay:.6,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:10};const transition6={damping:100,delay:.7,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:0};const transition7={damping:60,delay:.8,mass:1,stiffness:300,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:-20,y:0};const transition8={damping:60,delay:.7,mass:1,stiffness:300,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:-20,y:0};const transition9={damping:60,delay:.6,mass:1,stiffness:300,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:-20,y:0};const transition10={damping:60,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:-20,y:0};const transition11={damping:60,delay:.4,mass:1,stiffness:300,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:-20,y:0};const transition12={damping:100,delay:.8,mass:1,stiffness:400,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:10};const transition13={damping:60,delay:1,mass:1,stiffness:300,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:-20,y:0};const transition14={damping:60,delay:.2,mass:1,stiffness:300,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:-20,y:0};const transition15={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:0,y:10};const transition16={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:0,y:10};const transition17={delay:.5,duration:1.5,ease:[.32,0,.67,0],type:\"tween\"};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition17,x:0,y:0};const animation20={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition16,x:0,y:10};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ohi6NopgL\",Phone:\"eHGpN1ySS\",Tablet:\"gj5iHc5SU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ohi6NopgL\"};};const cursor={component:Cursor,variant:\"MU5pAYxIH\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"eHGpN1ySS\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"eHGpN1ySS\")return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"k3buOZ6MN\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"MBBojpqF6\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"gj5iHc5SU\",\"eHGpN1ySS\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"gj5iHc5SU\",\"eHGpN1ySS\"].includes(baseVariant))return true;return false;};useCustomCursors({\"1ugzxsh\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ohi6NopgL\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1twapsh\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-162yzxz\",\"data-framer-name\":\"Loader\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1200,width:\"100vw\",y:-100,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5mewx1-container\",layoutScroll:true,nodeId:\"AqFKGJgQz\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Welcome3,{height:\"100%\",id:\"AqFKGJgQz\",layoutId:\"AqFKGJgQz\",style:{width:\"100%\"},variant:\"sUIifSd6J\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10rix8e-container\",nodeId:\"B5Q1pOiLy\",rendersWithMotion:true,scopeId:\"K7Hq8WtC6\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{variant:\"jW8ZmxKNW\"},gj5iHc5SU:{variant:\"tKo4SYFYR\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"B5Q1pOiLy\",layoutId:\"B5Q1pOiLy\",style:{width:\"100%\"},variant:\"GiTBl7Eok\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161212l\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g4q7lt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zl809p\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rrr43q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EBdWY_q7f\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(UnicornStudioEmbed,{altText:\"\",ariaLabel:\"\",dpi:1.5,fps:60,header:\"\",height:\"100%\",id:\"EBdWY_q7f\",layoutId:\"EBdWY_q7f\",lazyLoad:false,projectId:\"72IjivVU21kIgPc9cN8P\",projectJSON:\"\",scale:1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p8si1c\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f4acbh\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tikb78\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dcbzau\",\"data-framer-name\":\"fixed stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rpjw9f\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xhaoiy\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-y8qpkv\",\"data-styles-preset\":\"yxoqvUR2X\",children:\"Innovating Tomorrow\u2019s\"})}),className:\"framer-t46rbj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17b1ggc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9ik54w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oHwhxL_xM\",rendersWithMotion:true,scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Arc,{alignmentBaseline:\"bottom\",color:\"var(--token-ce2e7739-d2ec-4f54-8930-15144ae6239e, rgb(117, 117, 117))\",cylinderHeight:0,flip:false,font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0.21em\",lineHeight:\"1.1em\"},height:\"100%\",id:\"oHwhxL_xM\",layoutId:\"oHwhxL_xM\",startOffset:0,style:{height:\"100%\",width:\"100%\"},text:\"FUTURE-READY SOLUTIONS.\",type:true,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i039bl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oh0v9c\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-y8qpkv\",\"data-styles-preset\":\"yxoqvUR2X\",children:\"Technology, Today\"})}),className:\"framer-11rkzs8\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b1106767-fbaa-4a24-bd97-dfbf18764b12, rgb(68, 68, 68))\"},children:\"Scalable, high-performance technology that automates, optimises, and fuels business growth.\"})}),className:\"framer-5o343d\",\"data-framer-name\":\"Description\",fonts:[\"GF;Manrope-regular\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{height:44,width:\"209px\",y:(componentViewport?.y||0)+0+0+0+0+0+0+0+276+0+0+0+0+0+61+0+0+326}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rn3iua-container hidden-1twapsh hidden-m2bvcd\",nodeId:\"Yed0bDqNa\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Yed0bDqNa\",layoutId:\"Yed0bDqNa\",qFgvb8BjV:\"https://cal.com/team/haxo-labs/30-min\",style:{width:\"100%\"},variant:\"HdZ1P2nS4\",width:\"100%\",WqbHYVdhP:\"TALK TO OUR EXPERTS\"})})})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+0+0+0+0+280.5+0+0+0+274,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-19yf0bb-container hidden-lmf39n\",\"data-framer-appear-id\":\"19yf0bb\",initial:animation7,nodeId:\"TlV1WGGu6\",optimized:true,rendersWithMotion:true,scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"TlV1WGGu6\",layoutId:\"TlV1WGGu6\",qFgvb8BjV:\"https://cal.com/team/haxo-labs/30-min\",variant:\"HdZ1P2nS4\",width:\"100%\",WqbHYVdhP:\"TALK TO OUR EXPERTS\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eru1sl hidden-lmf39n\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-obimx6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14rpmuk\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nrtaep\",\"data-border\":true,style:{rotateY:63}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q6bv28\",\"data-border\":true,style:{rotateY:63}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5e1v4v\",\"data-border\":true,style:{rotateY:63}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c14hmx\",\"data-border\":true,style:{rotateY:63}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tq8ipu\",\"data-border\":true,style:{rotateY:63}})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",children:\"Our solutions maximise efficiency, streamline operations, and enhance agility\u2014keeping you ahead in a rapidly evolving market.\"})}),className:\"framer-pmn0n9\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1guydow\"})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gvkmcz hidden-1twapsh hidden-m2bvcd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h6ww4k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l6o2ru\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11jgum3\",\"data-border\":true,style:{rotateY:63}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-32gejc\",\"data-border\":true,style:{rotateY:63}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d6fz6s\",\"data-border\":true,style:{rotateY:63}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-scinxu\",\"data-border\":true,style:{rotateY:63}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m6iugx\",\"data-border\":true,style:{rotateY:63}})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1106767-fbaa-4a24-bd97-dfbf18764b12, rgb(68, 68, 68))\"},children:[\"We are not just another tech consultancy. We\u2019re a powerhouse of \",/*#__PURE__*/_jsx(\"strong\",{children:\"research and innovation\"}),\", focused on driving breakthroughs in software engineering, blockchain, AI, and cybersecurity.\"]})}),className:\"framer-drxwpv\",\"data-framer-name\":\"Description\",fonts:[\"GF;Manrope-regular\",\"GF;Manrope-700\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eqxx4p\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cy7e7x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dxl1i6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oo7hvj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6t2jmd\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1opevds\",\"data-styles-preset\":\"IkMC8Jr8e\",children:\"( Why Choose Us )\"})}),className:\"framer-yd9k1\",\"data-framer-name\":\"THE TRUTH IS THAT YOU PAY FOR YOUR LIFESTYLE IN HOURS.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{height:14,width:\"14px\",y:(componentViewport?.y||0)+0+0+0+1134+0+0+40+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18mk0xd-container hidden-1twapsh hidden-m2bvcd\",nodeId:\"cZkoJReSE\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Square,{height:\"100%\",id:\"cZkoJReSE\",layoutId:\"cZkoJReSE\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jkte5n\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jy0jh5\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-alignment\":\"justify\"},children:\"                     Technology should be an asset, not a bottleneck. Haxo Labs designs solutions that eliminate inefficiencies, streamline operations, and maximise ROI\u2014ensuring your business stays ahead.\"})}),className:\"framer-18idsey\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"14px\",y:(componentViewport?.y||0)+0+0+0+1e3+0+0+40+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19slp3t-container hidden-lmf39n\",nodeId:\"g40ofPMA_\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Square,{height:\"100%\",id:\"g40ofPMA_\",layoutId:\"g40ofPMA_\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gejbae\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ql95r2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{height:190.25,width:\"190px\",y:(componentViewport?.y||0)+0+0+0+1134+0+0+40+179+0+0+0},gj5iHc5SU:{y:(componentViewport?.y||0)+0+0+0+1e3+0+0+40+259+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:214,width:\"214px\",y:(componentViewport?.y||0)+0+0+0+1e3+0+0+40+259+0+21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wdjdae-container\",nodeId:\"mr9eEjM3N\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{variant:\"x8U9cX1xJ\"}},children:/*#__PURE__*/_jsx(Circle,{height:\"100%\",id:\"mr9eEjM3N\",layoutId:\"mr9eEjM3N\",MmFioAApL:\"Bespoke software solutions designed for complex business needs.\",style:{height:\"100%\",width:\"100%\"},variant:\"occR_KdsC\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{height:190.25,width:\"190px\",y:(componentViewport?.y||0)+0+0+0+1134+0+0+40+179+0+0+190.25},gj5iHc5SU:{y:(componentViewport?.y||0)+0+0+0+1e3+0+0+40+259+0+0+214}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:214,width:\"214px\",y:(componentViewport?.y||0)+0+0+0+1e3+0+0+40+259+0+21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qqyjbd-container\",nodeId:\"R3KS8Zhnh\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{variant:\"x8U9cX1xJ\"}},children:/*#__PURE__*/_jsx(Circle,{height:\"100%\",id:\"R3KS8Zhnh\",layoutId:\"R3KS8Zhnh\",MmFioAApL:\"Advanced system architecture for seamless integration and expansion\",style:{height:\"100%\",width:\"100%\"},variant:\"occR_KdsC\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{height:190.25,width:\"190px\",y:(componentViewport?.y||0)+0+0+0+1134+0+0+40+179+0+0+380.5},gj5iHc5SU:{y:(componentViewport?.y||0)+0+0+0+1e3+0+0+40+259+0+0+428}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:214,width:\"214px\",y:(componentViewport?.y||0)+0+0+0+1e3+0+0+40+259+0+21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h5ue70-container\",nodeId:\"h7qrAAx2v\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{variant:\"x8U9cX1xJ\"}},children:/*#__PURE__*/_jsx(Circle,{height:\"100%\",id:\"h7qrAAx2v\",layoutId:\"h7qrAAx2v\",MmFioAApL:\"Cutting-edge innovation leveraging AI, automation, data-driven insights, and emerging technology.\",style:{height:\"100%\",width:\"100%\"},variant:\"occR_KdsC\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{height:190.25,width:\"190px\",y:(componentViewport?.y||0)+0+0+0+1134+0+0+40+179+0+0+570.75},gj5iHc5SU:{y:(componentViewport?.y||0)+0+0+0+1e3+0+0+40+259+0+0+642}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:214,width:\"214px\",y:(componentViewport?.y||0)+0+0+0+1e3+0+0+40+259+0+21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tb57w0-container\",nodeId:\"roEOhvGnK\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{variant:\"x8U9cX1xJ\"}},children:/*#__PURE__*/_jsx(Circle,{height:\"100%\",id:\"roEOhvGnK\",layoutId:\"roEOhvGnK\",MmFioAApL:\"Security and compliance-first development with robust encryption and threat detection.\",style:{height:\"100%\",width:\"100%\"},variant:\"occR_KdsC\",width:\"100%\"})})})})})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-mquu7z hidden-lmf39n\",\"data-framer-name\":\"HAXO LABS\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:306,intrinsicWidth:41,style:{rotate:-180},svg:'<svg width=\"41\" height=\"306\" viewBox=\"0 0 41 306\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M40.6547 29.0861H41.0755V28.6654V10.8129C41.0755 7.80394 40.0215 5.23597 37.9196 3.13408C35.8189 1.03336 33.2705 -0.0217762 30.298 -0.0217762C27.289 -0.0217762 24.7211 1.03219 22.6192 3.13408C20.5173 5.23597 19.4633 7.80394 19.4633 10.8129V18.2514C19.4633 20.5806 18.6496 22.5721 17.0117 24.248C15.3358 25.886 13.3442 26.6997 11.015 26.6997C8.68453 26.6997 6.71278 25.8853 5.0756 24.2481C3.39831 22.5708 2.56673 20.5792 2.56673 18.2514L2.56673 2.80219V2.38145H2.146H0.601074H0.180343V2.80219L0.180343 18.2514C0.180343 21.2604 1.23432 23.8284 3.33621 25.9303C5.43809 28.0321 8.00607 29.0861 11.015 29.0861C13.9873 29.0861 16.5533 28.0312 18.691 25.933L18.6911 25.933L18.6938 25.9303C20.7957 23.8284 21.8497 21.2604 21.8497 18.2514V10.8129C21.8497 8.4824 22.6642 6.51067 24.3014 4.87349L24.3046 4.8702C25.9425 3.19588 27.9133 2.36461 30.2408 2.36461C32.5685 2.36461 34.5601 3.1962 36.2374 4.87349C37.8746 6.51067 38.6891 8.48241 38.6891 10.8129V28.6654V29.0861H39.1098H40.6547Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M40.6547 63.5072H41.0755V63.0865V44.7762C41.0755 41.8044 40.0208 39.2565 37.9211 37.1561C35.82 35.0161 33.2517 33.9416 30.2408 33.9416C27.741 33.9416 25.5116 34.7377 23.5682 36.3235C21.8904 37.6595 20.7129 39.3255 20.0407 41.3132C19.1712 39.9607 18.0287 38.8403 16.6174 37.9541C14.9098 36.8819 13.0393 36.3448 11.015 36.3448C8.00607 36.3448 5.43809 37.3988 3.33621 39.5007C1.23432 41.6025 0.180343 44.1705 0.180343 47.1795L0.180343 63.0865V63.5072H0.601074H2.146H2.56673V63.0865L2.56673 47.1795C2.56673 44.852 3.39799 42.8812 5.07231 41.2433L5.07239 41.2434L5.07885 41.2368C6.71677 39.5624 8.68755 38.7312 11.015 38.7312C13.3428 38.7312 15.3344 39.5628 17.0117 41.24C18.6489 42.8772 19.4633 44.849 19.4633 47.1795V63.0865V63.5072H19.8841H21.429H21.8497V63.0865V44.7762C21.8497 43.248 22.2307 41.8546 22.9914 40.5868L22.9916 40.5869L22.9984 40.5747C23.7241 39.2683 24.7381 38.2357 26.0469 37.4722L26.0469 37.4723L26.0513 37.4696C27.3191 36.7089 28.7126 36.328 30.2408 36.328C32.5685 36.328 34.5601 37.1595 36.2374 38.8368C37.8746 40.474 38.6891 42.4458 38.6891 44.7762V63.0865V63.5072H39.1098H40.6547Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.457564 82.9851L0.180343 83.0857V83.3806L0.180343 85.04V85.3345L0.457065 85.4353L40.5107 100.026L41.0755 100.232V99.631V97.9716V97.6768L40.7983 97.5761L4.06316 84.2381L40.7989 70.8443L41.0755 70.7435V70.449V68.8469V68.2467L40.5112 68.4514L0.457564 82.9851Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M39.1098 104.975H38.6891V105.396V131.639H0.601074H0.180343V132.06L0.180343 133.605V134.026H0.601074H40.6547H41.0755V133.605V105.396V104.975H40.6547H39.1098Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M2.92648 186.779L2.92763 186.781C4.75738 189.896 7.2509 192.369 10.4023 194.198C13.52 196.03 16.9313 196.945 20.6279 196.945C23.3912 196.945 26.04 196.419 28.5712 195.368L28.5712 195.368L28.5762 195.366C31.1014 194.278 33.2829 192.818 35.1158 190.985C36.9488 189.152 38.4084 186.971 39.4962 184.446L39.4962 184.446L39.4984 184.441C40.5497 181.909 41.0755 179.261 41.0755 176.497C41.0755 172.801 40.1602 169.39 38.3288 166.272C36.5 163.12 34.0262 160.627 30.9117 158.797L30.9097 158.796C27.7547 156.965 24.3248 156.05 20.6279 156.05C16.9314 156.05 13.5201 156.965 10.4024 158.796C7.24999 160.626 4.75646 163.119 2.92705 166.272C1.09566 169.389 0.180343 172.801 0.180343 176.497C0.180343 180.194 1.09582 183.624 2.92648 186.779ZM36.2844 167.437L36.2856 167.439C37.8875 170.196 38.6891 173.213 38.6891 176.497C38.6891 179.782 37.8876 182.818 36.2848 185.614C34.6815 188.373 32.503 190.551 29.7442 192.154C26.9485 193.757 23.9123 194.559 20.6279 194.559C17.3431 194.559 14.3265 193.757 11.5697 192.155L11.5676 192.154C8.77039 190.55 6.57353 188.372 4.9708 185.614C3.36813 182.818 2.56673 179.782 2.56673 176.497C2.56673 173.213 3.36831 170.196 4.97022 167.439L4.97144 167.437C6.57457 164.641 8.77145 162.444 11.5676 160.841L11.5697 160.84C14.3265 159.238 17.3431 158.436 20.6279 158.436C23.9123 158.436 26.9484 159.238 29.7442 160.84C32.502 162.443 34.6806 164.64 36.2844 167.437Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.84497 201.95L0.180343 201.477V202.293L0.180343 204.181V204.398L0.356926 204.524L18.5868 217.513L0.356926 230.503L0.180343 230.628V230.845L0.180343 232.733L0.180343 233.549L0.84497 233.076L20.6279 219.002L40.4108 233.076L41.0755 233.549V232.733V230.845V230.628L40.8989 230.503L22.669 217.513L40.8989 204.524L41.0755 204.398V204.181V202.293V201.477L40.4108 201.95L20.6279 216.024L0.84497 201.95Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.457564 252.632L0.180343 252.733V253.028L0.180343 254.687V254.981L0.457065 255.082L40.5107 269.673L41.0755 269.879V269.278V267.618V267.324L40.7983 267.223L4.06316 253.885L40.7989 240.491L41.0755 240.39V240.096V238.494V237.894L40.5112 238.098L0.457564 252.632Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.180343 276.587V277.008H0.601074H19.4633V303.689H0.601074H0.180343V304.11L0.180343 305.655V306.075H0.601074H40.6547H41.0755V305.655V304.11V303.689H40.6547H21.8497V277.008H40.6547H41.0755V276.587V275.042V274.622H40.6547H0.601074H0.180343V275.042L0.180343 276.587Z\" fill=\"#030303\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-afyoun hidden-lmf39n\",\"data-framer-name\":\"Group 25\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:306,intrinsicWidth:41,svg:'<svg width=\"41\" height=\"306\" viewBox=\"0 0 41 306\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.8841 10.8129C19.8841 7.91377 20.8949 5.45333 22.9167 3.43158C24.9384 1.40982 27.3989 0.398956 30.298 0.398956C33.159 0.398956 35.6003 1.40982 37.6221 3.43158C39.6439 5.45333 40.6547 7.91377 40.6547 10.8129V28.6654H39.1098V10.8129C39.1098 8.37153 38.2515 6.29257 36.5349 4.57599C34.7802 2.82126 32.6821 1.94388 30.2408 1.94388C27.7994 1.94388 25.7204 2.82126 24.0039 4.57599C22.2873 6.29257 21.429 8.37153 21.429 10.8129V18.2514C21.429 21.1506 20.4181 23.611 18.3963 25.6328C16.3364 27.6545 13.876 28.6654 11.015 28.6654C8.1159 28.6654 5.65547 27.6545 3.63371 25.6328C1.61195 23.611 0.601074 21.1506 0.601074 18.2514L0.601074 2.80219H2.146L2.146 18.2514C2.146 20.6928 3.02337 22.7909 4.7781 24.5456C6.49469 26.2622 8.57366 27.1205 11.015 27.1205C13.4564 27.1205 15.5544 26.2622 17.3092 24.5456C19.0258 22.7909 19.8841 20.6928 19.8841 18.2514V10.8129Z\" fill=\"black\"/>\\n<path d=\"M19.8841 10.8129C19.8841 7.91377 20.8949 5.45333 22.9167 3.43158C24.9384 1.40982 27.3989 0.398956 30.298 0.398956C33.159 0.398956 35.6003 1.40982 37.6221 3.43158C39.6439 5.45333 40.6547 7.91377 40.6547 10.8129V28.6654H39.1098V10.8129C39.1098 8.37153 38.2515 6.29257 36.5349 4.57599C34.7802 2.82126 32.6821 1.94388 30.2408 1.94388C27.7994 1.94388 25.7204 2.82126 24.0039 4.57599C22.2873 6.29257 21.429 8.37153 21.429 10.8129V18.2514C21.429 21.1506 20.4181 23.611 18.3963 25.6328C16.3364 27.6545 13.876 28.6654 11.015 28.6654C8.1159 28.6654 5.65547 27.6545 3.63371 25.6328C1.61195 23.611 0.601074 21.1506 0.601074 18.2514L0.601074 2.80219H2.146L2.146 18.2514C2.146 20.6928 3.02337 22.7909 4.7781 24.5456C6.49469 26.2622 8.57366 27.1205 11.015 27.1205C13.4564 27.1205 15.5544 26.2622 17.3092 24.5456C19.0258 22.7909 19.8841 20.6928 19.8841 18.2514V10.8129Z\" stroke=\"black\"/>\\n<path d=\"M20.1701 42.373C20.7423 40.0461 21.963 38.1388 23.8322 36.6511C25.7014 35.1252 27.8376 34.3623 30.2408 34.3623C33.1399 34.3623 35.6003 35.3922 37.6221 37.4521C39.6439 39.4739 40.6547 41.9153 40.6547 44.7762V63.0865H39.1098V44.7762C39.1098 42.3349 38.2515 40.2559 36.5349 38.5393C34.7802 36.7846 32.6821 35.9072 30.2408 35.9072C28.6386 35.9072 27.17 36.3078 25.8349 37.1088C24.4616 37.9099 23.3935 38.9971 22.6306 40.3703C21.8295 41.7055 21.429 43.1741 21.429 44.7762V63.0865H19.8841V47.1795C19.8841 44.7381 19.0258 42.6591 17.3092 40.9425C15.5544 39.1878 13.4564 38.3105 11.015 38.3105C8.57366 38.3105 6.49469 39.1878 4.7781 40.9425C3.02337 42.6591 2.146 44.7381 2.146 47.1795L2.146 63.0865H0.601074L0.601074 47.1795C0.601074 44.2804 1.61195 41.8199 3.63371 39.7982C5.65547 37.7764 8.1159 36.7655 11.015 36.7655C12.9605 36.7655 14.7534 37.2805 16.3937 38.3105C18.034 39.3404 19.2928 40.6946 20.1701 42.373Z\" fill=\"black\"/>\\n<path d=\"M20.1701 42.373C20.7423 40.0461 21.963 38.1388 23.8322 36.6511C25.7014 35.1252 27.8376 34.3623 30.2408 34.3623C33.1399 34.3623 35.6003 35.3922 37.6221 37.4521C39.6439 39.4739 40.6547 41.9153 40.6547 44.7762V63.0865H39.1098V44.7762C39.1098 42.3349 38.2515 40.2559 36.5349 38.5393C34.7802 36.7846 32.6821 35.9072 30.2408 35.9072C28.6386 35.9072 27.17 36.3078 25.8349 37.1088C24.4616 37.9099 23.3935 38.9971 22.6306 40.3703C21.8295 41.7055 21.429 43.1741 21.429 44.7762V63.0865H19.8841V47.1795C19.8841 44.7381 19.0258 42.6591 17.3092 40.9425C15.5544 39.1878 13.4564 38.3105 11.015 38.3105C8.57366 38.3105 6.49469 39.1878 4.7781 40.9425C3.02337 42.6591 2.146 44.7381 2.146 47.1795L2.146 63.0865H0.601074L0.601074 47.1795C0.601074 44.2804 1.61195 41.8199 3.63371 39.7982C5.65547 37.7764 8.1159 36.7655 11.015 36.7655C12.9605 36.7655 14.7534 37.2805 16.3937 38.3105C18.034 39.3404 19.2928 40.6946 20.1701 42.373Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 83.3806L40.6547 68.8469V70.449L2.83264 84.2389L40.6547 97.9716V99.631L0.601074 85.04L0.601074 83.3806Z\" fill=\"black\"/>\\n<path d=\"M0.601074 83.3806L40.6547 68.8469V70.449L2.83264 84.2389L40.6547 97.9716V99.631L0.601074 85.04L0.601074 83.3806Z\" stroke=\"black\"/>\\n<path d=\"M39.1098 132.06V105.396H40.6547V133.605H0.601074L0.601074 132.06H39.1098Z\" fill=\"black\"/>\\n<path d=\"M39.1098 132.06V105.396H40.6547V133.605H0.601074L0.601074 132.06H39.1098Z\" stroke=\"black\"/>\\n<path d=\"M3.29039 186.568C1.49751 183.478 0.601074 180.121 0.601074 176.497C0.601074 172.873 1.49751 169.536 3.29039 166.484C5.08327 163.394 7.52464 160.953 10.6145 159.16C13.6662 157.367 17.004 156.471 20.6279 156.471C24.2518 156.471 27.6087 157.367 30.6985 159.16C33.7502 160.953 36.1725 163.394 37.9654 166.484C39.7583 169.536 40.6547 172.873 40.6547 176.497C40.6547 179.206 40.1398 181.8 39.1098 184.279C38.0417 186.759 36.6112 188.895 34.8183 190.688C33.0255 192.481 30.8893 193.911 28.4098 194.979C25.9302 196.009 23.3363 196.524 20.6279 196.524C17.004 196.524 13.6662 195.628 10.6145 193.835C7.52464 192.042 5.08327 189.62 3.29039 186.568ZM36.6494 185.824C38.2897 182.963 39.1098 179.854 39.1098 176.497C39.1098 173.14 38.2897 170.051 36.6494 167.228C35.0091 164.367 32.7775 162.116 29.9547 160.476C27.0937 158.836 23.9848 158.015 20.6279 158.015C17.271 158.015 14.1812 158.836 11.3583 160.476C8.49737 162.116 6.24673 164.367 4.60644 167.228C2.96615 170.051 2.146 173.14 2.146 176.497C2.146 179.854 2.96615 182.963 4.60644 185.824C6.24673 188.647 8.49737 190.879 11.3583 192.519C14.1812 194.159 17.271 194.979 20.6279 194.979C23.9848 194.979 27.0937 194.159 29.9547 192.519C32.7775 190.879 35.0091 188.647 36.6494 185.824Z\" fill=\"black\"/>\\n<path d=\"M3.29039 186.568C1.49751 183.478 0.601074 180.121 0.601074 176.497C0.601074 172.873 1.49751 169.536 3.29039 166.484C5.08327 163.394 7.52464 160.953 10.6145 159.16C13.6662 157.367 17.004 156.471 20.6279 156.471C24.2518 156.471 27.6087 157.367 30.6985 159.16C33.7502 160.953 36.1725 163.394 37.9654 166.484C39.7583 169.536 40.6547 172.873 40.6547 176.497C40.6547 179.206 40.1398 181.8 39.1098 184.279C38.0417 186.759 36.6112 188.895 34.8183 190.688C33.0255 192.481 30.8893 193.911 28.4098 194.979C25.9302 196.009 23.3363 196.524 20.6279 196.524C17.004 196.524 13.6662 195.628 10.6145 193.835C7.52464 192.042 5.08327 189.62 3.29039 186.568ZM36.6494 185.824C38.2897 182.963 39.1098 179.854 39.1098 176.497C39.1098 173.14 38.2897 170.051 36.6494 167.228C35.0091 164.367 32.7775 162.116 29.9547 160.476C27.0937 158.836 23.9848 158.015 20.6279 158.015C17.271 158.015 14.1812 158.836 11.3583 160.476C8.49737 162.116 6.24673 164.367 4.60644 167.228C2.96615 170.051 2.146 173.14 2.146 176.497C2.146 179.854 2.96615 182.963 4.60644 185.824C6.24673 188.647 8.49737 190.879 11.3583 192.519C14.1812 194.159 17.271 194.979 20.6279 194.979C23.9848 194.979 27.0937 194.159 29.9547 192.519C32.7775 190.879 35.0091 188.647 36.6494 185.824Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 202.293L20.6279 216.54L40.6547 202.293V204.181L21.944 217.513L40.6547 230.845V232.733L20.6279 218.486L0.601074 232.733L0.601074 230.845L19.3119 217.513L0.601074 204.181L0.601074 202.293Z\" fill=\"black\"/>\\n<path d=\"M0.601074 202.293L20.6279 216.54L40.6547 202.293V204.181L21.944 217.513L40.6547 230.845V232.733L20.6279 218.486L0.601074 232.733L0.601074 230.845L19.3119 217.513L0.601074 204.181L0.601074 202.293Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 253.028L40.6547 238.494V240.096L2.83264 253.886L40.6547 267.618V269.278L0.601074 254.687L0.601074 253.028Z\" fill=\"black\"/>\\n<path d=\"M0.601074 253.028L40.6547 238.494V240.096L2.83264 253.886L40.6547 267.618V269.278L0.601074 254.687L0.601074 253.028Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 276.587L0.601074 275.042H40.6547V276.587H21.429L21.429 304.11H40.6547V305.655H0.601074L0.601074 304.11H19.8841L19.8841 276.587H0.601074Z\" fill=\"#030303\"/>\\n<path d=\"M0.601074 276.587L0.601074 275.042H40.6547V276.587H21.429L21.429 304.11H40.6547V305.655H0.601074L0.601074 304.11H19.8841L19.8841 276.587H0.601074Z\" stroke=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uubmec\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j650oj\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-72tjeh\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zr6mbx\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nu9o59-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DSUvlkoPc\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(UnicornStudioEmbed,{altText:\"\",ariaLabel:\"\",dpi:1.5,fps:60,header:\"\",height:\"100%\",id:\"DSUvlkoPc\",layoutId:\"DSUvlkoPc\",lazyLoad:false,projectId:\"HU0gVGtNwkYX08Z7Wk5E\",projectJSON:\"\",scale:1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p8axop\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\"},children:\"From breakthrough research to real-world impact, we engineer solutions that transform businesses. Our expertise powers enterprises, startups, and innovators worldwide\u2014building technology that scales, adapts, and delivers results.\"})}),fonts:[\"FS;Manrope-regular\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-lawfyc\",\"data-styles-preset\":\"ykNAFI4fN\",style:{\"--framer-text-alignment\":\"center\"},children:\"From breakthrough research to real-world impact, we engineer solutions that transform businesses. Our expertise powers enterprises, startups, and innovators worldwide\u2014building technology that scales, adapts, and delivers results.\"})}),className:\"framer-1sktzeu\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BTOPcQ5t5\"},implicitPathVariables:undefined},{href:{webPageId:\"BTOPcQ5t5\"},implicitPathVariables:undefined},{href:{webPageId:\"BTOPcQ5t5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{y:(componentViewport?.y||0)+0+0+0+2154+80+0+0+70},gj5iHc5SU:{y:(componentViewport?.y||0)+0+0+0+2235+180+0+0+140}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+0+1635+180+0+0+140,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pf3h40-container\",nodeId:\"SfnEqSxic\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{qFgvb8BjV:resolvedLinks[2]},gj5iHc5SU:{qFgvb8BjV:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"SfnEqSxic\",layoutId:\"SfnEqSxic\",qFgvb8BjV:resolvedLinks[0],variant:\"HdZ1P2nS4\",width:\"100%\",WqbHYVdhP:\"LEARN MORE\"})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-qvruwu hidden-lmf39n\",\"data-framer-name\":\"Group 25\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:306,intrinsicWidth:41,svg:'<svg width=\"41\" height=\"306\" viewBox=\"0 0 41 306\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.8841 10.8129C19.8841 7.91377 20.8949 5.45333 22.9167 3.43158C24.9384 1.40982 27.3989 0.398956 30.298 0.398956C33.159 0.398956 35.6003 1.40982 37.6221 3.43158C39.6439 5.45333 40.6547 7.91377 40.6547 10.8129V28.6654H39.1098V10.8129C39.1098 8.37153 38.2515 6.29257 36.5349 4.57599C34.7802 2.82126 32.6821 1.94388 30.2408 1.94388C27.7994 1.94388 25.7204 2.82126 24.0039 4.57599C22.2873 6.29257 21.429 8.37153 21.429 10.8129V18.2514C21.429 21.1506 20.4181 23.611 18.3963 25.6328C16.3364 27.6545 13.876 28.6654 11.015 28.6654C8.1159 28.6654 5.65547 27.6545 3.63371 25.6328C1.61195 23.611 0.601074 21.1506 0.601074 18.2514L0.601074 2.80219H2.146L2.146 18.2514C2.146 20.6928 3.02337 22.7909 4.7781 24.5456C6.49469 26.2622 8.57366 27.1205 11.015 27.1205C13.4564 27.1205 15.5544 26.2622 17.3092 24.5456C19.0258 22.7909 19.8841 20.6928 19.8841 18.2514V10.8129Z\" fill=\"black\"/>\\n<path d=\"M19.8841 10.8129C19.8841 7.91377 20.8949 5.45333 22.9167 3.43158C24.9384 1.40982 27.3989 0.398956 30.298 0.398956C33.159 0.398956 35.6003 1.40982 37.6221 3.43158C39.6439 5.45333 40.6547 7.91377 40.6547 10.8129V28.6654H39.1098V10.8129C39.1098 8.37153 38.2515 6.29257 36.5349 4.57599C34.7802 2.82126 32.6821 1.94388 30.2408 1.94388C27.7994 1.94388 25.7204 2.82126 24.0039 4.57599C22.2873 6.29257 21.429 8.37153 21.429 10.8129V18.2514C21.429 21.1506 20.4181 23.611 18.3963 25.6328C16.3364 27.6545 13.876 28.6654 11.015 28.6654C8.1159 28.6654 5.65547 27.6545 3.63371 25.6328C1.61195 23.611 0.601074 21.1506 0.601074 18.2514L0.601074 2.80219H2.146L2.146 18.2514C2.146 20.6928 3.02337 22.7909 4.7781 24.5456C6.49469 26.2622 8.57366 27.1205 11.015 27.1205C13.4564 27.1205 15.5544 26.2622 17.3092 24.5456C19.0258 22.7909 19.8841 20.6928 19.8841 18.2514V10.8129Z\" stroke=\"black\"/>\\n<path d=\"M20.1701 42.373C20.7423 40.0461 21.963 38.1388 23.8322 36.6511C25.7014 35.1252 27.8376 34.3623 30.2408 34.3623C33.1399 34.3623 35.6003 35.3922 37.6221 37.4521C39.6439 39.4739 40.6547 41.9153 40.6547 44.7762V63.0865H39.1098V44.7762C39.1098 42.3349 38.2515 40.2559 36.5349 38.5393C34.7802 36.7846 32.6821 35.9072 30.2408 35.9072C28.6386 35.9072 27.17 36.3078 25.8349 37.1088C24.4616 37.9099 23.3935 38.9971 22.6306 40.3703C21.8295 41.7055 21.429 43.1741 21.429 44.7762V63.0865H19.8841V47.1795C19.8841 44.7381 19.0258 42.6591 17.3092 40.9425C15.5544 39.1878 13.4564 38.3105 11.015 38.3105C8.57366 38.3105 6.49469 39.1878 4.7781 40.9425C3.02337 42.6591 2.146 44.7381 2.146 47.1795L2.146 63.0865H0.601074L0.601074 47.1795C0.601074 44.2804 1.61195 41.8199 3.63371 39.7982C5.65547 37.7764 8.1159 36.7655 11.015 36.7655C12.9605 36.7655 14.7534 37.2805 16.3937 38.3105C18.034 39.3404 19.2928 40.6946 20.1701 42.373Z\" fill=\"black\"/>\\n<path d=\"M20.1701 42.373C20.7423 40.0461 21.963 38.1388 23.8322 36.6511C25.7014 35.1252 27.8376 34.3623 30.2408 34.3623C33.1399 34.3623 35.6003 35.3922 37.6221 37.4521C39.6439 39.4739 40.6547 41.9153 40.6547 44.7762V63.0865H39.1098V44.7762C39.1098 42.3349 38.2515 40.2559 36.5349 38.5393C34.7802 36.7846 32.6821 35.9072 30.2408 35.9072C28.6386 35.9072 27.17 36.3078 25.8349 37.1088C24.4616 37.9099 23.3935 38.9971 22.6306 40.3703C21.8295 41.7055 21.429 43.1741 21.429 44.7762V63.0865H19.8841V47.1795C19.8841 44.7381 19.0258 42.6591 17.3092 40.9425C15.5544 39.1878 13.4564 38.3105 11.015 38.3105C8.57366 38.3105 6.49469 39.1878 4.7781 40.9425C3.02337 42.6591 2.146 44.7381 2.146 47.1795L2.146 63.0865H0.601074L0.601074 47.1795C0.601074 44.2804 1.61195 41.8199 3.63371 39.7982C5.65547 37.7764 8.1159 36.7655 11.015 36.7655C12.9605 36.7655 14.7534 37.2805 16.3937 38.3105C18.034 39.3404 19.2928 40.6946 20.1701 42.373Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 83.3806L40.6547 68.8469V70.449L2.83264 84.2389L40.6547 97.9716V99.631L0.601074 85.04L0.601074 83.3806Z\" fill=\"black\"/>\\n<path d=\"M0.601074 83.3806L40.6547 68.8469V70.449L2.83264 84.2389L40.6547 97.9716V99.631L0.601074 85.04L0.601074 83.3806Z\" stroke=\"black\"/>\\n<path d=\"M39.1098 132.06V105.396H40.6547V133.605H0.601074L0.601074 132.06H39.1098Z\" fill=\"black\"/>\\n<path d=\"M39.1098 132.06V105.396H40.6547V133.605H0.601074L0.601074 132.06H39.1098Z\" stroke=\"black\"/>\\n<path d=\"M3.29039 186.568C1.49751 183.478 0.601074 180.121 0.601074 176.497C0.601074 172.873 1.49751 169.536 3.29039 166.484C5.08327 163.394 7.52464 160.953 10.6145 159.16C13.6662 157.367 17.004 156.471 20.6279 156.471C24.2518 156.471 27.6087 157.367 30.6985 159.16C33.7502 160.953 36.1725 163.394 37.9654 166.484C39.7583 169.536 40.6547 172.873 40.6547 176.497C40.6547 179.206 40.1398 181.8 39.1098 184.279C38.0417 186.759 36.6112 188.895 34.8183 190.688C33.0255 192.481 30.8893 193.911 28.4098 194.979C25.9302 196.009 23.3363 196.524 20.6279 196.524C17.004 196.524 13.6662 195.628 10.6145 193.835C7.52464 192.042 5.08327 189.62 3.29039 186.568ZM36.6494 185.824C38.2897 182.963 39.1098 179.854 39.1098 176.497C39.1098 173.14 38.2897 170.051 36.6494 167.228C35.0091 164.367 32.7775 162.116 29.9547 160.476C27.0937 158.836 23.9848 158.015 20.6279 158.015C17.271 158.015 14.1812 158.836 11.3583 160.476C8.49737 162.116 6.24673 164.367 4.60644 167.228C2.96615 170.051 2.146 173.14 2.146 176.497C2.146 179.854 2.96615 182.963 4.60644 185.824C6.24673 188.647 8.49737 190.879 11.3583 192.519C14.1812 194.159 17.271 194.979 20.6279 194.979C23.9848 194.979 27.0937 194.159 29.9547 192.519C32.7775 190.879 35.0091 188.647 36.6494 185.824Z\" fill=\"black\"/>\\n<path d=\"M3.29039 186.568C1.49751 183.478 0.601074 180.121 0.601074 176.497C0.601074 172.873 1.49751 169.536 3.29039 166.484C5.08327 163.394 7.52464 160.953 10.6145 159.16C13.6662 157.367 17.004 156.471 20.6279 156.471C24.2518 156.471 27.6087 157.367 30.6985 159.16C33.7502 160.953 36.1725 163.394 37.9654 166.484C39.7583 169.536 40.6547 172.873 40.6547 176.497C40.6547 179.206 40.1398 181.8 39.1098 184.279C38.0417 186.759 36.6112 188.895 34.8183 190.688C33.0255 192.481 30.8893 193.911 28.4098 194.979C25.9302 196.009 23.3363 196.524 20.6279 196.524C17.004 196.524 13.6662 195.628 10.6145 193.835C7.52464 192.042 5.08327 189.62 3.29039 186.568ZM36.6494 185.824C38.2897 182.963 39.1098 179.854 39.1098 176.497C39.1098 173.14 38.2897 170.051 36.6494 167.228C35.0091 164.367 32.7775 162.116 29.9547 160.476C27.0937 158.836 23.9848 158.015 20.6279 158.015C17.271 158.015 14.1812 158.836 11.3583 160.476C8.49737 162.116 6.24673 164.367 4.60644 167.228C2.96615 170.051 2.146 173.14 2.146 176.497C2.146 179.854 2.96615 182.963 4.60644 185.824C6.24673 188.647 8.49737 190.879 11.3583 192.519C14.1812 194.159 17.271 194.979 20.6279 194.979C23.9848 194.979 27.0937 194.159 29.9547 192.519C32.7775 190.879 35.0091 188.647 36.6494 185.824Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 202.293L20.6279 216.54L40.6547 202.293V204.181L21.944 217.513L40.6547 230.845V232.733L20.6279 218.486L0.601074 232.733L0.601074 230.845L19.3119 217.513L0.601074 204.181L0.601074 202.293Z\" fill=\"black\"/>\\n<path d=\"M0.601074 202.293L20.6279 216.54L40.6547 202.293V204.181L21.944 217.513L40.6547 230.845V232.733L20.6279 218.486L0.601074 232.733L0.601074 230.845L19.3119 217.513L0.601074 204.181L0.601074 202.293Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 253.028L40.6547 238.494V240.096L2.83264 253.886L40.6547 267.618V269.278L0.601074 254.687L0.601074 253.028Z\" fill=\"black\"/>\\n<path d=\"M0.601074 253.028L40.6547 238.494V240.096L2.83264 253.886L40.6547 267.618V269.278L0.601074 254.687L0.601074 253.028Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 276.587L0.601074 275.042H40.6547V276.587H21.429L21.429 304.11H40.6547V305.655H0.601074L0.601074 304.11H19.8841L19.8841 276.587H0.601074Z\" fill=\"#030303\"/>\\n<path d=\"M0.601074 276.587L0.601074 275.042H40.6547V276.587H21.429L21.429 304.11H40.6547V305.655H0.601074L0.601074 304.11H19.8841L19.8841 276.587H0.601074Z\" stroke=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sz35s2\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rowxz7 hidden-lmf39n\"}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-8vw9vn hidden-lmf39n\",\"data-framer-name\":\"HAXO LABS\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:306,intrinsicWidth:41,style:{rotate:-180},svg:'<svg width=\"41\" height=\"306\" viewBox=\"0 0 41 306\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M40.6547 29.0861H41.0755V28.6654V10.8129C41.0755 7.80394 40.0215 5.23597 37.9196 3.13408C35.8189 1.03336 33.2705 -0.0217762 30.298 -0.0217762C27.289 -0.0217762 24.7211 1.03219 22.6192 3.13408C20.5173 5.23597 19.4633 7.80394 19.4633 10.8129V18.2514C19.4633 20.5806 18.6496 22.5721 17.0117 24.248C15.3358 25.886 13.3442 26.6997 11.015 26.6997C8.68453 26.6997 6.71278 25.8853 5.0756 24.2481C3.39831 22.5708 2.56673 20.5792 2.56673 18.2514L2.56673 2.80219V2.38145H2.146H0.601074H0.180343V2.80219L0.180343 18.2514C0.180343 21.2604 1.23432 23.8284 3.33621 25.9303C5.43809 28.0321 8.00607 29.0861 11.015 29.0861C13.9873 29.0861 16.5533 28.0312 18.691 25.933L18.6911 25.933L18.6938 25.9303C20.7957 23.8284 21.8497 21.2604 21.8497 18.2514V10.8129C21.8497 8.4824 22.6642 6.51067 24.3014 4.87349L24.3046 4.8702C25.9425 3.19588 27.9133 2.36461 30.2408 2.36461C32.5685 2.36461 34.5601 3.1962 36.2374 4.87349C37.8746 6.51067 38.6891 8.48241 38.6891 10.8129V28.6654V29.0861H39.1098H40.6547Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M40.6547 63.5072H41.0755V63.0865V44.7762C41.0755 41.8044 40.0208 39.2565 37.9211 37.1561C35.82 35.0161 33.2517 33.9416 30.2408 33.9416C27.741 33.9416 25.5116 34.7377 23.5682 36.3235C21.8904 37.6595 20.7129 39.3255 20.0407 41.3132C19.1712 39.9607 18.0287 38.8403 16.6174 37.9541C14.9098 36.8819 13.0393 36.3448 11.015 36.3448C8.00607 36.3448 5.43809 37.3988 3.33621 39.5007C1.23432 41.6025 0.180343 44.1705 0.180343 47.1795L0.180343 63.0865V63.5072H0.601074H2.146H2.56673V63.0865L2.56673 47.1795C2.56673 44.852 3.39799 42.8812 5.07231 41.2433L5.07239 41.2434L5.07885 41.2368C6.71677 39.5624 8.68755 38.7312 11.015 38.7312C13.3428 38.7312 15.3344 39.5628 17.0117 41.24C18.6489 42.8772 19.4633 44.849 19.4633 47.1795V63.0865V63.5072H19.8841H21.429H21.8497V63.0865V44.7762C21.8497 43.248 22.2307 41.8546 22.9914 40.5868L22.9916 40.5869L22.9984 40.5747C23.7241 39.2683 24.7381 38.2357 26.0469 37.4722L26.0469 37.4723L26.0513 37.4696C27.3191 36.7089 28.7126 36.328 30.2408 36.328C32.5685 36.328 34.5601 37.1595 36.2374 38.8368C37.8746 40.474 38.6891 42.4458 38.6891 44.7762V63.0865V63.5072H39.1098H40.6547Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.457564 82.9851L0.180343 83.0857V83.3806L0.180343 85.04V85.3345L0.457065 85.4353L40.5107 100.026L41.0755 100.232V99.631V97.9716V97.6768L40.7983 97.5761L4.06316 84.2381L40.7989 70.8443L41.0755 70.7435V70.449V68.8469V68.2467L40.5112 68.4514L0.457564 82.9851Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M39.1098 104.975H38.6891V105.396V131.639H0.601074H0.180343V132.06L0.180343 133.605V134.026H0.601074H40.6547H41.0755V133.605V105.396V104.975H40.6547H39.1098Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M2.92648 186.779L2.92763 186.781C4.75738 189.896 7.2509 192.369 10.4023 194.198C13.52 196.03 16.9313 196.945 20.6279 196.945C23.3912 196.945 26.04 196.419 28.5712 195.368L28.5712 195.368L28.5762 195.366C31.1014 194.278 33.2829 192.818 35.1158 190.985C36.9488 189.152 38.4084 186.971 39.4962 184.446L39.4962 184.446L39.4984 184.441C40.5497 181.909 41.0755 179.261 41.0755 176.497C41.0755 172.801 40.1602 169.39 38.3288 166.272C36.5 163.12 34.0262 160.627 30.9117 158.797L30.9097 158.796C27.7547 156.965 24.3248 156.05 20.6279 156.05C16.9314 156.05 13.5201 156.965 10.4024 158.796C7.24999 160.626 4.75646 163.119 2.92705 166.272C1.09566 169.389 0.180343 172.801 0.180343 176.497C0.180343 180.194 1.09582 183.624 2.92648 186.779ZM36.2844 167.437L36.2856 167.439C37.8875 170.196 38.6891 173.213 38.6891 176.497C38.6891 179.782 37.8876 182.818 36.2848 185.614C34.6815 188.373 32.503 190.551 29.7442 192.154C26.9485 193.757 23.9123 194.559 20.6279 194.559C17.3431 194.559 14.3265 193.757 11.5697 192.155L11.5676 192.154C8.77039 190.55 6.57353 188.372 4.9708 185.614C3.36813 182.818 2.56673 179.782 2.56673 176.497C2.56673 173.213 3.36831 170.196 4.97022 167.439L4.97144 167.437C6.57457 164.641 8.77145 162.444 11.5676 160.841L11.5697 160.84C14.3265 159.238 17.3431 158.436 20.6279 158.436C23.9123 158.436 26.9484 159.238 29.7442 160.84C32.502 162.443 34.6806 164.64 36.2844 167.437Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.84497 201.95L0.180343 201.477V202.293L0.180343 204.181V204.398L0.356926 204.524L18.5868 217.513L0.356926 230.503L0.180343 230.628V230.845L0.180343 232.733L0.180343 233.549L0.84497 233.076L20.6279 219.002L40.4108 233.076L41.0755 233.549V232.733V230.845V230.628L40.8989 230.503L22.669 217.513L40.8989 204.524L41.0755 204.398V204.181V202.293V201.477L40.4108 201.95L20.6279 216.024L0.84497 201.95Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.457564 252.632L0.180343 252.733V253.028L0.180343 254.687V254.981L0.457065 255.082L40.5107 269.673L41.0755 269.879V269.278V267.618V267.324L40.7983 267.223L4.06316 253.885L40.7989 240.491L41.0755 240.39V240.096V238.494V237.894L40.5112 238.098L0.457564 252.632Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.180343 276.587V277.008H0.601074H19.4633V303.689H0.601074H0.180343V304.11L0.180343 305.655V306.075H0.601074H40.6547H41.0755V305.655V304.11V303.689H40.6547H21.8497V277.008H40.6547H41.0755V276.587V275.042V274.622H40.6547H0.601074H0.180343V275.042L0.180343 276.587Z\" fill=\"#030303\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1c5zp36\",\"data-framer-name\":\"Services\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m22hbh\",\"data-framer-name\":\"Container + Padding\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation19,className:\"framer-v3mm3w\",\"data-framer-appear-id\":\"v3mm3w\",\"data-framer-name\":\"Layout\",initial:animation20,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n01mnl\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ui52qh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14bz7ye\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1opevds\",\"data-styles-preset\":\"IkMC8Jr8e\",children:\"( Our Capabilities )\"})}),className:\"framer-ki21y1\",\"data-framer-name\":\"THE TRUTH IS THAT YOU PAY FOR YOUR LIFESTYLE IN HOURS.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{height:14,width:\"14px\",y:(componentViewport?.y||0)+0+0+0+2468+50+0+0+0+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ns4j44-container hidden-1twapsh hidden-m2bvcd\",nodeId:\"P1NCcM1V3\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Square,{height:\"100%\",id:\"P1NCcM1V3\",layoutId:\"P1NCcM1V3\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 900px), 1px)`,y:(componentViewport?.y||0)+0+0+0+2468+50+0+0+0+0+0+0+0+0+0+32},gj5iHc5SU:{width:undefined,y:(componentViewport?.y||0)+0+0+0+2819+50+0+0+0+100+0+0+5+0+0+32}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(min(${componentViewport?.width||\"100vw\"} - 160px, 900px) * 0.39)`,y:(componentViewport?.y||0)+0+0+0+2219+50+0+0+0+100+0+0+5+0+0+32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ua6hhd-container\",nodeId:\"iRLJBHWGs\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(ComponentDivider,{height:\"100%\",id:\"iRLJBHWGs\",layoutId:\"iRLJBHWGs\",style:{height:\"100%\",width:\"100%\"},variant:\"EQNB1eTqT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18khv0j\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",children:[\"           We go beyond traditional software development. Our research-driven approach means we build solutions that are \",/*#__PURE__*/_jsx(\"strong\",{children:\"future-ready\"}),\" and aligned with the latest advancements in technology.\"]})}),fonts:[\"Inter\",\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",style:{\"--framer-text-alignment\":\"justify\"},children:\"          Haxo Labs goes beyond software development, building future-ready solutions that evolve with technology and business needs.\"})}),className:\"framer-1fv130x\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gj5iHc5SU:{y:(componentViewport?.y||0)+0+0+0+2819+50+0+0+0+100+0+0+5+427}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"14px\",y:(componentViewport?.y||0)+0+0+0+2219+50+0+0+0+100+0+0+5+427,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1flww3u-container hidden-lmf39n\",nodeId:\"CnQG9R2ET\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Square,{height:\"100%\",id:\"CnQG9R2ET\",layoutId:\"CnQG9R2ET\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cq6z1m\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17g8to9\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14cmj6l hidden-lmf39n\",\"data-border\":true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 900px)`,y:(componentViewport?.y||0)+0+0+0+2468+50+0+0+0+0+0+0+179+0+0+0+0},gj5iHc5SU:{width:\"309px\",y:(componentViewport?.y||0)+0+0+0+2819+50+0+0+0+100+0+0+0+0+0+162}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"358px\",y:(componentViewport?.y||0)+0+0+0+2219+50+0+0+0+100+0+0+0+0+0+162,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g329s4-container\",nodeId:\"aXXriPZuB\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Card,{height:\"100%\",id:\"aXXriPZuB\",layoutId:\"aXXriPZuB\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 900px)`,y:(componentViewport?.y||0)+0+0+0+2468+50+0+0+0+0+0+0+179+0+0+0+404},gj5iHc5SU:{width:\"309px\",y:(componentViewport?.y||0)+0+0+0+2819+50+0+0+0+100+0+0+0+0+0+582}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:382,width:\"358px\",y:(componentViewport?.y||0)+0+0+0+2219+50+0+0+0+100+0+0+0+0+0+582,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j3i1x6-container\",nodeId:\"KsXC9Q3Ku\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Card2,{height:\"100%\",id:\"KsXC9Q3Ku\",layoutId:\"KsXC9Q3Ku\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 900px)`,y:(componentViewport?.y||0)+0+0+0+2468+50+0+0+0+0+0+0+179+0+0+0+810},gj5iHc5SU:{width:\"309px\",y:(componentViewport?.y||0)+0+0+0+2819+50+0+0+0+100+0+0+0+0+0+1004}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"358px\",y:(componentViewport?.y||0)+0+0+0+2219+50+0+0+0+100+0+0+0+0+0+1004,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10tnvsq-container\",nodeId:\"nTTqqArU3\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Card4,{height:\"100%\",id:\"nTTqqArU3\",layoutId:\"nTTqqArU3\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 900px)`,y:(componentViewport?.y||0)+0+0+0+2468+50+0+0+0+0+0+0+179+0+0+0+1234},gj5iHc5SU:{width:\"309px\",y:(componentViewport?.y||0)+0+0+0+2819+50+0+0+0+100+0+0+0+0+0+1444}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"358px\",y:(componentViewport?.y||0)+0+0+0+2219+50+0+0+0+100+0+0+0+0+0+1444,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ot8w0-container\",nodeId:\"cCJX6Yleb\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Card5,{height:\"100%\",id:\"cCJX6Yleb\",layoutId:\"cCJX6Yleb\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 900px)`,y:(componentViewport?.y||0)+0+0+0+2468+50+0+0+0+0+0+0+179+0+0+0+1658},gj5iHc5SU:{width:\"309px\",y:(componentViewport?.y||0)+0+0+0+2819+50+0+0+0+100+0+0+0+0+0+1884}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"358px\",y:(componentViewport?.y||0)+0+0+0+2219+50+0+0+0+100+0+0+0+0+0+1884,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ymf0aw-container\",nodeId:\"IpaDox9rD\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Card6,{height:\"100%\",id:\"IpaDox9rD\",layoutId:\"IpaDox9rD\",style:{width:\"100%\"},width:\"100%\"})})})})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-p5pnx9 hidden-lmf39n\",\"data-framer-name\":\"Group 25\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:306,intrinsicWidth:41,svg:'<svg width=\"41\" height=\"306\" viewBox=\"0 0 41 306\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.8841 10.8129C19.8841 7.91377 20.8949 5.45333 22.9167 3.43158C24.9384 1.40982 27.3989 0.398956 30.298 0.398956C33.159 0.398956 35.6003 1.40982 37.6221 3.43158C39.6439 5.45333 40.6547 7.91377 40.6547 10.8129V28.6654H39.1098V10.8129C39.1098 8.37153 38.2515 6.29257 36.5349 4.57599C34.7802 2.82126 32.6821 1.94388 30.2408 1.94388C27.7994 1.94388 25.7204 2.82126 24.0039 4.57599C22.2873 6.29257 21.429 8.37153 21.429 10.8129V18.2514C21.429 21.1506 20.4181 23.611 18.3963 25.6328C16.3364 27.6545 13.876 28.6654 11.015 28.6654C8.1159 28.6654 5.65547 27.6545 3.63371 25.6328C1.61195 23.611 0.601074 21.1506 0.601074 18.2514L0.601074 2.80219H2.146L2.146 18.2514C2.146 20.6928 3.02337 22.7909 4.7781 24.5456C6.49469 26.2622 8.57366 27.1205 11.015 27.1205C13.4564 27.1205 15.5544 26.2622 17.3092 24.5456C19.0258 22.7909 19.8841 20.6928 19.8841 18.2514V10.8129Z\" fill=\"black\"/>\\n<path d=\"M19.8841 10.8129C19.8841 7.91377 20.8949 5.45333 22.9167 3.43158C24.9384 1.40982 27.3989 0.398956 30.298 0.398956C33.159 0.398956 35.6003 1.40982 37.6221 3.43158C39.6439 5.45333 40.6547 7.91377 40.6547 10.8129V28.6654H39.1098V10.8129C39.1098 8.37153 38.2515 6.29257 36.5349 4.57599C34.7802 2.82126 32.6821 1.94388 30.2408 1.94388C27.7994 1.94388 25.7204 2.82126 24.0039 4.57599C22.2873 6.29257 21.429 8.37153 21.429 10.8129V18.2514C21.429 21.1506 20.4181 23.611 18.3963 25.6328C16.3364 27.6545 13.876 28.6654 11.015 28.6654C8.1159 28.6654 5.65547 27.6545 3.63371 25.6328C1.61195 23.611 0.601074 21.1506 0.601074 18.2514L0.601074 2.80219H2.146L2.146 18.2514C2.146 20.6928 3.02337 22.7909 4.7781 24.5456C6.49469 26.2622 8.57366 27.1205 11.015 27.1205C13.4564 27.1205 15.5544 26.2622 17.3092 24.5456C19.0258 22.7909 19.8841 20.6928 19.8841 18.2514V10.8129Z\" stroke=\"black\"/>\\n<path d=\"M20.1701 42.373C20.7423 40.0461 21.963 38.1388 23.8322 36.6511C25.7014 35.1252 27.8376 34.3623 30.2408 34.3623C33.1399 34.3623 35.6003 35.3922 37.6221 37.4521C39.6439 39.4739 40.6547 41.9153 40.6547 44.7762V63.0865H39.1098V44.7762C39.1098 42.3349 38.2515 40.2559 36.5349 38.5393C34.7802 36.7846 32.6821 35.9072 30.2408 35.9072C28.6386 35.9072 27.17 36.3078 25.8349 37.1088C24.4616 37.9099 23.3935 38.9971 22.6306 40.3703C21.8295 41.7055 21.429 43.1741 21.429 44.7762V63.0865H19.8841V47.1795C19.8841 44.7381 19.0258 42.6591 17.3092 40.9425C15.5544 39.1878 13.4564 38.3105 11.015 38.3105C8.57366 38.3105 6.49469 39.1878 4.7781 40.9425C3.02337 42.6591 2.146 44.7381 2.146 47.1795L2.146 63.0865H0.601074L0.601074 47.1795C0.601074 44.2804 1.61195 41.8199 3.63371 39.7982C5.65547 37.7764 8.1159 36.7655 11.015 36.7655C12.9605 36.7655 14.7534 37.2805 16.3937 38.3105C18.034 39.3404 19.2928 40.6946 20.1701 42.373Z\" fill=\"black\"/>\\n<path d=\"M20.1701 42.373C20.7423 40.0461 21.963 38.1388 23.8322 36.6511C25.7014 35.1252 27.8376 34.3623 30.2408 34.3623C33.1399 34.3623 35.6003 35.3922 37.6221 37.4521C39.6439 39.4739 40.6547 41.9153 40.6547 44.7762V63.0865H39.1098V44.7762C39.1098 42.3349 38.2515 40.2559 36.5349 38.5393C34.7802 36.7846 32.6821 35.9072 30.2408 35.9072C28.6386 35.9072 27.17 36.3078 25.8349 37.1088C24.4616 37.9099 23.3935 38.9971 22.6306 40.3703C21.8295 41.7055 21.429 43.1741 21.429 44.7762V63.0865H19.8841V47.1795C19.8841 44.7381 19.0258 42.6591 17.3092 40.9425C15.5544 39.1878 13.4564 38.3105 11.015 38.3105C8.57366 38.3105 6.49469 39.1878 4.7781 40.9425C3.02337 42.6591 2.146 44.7381 2.146 47.1795L2.146 63.0865H0.601074L0.601074 47.1795C0.601074 44.2804 1.61195 41.8199 3.63371 39.7982C5.65547 37.7764 8.1159 36.7655 11.015 36.7655C12.9605 36.7655 14.7534 37.2805 16.3937 38.3105C18.034 39.3404 19.2928 40.6946 20.1701 42.373Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 83.3806L40.6547 68.8469V70.449L2.83264 84.2389L40.6547 97.9716V99.631L0.601074 85.04L0.601074 83.3806Z\" fill=\"black\"/>\\n<path d=\"M0.601074 83.3806L40.6547 68.8469V70.449L2.83264 84.2389L40.6547 97.9716V99.631L0.601074 85.04L0.601074 83.3806Z\" stroke=\"black\"/>\\n<path d=\"M39.1098 132.06V105.396H40.6547V133.605H0.601074L0.601074 132.06H39.1098Z\" fill=\"black\"/>\\n<path d=\"M39.1098 132.06V105.396H40.6547V133.605H0.601074L0.601074 132.06H39.1098Z\" stroke=\"black\"/>\\n<path d=\"M3.29039 186.568C1.49751 183.478 0.601074 180.121 0.601074 176.497C0.601074 172.873 1.49751 169.536 3.29039 166.484C5.08327 163.394 7.52464 160.953 10.6145 159.16C13.6662 157.367 17.004 156.471 20.6279 156.471C24.2518 156.471 27.6087 157.367 30.6985 159.16C33.7502 160.953 36.1725 163.394 37.9654 166.484C39.7583 169.536 40.6547 172.873 40.6547 176.497C40.6547 179.206 40.1398 181.8 39.1098 184.279C38.0417 186.759 36.6112 188.895 34.8183 190.688C33.0255 192.481 30.8893 193.911 28.4098 194.979C25.9302 196.009 23.3363 196.524 20.6279 196.524C17.004 196.524 13.6662 195.628 10.6145 193.835C7.52464 192.042 5.08327 189.62 3.29039 186.568ZM36.6494 185.824C38.2897 182.963 39.1098 179.854 39.1098 176.497C39.1098 173.14 38.2897 170.051 36.6494 167.228C35.0091 164.367 32.7775 162.116 29.9547 160.476C27.0937 158.836 23.9848 158.015 20.6279 158.015C17.271 158.015 14.1812 158.836 11.3583 160.476C8.49737 162.116 6.24673 164.367 4.60644 167.228C2.96615 170.051 2.146 173.14 2.146 176.497C2.146 179.854 2.96615 182.963 4.60644 185.824C6.24673 188.647 8.49737 190.879 11.3583 192.519C14.1812 194.159 17.271 194.979 20.6279 194.979C23.9848 194.979 27.0937 194.159 29.9547 192.519C32.7775 190.879 35.0091 188.647 36.6494 185.824Z\" fill=\"black\"/>\\n<path d=\"M3.29039 186.568C1.49751 183.478 0.601074 180.121 0.601074 176.497C0.601074 172.873 1.49751 169.536 3.29039 166.484C5.08327 163.394 7.52464 160.953 10.6145 159.16C13.6662 157.367 17.004 156.471 20.6279 156.471C24.2518 156.471 27.6087 157.367 30.6985 159.16C33.7502 160.953 36.1725 163.394 37.9654 166.484C39.7583 169.536 40.6547 172.873 40.6547 176.497C40.6547 179.206 40.1398 181.8 39.1098 184.279C38.0417 186.759 36.6112 188.895 34.8183 190.688C33.0255 192.481 30.8893 193.911 28.4098 194.979C25.9302 196.009 23.3363 196.524 20.6279 196.524C17.004 196.524 13.6662 195.628 10.6145 193.835C7.52464 192.042 5.08327 189.62 3.29039 186.568ZM36.6494 185.824C38.2897 182.963 39.1098 179.854 39.1098 176.497C39.1098 173.14 38.2897 170.051 36.6494 167.228C35.0091 164.367 32.7775 162.116 29.9547 160.476C27.0937 158.836 23.9848 158.015 20.6279 158.015C17.271 158.015 14.1812 158.836 11.3583 160.476C8.49737 162.116 6.24673 164.367 4.60644 167.228C2.96615 170.051 2.146 173.14 2.146 176.497C2.146 179.854 2.96615 182.963 4.60644 185.824C6.24673 188.647 8.49737 190.879 11.3583 192.519C14.1812 194.159 17.271 194.979 20.6279 194.979C23.9848 194.979 27.0937 194.159 29.9547 192.519C32.7775 190.879 35.0091 188.647 36.6494 185.824Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 202.293L20.6279 216.54L40.6547 202.293V204.181L21.944 217.513L40.6547 230.845V232.733L20.6279 218.486L0.601074 232.733L0.601074 230.845L19.3119 217.513L0.601074 204.181L0.601074 202.293Z\" fill=\"black\"/>\\n<path d=\"M0.601074 202.293L20.6279 216.54L40.6547 202.293V204.181L21.944 217.513L40.6547 230.845V232.733L20.6279 218.486L0.601074 232.733L0.601074 230.845L19.3119 217.513L0.601074 204.181L0.601074 202.293Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 253.028L40.6547 238.494V240.096L2.83264 253.886L40.6547 267.618V269.278L0.601074 254.687L0.601074 253.028Z\" fill=\"black\"/>\\n<path d=\"M0.601074 253.028L40.6547 238.494V240.096L2.83264 253.886L40.6547 267.618V269.278L0.601074 254.687L0.601074 253.028Z\" stroke=\"black\"/>\\n<path d=\"M0.601074 276.587L0.601074 275.042H40.6547V276.587H21.429L21.429 304.11H40.6547V305.655H0.601074L0.601074 304.11H19.8841L19.8841 276.587H0.601074Z\" fill=\"#030303\"/>\\n<path d=\"M0.601074 276.587L0.601074 275.042H40.6547V276.587H21.429L21.429 304.11H40.6547V305.655H0.601074L0.601074 304.11H19.8841L19.8841 276.587H0.601074Z\" stroke=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-cejcli hidden-lmf39n\",\"data-framer-name\":\"HAXO LABS\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:306,intrinsicWidth:41,style:{rotate:-180},svg:'<svg width=\"41\" height=\"306\" viewBox=\"0 0 41 306\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M40.6547 29.0861H41.0755V28.6654V10.8129C41.0755 7.80394 40.0215 5.23597 37.9196 3.13408C35.8189 1.03336 33.2705 -0.0217762 30.298 -0.0217762C27.289 -0.0217762 24.7211 1.03219 22.6192 3.13408C20.5173 5.23597 19.4633 7.80394 19.4633 10.8129V18.2514C19.4633 20.5806 18.6496 22.5721 17.0117 24.248C15.3358 25.886 13.3442 26.6997 11.015 26.6997C8.68453 26.6997 6.71278 25.8853 5.0756 24.2481C3.39831 22.5708 2.56673 20.5792 2.56673 18.2514L2.56673 2.80219V2.38145H2.146H0.601074H0.180343V2.80219L0.180343 18.2514C0.180343 21.2604 1.23432 23.8284 3.33621 25.9303C5.43809 28.0321 8.00607 29.0861 11.015 29.0861C13.9873 29.0861 16.5533 28.0312 18.691 25.933L18.6911 25.933L18.6938 25.9303C20.7957 23.8284 21.8497 21.2604 21.8497 18.2514V10.8129C21.8497 8.4824 22.6642 6.51067 24.3014 4.87349L24.3046 4.8702C25.9425 3.19588 27.9133 2.36461 30.2408 2.36461C32.5685 2.36461 34.5601 3.1962 36.2374 4.87349C37.8746 6.51067 38.6891 8.48241 38.6891 10.8129V28.6654V29.0861H39.1098H40.6547Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M40.6547 63.5072H41.0755V63.0865V44.7762C41.0755 41.8044 40.0208 39.2565 37.9211 37.1561C35.82 35.0161 33.2517 33.9416 30.2408 33.9416C27.741 33.9416 25.5116 34.7377 23.5682 36.3235C21.8904 37.6595 20.7129 39.3255 20.0407 41.3132C19.1712 39.9607 18.0287 38.8403 16.6174 37.9541C14.9098 36.8819 13.0393 36.3448 11.015 36.3448C8.00607 36.3448 5.43809 37.3988 3.33621 39.5007C1.23432 41.6025 0.180343 44.1705 0.180343 47.1795L0.180343 63.0865V63.5072H0.601074H2.146H2.56673V63.0865L2.56673 47.1795C2.56673 44.852 3.39799 42.8812 5.07231 41.2433L5.07239 41.2434L5.07885 41.2368C6.71677 39.5624 8.68755 38.7312 11.015 38.7312C13.3428 38.7312 15.3344 39.5628 17.0117 41.24C18.6489 42.8772 19.4633 44.849 19.4633 47.1795V63.0865V63.5072H19.8841H21.429H21.8497V63.0865V44.7762C21.8497 43.248 22.2307 41.8546 22.9914 40.5868L22.9916 40.5869L22.9984 40.5747C23.7241 39.2683 24.7381 38.2357 26.0469 37.4722L26.0469 37.4723L26.0513 37.4696C27.3191 36.7089 28.7126 36.328 30.2408 36.328C32.5685 36.328 34.5601 37.1595 36.2374 38.8368C37.8746 40.474 38.6891 42.4458 38.6891 44.7762V63.0865V63.5072H39.1098H40.6547Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.457564 82.9851L0.180343 83.0857V83.3806L0.180343 85.04V85.3345L0.457065 85.4353L40.5107 100.026L41.0755 100.232V99.631V97.9716V97.6768L40.7983 97.5761L4.06316 84.2381L40.7989 70.8443L41.0755 70.7435V70.449V68.8469V68.2467L40.5112 68.4514L0.457564 82.9851Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M39.1098 104.975H38.6891V105.396V131.639H0.601074H0.180343V132.06L0.180343 133.605V134.026H0.601074H40.6547H41.0755V133.605V105.396V104.975H40.6547H39.1098Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M2.92648 186.779L2.92763 186.781C4.75738 189.896 7.2509 192.369 10.4023 194.198C13.52 196.03 16.9313 196.945 20.6279 196.945C23.3912 196.945 26.04 196.419 28.5712 195.368L28.5712 195.368L28.5762 195.366C31.1014 194.278 33.2829 192.818 35.1158 190.985C36.9488 189.152 38.4084 186.971 39.4962 184.446L39.4962 184.446L39.4984 184.441C40.5497 181.909 41.0755 179.261 41.0755 176.497C41.0755 172.801 40.1602 169.39 38.3288 166.272C36.5 163.12 34.0262 160.627 30.9117 158.797L30.9097 158.796C27.7547 156.965 24.3248 156.05 20.6279 156.05C16.9314 156.05 13.5201 156.965 10.4024 158.796C7.24999 160.626 4.75646 163.119 2.92705 166.272C1.09566 169.389 0.180343 172.801 0.180343 176.497C0.180343 180.194 1.09582 183.624 2.92648 186.779ZM36.2844 167.437L36.2856 167.439C37.8875 170.196 38.6891 173.213 38.6891 176.497C38.6891 179.782 37.8876 182.818 36.2848 185.614C34.6815 188.373 32.503 190.551 29.7442 192.154C26.9485 193.757 23.9123 194.559 20.6279 194.559C17.3431 194.559 14.3265 193.757 11.5697 192.155L11.5676 192.154C8.77039 190.55 6.57353 188.372 4.9708 185.614C3.36813 182.818 2.56673 179.782 2.56673 176.497C2.56673 173.213 3.36831 170.196 4.97022 167.439L4.97144 167.437C6.57457 164.641 8.77145 162.444 11.5676 160.841L11.5697 160.84C14.3265 159.238 17.3431 158.436 20.6279 158.436C23.9123 158.436 26.9484 159.238 29.7442 160.84C32.502 162.443 34.6806 164.64 36.2844 167.437Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.84497 201.95L0.180343 201.477V202.293L0.180343 204.181V204.398L0.356926 204.524L18.5868 217.513L0.356926 230.503L0.180343 230.628V230.845L0.180343 232.733L0.180343 233.549L0.84497 233.076L20.6279 219.002L40.4108 233.076L41.0755 233.549V232.733V230.845V230.628L40.8989 230.503L22.669 217.513L40.8989 204.524L41.0755 204.398V204.181V202.293V201.477L40.4108 201.95L20.6279 216.024L0.84497 201.95Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.457564 252.632L0.180343 252.733V253.028L0.180343 254.687V254.981L0.457065 255.082L40.5107 269.673L41.0755 269.879V269.278V267.618V267.324L40.7983 267.223L4.06316 253.885L40.7989 240.491L41.0755 240.39V240.096V238.494V237.894L40.5112 238.098L0.457564 252.632Z\" fill=\"black\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n<path d=\"M0.180343 276.587V277.008H0.601074H19.4633V303.689H0.601074H0.180343V304.11L0.180343 305.655V306.075H0.601074H40.6547H41.0755V305.655V304.11V303.689H40.6547H21.8497V277.008H40.6547H41.0755V276.587V275.042V274.622H40.6547H0.601074H0.180343V275.042L0.180343 276.587Z\" fill=\"#030303\" stroke=\"black\" stroke-width=\"0.841463\"/>\\n</svg>\\n',withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wg6gun\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i1j7uq\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r2o6uv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ja1fro\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1709qw2\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1opevds\",\"data-styles-preset\":\"IkMC8Jr8e\",children:\"( Technologies We Use  )\"})}),className:\"framer-xynao7\",\"data-framer-name\":\"THE TRUTH IS THAT YOU PAY FOR YOUR LIFESTYLE IN HOURS.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{height:14,width:\"14px\",y:(componentViewport?.y||0)+0+0+0+4805+100+0+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vlcshs-container hidden-1twapsh hidden-m2bvcd\",nodeId:\"uZgDPhfO8\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Square,{height:\"100%\",id:\"uZgDPhfO8\",layoutId:\"uZgDPhfO8\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10m5nfq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17wrg0c\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-b1106767-fbaa-4a24-bd97-dfbf18764b12, rgb(68, 68, 68))\"},children:\"        We integrate cutting-edge technologies to build secure, intelligent, and efficient solutions\u2014helping businesses innovate and scale with confidence.\"})}),className:\"framer-2573ua\",fonts:[\"GF;Manrope-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gj5iHc5SU:{y:(componentViewport?.y||0)+0+0+0+5373+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"14px\",y:(componentViewport?.y||0)+0+0+0+4773+100+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11crkqj-container hidden-lmf39n\",nodeId:\"smwHz1jN8\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(Square,{height:\"100%\",id:\"smwHz1jN8\",layoutId:\"smwHz1jN8\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ev9ydl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r8c4za\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-34ybzj hidden-m2bvcd hidden-lmf39n\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jd5jc2\",\"data-border\":true,\"data-framer-name\":\"Animation/Development\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b7q54k\",\"data-framer-name\":\"code\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(2.9 6.9)\" id=\"ss12685581341_1\"><path d=\"M 5.1 10.2 L 0 5.1 L 5.1 0 L 5.6 0.5 L 1 5.1 L 5.6 9.7 Z M 13.1 10.2 L 12.6 9.7 L 17.2 5.1 L 12.6 0.5 L 13.1 0 L 18.2 5.1 Z\" fill=\"rgb(28,27,31)\"></path></g></svg>',svgContentId:12685581341,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1018md4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",children:\"Software Development\"})}),className:\"framer-hwi9vk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",children:\"Agile solutions for seamless performance.\"})}),className:\"framer-1lrp2oi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ogqbzs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kym3l9\",\"data-border\":true,\"data-framer-name\":\"Animation/Research\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c4pdi\",\"data-framer-name\":\"deployed_code\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(4.3 3.2)\" id=\"ss12282173053_1\"><path d=\"M 7.35 16.6 L 7.35 9 L 0.7 5.15 L 0.7 12.75 Z M 8.05 16.6 L 14.7 12.75 L 14.7 5.15 L 8.05 9 Z M 7.7 8.4 L 14.275 4.6 L 7.7 0.8 L 1.125 4.6 Z M 0 13.175 L 0 4.425 L 7.7 0 L 15.4 4.425 L 15.4 13.175 L 7.7 17.6 Z\" fill=\"rgb(28,27,31)\"></path></g></svg>',svgContentId:12282173053,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1comf7a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",children:\"Blockchain & Decentralization\"})}),className:\"framer-8ieg7c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",children:\"Secure and transparent digital frameworks.\"})}),className:\"framer-1a1ej5c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lkv3ba\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s859tv\",\"data-border\":true,\"data-framer-name\":\"Animation/Research\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1p89ttn\",\"data-framer-name\":\"activity_zone\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_213_745\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"25\" height=\"25\">\\n<rect x=\"0.613159\" y=\"0.268066\" width=\"24\" height=\"24\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_213_745)\">\\n<path d=\"M6.61321 19.9681C6.14104 19.9681 5.73962 19.8028 5.40896 19.4723C5.07846 19.1416 4.91321 18.7402 4.91321 18.2681C4.91321 17.8514 5.04237 17.4889 5.30071 17.1806C5.55904 16.8722 5.87987 16.6764 6.26321 16.5931V7.94305C5.87987 7.85972 5.55904 7.66389 5.30071 7.35555C5.04237 7.04722 4.91321 6.68472 4.91321 6.26805C4.91321 5.79589 5.07846 5.39447 5.40896 5.0638C5.73962 4.7333 6.14104 4.56805 6.61321 4.56805C7.02987 4.56805 7.39237 4.69722 7.70071 4.95555C8.00904 5.21389 8.20487 5.53472 8.28821 5.91805H16.9382C17.0215 5.53472 17.2192 5.21389 17.5312 4.95555C17.8434 4.69722 18.204 4.56805 18.6132 4.56805C19.0854 4.56805 19.4868 4.7333 19.8175 5.0638C20.148 5.39447 20.3132 5.79589 20.3132 6.26805C20.3132 6.67722 20.184 7.03789 19.9257 7.35005C19.6674 7.66205 19.3465 7.85972 18.9632 7.94305V16.5931C19.3465 16.6764 19.6674 16.8722 19.9257 17.1806C20.184 17.4889 20.3132 17.8514 20.3132 18.2681C20.3132 18.7402 20.148 19.1416 19.8175 19.4723C19.4868 19.8028 19.0854 19.9681 18.6132 19.9681C18.1965 19.9681 17.834 19.8389 17.5257 19.5806C17.2174 19.3222 17.0215 19.0014 16.9382 18.6181H8.28821C8.20487 19.0014 8.00904 19.3222 7.70071 19.5806C7.39237 19.8389 7.02987 19.9681 6.61321 19.9681ZM6.61321 7.26805C6.89654 7.26805 7.13404 7.17222 7.32571 6.98055C7.51737 6.78889 7.61321 6.55139 7.61321 6.26805C7.61321 5.98472 7.51737 5.74722 7.32571 5.55555C7.13404 5.36389 6.89654 5.26805 6.61321 5.26805C6.32987 5.26805 6.09237 5.36389 5.90071 5.55555C5.70904 5.74722 5.61321 5.98472 5.61321 6.26805C5.61321 6.55139 5.70904 6.78889 5.90071 6.98055C6.09237 7.17222 6.32987 7.26805 6.61321 7.26805ZM18.6132 7.26805C18.8965 7.26805 19.134 7.17222 19.3257 6.98055C19.5174 6.78889 19.6132 6.55139 19.6132 6.26805C19.6132 5.98472 19.5174 5.74722 19.3257 5.55555C19.134 5.36389 18.8965 5.26805 18.6132 5.26805C18.3299 5.26805 18.0924 5.36389 17.9007 5.55555C17.709 5.74722 17.6132 5.98472 17.6132 6.26805C17.6132 6.55139 17.709 6.78889 17.9007 6.98055C18.0924 7.17222 18.3299 7.26805 18.6132 7.26805ZM8.28821 17.9181H16.9382C17.0215 17.5847 17.1799 17.3014 17.4132 17.0681C17.6465 16.8347 17.9299 16.6764 18.2632 16.5931V7.94305C17.9299 7.87639 17.6424 7.72222 17.4007 7.48055C17.159 7.23889 17.0049 6.95139 16.9382 6.61805H8.28821C8.20487 6.95139 8.04654 7.23472 7.81321 7.46805C7.57987 7.70139 7.29654 7.85972 6.96321 7.94305V16.5931C7.29654 16.6764 7.57987 16.8347 7.81321 17.0681C8.04654 17.3014 8.20487 17.5847 8.28821 17.9181ZM18.6132 19.2681C18.8965 19.2681 19.134 19.1722 19.3257 18.9806C19.5174 18.7889 19.6132 18.5514 19.6132 18.2681C19.6132 17.9847 19.5174 17.7472 19.3257 17.5556C19.134 17.3639 18.8965 17.2681 18.6132 17.2681C18.3299 17.2681 18.0924 17.3639 17.9007 17.5556C17.709 17.7472 17.6132 17.9847 17.6132 18.2681C17.6132 18.5514 17.709 18.7889 17.9007 18.9806C18.0924 19.1722 18.3299 19.2681 18.6132 19.2681ZM6.61321 19.2681C6.89654 19.2681 7.13404 19.1722 7.32571 18.9806C7.51737 18.7889 7.61321 18.5514 7.61321 18.2681C7.61321 17.9847 7.51737 17.7472 7.32571 17.5556C7.13404 17.3639 6.89654 17.2681 6.61321 17.2681C6.32987 17.2681 6.09237 17.3639 5.90071 17.5556C5.70904 17.7472 5.61321 17.9847 5.61321 18.2681C5.61321 18.5514 5.70904 18.7889 5.90071 18.9806C6.09237 19.1722 6.32987 19.2681 6.61321 19.2681Z\" fill=\"black\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8r2817\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",children:\"Cloud & Infrastructure\"})}),className:\"framer-1pjkvpc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",children:\"Optimised systems for speed and security.\"})}),className:\"framer-nfombf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-151jggi hidden-1twapsh\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i3jemo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pzv74t\",\"data-border\":true,\"data-framer-name\":\"Animation/Development\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-opmkmj\",\"data-framer-name\":\"Product development\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7 21\"><path d=\"M 6.417 1.179 L 3.916 10.42 L 1.415 19.661\" fill=\"transparent\" stroke=\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></svg>',svgContentId:11177399517,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rl7wrm\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7 13\"><path d=\"M 5.623 0.706 L 3.488 2.608 C 1.544 4.339 0.575 5.205 0.575 6.314 C 0.575 7.423 1.546 8.289 3.488 10.019 L 5.623 11.922\" fill=\"transparent\" stroke=\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></svg>',svgContentId:9194599876,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16ctcbx\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7 13\"><path d=\"M 1.209 0.706 L 3.345 2.608 C 5.286 4.339 6.257 5.204 6.257 6.314 C 6.257 7.423 5.286 8.289 3.344 10.019 L 1.209 11.922\" fill=\"transparent\" stroke=\"var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, rgb(28, 27, 27)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></svg>',svgContentId:11469096933,withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5filvn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-ea43085b-5643-474c-96c5-b28c391ece07, rgb(68, 68, 68))\",\"--framer-text-transform\":\"inherit\"},children:\"Software Development\"})}),className:\"framer-ovc8xb\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b1106767-fbaa-4a24-bd97-dfbf18764b12, rgb(68, 68, 68))\"},children:\"Agile methodologies for dynamic systems.\"})}),className:\"framer-1i9wpr5\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:0,className:\"framer-1csv2jh hidden-lmf39n\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ogi9an\",\"data-border\":true,\"data-framer-name\":\"Animation/Research\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6l7o2p\",\"data-framer-name\":\"Vector\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 25\"><path d=\"M 13.097 23.864 C 13.373 23.864 13.629 23.735 14.144 23.477 L 18.27 21.413 C 20.098 20.5 21.01 20.042 21.01 19.318 L 21.01 10.227 M 13.097 23.864 C 12.821 23.864 12.564 23.735 12.05 23.477 L 7.924 21.413 C 6.096 20.5 5.184 20.042 5.184 19.318 L 5.184 10.227 M 13.097 23.864 L 13.097 14.773 M 21.01 10.227 C 21.01 9.503 20.097 9.047 18.271 8.133 L 14.144 6.067 C 13.628 5.81 13.373 5.682 13.097 5.682 M 21.01 10.227 C 21.01 10.951 20.097 11.408 18.271 12.322 L 14.144 14.388 C 13.629 14.644 13.373 14.773 13.097 14.773 M 5.184 10.227 C 5.184 9.503 6.096 9.045 7.924 8.133 L 12.05 6.068 C 12.564 5.81 12.821 5.682 13.097 5.682 M 5.184 10.227 C 5.184 10.951 6.097 11.408 7.923 12.322 L 12.05 14.388 C 12.564 14.644 12.821 14.773 13.097 14.773 M 13.097 5.682 L 13.097 1.136 M 24.401 22.727 L 21.01 19.886 M 1.793 22.727 L 5.184 19.886\" fill=\"transparent\" stroke-width=\"0.56\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10368833143,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p3bix6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-ea43085b-5643-474c-96c5-b28c391ece07, rgb(68, 68, 68))\",\"--framer-text-transform\":\"inherit\"},children:\"Blockchain & Decentralization\"})}),className:\"framer-xkklum\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b1106767-fbaa-4a24-bd97-dfbf18764b12, rgb(68, 68, 68))\"},children:\"Pioneering decentralized applications.\"})}),className:\"framer-w3ka4g\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14k68xf\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-utyra6 hidden-m2bvcd hidden-lmf39n\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2bb579\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o9jgoz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-ea43085b-5643-474c-96c5-b28c391ece07, rgb(68, 68, 68))\",\"--framer-text-transform\":\"inherit\"},children:\"Software Development\"})}),className:\"framer-r6w8r4\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b1106767-fbaa-4a24-bd97-dfbf18764b12, rgb(68, 68, 68))\"},children:\"Agile methodologies for dynamic systems.\"})}),className:\"framer-1r619s0\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-za5byk\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kv0m2i\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vwwjte\",\"data-framer-name\":\"account_tree\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_213_769\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"25\" height=\"25\">\\n<rect x=\"0.154297\" y=\"0.1315\" width=\"24\" height=\"24\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_213_769)\">\\n<path d=\"M15.8043 20.4815V17.4815H11.8043V7.48149H8.50432V10.4815H2.80432V3.78149H8.50432V6.78149H15.8043V3.78149H21.5043V10.4815H15.8043V7.48149H12.5043V16.7815H15.8043V13.7815H21.5043V20.4815H15.8043ZM16.5043 9.78149H20.8043V4.48149H16.5043V9.78149ZM16.5043 19.7815H20.8043V14.4815H16.5043V19.7815ZM3.50432 9.78149H7.80432V4.48149H3.50432V9.78149Z\" fill=\"black\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qy0wvs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",children:\"AI & Machine Learning\"})}),className:\"framer-1rgcuj1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",children:\"Automation and predictive intelligence\"})}),className:\"framer-1t51ow7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f8lu5o\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uhrz55\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j5gp5e\",\"data-framer-name\":\"draw_abstract\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_245_1198\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"25\" height=\"25\">\\n<rect x=\"0.0852051\" y=\"0.728333\" width=\"24\" height=\"24\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_245_1198)\">\\n<path d=\"M10.2103 16.5533C9.97692 16.8033 9.68525 16.945 9.33525 16.9783C8.98525 17.0117 8.64359 17.0033 8.31025 16.9533C8.06025 16.9033 7.83109 16.8783 7.62275 16.8783C7.41442 16.8783 7.22692 16.9617 7.06025 17.1283C6.89359 17.295 6.80609 17.4908 6.79775 17.7158C6.78942 17.9408 6.81025 18.1867 6.86025 18.4533C6.91025 18.7867 6.91859 19.1283 6.88525 19.4783C6.85192 19.8283 6.71859 20.1367 6.48525 20.4033C6.25192 20.6533 5.96442 20.7908 5.62275 20.8158C5.28109 20.8408 4.94359 20.8283 4.61025 20.7783C4.34359 20.7283 4.09359 20.72 3.86025 20.7533C3.62692 20.7867 3.36859 20.945 3.08525 21.2283L2.58525 20.7533C2.95192 20.37 3.31442 20.1533 3.67275 20.1033C4.03109 20.0533 4.37692 20.0533 4.71025 20.1033C4.97692 20.1533 5.21442 20.1783 5.42275 20.1783C5.63109 20.1783 5.81859 20.095 5.98525 19.9283C6.16859 19.745 6.26025 19.5408 6.26025 19.3158C6.26025 19.0908 6.23525 18.845 6.18525 18.5783C6.13525 18.245 6.12275 17.8992 6.14775 17.5408C6.17275 17.1825 6.30192 16.8783 6.53525 16.6283C6.76859 16.3783 7.05609 16.2367 7.39775 16.2033C7.73942 16.17 8.07692 16.1783 8.41025 16.2283C8.67692 16.2783 8.91442 16.3075 9.12275 16.3158C9.33109 16.3242 9.51859 16.245 9.68525 16.0783C9.86859 15.895 9.96025 15.6908 9.96025 15.4658C9.96025 15.2408 9.93525 14.995 9.88525 14.7283C9.83525 14.395 9.82275 14.0492 9.84775 13.6908C9.87275 13.3325 10.0019 13.0283 10.2353 12.7783C10.4686 12.5283 10.7561 12.3908 11.0978 12.3658C11.4394 12.3408 11.7769 12.3533 12.1103 12.4033C12.3769 12.4533 12.6144 12.4783 12.8228 12.4783C13.0311 12.4783 13.2186 12.395 13.3853 12.2283C13.5686 12.045 13.6603 11.8408 13.6603 11.6158C13.6603 11.3908 13.6353 11.145 13.5853 10.8783C13.5353 10.545 13.5269 10.1992 13.5603 9.84082C13.5936 9.48249 13.7269 9.17832 13.9603 8.92832C14.1936 8.67832 14.4811 8.54082 14.8228 8.51582C15.1644 8.49082 15.5019 8.50332 15.8353 8.55332C16.1019 8.60332 16.3394 8.62832 16.5478 8.62832C16.7561 8.62832 16.9436 8.54499 17.1103 8.37832C17.2936 8.19499 17.3853 7.99082 17.3853 7.76582C17.3853 7.54082 17.3603 7.29499 17.3103 7.02832C17.2603 6.69499 17.2519 6.35332 17.2853 6.00332C17.3186 5.65332 17.4519 5.34499 17.6853 5.07832C17.9186 4.82832 18.2061 4.69082 18.5478 4.66582C18.8894 4.64082 19.2269 4.65332 19.5603 4.70332C19.8269 4.75332 20.0769 4.76165 20.3103 4.72832C20.5436 4.69499 20.8019 4.53665 21.0853 4.25332L21.5853 4.72832C21.2186 5.11165 20.8561 5.32832 20.4978 5.37832C20.1394 5.42832 19.7936 5.42832 19.4603 5.37832C19.1936 5.32832 18.9561 5.30332 18.7478 5.30332C18.5394 5.30332 18.3519 5.38665 18.1853 5.55332C18.0019 5.73665 17.9103 5.94082 17.9103 6.16582C17.9103 6.39082 17.9353 6.63665 17.9853 6.90332C18.0353 7.23665 18.0436 7.58249 18.0103 7.94082C17.9769 8.29915 17.8436 8.60332 17.6103 8.85332C17.3769 9.10332 17.0894 9.24082 16.7478 9.26582C16.4061 9.29082 16.0686 9.27832 15.7353 9.22832C15.4686 9.17832 15.2353 9.15332 15.0353 9.15332C14.8353 9.15332 14.6519 9.23665 14.4853 9.40332C14.3019 9.58665 14.2061 9.79082 14.1978 10.0158C14.1894 10.2408 14.2103 10.4867 14.2603 10.7533C14.3103 11.0867 14.3269 11.4325 14.3103 11.7908C14.2936 12.1492 14.1686 12.4533 13.9353 12.7033C13.6853 12.9533 13.3894 13.0908 13.0478 13.1158C12.7061 13.1408 12.3686 13.1283 12.0353 13.0783C11.7853 13.0283 11.5519 13.0117 11.3353 13.0283C11.1186 13.045 10.9353 13.1283 10.7853 13.2783C10.6186 13.445 10.5269 13.6408 10.5103 13.8658C10.4936 14.0908 10.5103 14.3367 10.5603 14.6033C10.6103 14.9367 10.6228 15.2825 10.5978 15.6408C10.5728 15.9992 10.4436 16.3033 10.2103 16.5533ZM6.08525 10.4283C5.06859 10.4283 4.19775 10.0658 3.47275 9.34082C2.74775 8.61582 2.38525 7.74499 2.38525 6.72832C2.38525 5.69499 2.74775 4.81999 3.47275 4.10332C4.19775 3.38665 5.06859 3.02832 6.08525 3.02832C7.11859 3.02832 7.99359 3.38665 8.71025 4.10332C9.42692 4.81999 9.78525 5.69499 9.78525 6.72832C9.78525 7.74499 9.42692 8.61582 8.71025 9.34082C7.99359 10.0658 7.11859 10.4283 6.08525 10.4283ZM6.08525 9.72832C6.93525 9.72832 7.64775 9.43665 8.22275 8.85332C8.79775 8.26999 9.08525 7.56165 9.08525 6.72832C9.08525 5.87832 8.79775 5.16582 8.22275 4.59082C7.64775 4.01582 6.93525 3.72832 6.08525 3.72832C5.25192 3.72832 4.54359 4.01582 3.96025 4.59082C3.37692 5.16582 3.08525 5.87832 3.08525 6.72832C3.08525 7.56165 3.37692 8.26999 3.96025 8.85332C4.54359 9.43665 5.25192 9.72832 6.08525 9.72832ZM15.3853 22.4283V16.0283H21.7853V22.4283H15.3853ZM16.0853 21.7283H21.0853V16.7283H16.0853V21.7283Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iec1jk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-ptx05b\",\"data-styles-preset\":\"tQnFuf07h\",children:\"UI/UX Design\"})}),className:\"framer-1okqhs6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lycws1\",\"data-styles-preset\":\"nJ8oO2AZU\",children:\"Intuitive experiences for better engagement.\"})}),className:\"framer-yubaf0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tydnnj\",\"data-framer-name\":\"CTA section\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tfofkg hidden-lmf39n\",\"data-framer-name\":\"HAXO LABS\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:306,intrinsicWidth:41,svg:'<svg width=\"41\" height=\"306\" viewBox=\"0 0 41 306\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.7707 294.842C20.7707 297.741 19.7599 300.201 17.7381 302.223C15.7163 304.245 13.2559 305.256 10.3568 305.256C7.49581 305.256 5.05444 304.245 3.03268 302.223C1.01093 300.201 5.34058e-05 297.741 5.34058e-05 294.842V276.989H1.54498V294.842C1.54498 297.283 2.40327 299.362 4.11986 301.079C5.87459 302.833 7.97264 303.711 10.414 303.711C12.8554 303.711 14.9343 302.833 16.6509 301.079C18.3675 299.362 19.2258 297.283 19.2258 294.842V287.403C19.2258 284.504 20.2367 282.044 22.2584 280.022C24.3183 278 26.7788 276.989 29.6398 276.989C32.5389 276.989 34.9993 278 37.0211 280.022C39.0428 282.044 40.0537 284.504 40.0537 287.403V302.853H38.5088V287.403C38.5088 284.962 37.6314 282.864 35.8767 281.109C34.1601 279.393 32.0811 278.534 29.6398 278.534C27.1984 278.534 25.1003 279.393 23.3456 281.109C21.629 282.864 20.7707 284.962 20.7707 287.403V294.842Z\" fill=\"white\"/>\\n<path d=\"M20.7707 294.842C20.7707 297.741 19.7599 300.201 17.7381 302.223C15.7163 304.245 13.2559 305.256 10.3568 305.256C7.49581 305.256 5.05444 304.245 3.03268 302.223C1.01093 300.201 5.34058e-05 297.741 5.34058e-05 294.842V276.989H1.54498V294.842C1.54498 297.283 2.40327 299.362 4.11986 301.079C5.87459 302.833 7.97264 303.711 10.414 303.711C12.8554 303.711 14.9343 302.833 16.6509 301.079C18.3675 299.362 19.2258 297.283 19.2258 294.842V287.403C19.2258 284.504 20.2367 282.044 22.2584 280.022C24.3183 278 26.7788 276.989 29.6398 276.989C32.5389 276.989 34.9993 278 37.0211 280.022C39.0428 282.044 40.0537 284.504 40.0537 287.403V302.853H38.5088V287.403C38.5088 284.962 37.6314 282.864 35.8767 281.109C34.1601 279.393 32.0811 278.534 29.6398 278.534C27.1984 278.534 25.1003 279.393 23.3456 281.109C21.629 282.864 20.7707 284.962 20.7707 287.403V294.842Z\" stroke=\"white\"/>\\n<path d=\"M20.4846 263.282C19.9124 265.609 18.6918 267.516 16.8226 269.004C14.9534 270.53 12.8172 271.292 10.414 271.292C7.51488 271.292 5.05444 270.262 3.03268 268.203C1.01093 266.181 5.34058e-05 263.739 5.34058e-05 260.878V242.568H1.54498V260.878C1.54498 263.32 2.40327 265.399 4.11986 267.115C5.87459 268.87 7.97264 269.748 10.414 269.748C12.0161 269.748 13.4848 269.347 14.8199 268.546C16.1932 267.745 17.2613 266.658 18.0242 265.284C18.8253 263.949 19.2258 262.481 19.2258 260.878V242.568H20.7707V258.475C20.7707 260.917 21.629 262.996 23.3456 264.712C25.1003 266.467 27.1984 267.344 29.6398 267.344C32.0811 267.344 34.1601 266.467 35.8767 264.712C37.6314 262.996 38.5088 260.917 38.5088 258.475V242.568H40.0537V258.475C40.0537 261.374 39.0428 263.835 37.0211 265.857C34.9993 267.878 32.5389 268.889 29.6398 268.889C27.6943 268.889 25.9014 268.374 24.2611 267.344C22.6208 266.314 21.362 264.96 20.4846 263.282Z\" fill=\"white\"/>\\n<path d=\"M20.4846 263.282C19.9124 265.609 18.6918 267.516 16.8226 269.004C14.9534 270.53 12.8172 271.292 10.414 271.292C7.51488 271.292 5.05444 270.262 3.03268 268.203C1.01093 266.181 5.34058e-05 263.739 5.34058e-05 260.878V242.568H1.54498V260.878C1.54498 263.32 2.40327 265.399 4.11986 267.115C5.87459 268.87 7.97264 269.748 10.414 269.748C12.0161 269.748 13.4848 269.347 14.8199 268.546C16.1932 267.745 17.2613 266.658 18.0242 265.284C18.8253 263.949 19.2258 262.481 19.2258 260.878V242.568H20.7707V258.475C20.7707 260.917 21.629 262.996 23.3456 264.712C25.1003 266.467 27.1984 267.344 29.6398 267.344C32.0811 267.344 34.1601 266.467 35.8767 264.712C37.6314 262.996 38.5088 260.917 38.5088 258.475V242.568H40.0537V258.475C40.0537 261.374 39.0428 263.835 37.0211 265.857C34.9993 267.878 32.5389 268.889 29.6398 268.889C27.6943 268.889 25.9014 268.374 24.2611 267.344C22.6208 266.314 21.362 264.96 20.4846 263.282Z\" stroke=\"white\"/>\\n<path d=\"M40.0537 222.274L5.34058e-05 236.808V235.206L37.8221 221.416L5.34058e-05 207.683V206.024L40.0537 220.615V222.274Z\" fill=\"white\"/>\\n<path d=\"M40.0537 222.274L5.34058e-05 236.808V235.206L37.8221 221.416L5.34058e-05 207.683V206.024L40.0537 220.615V222.274Z\" stroke=\"white\"/>\\n<path d=\"M1.54498 173.595V200.259H5.34058e-05V172.05H40.0537V173.595H1.54498Z\" fill=\"white\"/>\\n<path d=\"M1.54498 173.595V200.259H5.34058e-05V172.05H40.0537V173.595H1.54498Z\" stroke=\"white\"/>\\n<path d=\"M37.3644 119.087C39.1573 122.177 40.0537 125.533 40.0537 129.157C40.0537 132.781 39.1573 136.119 37.3644 139.171C35.5715 142.261 33.1301 144.702 30.0403 146.495C26.9886 148.288 23.6508 149.184 20.0269 149.184C16.403 149.184 13.0461 148.288 9.95625 146.495C6.90454 144.702 4.48225 142.261 2.68937 139.171C0.896492 136.119 5.34058e-05 132.781 5.34058e-05 129.157C5.34058e-05 126.449 0.515022 123.855 1.54498 121.376C2.61307 118.896 4.04356 116.76 5.83644 114.967C7.62932 113.174 9.76551 111.744 12.245 110.675C14.7245 109.646 17.3185 109.131 20.0269 109.131C23.6508 109.131 26.9886 110.027 30.0403 111.82C33.1301 113.613 35.5715 116.035 37.3644 119.087ZM4.00542 119.831C2.36512 122.692 1.54498 125.801 1.54498 129.157C1.54498 132.514 2.36512 135.604 4.00542 138.427C5.64571 141.288 7.87727 143.539 10.7001 145.179C13.5611 146.819 16.67 147.639 20.0269 147.639C23.3838 147.639 26.4736 146.819 29.2964 145.179C32.1574 143.539 34.4081 141.288 36.0483 138.427C37.6886 135.604 38.5088 132.514 38.5088 129.157C38.5088 125.801 37.6886 122.692 36.0483 119.831C34.4081 117.008 32.1574 114.776 29.2964 113.136C26.4736 111.496 23.3838 110.675 20.0269 110.675C16.67 110.675 13.5611 111.496 10.7001 113.136C7.87727 114.776 5.64571 117.008 4.00542 119.831Z\" fill=\"white\"/>\\n<path d=\"M37.3644 119.087C39.1573 122.177 40.0537 125.533 40.0537 129.157C40.0537 132.781 39.1573 136.119 37.3644 139.171C35.5715 142.261 33.1301 144.702 30.0403 146.495C26.9886 148.288 23.6508 149.184 20.0269 149.184C16.403 149.184 13.0461 148.288 9.95625 146.495C6.90454 144.702 4.48225 142.261 2.68937 139.171C0.896492 136.119 5.34058e-05 132.781 5.34058e-05 129.157C5.34058e-05 126.449 0.515022 123.855 1.54498 121.376C2.61307 118.896 4.04356 116.76 5.83644 114.967C7.62932 113.174 9.76551 111.744 12.245 110.675C14.7245 109.646 17.3185 109.131 20.0269 109.131C23.6508 109.131 26.9886 110.027 30.0403 111.82C33.1301 113.613 35.5715 116.035 37.3644 119.087ZM4.00542 119.831C2.36512 122.692 1.54498 125.801 1.54498 129.157C1.54498 132.514 2.36512 135.604 4.00542 138.427C5.64571 141.288 7.87727 143.539 10.7001 145.179C13.5611 146.819 16.67 147.639 20.0269 147.639C23.3838 147.639 26.4736 146.819 29.2964 145.179C32.1574 143.539 34.4081 141.288 36.0483 138.427C37.6886 135.604 38.5088 132.514 38.5088 129.157C38.5088 125.801 37.6886 122.692 36.0483 119.831C34.4081 117.008 32.1574 114.776 29.2964 113.136C26.4736 111.496 23.3838 110.675 20.0269 110.675C16.67 110.675 13.5611 111.496 10.7001 113.136C7.87727 114.776 5.64571 117.008 4.00542 119.831Z\" stroke=\"white\"/>\\n<path d=\"M40.0537 103.362L20.0269 89.1144L5.34058e-05 103.362V101.474L18.7108 88.1417L5.34058e-05 74.8096V72.9213L20.0269 87.169L40.0537 72.9213V74.8096L21.3429 88.1417L40.0537 101.474V103.362Z\" fill=\"white\"/>\\n<path d=\"M40.0537 103.362L20.0269 89.1144L5.34058e-05 103.362V101.474L18.7108 88.1417L5.34058e-05 74.8096V72.9213L20.0269 87.169L40.0537 72.9213V74.8096L21.3429 88.1417L40.0537 101.474V103.362Z\" stroke=\"white\"/>\\n<path d=\"M40.0537 52.6272L5.34058e-05 67.161V65.5588L37.8221 51.7689L5.34058e-05 38.0362V36.3769L40.0537 50.9678V52.6272Z\" fill=\"white\"/>\\n<path d=\"M40.0537 52.6272L5.34058e-05 67.161V65.5588L37.8221 51.7689L5.34058e-05 38.0362V36.3769L40.0537 50.9678V52.6272Z\" stroke=\"white\"/>\\n<path d=\"M40.0537 29.0675V30.6124L5.34058e-05 30.6124V29.0675L19.2258 29.0675L19.2258 1.54493L5.34058e-05 1.54493V0L40.0537 0V1.54493L20.7707 1.54493L20.7707 29.0675H40.0537Z\" fill=\"white\"/>\\n<path d=\"M40.0537 29.0675V30.6124L5.34058e-05 30.6124V29.0675L19.2258 29.0675L19.2258 1.54493L5.34058e-05 1.54493V0L40.0537 0V1.54493L20.7707 1.54493L20.7707 29.0675H40.0537Z\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kn5t1q\",\"data-framer-name\":\"Banner\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y0s0k1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1odp7m4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k0apob\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-106b34i\",\"data-styles-preset\":\"OpekfAotK\",style:{\"--framer-text-color\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\"},children:[\"Discover What\u2019s \",/*#__PURE__*/_jsx(\"br\",{}),\"Possible with  Haxo Labs\"]})})},gj5iHc5SU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-106b34i\",\"data-styles-preset\":\"OpekfAotK\",style:{\"--framer-text-color\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\"},children:[\"Discover What\u2019s \",/*#__PURE__*/_jsx(\"br\",{}),\"Possible with  Haxo Labs\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-106b34i\",\"data-styles-preset\":\"OpekfAotK\",style:{\"--framer-text-color\":\"var(--token-97df4772-afd0-4d6a-8f7d-1eb6a1e89906, rgb(255, 255, 255))\"},children:[\"Discover What\u2019s \",/*#__PURE__*/_jsx(\"br\",{}),\"Possible with \",/*#__PURE__*/_jsx(\"br\",{}),\"Haxo Labs\"]})}),className:\"framer-glk4it\",\"data-framer-name\":\"THE TRUTH IS THAT YOU PAY FOR YOUR LIFESTYLE IN HOURS.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j1ltpb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-28e7f1eb-c89e-4bb0-ab33-0c0caa957f39, rgb(235, 235, 235))\"},children:\"Let's build something groundbreaking\"})}),className:\"framer-11sb8vg\",\"data-framer-name\":\"THE TRUTH IS THAT YOU PAY FOR YOUR LIFESTYLE IN HOURS.\",fonts:[\"GF;Manrope-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{y:(componentViewport?.y||0)+0+6093.8+0+0+100+193},gj5iHc5SU:{y:(componentViewport?.y||0)+0+6269.8+0+100+193}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,y:(componentViewport?.y||0)+0+5529.8+0+100,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation21,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12tgpvp-container\",nodeId:\"NtYsDuHI9\",rendersWithMotion:true,scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{GSxmVHNkN:undefined,variant:\"WETM6bSmE\"},gj5iHc5SU:{GSxmVHNkN:undefined,variant:\"WETM6bSmE\"}},children:/*#__PURE__*/_jsx(CallToAction,{GSxmVHNkN:\"1ugzxsh\",height:\"100%\",id:\"NtYsDuHI9\",layoutId:\"NtYsDuHI9\",tA0tI5XRs:true,variant:\"oMWV816P0\",width:\"100%\",yaChI5V4D:\"https://cal.com/team/haxo-labs/initial-consultation\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{y:(componentViewport?.y||0)+0+6791.8},gj5iHc5SU:{y:(componentViewport?.y||0)+0+6967.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:337,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6034.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tucf84-container\",nodeId:\"s4ljQr41q\",scopeId:\"K7Hq8WtC6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eHGpN1ySS:{variant:\"KFnwCk4iI\"},gj5iHc5SU:{variant:\"N5m045bo0\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"s4ljQr41q\",layoutId:\"s4ljQr41q\",OMC6DDvWw:\"41 Floor Radius House 51 Clarendon Road Watford, Hertfordshire WD17 1HP England\",style:{width:\"100%\"},variant:\"MvSb3vN9Q\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-b1bJa.framer-bev7b7, .framer-b1bJa .framer-bev7b7 { display: block; }\",\".framer-b1bJa.framer-1twapsh { align-content: center; align-items: center; background-color: var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, #1c1b1b); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-b1bJa .framer-162yzxz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-start; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; pointer-events: none; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-b1bJa .framer-5mewx1-container { flex: none; height: auto; left: 0px; pointer-events: auto; position: relative; top: 0px; width: 100%; z-index: 10; }\",\".framer-b1bJa .framer-10rix8e-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 8; }\",\".framer-b1bJa .framer-161212l { align-content: center; align-items: center; background-color: var(--token-ea7e6235-3f36-4eb2-bd5f-96dddb54e694, #f0f5fa); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; 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%; z-index: 1; }\",\".framer-b1bJa .framer-1g4q7lt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; min-height: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-zl809p { aspect-ratio: 1.1385991058122205 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 440px); overflow: hidden; position: absolute; right: 0px; top: -150px; width: 42%; z-index: 2; }\",\".framer-b1bJa .framer-1rrr43q-container { aspect-ratio: 0.6792738275340393 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 705px); position: absolute; right: 0px; top: -65px; width: 96%; }\",\".framer-b1bJa .framer-1p8si1c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 4; }\",\".framer-b1bJa .framer-1f4acbh { flex: none; height: 64px; overflow: hidden; position: relative; width: 695px; }\",\".framer-b1bJa .framer-1tikb78 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 707px; }\",\".framer-b1bJa .framer-dcbzau { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-1rpjw9f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 695px; }\",\".framer-b1bJa .framer-xhaoiy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-t46rbj, .framer-b1bJa .framer-11rkzs8 { flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-b1bJa .framer-17b1ggc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-b1bJa .framer-9ik54w-container { flex: none; height: 75px; position: relative; width: 84px; }\",\".framer-b1bJa .framer-1i039bl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 588px; }\",\".framer-b1bJa .framer-1oh0v9c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-5o343d { flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 394px; word-break: break-word; word-wrap: break-word; }\",\".framer-b1bJa .framer-1rn3iua-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-b1bJa .framer-19yf0bb-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-b1bJa .framer-1eru1sl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 682px; }\",\".framer-b1bJa .framer-obimx6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-b1bJa .framer-14rpmuk { flex: none; height: 114px; overflow: visible; position: relative; width: 119px; }\",\".framer-b1bJa .framer-1nrtaep { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 91px; border-bottom-right-radius: 91px; border-top-left-radius: 91px; border-top-right-radius: 91px; bottom: 0px; flex: none; overflow: hidden; position: absolute; right: -31px; top: 0px; width: 114px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b1bJa .framer-1q6bv28 { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.8); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 91px; border-bottom-right-radius: 91px; border-top-left-radius: 91px; border-top-right-radius: 91px; bottom: 0px; flex: none; overflow: hidden; position: absolute; right: -11px; top: 0px; width: 114px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b1bJa .framer-5e1v4v { --border-bottom-width: 1px; --border-color: rgba(42, 42, 40, 0.6); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 91px; border-bottom-right-radius: 91px; border-top-left-radius: 91px; border-top-right-radius: 91px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 114px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b1bJa .framer-1c14hmx { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 91px; border-bottom-right-radius: 91px; border-top-left-radius: 91px; border-top-right-radius: 91px; bottom: 0px; flex: none; left: -16px; overflow: hidden; position: absolute; top: 0px; width: 114px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b1bJa .framer-tq8ipu { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 91px; border-bottom-right-radius: 91px; border-top-left-radius: 91px; border-top-right-radius: 91px; bottom: 0px; flex: none; left: -31px; overflow: hidden; position: absolute; top: 0px; width: 114px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b1bJa .framer-pmn0n9 { align-self: stretch; flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 203px; word-break: break-word; word-wrap: break-word; }\",\".framer-b1bJa .framer-1guydow { flex: none; height: 1px; overflow: hidden; position: relative; width: 695px; }\",\".framer-b1bJa .framer-1gvkmcz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 20px 50px 20px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-1h6ww4k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 20px; position: relative; width: 1px; }\",\".framer-b1bJa .framer-1l6o2ru { flex: none; height: 114px; overflow: visible; position: relative; width: 110px; }\",\".framer-b1bJa .framer-11jgum3 { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 91px; border-bottom-right-radius: 91px; border-top-left-radius: 91px; border-top-right-radius: 91px; bottom: 13px; flex: none; left: 36px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 101px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b1bJa .framer-32gejc { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.8); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 91px; border-bottom-right-radius: 91px; border-top-left-radius: 91px; border-top-right-radius: 91px; bottom: 13px; flex: none; left: 16px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 101px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b1bJa .framer-d6fz6s { --border-bottom-width: 1px; --border-color: rgba(42, 42, 40, 0.6); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 91px; border-bottom-right-radius: 91px; border-top-left-radius: 91px; border-top-right-radius: 91px; bottom: 13px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 101px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b1bJa .framer-scinxu { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 91px; border-bottom-right-radius: 91px; border-top-left-radius: 91px; border-top-right-radius: 91px; bottom: 13px; flex: none; left: -16px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 101px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b1bJa .framer-m6iugx { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 91px; border-bottom-right-radius: 91px; border-top-left-radius: 91px; border-top-right-radius: 91px; bottom: 13px; flex: none; left: -31px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 101px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-b1bJa .framer-drxwpv { flex: 1 0 0px; height: auto; max-width: 220px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-b1bJa .framer-eqxx4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-cy7e7x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 900px; overflow: visible; padding: 40px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-1dxl1i6, .framer-b1bJa .framer-r2o6uv { 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 20px 0px 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-oo7hvj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 474px; }\",\".framer-b1bJa .framer-6t2jmd, .framer-b1bJa .framer-14bz7ye, .framer-b1bJa .framer-1709qw2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 112px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-yd9k1, .framer-b1bJa .framer-ki21y1, .framer-b1bJa .framer-xynao7, .framer-b1bJa .framer-glk4it { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-b1bJa .framer-18mk0xd-container, .framer-b1bJa .framer-19slp3t-container, .framer-b1bJa .framer-ns4j44-container, .framer-b1bJa .framer-1flww3u-container, .framer-b1bJa .framer-1vlcshs-container, .framer-b1bJa .framer-11crkqj-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-b1bJa .framer-1jkte5n, .framer-b1bJa .framer-10m5nfq { background-color: var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, #1c1b1b); flex: none; height: 1px; overflow: hidden; position: relative; width: 474px; }\",\".framer-b1bJa .framer-1jy0jh5 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1800px; padding: 0px; position: relative; width: 474px; }\",\".framer-b1bJa .framer-18idsey, .framer-b1bJa .framer-1fv130x, .framer-b1bJa .framer-2573ua { flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-b1bJa .framer-gejbae { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-1ql95r2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 256px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 831px; }\",\".framer-b1bJa .framer-1wdjdae-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 214px); position: absolute; right: 570px; top: 50%; transform: translateY(-50%); width: 214px; z-index: 1; }\",\".framer-b1bJa .framer-1qqyjbd-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 214px); position: absolute; right: 380px; top: 50%; transform: translateY(-50%); width: 214px; z-index: 1; }\",\".framer-b1bJa .framer-h5ue70-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 214px); position: absolute; right: 190px; top: 50%; transform: translateY(-50%); width: 214px; z-index: 1; }\",\".framer-b1bJa .framer-1tb57w0-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 214px); position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: 214px; z-index: 1; }\",\".framer-b1bJa .framer-mquu7z { bottom: -115px; flex: none; height: 314px; opacity: 0.55; position: absolute; right: 0px; width: 42px; z-index: 1; }\",\".framer-b1bJa .framer-afyoun { flex: none; height: 308px; left: 0px; opacity: 0.55; position: absolute; top: -232px; width: 44px; z-index: 1; }\",\".framer-b1bJa .framer-uubmec { 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: 180px 0px 180px 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-j650oj { -webkit-filter: blur(100px); aspect-ratio: 1.0591603053435115 / 1; background: radial-gradient(50% 50% at 50% 50%, #ffc499 0%, rgb(111, 175, 247) 60.897029842342356%, rgb(68, 116, 219) 100%); border-bottom-left-radius: 400px; border-bottom-right-radius: 400px; border-top-left-radius: 400px; border-top-right-radius: 400px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 524px); left: 50%; opacity: 0.11; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 555px; z-index: 0; }\",\".framer-b1bJa .framer-72tjeh { aspect-ratio: 1.2073643410852712 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 464px); left: 50%; overflow: hidden; position: absolute; top: 61px; transform: translateX(-50%); width: 560px; }\",\".framer-b1bJa .framer-zr6mbx { align-content: center; align-items: center; aspect-ratio: 1.2087912087912087 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 463px); justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 0; }\",\".framer-b1bJa .framer-1nu9o59-container { aspect-ratio: 1.1477761836441893 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 680px); position: relative; width: 780px; }\",\".framer-b1bJa .framer-p8axop { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1800px; padding: 0px 0px 40px 0px; position: relative; width: 719px; }\",\".framer-b1bJa .framer-1sktzeu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; overflow: visible; position: relative; width: 100%; }\",\".framer-b1bJa .framer-1pf3h40-container, .framer-b1bJa .framer-12tgpvp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-b1bJa .framer-qvruwu { bottom: -229px; flex: none; height: 308px; left: 0px; opacity: 0.55; position: absolute; width: 44px; z-index: 1; }\",\".framer-b1bJa .framer-sz35s2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 79px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-1rowxz7 { flex: none; height: 52px; left: calc(50.00000000000002% - 53px / 2); overflow: hidden; position: absolute; top: -6px; width: 53px; z-index: 1; }\",\".framer-b1bJa .framer-8vw9vn { bottom: -120px; flex: none; height: 314px; opacity: 0.55; position: absolute; right: 0px; width: 42px; z-index: 1; }\",\".framer-b1bJa .framer-1c5zp36 { align-content: center; align-items: center; 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: 100%; }\",\".framer-b1bJa .framer-m22hbh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 80px 120px 80px; position: relative; scroll-margin-top: 76px; width: 100%; }\",\".framer-b1bJa .framer-v3mm3w { 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; max-width: 900px; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-b1bJa .framer-n01mnl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 288px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px 0px 0px 0px; position: sticky; top: 156px; width: 39%; z-index: 1; }\",\".framer-b1bJa .framer-ui52qh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-ua6hhd-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-18khv0j, .framer-b1bJa .framer-17wrg0c { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1800px; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-cq6z1m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-b1bJa .framer-17g8to9 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-14cmj6l { --border-bottom-width: 0.5px; --border-color: var(--token-ea43085b-5643-474c-96c5-b28c391ece07, #444444); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; background-color: #fafafa; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 122px; justify-content: center; opacity: 0; overflow: hidden; padding: 28px; position: relative; width: 454px; will-change: var(--framer-will-change-override, transform); }\",\".framer-b1bJa .framer-g329s4-container, .framer-b1bJa .framer-j3i1x6-container, .framer-b1bJa .framer-10tnvsq-container, .framer-b1bJa .framer-13ot8w0-container, .framer-b1bJa .framer-ymf0aw-container { flex: none; height: auto; position: relative; width: 358px; }\",\".framer-b1bJa .framer-p5pnx9 { bottom: 804px; flex: none; height: 308px; left: 0px; opacity: 0.55; position: absolute; width: 44px; z-index: 1; }\",\".framer-b1bJa .framer-cejcli { flex: none; height: 314px; opacity: 0.55; position: absolute; right: 0px; top: 959px; width: 42px; z-index: 1; }\",\".framer-b1bJa .framer-wg6gun { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-b1bJa .framer-i1j7uq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 120px; height: min-content; justify-content: flex-start; max-width: 900px; overflow: visible; padding: 0px; position: relative; width: 900px; }\",\".framer-b1bJa .framer-1ja1fro { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 382px; }\",\".framer-b1bJa .framer-1ev9ydl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-r8c4za, .framer-b1bJa .framer-14k68xf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 163px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-34ybzj, .framer-b1bJa .framer-ogqbzs, .framer-b1bJa .framer-lkv3ba, .framer-b1bJa .framer-za5byk, .framer-b1bJa .framer-1f8lu5o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 118px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-b1bJa .framer-jd5jc2, .framer-b1bJa .framer-1pzv74t { --border-bottom-width: 0.5px; --border-color: var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, #1c1b1b); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; flex: none; height: 48px; overflow: visible; position: relative; width: 48px; }\",\".framer-b1bJa .framer-1b7q54k, .framer-b1bJa .framer-c4pdi { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-b1bJa .framer-1018md4, .framer-b1bJa .framer-1comf7a, .framer-b1bJa .framer-8r2817, .framer-b1bJa .framer-5filvn, .framer-b1bJa .framer-p3bix6, .framer-b1bJa .framer-1o9jgoz, .framer-b1bJa .framer-1qy0wvs, .framer-b1bJa .framer-1iec1jk, .framer-b1bJa .framer-1y0s0k1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-b1bJa .framer-hwi9vk, .framer-b1bJa .framer-1lrp2oi, .framer-b1bJa .framer-8ieg7c, .framer-b1bJa .framer-1a1ej5c, .framer-b1bJa .framer-1pjkvpc, .framer-b1bJa .framer-nfombf, .framer-b1bJa .framer-ovc8xb, .framer-b1bJa .framer-1i9wpr5, .framer-b1bJa .framer-xkklum, .framer-b1bJa .framer-w3ka4g, .framer-b1bJa .framer-r6w8r4, .framer-b1bJa .framer-1rgcuj1, .framer-b1bJa .framer-1t51ow7, .framer-b1bJa .framer-1okqhs6, .framer-b1bJa .framer-yubaf0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-b1bJa .framer-1kym3l9, .framer-b1bJa .framer-1s859tv, .framer-b1bJa .framer-ogi9an { --border-bottom-width: 0.5px; --border-color: var(--token-b8228aa4-f642-42ff-8b81-d18319e498aa, #1c1b1b); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; flex: none; height: 48px; overflow: visible; position: relative; width: 48px; }\",\".framer-b1bJa .framer-1p89ttn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 28px; }\",\".framer-b1bJa .framer-151jggi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-1i3jemo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-b1bJa .framer-opmkmj { flex: none; height: 21px; left: calc(47.91666666666669% - 7px / 2); position: absolute; top: calc(50.00000000000002% - 21px / 2); width: 7px; }\",\".framer-b1bJa .framer-1rl7wrm { flex: none; height: 13px; left: calc(31.25000000000002% - 7px / 2); position: absolute; top: calc(50.00000000000002% - 13px / 2); width: 7px; }\",\".framer-b1bJa .framer-16ctcbx { flex: none; height: 13px; left: calc(66.66666666666669% - 7px / 2); position: absolute; top: calc(50.00000000000002% - 13px / 2); width: 7px; }\",\".framer-b1bJa .framer-1csv2jh, .framer-b1bJa .framer-utyra6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; opacity: 0; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-b1bJa .framer-6l7o2p { flex: none; height: 25px; left: calc(50.00000000000002% - 26px / 2); position: absolute; top: calc(50.00000000000002% - 25px / 2); width: 26px; }\",\".framer-b1bJa .framer-2bb579 { aspect-ratio: 1 / 1; background-color: #44ccff; border-bottom-left-radius: 61px; border-bottom-right-radius: 61px; border-top-left-radius: 61px; border-top-right-radius: 61px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-b1bJa .framer-1r619s0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 84%; word-break: break-word; word-wrap: break-word; }\",\".framer-b1bJa .framer-1kv0m2i, .framer-b1bJa .framer-1uhrz55 { --border-bottom-width: 0.5px; --border-color: #222222; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 61px; border-bottom-right-radius: 61px; border-top-left-radius: 61px; border-top-right-radius: 61px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-b1bJa .framer-1vwwjte { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 27px; }\",\".framer-b1bJa .framer-j5gp5e { flex: none; height: 25px; left: calc(50.00000000000002% - 25px / 2); position: absolute; top: calc(50.00000000000002% - 25px / 2); width: 25px; }\",\".framer-b1bJa .framer-tydnnj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-1tfofkg { flex: none; height: 306px; opacity: 0.49; position: absolute; right: 0px; top: 24px; width: 41px; z-index: 1; }\",\".framer-b1bJa .framer-kn5t1q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 69px; height: min-content; justify-content: center; max-width: 900px; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 1px; }\",\".framer-b1bJa .framer-1odp7m4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b1bJa .framer-k0apob, .framer-b1bJa .framer-j1ltpb { 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-b1bJa .framer-11sb8vg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 296px; word-break: break-word; word-wrap: break-word; }\",\".framer-b1bJa .framer-tucf84-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-b1bJa.framer-1twapsh, .framer-b1bJa .framer-162yzxz, .framer-b1bJa .framer-161212l, .framer-b1bJa .framer-1g4q7lt, .framer-b1bJa .framer-1tikb78, .framer-b1bJa .framer-dcbzau, .framer-b1bJa .framer-1rpjw9f, .framer-b1bJa .framer-xhaoiy, .framer-b1bJa .framer-17b1ggc, .framer-b1bJa .framer-1i039bl, .framer-b1bJa .framer-1oh0v9c, .framer-b1bJa .framer-1eru1sl, .framer-b1bJa .framer-obimx6, .framer-b1bJa .framer-1gvkmcz, .framer-b1bJa .framer-1h6ww4k, .framer-b1bJa .framer-eqxx4p, .framer-b1bJa .framer-cy7e7x, .framer-b1bJa .framer-oo7hvj, .framer-b1bJa .framer-6t2jmd, .framer-b1bJa .framer-gejbae, .framer-b1bJa .framer-1ql95r2, .framer-b1bJa .framer-uubmec, .framer-b1bJa .framer-zr6mbx, .framer-b1bJa .framer-p8axop, .framer-b1bJa .framer-sz35s2, .framer-b1bJa .framer-1c5zp36, .framer-b1bJa .framer-m22hbh, .framer-b1bJa .framer-n01mnl, .framer-b1bJa .framer-ui52qh, .framer-b1bJa .framer-14bz7ye, .framer-b1bJa .framer-cq6z1m, .framer-b1bJa .framer-17g8to9, .framer-b1bJa .framer-14cmj6l, .framer-b1bJa .framer-wg6gun, .framer-b1bJa .framer-i1j7uq, .framer-b1bJa .framer-1ja1fro, .framer-b1bJa .framer-1709qw2, .framer-b1bJa .framer-1ev9ydl, .framer-b1bJa .framer-r8c4za, .framer-b1bJa .framer-34ybzj, .framer-b1bJa .framer-1018md4, .framer-b1bJa .framer-ogqbzs, .framer-b1bJa .framer-1comf7a, .framer-b1bJa .framer-lkv3ba, .framer-b1bJa .framer-8r2817, .framer-b1bJa .framer-151jggi, .framer-b1bJa .framer-1i3jemo, .framer-b1bJa .framer-5filvn, .framer-b1bJa .framer-1csv2jh, .framer-b1bJa .framer-p3bix6, .framer-b1bJa .framer-14k68xf, .framer-b1bJa .framer-utyra6, .framer-b1bJa .framer-1o9jgoz, .framer-b1bJa .framer-za5byk, .framer-b1bJa .framer-1qy0wvs, .framer-b1bJa .framer-1f8lu5o, .framer-b1bJa .framer-1iec1jk, .framer-b1bJa .framer-tydnnj, .framer-b1bJa .framer-kn5t1q, .framer-b1bJa .framer-1y0s0k1, .framer-b1bJa .framer-1odp7m4, .framer-b1bJa .framer-k0apob, .framer-b1bJa .framer-j1ltpb { gap: 0px; } .framer-b1bJa.framer-1twapsh > *, .framer-b1bJa .framer-161212l > *, .framer-b1bJa .framer-1g4q7lt > *, .framer-b1bJa .framer-xhaoiy > *, .framer-b1bJa .framer-1c5zp36 > *, .framer-b1bJa .framer-m22hbh > *, .framer-b1bJa .framer-wg6gun > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-b1bJa.framer-1twapsh > :first-child, .framer-b1bJa .framer-161212l > :first-child, .framer-b1bJa .framer-1g4q7lt > :first-child, .framer-b1bJa .framer-1tikb78 > :first-child, .framer-b1bJa .framer-dcbzau > :first-child, .framer-b1bJa .framer-1rpjw9f > :first-child, .framer-b1bJa .framer-xhaoiy > :first-child, .framer-b1bJa .framer-1i039bl > :first-child, .framer-b1bJa .framer-1oh0v9c > :first-child, .framer-b1bJa .framer-eqxx4p > :first-child, .framer-b1bJa .framer-cy7e7x > :first-child, .framer-b1bJa .framer-oo7hvj > :first-child, .framer-b1bJa .framer-6t2jmd > :first-child, .framer-b1bJa .framer-uubmec > :first-child, .framer-b1bJa .framer-p8axop > :first-child, .framer-b1bJa .framer-sz35s2 > :first-child, .framer-b1bJa .framer-1c5zp36 > :first-child, .framer-b1bJa .framer-m22hbh > :first-child, .framer-b1bJa .framer-n01mnl > :first-child, .framer-b1bJa .framer-ui52qh > :first-child, .framer-b1bJa .framer-14bz7ye > :first-child, .framer-b1bJa .framer-cq6z1m > :first-child, .framer-b1bJa .framer-17g8to9 > :first-child, .framer-b1bJa .framer-14cmj6l > :first-child, .framer-b1bJa .framer-wg6gun > :first-child, .framer-b1bJa .framer-i1j7uq > :first-child, .framer-b1bJa .framer-1ja1fro > :first-child, .framer-b1bJa .framer-1709qw2 > :first-child, .framer-b1bJa .framer-1ev9ydl > :first-child, .framer-b1bJa .framer-1018md4 > :first-child, .framer-b1bJa .framer-1comf7a > :first-child, .framer-b1bJa .framer-8r2817 > :first-child, .framer-b1bJa .framer-5filvn > :first-child, .framer-b1bJa .framer-p3bix6 > :first-child, .framer-b1bJa .framer-1o9jgoz > :first-child, .framer-b1bJa .framer-1qy0wvs > :first-child, .framer-b1bJa .framer-1iec1jk > :first-child, .framer-b1bJa .framer-1y0s0k1 > :first-child, .framer-b1bJa .framer-1odp7m4 > :first-child, .framer-b1bJa .framer-k0apob > :first-child, .framer-b1bJa .framer-j1ltpb > :first-child { margin-top: 0px; } .framer-b1bJa.framer-1twapsh > :last-child, .framer-b1bJa .framer-161212l > :last-child, .framer-b1bJa .framer-1g4q7lt > :last-child, .framer-b1bJa .framer-1tikb78 > :last-child, .framer-b1bJa .framer-dcbzau > :last-child, .framer-b1bJa .framer-1rpjw9f > :last-child, .framer-b1bJa .framer-xhaoiy > :last-child, .framer-b1bJa .framer-1i039bl > :last-child, .framer-b1bJa .framer-1oh0v9c > :last-child, .framer-b1bJa .framer-eqxx4p > :last-child, .framer-b1bJa .framer-cy7e7x > :last-child, .framer-b1bJa .framer-oo7hvj > :last-child, .framer-b1bJa .framer-6t2jmd > :last-child, .framer-b1bJa .framer-uubmec > :last-child, .framer-b1bJa .framer-p8axop > :last-child, .framer-b1bJa .framer-sz35s2 > :last-child, .framer-b1bJa .framer-1c5zp36 > :last-child, .framer-b1bJa .framer-m22hbh > :last-child, .framer-b1bJa .framer-n01mnl > :last-child, .framer-b1bJa .framer-ui52qh > :last-child, .framer-b1bJa .framer-14bz7ye > :last-child, .framer-b1bJa .framer-cq6z1m > :last-child, .framer-b1bJa .framer-17g8to9 > :last-child, .framer-b1bJa .framer-14cmj6l > :last-child, .framer-b1bJa .framer-wg6gun > :last-child, .framer-b1bJa .framer-i1j7uq > :last-child, .framer-b1bJa .framer-1ja1fro > :last-child, .framer-b1bJa .framer-1709qw2 > :last-child, .framer-b1bJa .framer-1ev9ydl > :last-child, .framer-b1bJa .framer-1018md4 > :last-child, .framer-b1bJa .framer-1comf7a > :last-child, .framer-b1bJa .framer-8r2817 > :last-child, .framer-b1bJa .framer-5filvn > :last-child, .framer-b1bJa .framer-p3bix6 > :last-child, .framer-b1bJa .framer-1o9jgoz > :last-child, .framer-b1bJa .framer-1qy0wvs > :last-child, .framer-b1bJa .framer-1iec1jk > :last-child, .framer-b1bJa .framer-1y0s0k1 > :last-child, .framer-b1bJa .framer-1odp7m4 > :last-child, .framer-b1bJa .framer-k0apob > :last-child, .framer-b1bJa .framer-j1ltpb > :last-child { margin-bottom: 0px; } .framer-b1bJa .framer-162yzxz > *, .framer-b1bJa .framer-1eru1sl > *, .framer-b1bJa .framer-1gvkmcz > *, .framer-b1bJa .framer-1h6ww4k > *, .framer-b1bJa .framer-zr6mbx > *, .framer-b1bJa .framer-34ybzj > *, .framer-b1bJa .framer-ogqbzs > *, .framer-b1bJa .framer-lkv3ba > *, .framer-b1bJa .framer-1i3jemo > *, .framer-b1bJa .framer-1csv2jh > *, .framer-b1bJa .framer-utyra6 > *, .framer-b1bJa .framer-za5byk > *, .framer-b1bJa .framer-1f8lu5o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-b1bJa .framer-162yzxz > :first-child, .framer-b1bJa .framer-17b1ggc > :first-child, .framer-b1bJa .framer-1eru1sl > :first-child, .framer-b1bJa .framer-obimx6 > :first-child, .framer-b1bJa .framer-1gvkmcz > :first-child, .framer-b1bJa .framer-1h6ww4k > :first-child, .framer-b1bJa .framer-gejbae > :first-child, .framer-b1bJa .framer-1ql95r2 > :first-child, .framer-b1bJa .framer-zr6mbx > :first-child, .framer-b1bJa .framer-r8c4za > :first-child, .framer-b1bJa .framer-34ybzj > :first-child, .framer-b1bJa .framer-ogqbzs > :first-child, .framer-b1bJa .framer-lkv3ba > :first-child, .framer-b1bJa .framer-151jggi > :first-child, .framer-b1bJa .framer-1i3jemo > :first-child, .framer-b1bJa .framer-1csv2jh > :first-child, .framer-b1bJa .framer-14k68xf > :first-child, .framer-b1bJa .framer-utyra6 > :first-child, .framer-b1bJa .framer-za5byk > :first-child, .framer-b1bJa .framer-1f8lu5o > :first-child, .framer-b1bJa .framer-tydnnj > :first-child, .framer-b1bJa .framer-kn5t1q > :first-child { margin-left: 0px; } .framer-b1bJa .framer-162yzxz > :last-child, .framer-b1bJa .framer-17b1ggc > :last-child, .framer-b1bJa .framer-1eru1sl > :last-child, .framer-b1bJa .framer-obimx6 > :last-child, .framer-b1bJa .framer-1gvkmcz > :last-child, .framer-b1bJa .framer-1h6ww4k > :last-child, .framer-b1bJa .framer-gejbae > :last-child, .framer-b1bJa .framer-1ql95r2 > :last-child, .framer-b1bJa .framer-zr6mbx > :last-child, .framer-b1bJa .framer-r8c4za > :last-child, .framer-b1bJa .framer-34ybzj > :last-child, .framer-b1bJa .framer-ogqbzs > :last-child, .framer-b1bJa .framer-lkv3ba > :last-child, .framer-b1bJa .framer-151jggi > :last-child, .framer-b1bJa .framer-1i3jemo > :last-child, .framer-b1bJa .framer-1csv2jh > :last-child, .framer-b1bJa .framer-14k68xf > :last-child, .framer-b1bJa .framer-utyra6 > :last-child, .framer-b1bJa .framer-za5byk > :last-child, .framer-b1bJa .framer-1f8lu5o > :last-child, .framer-b1bJa .framer-tydnnj > :last-child, .framer-b1bJa .framer-kn5t1q > :last-child { margin-right: 0px; } .framer-b1bJa .framer-1tikb78 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-b1bJa .framer-dcbzau > *, .framer-b1bJa .framer-cq6z1m > *, .framer-b1bJa .framer-17g8to9 > *, .framer-b1bJa .framer-14cmj6l > *, .framer-b1bJa .framer-1odp7m4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-b1bJa .framer-1rpjw9f > *, .framer-b1bJa .framer-1i039bl > *, .framer-b1bJa .framer-1oh0v9c > *, .framer-b1bJa .framer-eqxx4p > *, .framer-b1bJa .framer-uubmec > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-b1bJa .framer-17b1ggc > *, .framer-b1bJa .framer-obimx6 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-b1bJa .framer-cy7e7x > *, .framer-b1bJa .framer-i1j7uq > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-b1bJa .framer-oo7hvj > *, .framer-b1bJa .framer-ui52qh > *, .framer-b1bJa .framer-1ja1fro > *, .framer-b1bJa .framer-k0apob > *, .framer-b1bJa .framer-j1ltpb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-b1bJa .framer-6t2jmd > *, .framer-b1bJa .framer-14bz7ye > *, .framer-b1bJa .framer-1709qw2 > * { margin: 0px; margin-bottom: calc(112px / 2); margin-top: calc(112px / 2); } .framer-b1bJa .framer-gejbae > *, .framer-b1bJa .framer-1ql95r2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-b1bJa .framer-p8axop > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-b1bJa .framer-sz35s2 > * { margin: 0px; margin-bottom: calc(79px / 2); margin-top: calc(79px / 2); } .framer-b1bJa .framer-n01mnl > * { margin: 0px; margin-bottom: calc(288px / 2); margin-top: calc(288px / 2); } .framer-b1bJa .framer-1ev9ydl > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-b1bJa .framer-r8c4za > *, .framer-b1bJa .framer-151jggi > *, .framer-b1bJa .framer-14k68xf > * { margin: 0px; margin-left: calc(46px / 2); margin-right: calc(46px / 2); } .framer-b1bJa .framer-1018md4 > *, .framer-b1bJa .framer-1comf7a > *, .framer-b1bJa .framer-8r2817 > *, .framer-b1bJa .framer-5filvn > *, .framer-b1bJa .framer-p3bix6 > *, .framer-b1bJa .framer-1o9jgoz > *, .framer-b1bJa .framer-1qy0wvs > *, .framer-b1bJa .framer-1iec1jk > *, .framer-b1bJa .framer-1y0s0k1 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-b1bJa .framer-tydnnj > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-b1bJa .framer-kn5t1q > * { margin: 0px; margin-left: calc(69px / 2); margin-right: calc(69px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-b1bJa[data-border=\"true\"]::after, .framer-b1bJa [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: 680px) and (max-width: 1199px) { .framer-b1bJa.framer-1twapsh { width: 680px; } .framer-b1bJa .framer-1g4q7lt { min-height: 800px; } .framer-b1bJa .framer-zl809p { height: var(--framer-aspect-ratio-supported, 249px); top: 8px; width: 42%; } .framer-b1bJa .framer-1rrr43q-container { height: var(--framer-aspect-ratio-supported, 399px); } .framer-b1bJa .framer-1p8si1c { align-content: center; align-items: center; width: 100%; } .framer-b1bJa .framer-1tikb78, .framer-b1bJa .framer-gejbae { width: min-content; } .framer-b1bJa .framer-dcbzau { width: 562px; } .framer-b1bJa .framer-1rpjw9f, .framer-b1bJa .framer-1jkte5n, .framer-b1bJa .framer-11sb8vg { width: 100%; } .framer-b1bJa .framer-1i039bl { width: 439px; } .framer-b1bJa .framer-1eru1sl { width: 534px; } .framer-b1bJa .framer-eqxx4p, .framer-b1bJa .framer-tydnnj { padding: 0px 60px 0px 60px; } .framer-b1bJa .framer-cy7e7x { align-content: center; align-items: center; max-width: 600px; } .framer-b1bJa .framer-1dxl1i6 { padding: 0px; } .framer-b1bJa .framer-1ql95r2 { flex-direction: column; height: min-content; width: min-content; } .framer-b1bJa .framer-1wdjdae-container, .framer-b1bJa .framer-1qqyjbd-container, .framer-b1bJa .framer-h5ue70-container, .framer-b1bJa .framer-1tb57w0-container { position: relative; right: unset; top: unset; transform: unset; } .framer-b1bJa .framer-uubmec { padding: 180px 60px 180px 60px; } .framer-b1bJa .framer-p8axop { width: 608px; } .framer-b1bJa .framer-v3mm3w, .framer-b1bJa .framer-i1j7uq { max-width: 600px; } .framer-b1bJa .framer-n01mnl { flex: 1 0 0px; width: 1px; } .framer-b1bJa .framer-cq6z1m { flex: none; padding: 0px 0px 0px 20px; width: min-content; } .framer-b1bJa .framer-17g8to9 { padding: 0px 0px 0px 20px; width: min-content; } .framer-b1bJa .framer-14cmj6l { width: 275px; } .framer-b1bJa .framer-g329s4-container, .framer-b1bJa .framer-j3i1x6-container, .framer-b1bJa .framer-10tnvsq-container, .framer-b1bJa .framer-13ot8w0-container, .framer-b1bJa .framer-ymf0aw-container { width: 309px; } .framer-b1bJa .framer-wg6gun { padding: 80px 60px 80px 60px; } .framer-b1bJa .framer-r8c4za { order: 0; padding: 0px; } .framer-b1bJa .framer-ogqbzs { height: min-content; order: 1; } .framer-b1bJa .framer-lkv3ba { height: min-content; order: 2; } .framer-b1bJa .framer-151jggi { order: 2; } .framer-b1bJa .framer-1i3jemo { order: 1; } .framer-b1bJa .framer-1csv2jh { order: 0; } .framer-b1bJa .framer-14k68xf { justify-content: flex-end; order: 1; padding: 0px; } .framer-b1bJa .framer-za5byk, .framer-b1bJa .framer-1f8lu5o { height: min-content; } .framer-b1bJa .framer-kn5t1q { flex-direction: column; gap: 30px; max-width: 600px; } .framer-b1bJa .framer-1y0s0k1 { flex: none; width: 100%; } .framer-b1bJa .framer-1odp7m4 { gap: 13px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-b1bJa .framer-1ql95r2, .framer-b1bJa .framer-kn5t1q, .framer-b1bJa .framer-1odp7m4 { gap: 0px; } .framer-b1bJa .framer-1ql95r2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-b1bJa .framer-1ql95r2 > :first-child, .framer-b1bJa .framer-kn5t1q > :first-child, .framer-b1bJa .framer-1odp7m4 > :first-child { margin-top: 0px; } .framer-b1bJa .framer-1ql95r2 > :last-child, .framer-b1bJa .framer-kn5t1q > :last-child, .framer-b1bJa .framer-1odp7m4 > :last-child { margin-bottom: 0px; } .framer-b1bJa .framer-kn5t1q > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-b1bJa .framer-1odp7m4 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } }}\",\"@media (max-width: 679px) { .framer-b1bJa.framer-1twapsh { width: 390px; } .framer-b1bJa .framer-161212l { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; overflow: hidden; will-change: var(--framer-will-change-override, transform); } .framer-b1bJa .framer-1g4q7lt { height: 92vh; } .framer-b1bJa .framer-zl809p { height: var(--framer-aspect-ratio-supported, 287px); right: -38px; top: 0px; width: 84%; } .framer-b1bJa .framer-1rrr43q-container { aspect-ratio: 0.6868798235942668 / 1; height: var(--framer-aspect-ratio-supported, 454px); top: -42px; width: 96%; } .framer-b1bJa .framer-1p8si1c { align-content: center; align-items: center; width: 100%; } .framer-b1bJa .framer-1f4acbh { order: 0; width: 100%; } .framer-b1bJa .framer-1tikb78 { order: 1; width: min-content; } .framer-b1bJa .framer-dcbzau { align-content: center; align-items: center; gap: 26px; width: min-content; } .framer-b1bJa .framer-1rpjw9f { gap: 3px; order: 0; width: 281px; } .framer-b1bJa .framer-t46rbj, .framer-b1bJa .framer-5o343d, .framer-b1bJa .framer-1jkte5n, .framer-b1bJa .framer-1jy0jh5, .framer-b1bJa .framer-g329s4-container, .framer-b1bJa .framer-j3i1x6-container, .framer-b1bJa .framer-10tnvsq-container, .framer-b1bJa .framer-13ot8w0-container, .framer-b1bJa .framer-ymf0aw-container, .framer-b1bJa .framer-10m5nfq, .framer-b1bJa .framer-11sb8vg { width: 100%; } .framer-b1bJa .framer-17b1ggc { gap: 13px; width: 100%; } .framer-b1bJa .framer-9ik54w-container { height: 65px; width: 59px; } .framer-b1bJa .framer-1i039bl { flex: 1 0 0px; gap: 120px; width: 1px; } .framer-b1bJa .framer-1oh0v9c { align-content: center; align-items: center; gap: 50px; } .framer-b1bJa .framer-1guydow { order: 2; width: 100%; } .framer-b1bJa .framer-eqxx4p { overflow: hidden; padding: 0px 20px 40px 20px; } .framer-b1bJa .framer-cy7e7x { gap: 40px; max-width: 500px; padding: 40px 0px 0px 0px; } .framer-b1bJa .framer-1dxl1i6 { order: 0; padding: 0px; } .framer-b1bJa .framer-oo7hvj, .framer-b1bJa .framer-ui52qh, .framer-b1bJa .framer-1ja1fro { flex: 1 0 0px; overflow: visible; width: 1px; } .framer-b1bJa .framer-6t2jmd, .framer-b1bJa .framer-14bz7ye, .framer-b1bJa .framer-1709qw2 { flex-direction: row; overflow: visible; padding: 0px 10px 0px 0px; } .framer-b1bJa .framer-yd9k1, .framer-b1bJa .framer-ki21y1, .framer-b1bJa .framer-xynao7 { flex: 1 0 0px; width: 1px; } .framer-b1bJa .framer-gejbae, .framer-b1bJa .framer-1i3jemo { order: 1; } .framer-b1bJa .framer-1ql95r2 { flex: 1 0 0px; flex-direction: column; height: min-content; width: 1px; } .framer-b1bJa .framer-1wdjdae-container, .framer-b1bJa .framer-1qqyjbd-container, .framer-b1bJa .framer-h5ue70-container, .framer-b1bJa .framer-1tb57w0-container { height: var(--framer-aspect-ratio-supported, 190px); position: relative; right: unset; top: unset; transform: unset; width: 190px; } .framer-b1bJa .framer-uubmec { overflow: hidden; padding: 80px 20px 80px 20px; } .framer-b1bJa .framer-j650oj { -webkit-filter: blur(44px); filter: blur(44px); height: var(--framer-aspect-ratio-supported, 262px); top: 71px; transform: translateX(-50%); width: 277px; } .framer-b1bJa .framer-72tjeh { height: var(--framer-aspect-ratio-supported, 294px); top: 100px; width: 354px; } .framer-b1bJa .framer-zr6mbx { height: var(--framer-aspect-ratio-supported, 293px); } .framer-b1bJa .framer-1nu9o59-container { height: var(--framer-aspect-ratio-supported, 480px); width: 551px; } .framer-b1bJa .framer-p8axop { gap: 40px; width: 276px; } .framer-b1bJa .framer-1sktzeu { --framer-text-wrap: balance; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-b1bJa .framer-sz35s2 { gap: 0px; overflow: hidden; padding: 50px 20px 50px 20px; } .framer-b1bJa .framer-m22hbh, .framer-b1bJa .framer-r2o6uv { padding: 0px; } .framer-b1bJa .framer-v3mm3w { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-b1bJa .framer-n01mnl { flex-direction: row; gap: unset; justify-content: space-between; padding: 0px; position: relative; top: unset; width: 100%; } .framer-b1bJa .framer-cq6z1m, .framer-b1bJa .framer-1y0s0k1 { flex: none; width: 100%; } .framer-b1bJa .framer-17g8to9 { align-content: center; align-items: center; gap: 24px; } .framer-b1bJa .framer-wg6gun { padding: 100px 20px 80px 20px; } .framer-b1bJa .framer-i1j7uq { gap: 60px; max-width: 500px; padding: 50px 20px 50px 20px; width: 100%; } .framer-b1bJa .framer-1ev9ydl { gap: 40px; } .framer-b1bJa .framer-r8c4za { flex-direction: column; gap: 40px; order: 0; padding: 0px; } .framer-b1bJa .framer-ogqbzs { flex: none; height: min-content; order: 1; width: 100%; } .framer-b1bJa .framer-lkv3ba { flex: none; height: min-content; order: 2; width: 100%; } .framer-b1bJa .framer-151jggi { order: 2; } .framer-b1bJa .framer-14k68xf { flex-direction: column; gap: 40px; justify-content: flex-end; order: 1; padding: 0px; } .framer-b1bJa .framer-za5byk, .framer-b1bJa .framer-1f8lu5o { flex: none; height: min-content; width: 100%; } .framer-b1bJa .framer-tydnnj { flex-direction: column; } .framer-b1bJa .framer-kn5t1q { flex: none; flex-direction: column; gap: 30px; max-width: 500px; width: 100%; } .framer-b1bJa .framer-1odp7m4 { gap: 13px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-b1bJa .framer-dcbzau, .framer-b1bJa .framer-1rpjw9f, .framer-b1bJa .framer-17b1ggc, .framer-b1bJa .framer-1i039bl, .framer-b1bJa .framer-1oh0v9c, .framer-b1bJa .framer-cy7e7x, .framer-b1bJa .framer-6t2jmd, .framer-b1bJa .framer-1ql95r2, .framer-b1bJa .framer-p8axop, .framer-b1bJa .framer-sz35s2, .framer-b1bJa .framer-v3mm3w, .framer-b1bJa .framer-n01mnl, .framer-b1bJa .framer-14bz7ye, .framer-b1bJa .framer-17g8to9, .framer-b1bJa .framer-i1j7uq, .framer-b1bJa .framer-1709qw2, .framer-b1bJa .framer-1ev9ydl, .framer-b1bJa .framer-r8c4za, .framer-b1bJa .framer-14k68xf, .framer-b1bJa .framer-tydnnj, .framer-b1bJa .framer-kn5t1q, .framer-b1bJa .framer-1odp7m4 { gap: 0px; } .framer-b1bJa .framer-dcbzau > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-b1bJa .framer-dcbzau > :first-child, .framer-b1bJa .framer-1rpjw9f > :first-child, .framer-b1bJa .framer-1i039bl > :first-child, .framer-b1bJa .framer-1oh0v9c > :first-child, .framer-b1bJa .framer-cy7e7x > :first-child, .framer-b1bJa .framer-1ql95r2 > :first-child, .framer-b1bJa .framer-p8axop > :first-child, .framer-b1bJa .framer-sz35s2 > :first-child, .framer-b1bJa .framer-v3mm3w > :first-child, .framer-b1bJa .framer-17g8to9 > :first-child, .framer-b1bJa .framer-i1j7uq > :first-child, .framer-b1bJa .framer-1ev9ydl > :first-child, .framer-b1bJa .framer-r8c4za > :first-child, .framer-b1bJa .framer-14k68xf > :first-child, .framer-b1bJa .framer-tydnnj > :first-child, .framer-b1bJa .framer-kn5t1q > :first-child, .framer-b1bJa .framer-1odp7m4 > :first-child { margin-top: 0px; } .framer-b1bJa .framer-dcbzau > :last-child, .framer-b1bJa .framer-1rpjw9f > :last-child, .framer-b1bJa .framer-1i039bl > :last-child, .framer-b1bJa .framer-1oh0v9c > :last-child, .framer-b1bJa .framer-cy7e7x > :last-child, .framer-b1bJa .framer-1ql95r2 > :last-child, .framer-b1bJa .framer-p8axop > :last-child, .framer-b1bJa .framer-sz35s2 > :last-child, .framer-b1bJa .framer-v3mm3w > :last-child, .framer-b1bJa .framer-17g8to9 > :last-child, .framer-b1bJa .framer-i1j7uq > :last-child, .framer-b1bJa .framer-1ev9ydl > :last-child, .framer-b1bJa .framer-r8c4za > :last-child, .framer-b1bJa .framer-14k68xf > :last-child, .framer-b1bJa .framer-tydnnj > :last-child, .framer-b1bJa .framer-kn5t1q > :last-child, .framer-b1bJa .framer-1odp7m4 > :last-child { margin-bottom: 0px; } .framer-b1bJa .framer-1rpjw9f > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-b1bJa .framer-17b1ggc > * { margin: 0px; margin-left: calc(13px / 2); margin-right: calc(13px / 2); } .framer-b1bJa .framer-17b1ggc > :first-child, .framer-b1bJa .framer-6t2jmd > :first-child, .framer-b1bJa .framer-14bz7ye > :first-child, .framer-b1bJa .framer-1709qw2 > :first-child { margin-left: 0px; } .framer-b1bJa .framer-17b1ggc > :last-child, .framer-b1bJa .framer-6t2jmd > :last-child, .framer-b1bJa .framer-14bz7ye > :last-child, .framer-b1bJa .framer-1709qw2 > :last-child { margin-right: 0px; } .framer-b1bJa .framer-1i039bl > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-b1bJa .framer-1oh0v9c > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-b1bJa .framer-cy7e7x > *, .framer-b1bJa .framer-p8axop > *, .framer-b1bJa .framer-v3mm3w > *, .framer-b1bJa .framer-1ev9ydl > *, .framer-b1bJa .framer-r8c4za > *, .framer-b1bJa .framer-14k68xf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-b1bJa .framer-6t2jmd > *, .framer-b1bJa .framer-14bz7ye > *, .framer-b1bJa .framer-1709qw2 > * { margin: 0px; margin-left: calc(112px / 2); margin-right: calc(112px / 2); } .framer-b1bJa .framer-1ql95r2 > *, .framer-b1bJa .framer-sz35s2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-b1bJa .framer-n01mnl > *, .framer-b1bJa .framer-n01mnl > :first-child, .framer-b1bJa .framer-n01mnl > :last-child { margin: 0px; } .framer-b1bJa .framer-17g8to9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-b1bJa .framer-i1j7uq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-b1bJa .framer-tydnnj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-b1bJa .framer-kn5t1q > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-b1bJa .framer-1odp7m4 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6262.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gj5iHc5SU\":{\"layout\":[\"fixed\",\"auto\"]},\"eHGpN1ySS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"k3buOZ6MN\":{\"pattern\":\":k3buOZ6MN\",\"name\":\"services\"},\"MBBojpqF6\":{\"pattern\":\":MBBojpqF6\",\"name\":\"services1\"}}\n * @framerResponsiveScreen\n */const FramerK7Hq8WtC6=withCSS(Component,css,\"framer-b1bJa\");export default FramerK7Hq8WtC6;FramerK7Hq8WtC6.displayName=\"Home\";FramerK7Hq8WtC6.defaultProps={height:6262.5,width:1200};addFonts(FramerK7Hq8WtC6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...Welcome3Fonts,...NavigationFonts,...UnicornStudioEmbedFonts,...ArcFonts,...ButtonFonts,...SquareFonts,...CircleFonts,...ComponentDividerFonts,...CardFonts,...Card2Fonts,...Card4Fonts,...Card5Fonts,...Card6Fonts,...CallToActionFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK7Hq8WtC6\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"6262.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gj5iHc5SU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eHGpN1ySS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"k3buOZ6MN\\\":{\\\"pattern\\\":\\\":k3buOZ6MN\\\",\\\"name\\\":\\\"services\\\"},\\\"MBBojpqF6\\\":{\\\"pattern\\\":\\\":MBBojpqF6\\\",\\\"name\\\":\\\"services1\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["murmur2", "a", "e", "c", "getAlignmentIcon", "alignmentBaseline", "Arc", "withCSS", "props", "isCanvas", "RenderTarget", "cylinder", "path", "createPath", "id", "murmur2", "alignmentValue", "u", "p", "Arc_default", "addPropertyControls", "ControlType", "flip", "cylinderTop", "cylinderBottom", "UnicornStudioEmbed", "props", "elementRef", "pe", "sceneRef", "scriptId", "ue", "isEditingOrPreviewing", "RenderTarget", "initializeScript", "callback", "script", "initializeUnicornStudio", "dataScript", "e", "query", "projectId", "production", "cacheBuster", "window", "existingScene", "scene", "scenes", "ourScene", "u", "p", "addPropertyControls", "ControlType", "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", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FramerAbyqlCEWS", "withCSS", "AbyqlCEWS_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText2", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "css", "FramerbekDgL8Xx", "withCSS", "bekDgL8Xx_default", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFX", "withFX", "RichText2", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "css", "FramercJbLSeeht", "withCSS", "cJbLSeeht_default", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "action", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "WqbHYVdhP", "qFgvb8BjV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerEZCerEe_R", "withCSS", "EZCerEe_R_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "advancedSystemArchitectureForSeamlessIntegrationAndExpansion", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "MmFioAApL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "css", "FramergmoP0c19Q", "withCSS", "gmoP0c19Q_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText2", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "css", "FramerNZ8TpQAr6", "withCSS", "NZ8TpQAr6_default", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFX", "withFX", "RichText2", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "css", "Framerpgbg7gFC2", "withCSS", "pgbg7gFC2_default", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "transformTemplate1", "_", "transition5", "animation", "transformTemplate2", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearxv5gnz", "args", "onAppearpcz0q4", "onAppear1etnum8", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "css", "FramerrxxcIrSeC", "withCSS", "rxxcIrSeC_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearfzmf19", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "MotionDivWithFX", "cx", "serializationHash", "css", "FramerSYMJ_npgv", "withCSS", "SYMJ_npgv_default", "addFonts", "RichTextWithFX", "withFX", "RichText2", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "css", "FramerZkTrS_b_g", "withCSS", "ZkTrS_b_g_default", "addFonts", "getFontsFromSharedStyle", "fonts", "Welcome3Fonts", "getFonts", "rxxcIrSeC_default", "NavigationFonts", "sgz_zJtQG_default", "ContainerWithFX", "withFX", "Container", "UnicornStudioEmbedFonts", "UnicornStudioEmbed", "RichTextWithFX", "RichText2", "ArcFonts", "Arc_default", "ButtonFonts", "EZCerEe_R_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "MotionDivWithFX", "motion", "SquareFonts", "SYMJ_npgv_default", "CircleFonts", "gmoP0c19Q_default", "ComponentDividerFonts", "AbyqlCEWS_default", "CardFonts", "NZ8TpQAr6_default", "Card2Fonts", "cJbLSeeht_default", "Card4Fonts", "pgbg7gFC2_default", "Card5Fonts", "ZkTrS_b_g_default", "Card6Fonts", "bekDgL8Xx_default", "MotionDivWithOptimizedAppearEffect", "CallToActionFonts", "NYrENVqwW_default", "FooterFonts", "nVlljsZ33_default", "CursorFonts", "QNKbhbnlN_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "animation7", "animation8", "transition7", "animation9", "transition8", "animation10", "transition9", "animation11", "transition10", "animation12", "transition11", "animation13", "transition12", "animation14", "transition13", "animation15", "transition14", "animation16", "transition15", "animation17", "transition16", "animation18", "transition17", "animation19", "animation20", "animation21", "animation22", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "SVG", "ResolveLinks", "resolvedLinks", "css", "FramerK7Hq8WtC6", "withCSS", "K7Hq8WtC6_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
