{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/qc4iEpmki13HPFyEvPxc/sSjmtBqFY9nCMOD9iqYu/aJQBWtt9u.js", "ssg:https://framerusercontent.com/modules/jtIjVXuSpjvJry7Llmm5/wUBa1C9flFoNJazwzrjV/aU0Y9Afv7.js", "ssg:https://framerusercontent.com/modules/jt1VlL0ojpvG4IP1e3IS/qzR86rPTsfXAvuXr3IOw/f8WfU2jMQ.js", "ssg:https://framerusercontent.com/modules/npmR4noa21AQoqBedVvY/3XDP35o9HKLsknmb5fE1/FnLhc8lAP.js", "ssg:https://framerusercontent.com/modules/8t1AQUVEtgsjw0gjS2c3/y5RgQSxl3VayH8FxofMk/IcjfBXCvG.js", "ssg:https://framerusercontent.com/modules/2mo3u62hNVw6UYg0W9dQ/vctBJIo5MSR75jE8lRKi/Iywykxv6x.js", "ssg:https://framerusercontent.com/modules/4KpxnYpymYzDqtFlYzlp/VCLJeU0OHe2IrPOxirmI/Ji_kxN6QL.js", "ssg:https://framerusercontent.com/modules/2vkdSLTjcr0yyjZnUh1h/U4NOh6k5gXYZmGQWGr5F/RisD07fNB.js", "ssg:https://framerusercontent.com/modules/a3Tht6jd0o2LiuOJERXw/P9WLnzaquDDAaQe9imX5/vh_Uh6aCU.js", "ssg:https://framerusercontent.com/modules/wcaWaO4kAS5UFnSBlDmB/3u1g6iXCiQIIqDrSeB8q/w59uHh8HX.js", "ssg:https://framerusercontent.com/modules/AmFI5nMRvKzqwttrkWhT/fMPf7nMKhcgh6kMzuwDa/ZPVT9hL3D.js", "ssg:https://framerusercontent.com/modules/uVM6Ug1jOrfK2OoAmv7S/89ZOQagxoko6syvtA3BD/Counter.js", "ssg:https://framerusercontent.com/modules/MMXp8i4wKDUwrBBb6KHW/6zmcuB41JzD1U7WCq5gG/zrfVg_m5t.js", "ssg:https://framerusercontent.com/modules/8wPUv59tBNCssWqcArsj/ormxhrvdzH56FH2N6761/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (7f69244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vv2ZNc6Xi\",\"paVXsccRf\",\"MGKYffkKO\"];const serializationHash=\"framer-Fd8nW\";const variantClassNames={MGKYffkKO:\"framer-v-1bvpv0o\",paVXsccRf:\"framer-v-12k1q3n\",vv2ZNc6Xi:\"framer-v-udpp1f\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={\"Big Default State\":\"vv2ZNc6Xi\",\"Small Default\":\"MGKYffkKO\",\"Small Hover State\":\"paVXsccRf\"};const getProps=({heading,height,id,text,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,I0KtDm67s:(_ref=text!==null&&text!==void 0?text:props.I0KtDm67s)!==null&&_ref!==void 0?_ref:\"Join a community of satisfied clients benefiting from our proven excellence.\",jxpw6yvEh:(_ref1=heading!==null&&heading!==void 0?heading:props.jxpw6yvEh)!==null&&_ref1!==void 0?_ref1:\"98% Client Success Rate\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"vv2ZNc6Xi\"};};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,jxpw6yvEh,I0KtDm67s,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vv2ZNc6Xi\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterr3rdya=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"paVXsccRf\");});const onMouseLeavellyst6=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"vv2ZNc6Xi\");});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-udpp1f\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Big Default State\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vv2ZNc6Xi\",onMouseEnter:onMouseEnterr3rdya,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(14, 18, 46)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(0, 4, 31, 1) 0%, rgba(0, 4, 31, 0) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({MGKYffkKO:{\"data-framer-name\":\"Small Default\",\"data-highlight\":undefined,onMouseEnter:undefined},paVXsccRf:{\"data-framer-name\":\"Small Hover State\",onMouseEnter:undefined,onMouseLeave:onMouseLeavellyst6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Feature Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:367,pixelWidth:380,src:\"https://framerusercontent.com/images/dqjPcqbhPWlbjWbQAWRi6RAvA4.svg\"},className:\"framer-1ax4638\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"LfcT_TOj2\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+85),pixelHeight:98,pixelWidth:48,src:\"https://framerusercontent.com/images/1uqaJBEirOXDXIXzH2B1pb1aq0.svg\"},className:\"framer-gesj9l\",\"data-framer-name\":\"Mark Design\",layoutDependency:layoutDependency,layoutId:\"szrjYIzYe\",style:{originX:.61,originY:.8,rotate:-68},transformTemplate:transformTemplate1,variants:{MGKYffkKO:{rotate:-1},paVXsccRf:{rotate:68}}})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Feature Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:367,pixelWidth:380,src:\"https://framerusercontent.com/images/lVMga4rUZKgcCmuJunHZSHKYU.svg\"},className:\"framer-12dy0mb\",\"data-framer-name\":\"Light Bg\",layoutDependency:layoutDependency,layoutId:\"Kwguuztzg\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Feature Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:367,pixelWidth:380,src:\"https://framerusercontent.com/images/lVMga4rUZKgcCmuJunHZSHKYU.svg\"},className:\"framer-12ys8k\",\"data-framer-name\":\"Light Bg\",layoutDependency:layoutDependency,layoutId:\"rlnXHorWz\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:0},variants:{MGKYffkKO:{opacity:1},paVXsccRf:{opacity:1}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g6tvse\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"s3Oyto9g5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255)))\"},children:\"98% Client Success Rate\"})}),className:\"framer-161m84v\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-700\"],layoutDependency:layoutDependency,layoutId:\"XNPpa5oPj\",style:{\"--extracted-r6o4lv\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:jxpw6yvEh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 119, 146))\"},children:\"Join a community of satisfied clients benefiting from our proven excellence.\"})}),className:\"framer-1p8gtqg\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Rethink Sans-500\"],layoutDependency:layoutDependency,layoutId:\"EZAHSma7P\",style:{\"--extracted-r6o4lv\":\"rgb(109, 119, 146)\",\"--framer-paragraph-spacing\":\"0px\"},text:I0KtDm67s,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Fd8nW.framer-vg6iq4, .framer-Fd8nW .framer-vg6iq4 { display: block; }\",\".framer-Fd8nW.framer-udpp1f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 334px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 346px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fd8nW .framer-1ax4638, .framer-Fd8nW .framer-12dy0mb, .framer-Fd8nW .framer-12ys8k { -webkit-user-select: none; bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Fd8nW .framer-gesj9l { aspect-ratio: 0.4897959183673469 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); left: 50%; overflow: visible; position: absolute; top: 85px; width: 13%; }\",\".framer-Fd8nW .framer-1g6tvse { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-Fd8nW .framer-161m84v, .framer-Fd8nW .framer-1p8gtqg { 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-Fd8nW.framer-udpp1f, .framer-Fd8nW .framer-1g6tvse { gap: 0px; } .framer-Fd8nW.framer-udpp1f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Fd8nW.framer-udpp1f > :first-child, .framer-Fd8nW .framer-1g6tvse > :first-child { margin-top: 0px; } .framer-Fd8nW.framer-udpp1f > :last-child, .framer-Fd8nW .framer-1g6tvse > :last-child { margin-bottom: 0px; } .framer-Fd8nW .framer-1g6tvse > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-Fd8nW.framer-v-12k1q3n.framer-udpp1f, .framer-Fd8nW.framer-v-1bvpv0o.framer-udpp1f { aspect-ratio: 1.0354223433242506 / 1; height: var(--framer-aspect-ratio-supported, 334px); }\",\".framer-Fd8nW.framer-v-1bvpv0o .framer-1g6tvse { gap: 4px; padding: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Fd8nW.framer-v-1bvpv0o .framer-1g6tvse { gap: 0px; } .framer-Fd8nW.framer-v-1bvpv0o .framer-1g6tvse > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Fd8nW.framer-v-1bvpv0o .framer-1g6tvse > :first-child { margin-top: 0px; } .framer-Fd8nW.framer-v-1bvpv0o .framer-1g6tvse > :last-child { margin-bottom: 0px; } }\",'.framer-Fd8nW[data-border=\"true\"]::after, .framer-Fd8nW [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 334\n * @framerIntrinsicWidth 346\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"paVXsccRf\":{\"layout\":[\"fixed\",\"fixed\"]},\"MGKYffkKO\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"jxpw6yvEh\":\"heading\",\"I0KtDm67s\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraJQBWtt9u=withCSS(Component,css,\"framer-Fd8nW\");export default FrameraJQBWtt9u;FrameraJQBWtt9u.displayName=\"Cards/ Feature Card 2\";FrameraJQBWtt9u.defaultProps={height:334,width:346};addPropertyControls(FrameraJQBWtt9u,{variant:{options:[\"vv2ZNc6Xi\",\"paVXsccRf\",\"MGKYffkKO\"],optionTitles:[\"Big Default State\",\"Small Hover State\",\"Small Default\"],title:\"Variant\",type:ControlType.Enum},jxpw6yvEh:{defaultValue:\"98% Client Success Rate\",displayTextArea:false,title:\"Heading\",type:ControlType.String},I0KtDm67s:{defaultValue:\"Join a community of satisfied clients benefiting from our proven excellence.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FrameraJQBWtt9u,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkoZWCEvmma-aua4.woff2\",weight:\"700\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqklNRCEvmma-aua4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraJQBWtt9u\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"346\",\"framerIntrinsicHeight\":\"334\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"paVXsccRf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MGKYffkKO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"jxpw6yvEh\\\":\\\"heading\\\",\\\"I0KtDm67s\\\":\\\"text\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aJQBWtt9u.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/WxZH6YpYOZetim5jdC9A/hdTJG6rtTuvkXmeVzFZ2/lQdiPxxce.js\";const serializationHash=\"framer-aWPdr\";const variantClassNames={K1OoD0Ys9:\"framer-v-1as7dvv\"};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(React.Fragment);const getProps=({height,id,text,width,...props})=>{var _ref;return{...props,g6sRtdMft:(_ref=text!==null&&text!==void 0?text:props.g6sRtdMft)!==null&&_ref!==void 0?_ref:\"Customized visual aesthetics.\"};};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,g6sRtdMft,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"K1OoD0Ys9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1as7dvv\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"K1OoD0Ys9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Tick Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-20)/2)),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/kWedhcFiMFVAegynh5rxadiQA0.svg\"},className:\"framer-1f4zpy3\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"ntGG6W5V_\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212)))\"},children:\"Customized visual aesthetics.\"})}),className:\"framer-145luac\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S3ISwJBoh\",style:{\"--extracted-r6o4lv\":\"var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212))\",\"--framer-paragraph-spacing\":\"0px\"},text:g6sRtdMft,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aWPdr.framer-1m5wjpi, .framer-aWPdr .framer-1m5wjpi { display: block; }\",\".framer-aWPdr.framer-1as7dvv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 419px; }\",\".framer-aWPdr .framer-1f4zpy3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-aWPdr .framer-145luac { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aWPdr.framer-1as7dvv { gap: 0px; } .framer-aWPdr.framer-1as7dvv > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-aWPdr.framer-1as7dvv > :first-child { margin-left: 0px; } .framer-aWPdr.framer-1as7dvv > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 419\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"g6sRtdMft\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraU0Y9Afv7=withCSS(Component,css,\"framer-aWPdr\");export default FrameraU0Y9Afv7;FrameraU0Y9Afv7.displayName=\"Helper/ Service Pointer\";FrameraU0Y9Afv7.defaultProps={height:27,width:419};addPropertyControls(FrameraU0Y9Afv7,{g6sRtdMft:{defaultValue:\"Customized visual aesthetics.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FrameraU0Y9Afv7,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraU0Y9Afv7\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"419\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"27\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"g6sRtdMft\\\":\\\"text\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"SfFsoc3d6\",\"C7E4up_jh\",\"N44gxtpdn\"];const serializationHash=\"framer-oJcDH\";const variantClassNames={C7E4up_jh:\"framer-v-5jmr44\",N44gxtpdn:\"framer-v-u1wqb2\",SfFsoc3d6:\"framer-v-dcarbg\"};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={\"Big Default State\":\"SfFsoc3d6\",\"Big Hover State\":\"C7E4up_jh\",\"Small Default\":\"N44gxtpdn\"};const getProps=({heading,height,id,text,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1,_ref2;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:\"SfFsoc3d6\",Z9AfFpsg3:(_ref1=text!==null&&text!==void 0?text:props.Z9AfFpsg3)!==null&&_ref1!==void 0?_ref1:\"Empower your business to thrive with our tailored web design solutions.\",zzm203ZdU:(_ref2=heading!==null&&heading!==void 0?heading:props.zzm203ZdU)!==null&&_ref2!==void 0?_ref2:\"Fuel Your Growth\"};};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,zzm203ZdU,Z9AfFpsg3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SfFsoc3d6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1jxnm8a=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"C7E4up_jh\");});const onMouseLeave4zju07=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"SfFsoc3d6\");});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-dcarbg\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Big Default State\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SfFsoc3d6\",onMouseEnter:onMouseEnter1jxnm8a,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(14, 18, 46)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(0, 4, 31, 1) 0%, rgba(0, 4, 31, 0) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({C7E4up_jh:{\"data-framer-name\":\"Big Hover State\",onMouseEnter:undefined,onMouseLeave:onMouseLeave4zju07},N44gxtpdn:{\"data-framer-name\":\"Small Default\",\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Feature Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:367,pixelWidth:380,src:\"https://framerusercontent.com/images/IwZBGlxLvoD3uZk4I3zvODaDwBg.svg\"},className:\"framer-16euc6w\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"C5zPSy47A\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||380.5)-0)*.6570302233902762-74.5)),pixelHeight:149,pixelWidth:24,src:\"https://framerusercontent.com/images/DIfMs4ogKUexdFKUoMgBqQXh3w.svg\"},className:\"framer-r5ytam\",\"data-framer-name\":\"Mark Design\",layoutDependency:layoutDependency,layoutId:\"lKnDYSBVQ\",...addPropertyOverrides({C7E4up_jh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+26),pixelHeight:149,pixelWidth:24,src:\"https://framerusercontent.com/images/DIfMs4ogKUexdFKUoMgBqQXh3w.svg\"}},N44gxtpdn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+156),pixelHeight:149,pixelWidth:24,src:\"https://framerusercontent.com/images/DIfMs4ogKUexdFKUoMgBqQXh3w.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Feature Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:367,pixelWidth:380,src:\"https://framerusercontent.com/images/lVMga4rUZKgcCmuJunHZSHKYU.svg\"},className:\"framer-1wn3raw\",\"data-framer-name\":\"Light Bg\",layoutDependency:layoutDependency,layoutId:\"avFXGRyWp\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Feature Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:367,pixelWidth:380,src:\"https://framerusercontent.com/images/lVMga4rUZKgcCmuJunHZSHKYU.svg\"},className:\"framer-1av4iad\",\"data-framer-name\":\"Light Bg\",layoutDependency:layoutDependency,layoutId:\"E686Z7gpd\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:0},variants:{C7E4up_jh:{opacity:1},N44gxtpdn:{opacity:1}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vpfzrt\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"Idan8lWJn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255)))\"},children:\"Fuel Your Growth\"})}),className:\"framer-17het5s\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-700\"],layoutDependency:layoutDependency,layoutId:\"flMj9GamA\",style:{\"--extracted-r6o4lv\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:zzm203ZdU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 119, 146))\"},children:\"Empower your business to thrive with our tailored web design solutions.\"})}),className:\"framer-1u0c3bj\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Rethink Sans-500\"],layoutDependency:layoutDependency,layoutId:\"cHCc8RvsT\",style:{\"--extracted-r6o4lv\":\"rgb(109, 119, 146)\",\"--framer-paragraph-spacing\":\"0px\"},text:Z9AfFpsg3,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oJcDH.framer-1i33ysc, .framer-oJcDH .framer-1i33ysc { display: block; }\",\".framer-oJcDH.framer-dcarbg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 381px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 394px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oJcDH .framer-16euc6w, .framer-oJcDH .framer-1wn3raw, .framer-oJcDH .framer-1av4iad { -webkit-user-select: none; bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-oJcDH .framer-r5ytam { flex: none; height: 149px; left: calc(36.294416243654844% - 24px / 2); overflow: visible; position: absolute; top: calc(65.70302233902761% - 149px / 2); width: 24px; }\",\".framer-oJcDH .framer-vpfzrt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-oJcDH .framer-17het5s, .framer-oJcDH .framer-1u0c3bj { 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-oJcDH.framer-dcarbg, .framer-oJcDH .framer-vpfzrt { gap: 0px; } .framer-oJcDH.framer-dcarbg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oJcDH.framer-dcarbg > :first-child, .framer-oJcDH .framer-vpfzrt > :first-child { margin-top: 0px; } .framer-oJcDH.framer-dcarbg > :last-child, .framer-oJcDH .framer-vpfzrt > :last-child { margin-bottom: 0px; } .framer-oJcDH .framer-vpfzrt > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-oJcDH.framer-v-5jmr44.framer-dcarbg { aspect-ratio: 1.035820895522388 / 1; height: var(--framer-aspect-ratio-supported, 381px); }\",\".framer-oJcDH.framer-v-5jmr44 .framer-r5ytam { left: unset; right: 5px; top: 26px; }\",\".framer-oJcDH.framer-v-u1wqb2.framer-dcarbg { aspect-ratio: 1.035820895522388 / 1; height: var(--framer-aspect-ratio-supported, 339px); width: 351px; }\",\".framer-oJcDH.framer-v-u1wqb2 .framer-r5ytam { left: calc(36.18233618233621% - 24px / 2); top: 156px; }\",\".framer-oJcDH.framer-v-u1wqb2 .framer-vpfzrt { gap: 4px; padding: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oJcDH.framer-v-u1wqb2 .framer-vpfzrt { gap: 0px; } .framer-oJcDH.framer-v-u1wqb2 .framer-vpfzrt > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-oJcDH.framer-v-u1wqb2 .framer-vpfzrt > :first-child { margin-top: 0px; } .framer-oJcDH.framer-v-u1wqb2 .framer-vpfzrt > :last-child { margin-bottom: 0px; } }\",'.framer-oJcDH[data-border=\"true\"]::after, .framer-oJcDH [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.5\n * @framerIntrinsicWidth 394\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"C7E4up_jh\":{\"layout\":[\"fixed\",\"fixed\"]},\"N44gxtpdn\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"zzm203ZdU\":\"heading\",\"Z9AfFpsg3\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerf8WfU2jMQ=withCSS(Component,css,\"framer-oJcDH\");export default Framerf8WfU2jMQ;Framerf8WfU2jMQ.displayName=\"Cards/ Feature Card 1\";Framerf8WfU2jMQ.defaultProps={height:380.5,width:394};addPropertyControls(Framerf8WfU2jMQ,{variant:{options:[\"SfFsoc3d6\",\"C7E4up_jh\",\"N44gxtpdn\"],optionTitles:[\"Big Default State\",\"Big Hover State\",\"Small Default\"],title:\"Variant\",type:ControlType.Enum},zzm203ZdU:{defaultValue:\"Fuel Your Growth\",displayTextArea:false,title:\"Heading\",type:ControlType.String},Z9AfFpsg3:{defaultValue:\"Empower your business to thrive with our tailored web design solutions.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(Framerf8WfU2jMQ,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkoZWCEvmma-aua4.woff2\",weight:\"700\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqklNRCEvmma-aua4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf8WfU2jMQ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"C7E4up_jh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"N44gxtpdn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"394\",\"framerVariables\":\"{\\\"zzm203ZdU\\\":\\\"heading\\\",\\\"Z9AfFpsg3\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"380.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./f8WfU2jMQ.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={EOLELt12c:{hover:true}};const serializationHash=\"framer-0hdiD\";const variantClassNames={EOLELt12c:\"framer-v-14dbgfy\"};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={bounce:.2,delay:0,duration:.4,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,link,width,...props})=>{return{...props,qlE34ZEf9:link!==null&&link!==void 0?link:props.qlE34ZEf9};};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,qlE34ZEf9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"EOLELt12c\",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:qlE34ZEf9,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-14dbgfy\",className,classNames)} framer-mcrfan`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"EOLELt12c\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 2px 5px 0px rgba(0, 0, 0, 0.1)\",...style},variants:{\"EOLELt12c-hover\":{boxShadow:\"0px 2px 5px 0px rgba(0, 0, 0, 0.15)\"}},...addPropertyOverrides({\"EOLELt12c-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||34)-0-19)/2)),pixelHeight:600,pixelWidth:400,positionX:\"center\",positionY:\"center\",sizes:\"14.25px\",src:\"https://framerusercontent.com/images/2KXPF7hBaZ2eKxfAdmJe4Ty8aM.png\",srcSet:\"https://framerusercontent.com/images/2KXPF7hBaZ2eKxfAdmJe4Ty8aM.png 400w\"},className:\"framer-16a4xzz\",layoutDependency:layoutDependency,layoutId:\"mu3w1wVsI\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d18b5a8b-31c1-47f9-a612-dd6e705b1656, rgb(40, 40, 40)))\"},children:\"Get Figma File\"})}),className:\"framer-7sak0k\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"pswSjHenO\",style:{\"--extracted-r6o4lv\":\"var(--token-d18b5a8b-31c1-47f9-a612-dd6e705b1656, rgb(40, 40, 40))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0hdiD.framer-mcrfan, .framer-0hdiD .framer-mcrfan { display: block; }\",\".framer-0hdiD.framer-14dbgfy { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 34px; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-0hdiD .framer-16a4xzz { aspect-ratio: 0.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; width: 14px; }\",\".framer-0hdiD .framer-7sak0k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0hdiD.framer-14dbgfy { gap: 0px; } .framer-0hdiD.framer-14dbgfy > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-0hdiD.framer-14dbgfy > :first-child { margin-left: 0px; } .framer-0hdiD.framer-14dbgfy > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 34\n * @framerIntrinsicWidth 135\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"audowNNzX\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"qlE34ZEf9\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFnLhc8lAP=withCSS(Component,css,\"framer-0hdiD\");export default FramerFnLhc8lAP;FramerFnLhc8lAP.displayName=\"Helper/Figma Button\";FramerFnLhc8lAP.defaultProps={height:34,width:135};addPropertyControls(FramerFnLhc8lAP,{qlE34ZEf9:{title:\"Link\",type:ControlType.Link}});addFonts(FramerFnLhc8lAP,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFnLhc8lAP\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"audowNNzX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"qlE34ZEf9\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"135\",\"framerIntrinsicHeight\":\"34\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FnLhc8lAP.map", "// Generated by Framer (dbba614)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gisBteMYDPbtBTSuEO9t/SetySklzkqjMtA5GkNwU/bKrhIMCPv.js\";const enabledGestures={CvqIhNTnQ:{hover:true}};const cycleOrder=[\"CvqIhNTnQ\",\"yG0vNXBvU\"];const serializationHash=\"framer-1w8eK\";const variantClassNames={CvqIhNTnQ:\"framer-v-p7w91b\",yG0vNXBvU:\"framer-v-tqa4n3\"};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={Desktop:\"CvqIhNTnQ\",Mobile:\"yG0vNXBvU\"};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:\"CvqIhNTnQ\"};};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:\"CvqIhNTnQ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-p7w91b\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"CvqIhNTnQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"CvqIhNTnQ-hover\":{\"data-framer-name\":undefined},yG0vNXBvU:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:\"https://x.com/praha37v\",nodeId:\"SE_eAcZaA\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-yo45iy framer-1nqdn2g\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"SE_eAcZaA\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c2774d4c-a446-44d7-82cc-dd6eef7b715d, rgb(19, 24, 57))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f7f2488e-33ec-4b05-ab27-e7cbbd10b0a5, rgb(0, 6, 51))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{\"CvqIhNTnQ-hover\":{backgroundColor:\"var(--token-9808df8b-9423-4c64-ab16-a95758a33d6f, rgb(0, 9, 76))\"}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:159,intrinsicWidth:159,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||62)-0-62)/2+0+0)+10),pixelHeight:159,pixelWidth:159,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vz04nRcNzpu3VodK5xrGBNY1Sms.png\"},className:\"framer-fc1vv7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"DHgdVirCR\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({yG0vNXBvU:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:159,intrinsicWidth:159,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||54)-0-54)/2+0+0)+10),pixelHeight:159,pixelWidth:159,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vz04nRcNzpu3VodK5xrGBNY1Sms.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10aeukx\",\"data-styles-preset\":\"bKrhIMCPv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-59cd66d6-36bb-4bdb-9ad2-2a08345c93a4, rgb(225, 227, 233)))\"},children:\"Template by Praha\"})}),className:\"framer-174fheg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CvvfuLzNX\",style:{\"--extracted-r6o4lv\":\"var(--token-59cd66d6-36bb-4bdb-9ad2-2a08345c93a4, rgb(225, 227, 233))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1w8eK.framer-1nqdn2g, .framer-1w8eK .framer-1nqdn2g { display: block; }\",\".framer-1w8eK.framer-p7w91b { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-1w8eK .framer-yo45iy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 16px 10px 10px; position: relative; text-decoration: none; width: min-content; }\",\".framer-1w8eK .framer-fc1vv7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 42px; }\",\".framer-1w8eK .framer-174fheg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1w8eK.framer-p7w91b, .framer-1w8eK .framer-yo45iy { gap: 0px; } .framer-1w8eK.framer-p7w91b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1w8eK.framer-p7w91b > :first-child { margin-top: 0px; } .framer-1w8eK.framer-p7w91b > :last-child { margin-bottom: 0px; } .framer-1w8eK .framer-yo45iy > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-1w8eK .framer-yo45iy > :first-child { margin-left: 0px; } .framer-1w8eK .framer-yo45iy > :last-child { margin-right: 0px; } }\",\".framer-1w8eK.framer-v-tqa4n3.framer-p7w91b { cursor: unset; }\",\".framer-1w8eK.framer-v-tqa4n3 .framer-fc1vv7 { height: var(--framer-aspect-ratio-supported, 34px); width: 34px; }\",...sharedStyle.css,'.framer-1w8eK[data-border=\"true\"]::after, .framer-1w8eK [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 62\n * @framerIntrinsicWidth 231\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"yG0vNXBvU\":{\"layout\":[\"auto\",\"auto\"]},\"uhvYUOeet\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIcjfBXCvG=withCSS(Component,css,\"framer-1w8eK\");export default FramerIcjfBXCvG;FramerIcjfBXCvG.displayName=\"Buttons/Floating Btn\";FramerIcjfBXCvG.defaultProps={height:62,width:231};addPropertyControls(FramerIcjfBXCvG,{variant:{options:[\"CvqIhNTnQ\",\"yG0vNXBvU\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIcjfBXCvG,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIcjfBXCvG\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"231\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yG0vNXBvU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uhvYUOeet\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"62\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IcjfBXCvG.map", "// Generated by Framer (7e4cc89)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/n6c401gCpqxkIHi3KeB4/tCBNXvkpUORnOXYWBTk8/fiCnJZnWr.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/usxUhlgnkf6npWQ3Lz2K/mcFm9hmFQaKFZhEDxwfr/lQdiPxxce.js\";const enabledGestures={JUaSkqEIu:{hover:true}};const serializationHash=\"framer-pQ2be\";const variantClassNames={JUaSkqEIu:\"framer-v-scswp0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,icon,id,link,newTab,padding,subText,text,width,...props})=>{return{...props,aK6RM5mH2:link??props.aK6RM5mH2,E3NfzBte1:text??props.E3NfzBte1??\"Figma\",HRkWqekUn:newTab??props.HRkWqekUn??true,HZUjHGiHS:subText??props.HZUjHGiHS??\"Collaborative design and prototyping tool.\",lyXAy1XBT:icon??props.lyXAy1XBT??{src:\"https://framerusercontent.com/images/kqv017GS5zNh4LcBglAt9tnAUMY.svg\"},sKOedtuE3:padding??props.sKOedtuE3??\"30px\"};};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,aK6RM5mH2,HRkWqekUn,lyXAy1XBT,E3NfzBte1,HZUjHGiHS,sKOedtuE3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"JUaSkqEIu\",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__*/_jsx(Link,{href:aK6RM5mH2,motionChild:true,nodeId:\"JUaSkqEIu\",openInNewTab:HRkWqekUn,scopeId:\"Iywykxv6x\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-scswp0\",className,classNames)} framer-k5dv0j`,\"data-border\":true,\"data-framer-name\":\"Tool Card\",layoutDependency:layoutDependency,layoutId:\"JUaSkqEIu\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-e78d0dd7-c6d7-4d1d-acfc-164f74296222, rgb(12, 15, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",\"--jyjm4v\":numberToPixelString(sKOedtuE3),background:\"linear-gradient(179.9999999999996deg, rgba(0, 2, 15, 0) 0%, rgba(0, 4, 31, 1) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({\"JUaSkqEIu-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lpz5sh\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"HXwWPKfhX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rxsqh9\",\"data-border\":true,\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"phk8C2c3p\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-e5e32cd2-9193-48bc-af06-07aa6da4bbe5, rgb(14, 18, 46))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f40c3d7d-74c3-4e52-9cd9-1acb262c1c61, rgb(10, 12, 30))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:30,pixelWidth:30,sizes:\"30px\",...toResponsiveImage(lyXAy1XBT)},className:\"framer-9zgcz1\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"pUX6TOhF_\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-tx4y0s\",\"data-styles-preset\":\"fiCnJZnWr\",children:\"Figma\"})}),className:\"framer-1o2kj8g\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bmIkX8OxG\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:E3NfzBte1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y3gxrz\",\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"fXBd7c3PP\",style:{backgroundColor:\"var(--token-e5e32cd2-9193-48bc-af06-07aa6da4bbe5, rgb(14, 18, 46))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16u90vf\",\"data-framer-name\":\"Icon Wrap\",layoutDependency:layoutDependency,layoutId:\"BDkZbErmn\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Arrow Icon\",fit:\"fill\",pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/4inVsREG5sDd4CdIjyHUc9Ldzs.svg\"},className:\"framer-15l37to\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"aP6E34jxq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Arrow Icon\",fit:\"fill\",pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/4inVsREG5sDd4CdIjyHUc9Ldzs.svg\"},className:\"framer-vp3xi\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Y6rWpxEDH\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"JUaSkqEIu-hover\":{transformTemplate:undefined}},baseVariant,gestureVariant)})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(222, 222, 222, 0.56))\"},children:\"Collaborative design and prototyping tool.\"})}),className:\"framer-ituf6n\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qv93gif4C\",style:{\"--extracted-r6o4lv\":\"rgba(222, 222, 222, 0.56)\",\"--framer-paragraph-spacing\":\"0px\"},text:HZUjHGiHS,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pQ2be.framer-k5dv0j, .framer-pQ2be .framer-k5dv0j { display: block; }\",\".framer-pQ2be.framer-scswp0 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: var(--jyjm4v); position: relative; text-decoration: none; width: 293px; }\",\".framer-pQ2be .framer-1lpz5sh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pQ2be .framer-rxsqh9 { 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: 8px; position: relative; width: min-content; }\",\".framer-pQ2be .framer-9zgcz1 { flex: none; height: 30px; overflow: visible; position: relative; width: 30px; }\",\".framer-pQ2be .framer-1o2kj8g { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-pQ2be .framer-y3gxrz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 14px 8px 14px; position: relative; width: min-content; }\",\".framer-pQ2be .framer-16u90vf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 18px; }\",\".framer-pQ2be .framer-15l37to { aspect-ratio: 1 / 1; bottom: -18px; flex: none; height: var(--framer-aspect-ratio-supported, 18px); left: -18px; overflow: visible; position: absolute; width: 18px; z-index: 1; }\",\".framer-pQ2be .framer-vp3xi { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 18px; z-index: 1; }\",\".framer-pQ2be .framer-ituf6n { 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-pQ2be.framer-scswp0, .framer-pQ2be .framer-1lpz5sh, .framer-pQ2be .framer-rxsqh9, .framer-pQ2be .framer-y3gxrz, .framer-pQ2be .framer-16u90vf { gap: 0px; } .framer-pQ2be.framer-scswp0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-pQ2be.framer-scswp0 > :first-child, .framer-pQ2be .framer-rxsqh9 > :first-child { margin-top: 0px; } .framer-pQ2be.framer-scswp0 > :last-child, .framer-pQ2be .framer-rxsqh9 > :last-child { margin-bottom: 0px; } .framer-pQ2be .framer-1lpz5sh > *, .framer-pQ2be .framer-y3gxrz > *, .framer-pQ2be .framer-16u90vf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pQ2be .framer-1lpz5sh > :first-child, .framer-pQ2be .framer-y3gxrz > :first-child, .framer-pQ2be .framer-16u90vf > :first-child { margin-left: 0px; } .framer-pQ2be .framer-1lpz5sh > :last-child, .framer-pQ2be .framer-y3gxrz > :last-child, .framer-pQ2be .framer-16u90vf > :last-child { margin-right: 0px; } .framer-pQ2be .framer-rxsqh9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-pQ2be.framer-v-scswp0.hover .framer-15l37to { bottom: 0px; left: 0px; }\",\".framer-pQ2be.framer-v-scswp0.hover .framer-vp3xi { left: unset; right: -18px; top: -18px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-pQ2be[data-border=\"true\"]::after, .framer-pQ2be [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 176\n * @framerIntrinsicWidth 293\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"c7MubF1fy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"aK6RM5mH2\":\"link\",\"HRkWqekUn\":\"newTab\",\"lyXAy1XBT\":\"icon\",\"E3NfzBte1\":\"text\",\"HZUjHGiHS\":\"subText\",\"sKOedtuE3\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIywykxv6x=withCSS(Component,css,\"framer-pQ2be\");export default FramerIywykxv6x;FramerIywykxv6x.displayName=\"Cards/ Tools Card\";FramerIywykxv6x.defaultProps={height:176,width:293};addPropertyControls(FramerIywykxv6x,{aK6RM5mH2:{title:\"Link\",type:ControlType.Link},HRkWqekUn:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean},lyXAy1XBT:{__defaultAssetReference:\"data:framer/asset-reference,kqv017GS5zNh4LcBglAt9tnAUMY.svg?originalFilename=Icon+%2861%29.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},E3NfzBte1:{defaultValue:\"Figma\",displayTextArea:false,title:\"Text\",type:ControlType.String},HZUjHGiHS:{defaultValue:\"Collaborative design and prototyping tool.\",displayTextArea:true,title:\"Sub Text\",type:ControlType.String},sKOedtuE3:{defaultValue:\"30px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerIywykxv6x,[{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\":\"FramerIywykxv6x\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"aK6RM5mH2\\\":\\\"link\\\",\\\"HRkWqekUn\\\":\\\"newTab\\\",\\\"lyXAy1XBT\\\":\\\"icon\\\",\\\"E3NfzBte1\\\":\\\"text\\\",\\\"HZUjHGiHS\\\":\\\"subText\\\",\\\"sKOedtuE3\\\":\\\"padding\\\"}\",\"framerIntrinsicHeight\":\"176\",\"framerIntrinsicWidth\":\"293\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c7MubF1fy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Iywykxv6x.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/0FXadS1GJO3pCagd95hW/qsbmHzUhAJJaokcqTSTV/fiCnJZnWr.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/WxZH6YpYOZetim5jdC9A/hdTJG6rtTuvkXmeVzFZ2/lQdiPxxce.js\";const serializationHash=\"framer-GH3Xe\";const variantClassNames={zhaamTalZ:\"framer-v-x7bbnf\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({heading,height,icon,id,padding,subHeading,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,ddt8xAZJ9:(_ref=icon!==null&&icon!==void 0?icon:props.ddt8xAZJ9)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/ugiZZHlwHStPJHKTJFZ1xmjyeU.svg\"},k_d_dxfEg:(_ref1=heading!==null&&heading!==void 0?heading:props.k_d_dxfEg)!==null&&_ref1!==void 0?_ref1:\"Expert Team\",LMGYp4avW:(_ref2=padding!==null&&padding!==void 0?padding:props.LMGYp4avW)!==null&&_ref2!==void 0?_ref2:\"40px 30px 30px 30px\",ThZHaXbC0:(_ref3=subHeading!==null&&subHeading!==void 0?subHeading:props.ThZHaXbC0)!==null&&_ref3!==void 0?_ref3:\"Dedicated professionals with expertise in cutting-edge web design + development.\"};};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,ddt8xAZJ9,k_d_dxfEg,ThZHaXbC0,LMGYp4avW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"zhaamTalZ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-x7bbnf\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Why Us Card\",layoutDependency:layoutDependency,layoutId:\"zhaamTalZ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-e5e32cd2-9193-48bc-af06-07aa6da4bbe5, rgb(14, 18, 46))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",\"--xqfgtd\":numberToPixelString(LMGYp4avW),backgroundColor:\"var(--token-6cf39457-d957-4967-8059-39c512f3137e, rgb(0, 2, 15))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sjmrca\",\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"idIOel4Ny\",style:{backgroundColor:\"var(--token-6cf39457-d957-4967-8059-39c512f3137e, rgb(0, 2, 15))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+-19+3),pixelHeight:32,pixelWidth:32,sizes:\"32px\",...toResponsiveImage(ddt8xAZJ9)},className:\"framer-3ui2td\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"vQny7Usw9\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-tx4y0s\",\"data-styles-preset\":\"fiCnJZnWr\",children:\"Expert Team\"})}),className:\"framer-5ezn0h\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zYUJMAGxc\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:k_d_dxfEg,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Dedicated professionals with expertise in cutting-edge web design + development.\"})}),className:\"framer-tolphw\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wBSlWYf63\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ThZHaXbC0,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GH3Xe.framer-1sdkq6x, .framer-GH3Xe .framer-1sdkq6x { display: block; }\",\".framer-GH3Xe.framer-x7bbnf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: var(--xqfgtd); position: relative; width: 373px; }\",\".framer-GH3Xe .framer-1sjmrca { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 24px; overflow: visible; padding: 3px; position: absolute; top: -19px; width: min-content; z-index: 1; }\",\".framer-GH3Xe .framer-3ui2td { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 32px; }\",\".framer-GH3Xe .framer-5ezn0h, .framer-GH3Xe .framer-tolphw { 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-GH3Xe.framer-x7bbnf, .framer-GH3Xe .framer-1sjmrca { gap: 0px; } .framer-GH3Xe.framer-x7bbnf > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-GH3Xe.framer-x7bbnf > :first-child { margin-top: 0px; } .framer-GH3Xe.framer-x7bbnf > :last-child { margin-bottom: 0px; } .framer-GH3Xe .framer-1sjmrca > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GH3Xe .framer-1sjmrca > :first-child { margin-left: 0px; } .framer-GH3Xe .framer-1sjmrca > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-GH3Xe[data-border=\"true\"]::after, .framer-GH3Xe [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 189\n * @framerIntrinsicWidth 373\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ddt8xAZJ9\":\"icon\",\"k_d_dxfEg\":\"heading\",\"ThZHaXbC0\":\"subHeading\",\"LMGYp4avW\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJi_kxN6QL=withCSS(Component,css,\"framer-GH3Xe\");export default FramerJi_kxN6QL;FramerJi_kxN6QL.displayName=\"Cards/ Why Us Card\";FramerJi_kxN6QL.defaultProps={height:189,width:373};addPropertyControls(FramerJi_kxN6QL,{ddt8xAZJ9:{__defaultAssetReference:\"data:framer/asset-reference,ugiZZHlwHStPJHKTJFZ1xmjyeU.svg?originalFilename=Star.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},k_d_dxfEg:{defaultValue:\"Expert Team\",displayTextArea:false,title:\"Heading\",type:ControlType.String},ThZHaXbC0:{defaultValue:\"Dedicated professionals with expertise in cutting-edge web design + development.\",displayTextArea:false,title:\"Sub Heading\",type:ControlType.String},LMGYp4avW:{defaultValue:\"40px 30px 30px 30px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerJi_kxN6QL,[{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\":\"FramerJi_kxN6QL\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"189\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"373\",\"framerVariables\":\"{\\\"ddt8xAZJ9\\\":\\\"icon\\\",\\\"k_d_dxfEg\\\":\\\"heading\\\",\\\"ThZHaXbC0\\\":\\\"subHeading\\\",\\\"LMGYp4avW\\\":\\\"padding\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ji_kxN6QL.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/WxZH6YpYOZetim5jdC9A/hdTJG6rtTuvkXmeVzFZ2/lQdiPxxce.js\";const enabledGestures={hmvMLUjXe:{hover:true}};const serializationHash=\"framer-d29Q2\";const variantClassNames={hmvMLUjXe:\"framer-v-1qc8nm1\"};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 getProps=({height,id,link,newTab,width,...props})=>{return{...props,TsYFO1LUx:link!==null&&link!==void 0?link:props.TsYFO1LUx,ZN7ZyUH44:newTab!==null&&newTab!==void 0?newTab:props.ZN7ZyUH44};};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,TsYFO1LUx,ZN7ZyUH44,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"hmvMLUjXe\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:TsYFO1LUx,nodeId:\"hmvMLUjXe\",openInNewTab:ZN7ZyUH44,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1qc8nm1\",className,classNames)} framer-1465x9a`,\"data-border\":true,\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"hmvMLUjXe\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1de346e1-893e-48fc-baa6-bfb90f41753f, rgb(22, 28, 68))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({\"hmvMLUjXe-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",children:\"Book a Call\"})}),className:\"framer-pvf6j3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UZOkc31br\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.75},variants:{\"hmvMLUjXe-hover\":{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nyznbp\",\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"N8HcvCTNx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Arrow Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(14+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-22-20)/2)+3552713678800501e-30),pixelHeight:21,pixelWidth:21,src:\"https://framerusercontent.com/images/Cu6noAe5NqWtCjo6mQiyjy5zJs4.svg\"},className:\"framer-1ebkshm\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"zRgC9Q_Wk\",style:{opacity:.75},variants:{\"hmvMLUjXe-hover\":{opacity:1}},...addPropertyOverrides({\"hmvMLUjXe-hover\":{background:{alt:\"Arrow Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(14+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-22-20)/2)+-20),pixelHeight:21,pixelWidth:21,src:\"https://framerusercontent.com/images/Cu6noAe5NqWtCjo6mQiyjy5zJs4.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Arrow Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(14+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-22-20)/2)+20-0),pixelHeight:21,pixelWidth:21,src:\"https://framerusercontent.com/images/Cu6noAe5NqWtCjo6mQiyjy5zJs4.svg\"},className:\"framer-qhrcqp\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"DoPYnyDVF\",style:{opacity:.75},variants:{\"hmvMLUjXe-hover\":{opacity:1}},...addPropertyOverrides({\"hmvMLUjXe-hover\":{background:{alt:\"Arrow Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(14+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-22-20)/2)+3552713678800501e-30),pixelHeight:21,pixelWidth:21,src:\"https://framerusercontent.com/images/Cu6noAe5NqWtCjo6mQiyjy5zJs4.svg\"}}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-d29Q2.framer-1465x9a, .framer-d29Q2 .framer-1465x9a { display: block; }\",\".framer-d29Q2.framer-1qc8nm1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 14px 4px 8px 4px; position: relative; text-decoration: none; width: min-content; }\",\".framer-d29Q2 .framer-pvf6j3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-d29Q2 .framer-nyznbp { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-d29Q2 .framer-1ebkshm { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-d29Q2 .framer-qhrcqp { bottom: -20px; flex: none; height: 20px; left: -20px; overflow: visible; position: absolute; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-d29Q2.framer-1qc8nm1 { gap: 0px; } .framer-d29Q2.framer-1qc8nm1 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-d29Q2.framer-1qc8nm1 > :first-child { margin-left: 0px; } .framer-d29Q2.framer-1qc8nm1 > :last-child { margin-right: 0px; } }\",\".framer-d29Q2.framer-v-1qc8nm1.hover .framer-1ebkshm { left: unset; right: -20px; top: -20px; }\",\".framer-d29Q2.framer-v-1qc8nm1.hover .framer-qhrcqp { bottom: unset; left: calc(50.00000000000002% - 20px / 2); top: calc(50.00000000000002% - 20px / 2); }\",...sharedStyle.css,'.framer-d29Q2[data-border=\"true\"]::after, .framer-d29Q2 [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 49\n * @framerIntrinsicWidth 124\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"AkMy3tW4b\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"TsYFO1LUx\":\"link\",\"ZN7ZyUH44\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRisD07fNB=withCSS(Component,css,\"framer-d29Q2\");export default FramerRisD07fNB;FramerRisD07fNB.displayName=\"Helper/ Link\";FramerRisD07fNB.defaultProps={height:49,width:124};addPropertyControls(FramerRisD07fNB,{TsYFO1LUx:{title:\"Link\",type:ControlType.Link},ZN7ZyUH44:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerRisD07fNB,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRisD07fNB\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"49\",\"framerVariables\":\"{\\\"TsYFO1LUx\\\":\\\"link\\\",\\\"ZN7ZyUH44\\\":\\\"newTab\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"124\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AkMy3tW4b\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RisD07fNB.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"sbeoGoI7v\",\"tz3O4gP_f\",\"SvHqhVKKa\",\"AqcNyVRD7\"];const serializationHash=\"framer-AAert\";const variantClassNames={AqcNyVRD7:\"framer-v-njc4nd\",sbeoGoI7v:\"framer-v-1mgzrv0\",SvHqhVKKa:\"framer-v-11nvf3y\",tz3O4gP_f:\"framer-v-iemzmh\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Small\":\"SvHqhVKKa\",\"Moble Small\":\"AqcNyVRD7\",Desktop:\"sbeoGoI7v\",Mobile:\"tz3O4gP_f\"};const getProps=({category,height,id,image,width,workTitle,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,GpeXIItGn:(_ref=workTitle!==null&&workTitle!==void 0?workTitle:props.GpeXIItGn)!==null&&_ref!==void 0?_ref:\"AIgnite\",tIbDfJWuT:(_ref1=image!==null&&image!==void 0?image:props.tIbDfJWuT)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/Oce3iDjb9XpLHMdFnJ146ud3fE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Oce3iDjb9XpLHMdFnJ146ud3fE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Oce3iDjb9XpLHMdFnJ146ud3fE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Oce3iDjb9XpLHMdFnJ146ud3fE.png 1824w\"},uPNBFqzMC:(_ref2=category!==null&&category!==void 0?category:props.uPNBFqzMC)!==null&&_ref2!==void 0?_ref2:\"Website Design -\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"sbeoGoI7v\"};};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,tIbDfJWuT,uPNBFqzMC,GpeXIItGn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sbeoGoI7v\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"SvHqhVKKa\",\"AqcNyVRD7\"].includes(baseVariant))return false;return true;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mgzrv0\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sbeoGoI7v\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AqcNyVRD7:{\"data-framer-name\":\"Moble Small\"},SvHqhVKKa:{\"data-framer-name\":\"Desktop Small\"},tz3O4gP_f:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t5pj50\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"FHaG2tHcZ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.05)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{AqcNyVRD7:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},SvHqhVKKa:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w0yiz5\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"kZOOgbo5I\",style:{background:\"radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(92, 125, 244, 1) 0%, rgba(92, 126, 245, 0) 100%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",filter:\"blur(150px)\",WebkitFilter:\"blur(150px)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+6+0),sizes:\"456px\",...toResponsiveImage(tIbDfJWuT),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1h83s56\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"jU4Dno1Qu\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{AqcNyVRD7:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},SvHqhVKKa:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}},...addPropertyOverrides({AqcNyVRD7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+4+0),pixelHeight:307,pixelWidth:162,sizes:\"92px\",...toResponsiveImage(tIbDfJWuT)}},SvHqhVKKa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+4+0),sizes:\"260px\",...toResponsiveImage(tIbDfJWuT),...{positionX:\"center\",positionY:\"center\"}}},tz3O4gP_f:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+6+0),pixelHeight:307,pixelWidth:162,sizes:\"162px\",...toResponsiveImage(tIbDfJWuT)}}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1snqvue\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"YNOTth9Es\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146)))\"},children:\"Website Design - \"})}),className:\"framer-74d5lt\",\"data-framer-name\":\"Text\",fonts:[\"GF;IBM Plex Mono-500\"],layoutDependency:layoutDependency,layoutId:\"nR3PQxkuS\",style:{\"--extracted-r6o4lv\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\",\"--framer-paragraph-spacing\":\"0px\"},text:uPNBFqzMC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146)))\"},children:\"AIgnite\"})}),className:\"framer-fq2zrl\",\"data-framer-name\":\"Text\",fonts:[\"GF;IBM Plex Mono-500\"],layoutDependency:layoutDependency,layoutId:\"zZmna_vM0\",style:{\"--extracted-r6o4lv\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\",\"--framer-paragraph-spacing\":\"0px\"},text:GpeXIItGn,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AAert.framer-1reohl8, .framer-AAert .framer-1reohl8 { display: block; }\",\".framer-AAert.framer-1mgzrv0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AAert .framer-1t5pj50 { 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: flex-start; overflow: hidden; padding: 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AAert .framer-w0yiz5 { aspect-ratio: 2.4972400744713816 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 381px); left: -242px; position: absolute; right: -242px; top: -285px; z-index: 1; }\",\".framer-AAert .framer-1h83s56 { aspect-ratio: 1.485342019543974 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 307px); position: relative; width: 456px; z-index: 2; }\",\".framer-AAert .framer-1snqvue { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AAert .framer-74d5lt, .framer-AAert .framer-fq2zrl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AAert.framer-1mgzrv0, .framer-AAert .framer-1t5pj50, .framer-AAert .framer-1snqvue { gap: 0px; } .framer-AAert.framer-1mgzrv0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AAert.framer-1mgzrv0 > :first-child, .framer-AAert .framer-1t5pj50 > :first-child { margin-top: 0px; } .framer-AAert.framer-1mgzrv0 > :last-child, .framer-AAert .framer-1t5pj50 > :last-child { margin-bottom: 0px; } .framer-AAert .framer-1t5pj50 > * { margin: 0px; margin-bottom: calc(-101px / 2); margin-top: calc(-101px / 2); } .framer-AAert .framer-1snqvue > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-AAert .framer-1snqvue > :first-child { margin-left: 0px; } .framer-AAert .framer-1snqvue > :last-child { margin-right: 0px; } }\",\".framer-AAert.framer-v-iemzmh .framer-w0yiz5 { height: var(--framer-aspect-ratio-supported, 264px); }\",\".framer-AAert.framer-v-iemzmh .framer-1h83s56 { aspect-ratio: 0.5276872964169381 / 1; width: 162px; }\",\".framer-AAert.framer-v-11nvf3y .framer-1t5pj50, .framer-AAert.framer-v-njc4nd .framer-1t5pj50 { padding: 4px; }\",\".framer-AAert.framer-v-11nvf3y .framer-w0yiz5 { height: var(--framer-aspect-ratio-supported, 301px); }\",\".framer-AAert.framer-v-11nvf3y .framer-1h83s56 { height: var(--framer-aspect-ratio-supported, 175px); width: 260px; }\",\".framer-AAert.framer-v-njc4nd .framer-w0yiz5 { height: var(--framer-aspect-ratio-supported, 234px); }\",\".framer-AAert.framer-v-njc4nd .framer-1h83s56 { aspect-ratio: 0.5276872964169381 / 1; height: var(--framer-aspect-ratio-supported, 175px); width: 92px; }\",'.framer-AAert[data-border=\"true\"]::after, .framer-AAert [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 348.5\n * @framerIntrinsicWidth 468\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"tz3O4gP_f\":{\"layout\":[\"auto\",\"auto\"]},\"SvHqhVKKa\":{\"layout\":[\"auto\",\"auto\"]},\"AqcNyVRD7\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"tIbDfJWuT\":\"image\",\"uPNBFqzMC\":\"category\",\"GpeXIItGn\":\"workTitle\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framervh_Uh6aCU=withCSS(Component,css,\"framer-AAert\");export default Framervh_Uh6aCU;Framervh_Uh6aCU.displayName=\"Card/Work Card\";Framervh_Uh6aCU.defaultProps={height:348.5,width:468};addPropertyControls(Framervh_Uh6aCU,{variant:{options:[\"sbeoGoI7v\",\"tz3O4gP_f\",\"SvHqhVKKa\",\"AqcNyVRD7\"],optionTitles:[\"Desktop\",\"Mobile\",\"Desktop Small\",\"Moble Small\"],title:\"Variant\",type:ControlType.Enum},tIbDfJWuT:{__defaultAssetReference:\"data:framer/asset-reference,Oce3iDjb9XpLHMdFnJ146ud3fE.png?originalFilename=image.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},uPNBFqzMC:{defaultValue:\"Website Design -\",displayTextArea:false,title:\"Category\",type:ControlType.String},GpeXIItGn:{defaultValue:\"AIgnite\",displayTextArea:false,title:\"Work Title\",type:ControlType.String}});addFonts(Framervh_Uh6aCU,[{explicitInter:true,fonts:[{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8lJPg-IUDNg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framervh_Uh6aCU\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"tIbDfJWuT\\\":\\\"image\\\",\\\"uPNBFqzMC\\\":\\\"category\\\",\\\"GpeXIItGn\\\":\\\"workTitle\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tz3O4gP_f\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SvHqhVKKa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AqcNyVRD7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"348.5\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"468\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vh_Uh6aCU.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/WxZH6YpYOZetim5jdC9A/hdTJG6rtTuvkXmeVzFZ2/lQdiPxxce.js\";const cycleOrder=[\"o_utWabCT\",\"WwdBEerID\"];const serializationHash=\"framer-Qv6lb\";const variantClassNames={o_utWabCT:\"framer-v-1yo9xo9\",WwdBEerID:\"framer-v-u2pu40\"};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(React.Fragment);const humanReadableVariantMap={Cross:\"WwdBEerID\",Tick:\"o_utWabCT\"};const getProps=({height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,HgB064Vz0:(_ref=title!==null&&title!==void 0?title:props.HgB064Vz0)!==null&&_ref!==void 0?_ref:\"Enjoy limitless design requests.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"o_utWabCT\"};};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,HgB064Vz0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"o_utWabCT\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yo9xo9\",className,classNames),\"data-framer-name\":\"Tick\",layoutDependency:layoutDependency,layoutId:\"o_utWabCT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({WwdBEerID:{\"data-framer-name\":\"Cross\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Tick Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-20)/2)),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/uZvvdNIqj9catkJBtbE0jxSF590.svg\"},className:\"framer-19z35wu\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"gzxD5V89a\",...addPropertyOverrides({WwdBEerID:{background:{alt:\"Cross Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-20)/2)),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/QFrurFfoQHcr1cn0lllbI0CIoEE.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212)))\"},children:\"Enjoy limitless design requests.\"})}),className:\"framer-yehxmu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qXCzwKW2q\",style:{\"--extracted-r6o4lv\":\"var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212))\",\"--framer-paragraph-spacing\":\"0px\"},text:HgB064Vz0,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Qv6lb.framer-1pjlga8, .framer-Qv6lb .framer-1pjlga8 { display: block; }\",\".framer-Qv6lb.framer-1yo9xo9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 253px; }\",\".framer-Qv6lb .framer-19z35wu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-Qv6lb .framer-yehxmu { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qv6lb.framer-1yo9xo9 { gap: 0px; } .framer-Qv6lb.framer-1yo9xo9 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Qv6lb.framer-1yo9xo9 > :first-child { margin-left: 0px; } .framer-Qv6lb.framer-1yo9xo9 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 54\n * @framerIntrinsicWidth 253\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WwdBEerID\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"HgB064Vz0\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerw59uHh8HX=withCSS(Component,css,\"framer-Qv6lb\");export default Framerw59uHh8HX;Framerw59uHh8HX.displayName=\"Helper/ Pricing Pointer\";Framerw59uHh8HX.defaultProps={height:54,width:253};addPropertyControls(Framerw59uHh8HX,{variant:{options:[\"o_utWabCT\",\"WwdBEerID\"],optionTitles:[\"Tick\",\"Cross\"],title:\"Variant\",type:ControlType.Enum},HgB064Vz0:{defaultValue:\"Enjoy limitless design requests.\",displayTextArea:true,title:\"Title\",type:ControlType.String}});addFonts(Framerw59uHh8HX,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerw59uHh8HX\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WwdBEerID\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"253\",\"framerIntrinsicHeight\":\"54\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"HgB064Vz0\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7f69244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"M2AJLbAe_\",\"lzl84KZkO\",\"xssdcmJUN\"];const serializationHash=\"framer-zNCwt\";const variantClassNames={lzl84KZkO:\"framer-v-urn843\",M2AJLbAe_:\"framer-v-1ykmhuq\",xssdcmJUN:\"framer-v-11fxxf6\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={\"Big Default State\":\"M2AJLbAe_\",\"Big Hover State\":\"lzl84KZkO\",\"Small Default\":\"xssdcmJUN\"};const getProps=({heading,height,id,text,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,A5s7EgHee:(_ref=text!==null&&text!==void 0?text:props.A5s7EgHee)!==null&&_ref!==void 0?_ref:\"Stay ahead with innovative web designs crafted by Arise.\",fTw5h1r00:(_ref1=heading!==null&&heading!==void 0?heading:props.fTw5h1r00)!==null&&_ref1!==void 0?_ref1:\"Lead the Way\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"M2AJLbAe_\"};};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,fTw5h1r00,A5s7EgHee,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"M2AJLbAe_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1jk458g=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"lzl84KZkO\");});const onMouseLeavee4o8u3=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"M2AJLbAe_\");});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ykmhuq\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Big Default State\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"M2AJLbAe_\",onMouseEnter:onMouseEnter1jk458g,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(14, 18, 46)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(0, 4, 31, 1) 0%, rgba(0, 4, 31, 0) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({lzl84KZkO:{\"data-framer-name\":\"Big Hover State\",onMouseEnter:undefined,onMouseLeave:onMouseLeavee4o8u3},xssdcmJUN:{\"data-framer-name\":\"Small Default\",\"data-highlight\":undefined,onMouseEnter:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Feature Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:367,pixelWidth:380,src:\"https://framerusercontent.com/images/JwTVkwIqGrG75nHNKN2cohkA5I.svg\"},className:\"framer-jwpvy3\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"AOFDluklp\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+106),pixelHeight:231,pixelWidth:262,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/OKdsEbEFlzi5exmB1V8dM6Q9TPs.svg\"},className:\"framer-imw2j1\",\"data-framer-name\":\"Mark Design\",layoutDependency:layoutDependency,layoutId:\"ZvrBkKpBx\",style:{opacity:.8},transformTemplate:transformTemplate1,variants:{lzl84KZkO:{opacity:1},xssdcmJUN:{opacity:1}},...addPropertyOverrides({lzl84KZkO:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+74),pixelHeight:231,pixelWidth:262,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/OKdsEbEFlzi5exmB1V8dM6Q9TPs.svg\"}},xssdcmJUN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+74),pixelHeight:231,pixelWidth:262,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/OKdsEbEFlzi5exmB1V8dM6Q9TPs.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Feature Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:367,pixelWidth:380,src:\"https://framerusercontent.com/images/lVMga4rUZKgcCmuJunHZSHKYU.svg\"},className:\"framer-19zbnjc\",\"data-framer-name\":\"Light Bg\",layoutDependency:layoutDependency,layoutId:\"VTaiONo2U\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Feature Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:367,pixelWidth:380,src:\"https://framerusercontent.com/images/lVMga4rUZKgcCmuJunHZSHKYU.svg\"},className:\"framer-1656zoa\",\"data-framer-name\":\"Light Bg\",layoutDependency:layoutDependency,layoutId:\"x2LwmliqG\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:0},variants:{lzl84KZkO:{opacity:1},xssdcmJUN:{opacity:1}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6a8kk3\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"PIW4hN0eQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255)))\"},children:\"Lead the Way\"})}),className:\"framer-1kbtqeh\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-700\"],layoutDependency:layoutDependency,layoutId:\"XJEk1TjPh\",style:{\"--extracted-r6o4lv\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:fTw5h1r00,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 119, 146))\"},children:\"Stay ahead with innovative web designs crafted by Arise.\"})}),className:\"framer-dekswq\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Rethink Sans-500\"],layoutDependency:layoutDependency,layoutId:\"YWVZT9S92\",style:{\"--extracted-r6o4lv\":\"rgb(109, 119, 146)\",\"--framer-paragraph-spacing\":\"0px\"},text:A5s7EgHee,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zNCwt.framer-1gbw6la, .framer-zNCwt .framer-1gbw6la { display: block; }\",\".framer-zNCwt.framer-1ykmhuq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 334px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 346px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zNCwt .framer-jwpvy3, .framer-zNCwt .framer-19zbnjc, .framer-zNCwt .framer-1656zoa { -webkit-user-select: none; bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-zNCwt .framer-imw2j1 { aspect-ratio: 1.1855203619909502 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 201px); left: 50%; overflow: visible; position: absolute; top: 106px; width: 69%; }\",\".framer-zNCwt .framer-6a8kk3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-zNCwt .framer-1kbtqeh, .framer-zNCwt .framer-dekswq { 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-zNCwt.framer-1ykmhuq, .framer-zNCwt .framer-6a8kk3 { gap: 0px; } .framer-zNCwt.framer-1ykmhuq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zNCwt.framer-1ykmhuq > :first-child, .framer-zNCwt .framer-6a8kk3 > :first-child { margin-top: 0px; } .framer-zNCwt.framer-1ykmhuq > :last-child, .framer-zNCwt .framer-6a8kk3 > :last-child { margin-bottom: 0px; } .framer-zNCwt .framer-6a8kk3 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-zNCwt.framer-v-urn843.framer-1ykmhuq, .framer-zNCwt.framer-v-11fxxf6.framer-1ykmhuq { aspect-ratio: 1.0354223433242506 / 1; height: var(--framer-aspect-ratio-supported, 334px); }\",\".framer-zNCwt.framer-v-urn843 .framer-imw2j1, .framer-zNCwt.framer-v-11fxxf6 .framer-imw2j1 { left: 50%; top: 74px; width: 69%; }\",\".framer-zNCwt.framer-v-11fxxf6 .framer-6a8kk3 { gap: 4px; padding: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zNCwt.framer-v-11fxxf6 .framer-6a8kk3 { gap: 0px; } .framer-zNCwt.framer-v-11fxxf6 .framer-6a8kk3 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-zNCwt.framer-v-11fxxf6 .framer-6a8kk3 > :first-child { margin-top: 0px; } .framer-zNCwt.framer-v-11fxxf6 .framer-6a8kk3 > :last-child { margin-bottom: 0px; } }\",'.framer-zNCwt[data-border=\"true\"]::after, .framer-zNCwt [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 334\n * @framerIntrinsicWidth 346\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"lzl84KZkO\":{\"layout\":[\"fixed\",\"fixed\"]},\"xssdcmJUN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"fTw5h1r00\":\"heading\",\"A5s7EgHee\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZPVT9hL3D=withCSS(Component,css,\"framer-zNCwt\");export default FramerZPVT9hL3D;FramerZPVT9hL3D.displayName=\"Cards/ Feature Card 3\";FramerZPVT9hL3D.defaultProps={height:334,width:346};addPropertyControls(FramerZPVT9hL3D,{variant:{options:[\"M2AJLbAe_\",\"lzl84KZkO\",\"xssdcmJUN\"],optionTitles:[\"Big Default State\",\"Big Hover State\",\"Small Default\"],title:\"Variant\",type:ControlType.Enum},fTw5h1r00:{defaultValue:\"Lead the Way\",displayTextArea:false,title:\"Heading\",type:ControlType.String},A5s7EgHee:{defaultValue:\"Stay ahead with innovative web designs crafted by Arise.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerZPVT9hL3D,[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkoZWCEvmma-aua4.woff2\",weight:\"700\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqklNRCEvmma-aua4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZPVT9hL3D\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"334\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lzl84KZkO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xssdcmJUN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"fTw5h1r00\\\":\\\"heading\\\",\\\"A5s7EgHee\\\":\\\"text\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"346\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZPVT9hL3D.map", "import{jsxs as _jsxs}from\"react/jsx-runtime\";import React,{useState,useEffect}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const NumberCounterStyles={display:\"flex\",justifyContent:\"left\",alignItems:\"left\"};export function NumberCounter(props){const{startNumber,endNumber,speed,prefix,suffix,loop,decimalSeparator,fontSize,font,fontColor}=props;const[count,setCount]=useState(startNumber);const[isVisible,setIsVisible]=useState(false);const ref=React.useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(ref.current){observer.observe(ref.current);}return()=>{if(ref.current){observer.unobserve(ref.current);}};},[]);useEffect(()=>{if(isVisible&&startNumber!==endNumber){const intervalId=setInterval(()=>{if(count<endNumber){setCount(prevCount=>prevCount+1);}else if(loop){setCount(startNumber);}},speed);return()=>{clearInterval(intervalId);};}},[count,startNumber,endNumber,loop,isVisible]);const formatCount=number=>{if(decimalSeparator===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparator===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(0);}};return /*#__PURE__*/_jsxs(motion.div,{ref:ref,style:{...NumberCounterStyles,gap:`${fontSize/2}px`,flexDirection:\"row\",alignItems:\"left\",fontSize:`${fontSize}px`,fontFamily:font.fontFamily,fontWeight:font.fontWeight,color:fontColor},children:[prefix,formatCount(count),suffix]});}NumberCounter.defaultProps={startNumber:0,endNumber:10,speed:100,prefix:\"\",suffix:\"\",loop:false,decimalSeparator:\"comma\",fontSize:16,font:{fontFamily:\"Arial\",fontWeight:400,systemFont:true},fontColor:\"#707070\"};addPropertyControls(NumberCounter,{font:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Arial\",fontWeight:400,systemFont:true}},fontSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:200,step:1},fontColor:{type:ControlType.Color,title:\"Font Color\"},startNumber:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},endNumber:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparator:{type:ControlType.Enum,title:\"Decimal Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Period (1.000)\",\"None\"]},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:1e3,step:10},prefix:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},suffix:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"NumberCounter\":{\"type\":\"reactComponent\",\"name\":\"NumberCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map", "// Generated by Framer (1f5f6d9)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Rethink Sans-700\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkoZWCEvmma-aua4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-6oETw .framer-styles-preset-1hg2dk5:not(.rich-text-wrapper), .framer-6oETw .framer-styles-preset-1hg2dk5.rich-text-wrapper h1 { --framer-font-family: \"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 38px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-c63500d0-3392-49ff-b400-617c8d04a492, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-6oETw\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import CardsFeatureCard2 from\"#framer/local/canvasComponent/aJQBWtt9u/aJQBWtt9u.js\";import HelperServicePointer from\"#framer/local/canvasComponent/aU0Y9Afv7/aU0Y9Afv7.js\";import ButtonsSocialButton2 from\"#framer/local/canvasComponent/b4p2nYqLY/b4p2nYqLY.js\";import CardsFeatureCard1 from\"#framer/local/canvasComponent/f8WfU2jMQ/f8WfU2jMQ.js\";import HelperFigmaButton from\"#framer/local/canvasComponent/FnLhc8lAP/FnLhc8lAP.js\";import FAQContainer from\"#framer/local/canvasComponent/HD4JrW9gt/HD4JrW9gt.js\";import Footer from\"#framer/local/canvasComponent/hYL69wU1a/hYL69wU1a.js\";import ButtonsFloatingBtn from\"#framer/local/canvasComponent/IcjfBXCvG/IcjfBXCvG.js\";import CardsToolsCard from\"#framer/local/canvasComponent/Iywykxv6x/Iywykxv6x.js\";import CardsWhyUsCard from\"#framer/local/canvasComponent/Ji_kxN6QL/Ji_kxN6QL.js\";import HelperVideo from\"#framer/local/canvasComponent/jW5uY6jen/jW5uY6jen.js\";import Navbar from\"#framer/local/canvasComponent/me8LuZ20A/me8LuZ20A.js\";import CardsPrimaryCard from\"#framer/local/canvasComponent/n5AShpGAk/n5AShpGAk.js\";import HelperBackground from\"#framer/local/canvasComponent/nevMPs773/nevMPs773.js\";import HelperLink from\"#framer/local/canvasComponent/RisD07fNB/RisD07fNB.js\";import ButtonsPrimaryButton from\"#framer/local/canvasComponent/SHwspzjuM/SHwspzjuM.js\";import CardsBlogCard from\"#framer/local/canvasComponent/SKjQddFXm/SKjQddFXm.js\";import CardsWorkCard from\"#framer/local/canvasComponent/uHGeR8Cbp/uHGeR8Cbp.js\";import CardWorkCard from\"#framer/local/canvasComponent/vh_Uh6aCU/vh_Uh6aCU.js\";import HelperPricingPointer from\"#framer/local/canvasComponent/w59uHh8HX/w59uHh8HX.js\";import ButtonsSecondaryButton from\"#framer/local/canvasComponent/WOvOXGBiU/WOvOXGBiU.js\";import CardsFeatureCard3 from\"#framer/local/canvasComponent/ZPVT9hL3D/ZPVT9hL3D.js\";import{NumberCounter}from\"#framer/local/codeFile/JihmMEI/Counter.js\";import Works,{enumToDisplayNameFunctions}from\"#framer/local/collection/hykAOrKre/hykAOrKre.js\";import Blogs,{enumToDisplayNameFunctions as enumToDisplayNameFunctions1}from\"#framer/local/collection/tVgCQzjXN/tVgCQzjXN.js\";import*as sharedStyle8 from\"#framer/local/css/bKrhIMCPv/bKrhIMCPv.js\";import*as sharedStyle7 from\"#framer/local/css/fiCnJZnWr/fiCnJZnWr.js\";import*as sharedStyle2 from\"#framer/local/css/lQdiPxxce/lQdiPxxce.js\";import*as sharedStyle6 from\"#framer/local/css/Mcl3N1nfx/Mcl3N1nfx.js\";import*as sharedStyle5 from\"#framer/local/css/otR1sty3h/otR1sty3h.js\";import*as sharedStyle4 from\"#framer/local/css/tApuA7q4Y/tApuA7q4Y.js\";import*as sharedStyle3 from\"#framer/local/css/v3p2ahbsR/v3p2ahbsR.js\";import*as sharedStyle from\"#framer/local/css/vISVgjJlX/vISVgjJlX.js\";import*as sharedStyle1 from\"#framer/local/css/zrfVg_m5t/zrfVg_m5t.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ParticlesFonts=getFonts(Particles);const ImageWithFX=withFX(Image);const ContainerWithFX=withFX(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonsPrimaryButtonFonts=getFonts(ButtonsPrimaryButton);const CardWorkCardFonts=getFonts(CardWorkCard);const TickerFonts=getFonts(Ticker);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const Ticker1Fonts=getFonts(Ticker1);const HelperBackgroundFonts=getFonts(HelperBackground);const CardsWorkCardFonts=getFonts(CardsWorkCard);const ButtonsSecondaryButtonFonts=getFonts(ButtonsSecondaryButton);const CardsWhyUsCardFonts=getFonts(CardsWhyUsCard);const CardsPrimaryCardFonts=getFonts(CardsPrimaryCard);const CardsToolsCardFonts=getFonts(CardsToolsCard);const HelperVideoFonts=getFonts(HelperVideo);const ButtonsSocialButton2Fonts=getFonts(ButtonsSocialButton2);const VideoFonts=getFonts(Video);const HelperServicePointerFonts=getFonts(HelperServicePointer);const NumberCounterFonts=getFonts(NumberCounter);const HelperLinkFonts=getFonts(HelperLink);const HelperPricingPointerFonts=getFonts(HelperPricingPointer);const CardsFeatureCard1Fonts=getFonts(CardsFeatureCard1);const CardsFeatureCard2Fonts=getFonts(CardsFeatureCard2);const CardsFeatureCard3Fonts=getFonts(CardsFeatureCard3);const CardsBlogCardFonts=getFonts(CardsBlogCard);const FAQContainerFonts=getFonts(FAQContainer);const FooterFonts=getFonts(Footer);const ButtonsFloatingBtnFonts=getFonts(ButtonsFloatingBtn);const HelperFigmaButtonFonts=getFonts(HelperFigmaButton);const breakpoints={L3kCwAA4H:\"(max-width: 809px)\",LeUDAL3J1:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-I24XY\";const variantClassNames={L3kCwAA4H:\"framer-v-1wemmbm\",LeUDAL3J1:\"framer-v-1nnxuaf\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:.1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:1.4,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:24};const transition3={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation4={backgroundColor:\"rgba(255, 255, 255, 0.15)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const transition4={delay:.3,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:.5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={delay:.7,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition7={delay:1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={delay:1.2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition9={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,y:-2};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"L3kCwAA4H\",Tablet:\"LeUDAL3J1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,l8x4zkBQGlfY0Y5riS,JfWwVNrV7lfY0Y5riS,M6ncWYE_2lfY0Y5riS,Cp0JtmVcwlfY0Y5riS,h3hGs1DgelfY0Y5riS,idlfY0Y5riS,UdjOnwSXllCb5KpzNo,jLOlWE_7plCb5KpzNo,QxvCbteLQlCb5KpzNo,wX1pknWSMlCb5KpzNo,pZu3NBvaIlCb5KpzNo,idlCb5KpzNo,...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,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"DsgFqezgd\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"L3kCwAA4H\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"L3kCwAA4H\")return true;return false;};const elementId1=useRouteElementId(\"mA9z_YpGw\");const ref2=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"PgfaHu1Oj\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"Xk4GvYRM2\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"SSWwehQvf\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"ljBFwnhAK\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"fWfxu9GLz\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"yinHUrXOX\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"bHCv5lWWh\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"WL5fXWqha\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"HXHMrvwJK\");const ref11=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"LeUDAL3J1\",\"L3kCwAA4H\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"LeUDAL3J1\",\"L3kCwAA4H\"].includes(baseVariant))return false;return true;};const elementId11=useRouteElementId(\"JcTPxKRVq\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"dLUZcqvkX\");const ref13=React.useRef(null);const activeLocaleCode=useLocaleCode();const elementId13=useRouteElementId(\"ghaaNSoE4\");const ref14=React.useRef(null);const elementId14=useRouteElementId(\"Yx9wPTYGX\");const ref15=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-6cf39457-d957-4967-8059-39c512f3137e, rgb(0, 2, 15)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{height:20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-174z0xa-container\",layoutScroll:true,nodeId:\"DSlZxI1fz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{variant:\"d_IeEbYW_\"},LeUDAL3J1:{variant:\"adfBpsLuv\"}},children:/*#__PURE__*/_jsx(Navbar,{Fx2J1HCbm:\"RRpTEMBrt\",height:\"100%\",id:\"DSlZxI1fz\",JAyTeyJPi:\"RRpTEMBrt\",layoutId:\"DSlZxI1fz\",style:{width:\"100%\"},variant:\"LHibLaYdu\",width:\"100%\",XnBhZNMj2:\"RRpTEMBrt\",zjlFcwB71:\"MmQhjr1dQ\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bzqgr6\",\"data-framer-name\":\"Background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+-20),pixelHeight:505,pixelWidth:664,positionX:\"center\",positionY:\"center\",sizes:\"664px\",src:\"https://framerusercontent.com/images/3xQMxS4Ty2OrFRDQc4GYRlNl0.svg\",srcSet:\"https://framerusercontent.com/images/3xQMxS4Ty2OrFRDQc4GYRlNl0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/3xQMxS4Ty2OrFRDQc4GYRlNl0.svg 664w\"}},LeUDAL3J1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+32),pixelHeight:818,pixelWidth:1440,positionX:\"center\",positionY:\"center\",sizes:\"998px\",src:\"https://framerusercontent.com/images/xdaPXOEtPIASFiIeYk976HyJA.svg\",srcSet:\"https://framerusercontent.com/images/xdaPXOEtPIASFiIeYk976HyJA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xdaPXOEtPIASFiIeYk976HyJA.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xdaPXOEtPIASFiIeYk976HyJA.svg 1440w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:818,pixelWidth:1440,positionX:\"center\",positionY:\"center\",sizes:\"1440px\",src:\"https://framerusercontent.com/images/xdaPXOEtPIASFiIeYk976HyJA.svg\",srcSet:\"https://framerusercontent.com/images/xdaPXOEtPIASFiIeYk976HyJA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xdaPXOEtPIASFiIeYk976HyJA.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xdaPXOEtPIASFiIeYk976HyJA.svg 1440w\"},className:\"framer-19xj8v4\",\"data-framer-appear-id\":\"19xj8v4\",\"data-framer-name\":\"Main Background\",initial:animation1,optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:273,pixelWidth:212,src:\"https://framerusercontent.com/images/ZfR5jHCCmGgwsaWPKkYHGDOhMQI.png\"}},LeUDAL3J1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:730,pixelWidth:804,sizes:\"388px\",src:\"https://framerusercontent.com/images/NTKgB6h2Q6llqcAO5km5305uDk0.svg\",srcSet:\"https://framerusercontent.com/images/NTKgB6h2Q6llqcAO5km5305uDk0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/NTKgB6h2Q6llqcAO5km5305uDk0.svg 804w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:730,pixelWidth:804,sizes:\"664px\",src:\"https://framerusercontent.com/images/NTKgB6h2Q6llqcAO5km5305uDk0.svg\",srcSet:\"https://framerusercontent.com/images/NTKgB6h2Q6llqcAO5km5305uDk0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/NTKgB6h2Q6llqcAO5km5305uDk0.svg 804w\"},className:\"framer-1kerl7k\",\"data-framer-name\":\"Light\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m4zssk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mhHpxY87Q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:false,clickModes:\"trail\"},color:\"rgba(255, 255, 255, 0.32)\",colors:[\"rgba(255, 255, 255, 0.45)\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:120,height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:10,hoverModes:\"none\",hoverParallax:true,hoverSmooth:1},id:\"mhHpxY87Q\",layoutId:\"mhHpxY87Q\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"bottom-left\",moveEnabled:true,moveGravityAcceleration:0,moveGravityEnabled:true,moveGravityMaxSpeed:0,moveOut:\"out\",moveRandom:false,moveSpeed:.21,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:50,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"RightTop\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:1,sizeMax:.5,sizeMin:.2,sizeType:false},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:273,pixelWidth:212,src:\"https://framerusercontent.com/images/L0ic273Yz3zStlcw4HtbVPOKwdA.png\"}},LeUDAL3J1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+.3464),pixelHeight:730,pixelWidth:853,sizes:\"388px\",src:\"https://framerusercontent.com/images/UKLIsmbXPgsNWAAoMY12jQuP2ZI.svg\",srcSet:\"https://framerusercontent.com/images/UKLIsmbXPgsNWAAoMY12jQuP2ZI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UKLIsmbXPgsNWAAoMY12jQuP2ZI.svg 853w\"},style:{rotate:1}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:730,pixelWidth:853,sizes:\"664px\",src:\"https://framerusercontent.com/images/UKLIsmbXPgsNWAAoMY12jQuP2ZI.svg\",srcSet:\"https://framerusercontent.com/images/UKLIsmbXPgsNWAAoMY12jQuP2ZI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UKLIsmbXPgsNWAAoMY12jQuP2ZI.svg 853w\"},className:\"framer-1myh9u8\",\"data-framer-name\":\"Light\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lv8r9e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AO7ccJDnq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:false,clickModes:\"trail\"},color:\"rgba(255, 255, 255, 0.32)\",colors:[\"rgba(255, 255, 255, 0.45)\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:120,height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:10,hoverModes:\"none\",hoverParallax:true,hoverSmooth:1},id:\"AO7ccJDnq\",layoutId:\"AO7ccJDnq\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"bottom-right\",moveEnabled:true,moveGravityAcceleration:0,moveGravityEnabled:true,moveGravityMaxSpeed:0,moveOut:\"out\",moveRandom:false,moveSpeed:.21,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:50,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"lefttop\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:1,sizeMax:.5,sizeMin:.2,sizeType:false},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-73dn7q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"prstCGDmH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{number:70},LeUDAL3J1:{number:100}},children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:false,clickModes:\"trail\"},color:\"rgba(255, 255, 255, 0.32)\",colors:[\"rgba(255, 255, 255, 0.45)\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:120,height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:10,hoverModes:\"none\",hoverParallax:true,hoverSmooth:1},id:\"prstCGDmH\",layoutId:\"prstCGDmH\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"bottom\",moveEnabled:true,moveGravityAcceleration:0,moveGravityEnabled:true,moveGravityMaxSpeed:0,moveOut:\"out\",moveRandom:false,moveSpeed:.21,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:200,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"top\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:1,sizeMax:.5,sizeMin:.2,sizeType:false},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-8fioq8\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qxgjp8\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f1sy2j\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9fsph6\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-167fvm2\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1h4qh6o\",\"data-framer-appear-id\":\"1h4qh6o\",\"data-framer-name\":\"Helper/ Hero Tag Button\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Xku0SCZQs\"},motionChild:true,nodeId:\"aN0xmB0s1\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-10fx7dv framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Container\",whileHover:animation4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5290a3f4-c858-4df7-b4b0-ea87535a1ae5, rgb(167, 173, 190))\"},children:\"We design experiences users can't ignore.\"})}),fonts:[\"GF;Inter Tight-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5290a3f4-c858-4df7-b4b0-ea87535a1ae5, rgb(167, 173, 190))\"},children:\"We design experiences users can't ignore.\"})}),className:\"framer-1xy465h\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter Tight-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z724t8\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+170+0+0+0+0+0+0+0+0+6+0+8+4),pixelHeight:18,pixelWidth:19,src:\"https://framerusercontent.com/images/FJCBFtsTJoF0VTHJm6XkHTYK0Y.svg\"}},LeUDAL3J1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+178+0+0+0+0+0+0+0+0+6+0+8+4),pixelHeight:18,pixelWidth:19,src:\"https://framerusercontent.com/images/FJCBFtsTJoF0VTHJm6XkHTYK0Y.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+220+0+0+0+0+0+0+0+0+6+0+8+4),pixelHeight:18,pixelWidth:19,src:\"https://framerusercontent.com/images/FJCBFtsTJoF0VTHJm6XkHTYK0Y.svg\"},className:\"framer-1kztfyh\",\"data-framer-name\":\"Icon\"})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e8ubz0\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1hg2dk5\",\"data-styles-preset\":\"zrfVg_m5t\",children:[\"Attract Customers &\",/*#__PURE__*/_jsx(\"br\",{}),\"Boost Revenue with\",/*#__PURE__*/_jsx(\"br\",{}),\"Smart Web Design\"]})})},LeUDAL3J1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:\"Attract Customers & Boost Revenue with Smart Web Design\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:[\"Attract Customers & Boost Revenue\",/*#__PURE__*/_jsx(\"br\",{}),\"with Smart Web Design\"]})}),className:\"framer-19pbg3t\",\"data-framer-appear-id\":\"19pbg3t\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5290a3f4-c858-4df7-b4b0-ea87535a1ae5, rgb(167, 173, 190))\"},children:\"Elevating brands through innovative and engaging web solutions.\"})}),className:\"framer-1rklj7r\",\"data-framer-appear-id\":\"1rklj7r\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1brff4n\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1p77mir\",\"data-framer-appear-id\":\"1p77mir\",\"data-framer-name\":\"Button Wrap\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{y:(componentViewport?.y||0)+0+0+170+0+0+0+0+0+300.4+0+0+0+0},LeUDAL3J1:{y:(componentViewport?.y||0)+0+0+178+0+0+0+0+0+325.4+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+0+220+0+0+0+0+0+325.4+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2hr3v8-container\",nodeId:\"NKoAi0Kem\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsPrimaryButton,{E4fAQIzGx:\"14px 24px 14px 24px\",height:\"100%\",id:\"NKoAi0Kem\",iwEsvMhc8:\"Choose Your Plan\",layoutId:\"NKoAi0Kem\",o6CCkd0YV:true,variant:\"sp53JEiYC\",width:\"100%\",ZvjocOTJv:\"#pricing\"})})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1gzobo1-container hidden-1wemmbm\",\"data-framer-appear-id\":\"1gzobo1\",initial:animation3,isModuleExternal:true,nodeId:\"zYpC3BnSy\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:.6,fadeContent:true,fadeInset:0,fadeWidth:11,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"zYpC3BnSy\",layoutId:\"zYpC3BnSy\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1up9sjo\",\"data-framer-name\":\"Sub Container/Desktop\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6aj9i7-container\",inComponentSlot:true,nodeId:\"NG4izClAW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"UX\",height:\"100%\",id:\"NG4izClAW\",layoutId:\"NG4izClAW\",tIbDfJWuT:addImageAlt({pixelHeight:564,pixelWidth:752,src:\"https://framerusercontent.com/images/ZiEUfy3JSO09GiIqiCdGB91IrmQ.jpg\",srcSet:\"https://framerusercontent.com/images/ZiEUfy3JSO09GiIqiCdGB91IrmQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZiEUfy3JSO09GiIqiCdGB91IrmQ.jpg 752w\"},\"\"),uPNBFqzMC:\"Website Design -\",variant:\"sbeoGoI7v\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yx57q4-container\",inComponentSlot:true,nodeId:\"r0AJnBOXI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"UIUX\",height:\"100%\",id:\"r0AJnBOXI\",layoutId:\"r0AJnBOXI\",tIbDfJWuT:addImageAlt({pixelHeight:744,pixelWidth:992,src:\"https://framerusercontent.com/images/ZfAbJ79nht0IhAf3aOntV0gTiGg.png\",srcSet:\"https://framerusercontent.com/images/ZfAbJ79nht0IhAf3aOntV0gTiGg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZfAbJ79nht0IhAf3aOntV0gTiGg.png 992w\"},\"\"),uPNBFqzMC:\"Website Design -\",variant:\"sbeoGoI7v\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kervzz-container\",inComponentSlot:true,nodeId:\"y6UFSxZlt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"UI\",height:\"100%\",id:\"y6UFSxZlt\",layoutId:\"y6UFSxZlt\",tIbDfJWuT:addImageAlt({pixelHeight:1536,pixelWidth:2048,src:\"https://framerusercontent.com/images/cH0sgY6TMByZx6unvrKcYvPL8M.jpg\",srcSet:\"https://framerusercontent.com/images/cH0sgY6TMByZx6unvrKcYvPL8M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cH0sgY6TMByZx6unvrKcYvPL8M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cH0sgY6TMByZx6unvrKcYvPL8M.jpg 2048w\"},\"\"),uPNBFqzMC:\"Website Design -\",variant:\"sbeoGoI7v\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l27gni-container\",inComponentSlot:true,nodeId:\"M0JJT4WiQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"UX\",height:\"100%\",id:\"M0JJT4WiQ\",layoutId:\"M0JJT4WiQ\",tIbDfJWuT:addImageAlt({pixelHeight:564,pixelWidth:752,src:\"https://framerusercontent.com/images/4WRMBDdscOf7RYeb4rNRuY0PKD8.png\",srcSet:\"https://framerusercontent.com/images/4WRMBDdscOf7RYeb4rNRuY0PKD8.png?scale-down-to=512 512w,https://framerusercontent.com/images/4WRMBDdscOf7RYeb4rNRuY0PKD8.png 752w\"},\"\"),uPNBFqzMC:\"Website Design -\",variant:\"sbeoGoI7v\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3u0htn-container\",inComponentSlot:true,nodeId:\"nusI1yBg2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"UIUX\",height:\"100%\",id:\"nusI1yBg2\",layoutId:\"nusI1yBg2\",tIbDfJWuT:addImageAlt({pixelHeight:564,pixelWidth:752,src:\"https://framerusercontent.com/images/tzfcFswB0nUEqvd6riEwQ6dGQ.jpg\",srcSet:\"https://framerusercontent.com/images/tzfcFswB0nUEqvd6riEwQ6dGQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tzfcFswB0nUEqvd6riEwQ6dGQ.jpg 752w\"},\"\"),uPNBFqzMC:\"Website Design -\",variant:\"sbeoGoI7v\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17cxumf-container\",inComponentSlot:true,nodeId:\"cTHM3l1Fv\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"UI\",height:\"100%\",id:\"cTHM3l1Fv\",layoutId:\"cTHM3l1Fv\",tIbDfJWuT:addImageAlt({pixelHeight:564,pixelWidth:752,src:\"https://framerusercontent.com/images/aCIQ6fb8nnR4gevDClDRQVi1FCU.jpg\",srcSet:\"https://framerusercontent.com/images/aCIQ6fb8nnR4gevDClDRQVi1FCU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aCIQ6fb8nnR4gevDClDRQVi1FCU.jpg 752w\"},\"\"),uPNBFqzMC:\"APP Design -\",variant:\"sbeoGoI7v\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bnc5bm-container\",inComponentSlot:true,nodeId:\"UydumaK5W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"UIUX\",height:\"100%\",id:\"UydumaK5W\",layoutId:\"UydumaK5W\",tIbDfJWuT:toResponsiveImage(\"https://framerusercontent.com/images/30HOGTXnyfxugb4nePwyap1Us.jpg\"),uPNBFqzMC:\"Website Design -\",variant:\"sbeoGoI7v\",width:\"100%\"})})})]})],speed:130,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1941bx6-container hidden-72rtr7 hidden-1nnxuaf\",\"data-framer-appear-id\":\"1941bx6\",initial:animation3,isModuleExternal:true,nodeId:\"ICI6mldjv\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:40,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"ICI6mldjv\",layoutId:\"ICI6mldjv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kuffox\",\"data-framer-name\":\"Sub Container/Phone\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kjkuy0-container\",inComponentSlot:true,nodeId:\"hr7jqNuvj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"Wanderly\",height:\"100%\",id:\"hr7jqNuvj\",layoutId:\"hr7jqNuvj\",tIbDfJWuT:addImageAlt({pixelHeight:307,pixelWidth:456,src:\"https://framerusercontent.com/images/aU8d6vzx2lN8lFocdrZdSCia1EU.svg\"},\"\"),uPNBFqzMC:\"Website Design -\",variant:\"SvHqhVKKa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sjr3xv-container\",inComponentSlot:true,nodeId:\"tVB_gacVf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"Waitlista\",height:\"100%\",id:\"tVB_gacVf\",layoutId:\"tVB_gacVf\",tIbDfJWuT:addImageAlt({pixelHeight:307,pixelWidth:162,src:\"https://framerusercontent.com/images/koSHXA0t0VVvZo8rgkVjMvqBWtU.svg\"},\"\"),uPNBFqzMC:\"App Design-\",variant:\"AqcNyVRD7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gzli1b-container\",inComponentSlot:true,nodeId:\"eXQGcCB1R\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"Regulate\",height:\"100%\",id:\"eXQGcCB1R\",layoutId:\"eXQGcCB1R\",tIbDfJWuT:addImageAlt({pixelHeight:307,pixelWidth:456,src:\"https://framerusercontent.com/images/b62Fj0SKmWls7OrlMSJevL1HVgc.svg\"},\"\"),uPNBFqzMC:\"Website Design -\",variant:\"SvHqhVKKa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q0zafr-container\",inComponentSlot:true,nodeId:\"W0nF0CXA8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"Appit\",height:\"100%\",id:\"W0nF0CXA8\",layoutId:\"W0nF0CXA8\",tIbDfJWuT:addImageAlt({pixelHeight:307,pixelWidth:162,src:\"https://framerusercontent.com/images/N7MH6y4gWOReoIhaSdiMQDyiyw.svg\"},\"\"),uPNBFqzMC:\"App Design-\",variant:\"AqcNyVRD7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1922w41-container\",inComponentSlot:true,nodeId:\"a88I1yupf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"AIgnite\",height:\"100%\",id:\"a88I1yupf\",layoutId:\"a88I1yupf\",tIbDfJWuT:addImageAlt({pixelHeight:307,pixelWidth:456,src:\"https://framerusercontent.com/images/wAGWDvasRzHH2exDrqxypa9Yg.svg\"},\"\"),uPNBFqzMC:\"Website Design -\",variant:\"SvHqhVKKa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xqcur7-container\",inComponentSlot:true,nodeId:\"slO_xPazQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"Pix\",height:\"100%\",id:\"slO_xPazQ\",layoutId:\"slO_xPazQ\",tIbDfJWuT:addImageAlt({pixelHeight:307,pixelWidth:162,src:\"https://framerusercontent.com/images/HF9X4msyQyjbrEA33cH9YWHDjY.svg\"},\"\"),uPNBFqzMC:\"App Design-\",variant:\"AqcNyVRD7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9o9mw0-container\",inComponentSlot:true,nodeId:\"ehniVpCO1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"Maxer\",height:\"100%\",id:\"ehniVpCO1\",layoutId:\"ehniVpCO1\",tIbDfJWuT:addImageAlt({pixelHeight:1228,pixelWidth:1824,src:\"https://framerusercontent.com/images/7xu0IDDZ1nTVqHsgCxHGC96y2u8.png\",srcSet:\"https://framerusercontent.com/images/7xu0IDDZ1nTVqHsgCxHGC96y2u8.png?scale-down-to=512 512w,https://framerusercontent.com/images/7xu0IDDZ1nTVqHsgCxHGC96y2u8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7xu0IDDZ1nTVqHsgCxHGC96y2u8.png 1824w\"},\"\"),uPNBFqzMC:\"Website Design -\",variant:\"SvHqhVKKa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lunyh5-container\",inComponentSlot:true,nodeId:\"eKdOhczdN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"Zento\",height:\"100%\",id:\"eKdOhczdN\",layoutId:\"eKdOhczdN\",tIbDfJWuT:addImageAlt({pixelHeight:307,pixelWidth:162,src:\"https://framerusercontent.com/images/ubIFoFyzs8BMQWrkXspZ3NmHSs.svg\"},\"\"),uPNBFqzMC:\"App Design-\",variant:\"AqcNyVRD7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:348,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ycqkks-container\",inComponentSlot:true,nodeId:\"svS3jhFXL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardWorkCard,{GpeXIItGn:\"Tasklytic\",height:\"100%\",id:\"svS3jhFXL\",layoutId:\"svS3jhFXL\",tIbDfJWuT:addImageAlt({pixelHeight:307,pixelWidth:456,src:\"https://framerusercontent.com/images/u0ZgzjEe11PfzELumQZcOeBp7E.svg\"},\"\"),uPNBFqzMC:\"Website Design -\",variant:\"SvHqhVKKa\",width:\"100%\"})})})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6hquf\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1w5hmr0\",\"data-framer-appear-id\":\"1w5hmr0\",\"data-framer-name\":\"Container\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+170+0+0+0+657.4+0+0+0+0),pixelHeight:16,pixelWidth:96,src:\"https://framerusercontent.com/images/pTj1hh791hCixy7zoKaWdVhM4.svg\"}},LeUDAL3J1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+178+0+0+0+854.4+0+0+0+0),pixelHeight:16,pixelWidth:96,src:\"https://framerusercontent.com/images/pTj1hh791hCixy7zoKaWdVhM4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+220+0+0+0+854.4+0+0+0+0),pixelHeight:16,pixelWidth:96,src:\"https://framerusercontent.com/images/pTj1hh791hCixy7zoKaWdVhM4.svg\"},className:\"framer-16oclgy\",\"data-framer-name\":\"Stars\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zfaahk\",\"data-styles-preset\":\"v3p2ahbsR\",style:{\"--framer-text-color\":\"var(--token-a0c09b80-9c99-4954-9ead-48aa69d94614, rgb(0, 0, 0))\"},children:\"4.9/5 From 22 Customers\"})}),className:\"framer-cb95il\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1wd23zf-container\",\"data-framer-appear-id\":\"1wd23zf\",initial:animation3,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JKMOzkGTb\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:14,height:\"100%\",hoverFactor:1,id:\"JKMOzkGTb\",layoutId:\"JKMOzkGTb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:126,src:\"https://framerusercontent.com/images/hnBCO2bZ10CDWY5mcJBePKlCk7w.svg\"},className:\"framer-9wgav\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:126,src:\"https://framerusercontent.com/images/mnpJTX4E8HKwFUHjn0cRfR0goo.svg\"},className:\"framer-13bhhd9\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:126,src:\"https://framerusercontent.com/images/yk02mAVgGG7PoKw69G5dPwSpY8.svg\"},className:\"framer-1br35z1\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:126,src:\"https://framerusercontent.com/images/RKGxbs412ctqXkgH5YRT8Fi1Us.svg\"},className:\"framer-187kh9c\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:126,src:\"https://framerusercontent.com/images/LS1qXydr5BtrR8sccRaDs4fzzr8.svg\"},className:\"framer-4cuu20\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:126,src:\"https://framerusercontent.com/images/FPp5U14aqmVZbD3wNdh0oNrSA.svg\"},className:\"framer-1vkxwzs\",\"data-framer-name\":\"Logo\"})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nh5zi3\",\"data-framer-name\":\"Body Top\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-pv4tkn\",\"data-framer-name\":\"Works\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4b4y17\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:160,width:\"428px\",y:(componentViewport?.y||0)+0+1038.6+0+0+0+0+-23},LeUDAL3J1:{height:260,width:\"695px\",y:(componentViewport?.y||0)+0+1289.6+0+0+0+0+-64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:268,width:\"717px\",y:(componentViewport?.y||0)+0+1381.6+0+0+0+0+-68,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lh0zo5-container\",nodeId:\"pAlAgIeC4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperBackground,{height:\"100%\",i61sJSAbx:\"Five\",id:\"pAlAgIeC4\",layoutId:\"pAlAgIeC4\",style:{height:\"100%\",width:\"100%\"},variant:\"r6R5UgO9g\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dufrjs\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Works\"})}),className:\"framer-df3u05\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u9qq4e\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:\"Explore Our Recent Projects\"})}),className:\"framer-1wrst78\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\"},children:\"Browse through our portfolio showcasing diverse, innovative web design projects and client successes.\"})}),className:\"framer-1l6h6fi\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cxa8ey\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yw09mo\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lfY0Y5riS\",data:Works,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"lfY0Y5riS\",name:\"l8x4zkBQG\",type:\"Identifier\"},{collection:\"lfY0Y5riS\",name:\"JfWwVNrV7\",type:\"Identifier\"},{collection:\"lfY0Y5riS\",name:\"M6ncWYE_2\",type:\"Identifier\"},{collection:\"lfY0Y5riS\",name:\"Cp0JtmVcw\",type:\"Identifier\"},{collection:\"lfY0Y5riS\",name:\"h3hGs1Dge\",type:\"Identifier\"},{collection:\"lfY0Y5riS\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({Cp0JtmVcw:Cp0JtmVcwlfY0Y5riS,h3hGs1Dge:h3hGs1DgelfY0Y5riS,id:idlfY0Y5riS,JfWwVNrV7:JfWwVNrV7lfY0Y5riS,l8x4zkBQG:l8x4zkBQGlfY0Y5riS,M6ncWYE_2:M6ncWYE_2lfY0Y5riS},index)=>{JfWwVNrV7lfY0Y5riS??=\"\";Cp0JtmVcwlfY0Y5riS??=\"\";h3hGs1DgelfY0Y5riS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lfY0Y5riS-${idlfY0Y5riS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{h3hGs1Dge:h3hGs1DgelfY0Y5riS},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{h3hGs1Dge:h3hGs1DgelfY0Y5riS},webPageId:\"iS87SaSFL\"},implicitPathVariables:undefined},{href:{pathVariables:{h3hGs1Dge:h3hGs1DgelfY0Y5riS},webPageId:\"iS87SaSFL\"},implicitPathVariables:undefined},{href:{pathVariables:{h3hGs1Dge:h3hGs1DgelfY0Y5riS},webPageId:\"iS87SaSFL\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px), 1080px)`,y:(componentViewport?.y||0)+0+1038.6+0+0+0+306.4+0+0+0+0},LeUDAL3J1:{width:`min(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px), 1080px), 550px)`,y:(componentViewport?.y||0)+0+1289.6+0+0+0+316.4+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:552,width:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px), 1080px) - 30px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+0+0+316.4+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uod2mi-container\",nodeId:\"gTB2s5pev\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{Ggwznz7N2:resolvedLinks[2],variant:\"iGDp7NE8M\"},LeUDAL3J1:{Ggwznz7N2:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(CardsWorkCard,{BeNLZnHnm:enumToDisplayNameFunctions[\"M6ncWYE_2\"]?.(M6ncWYE_2lfY0Y5riS,activeLocale),Ggwznz7N2:resolvedLinks[0],height:\"100%\",id:\"gTB2s5pev\",jTPXzBsA3:Cp0JtmVcwlfY0Y5riS,layoutId:\"gTB2s5pev\",RVLNPRzks:JfWwVNrV7lfY0Y5riS,style:{width:\"100%\"},variant:\"Fgp8YRJyV\",vLDMOyoRM:toResponsiveImage(l8x4zkBQGlfY0Y5riS),width:\"100%\"})})})})})})})},idlfY0Y5riS);})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{y:(componentViewport?.y||0)+0+1038.6+0+0+0+306.4+0+602},LeUDAL3J1:{y:(componentViewport?.y||0)+0+1289.6+0+0+0+316.4+0+602}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+1381.6+0+0+0+316.4+0+632,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hcu20v-container\",nodeId:\"ZyU3rieyu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonsSecondaryButton,{BDoRw6qpq:\"View All Works\",CYrRJoCm6:false,EHjrljF63:false,H1wAYdpr0:\"16px 20px 16px 20px\",height:\"100%\",id:\"ZyU3rieyu\",layoutId:\"ZyU3rieyu\",variant:\"Buwu3gSIC\",vsYaxZvQF:true,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-10jeb82\",\"data-framer-name\":\"Why Us\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17577fz\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:160,width:\"440px\",y:(componentViewport?.y||0)+0+1038.6+0+1063.4+0+0+-37},LeUDAL3J1:{height:260,width:\"717px\",y:(componentViewport?.y||0)+0+1289.6+0+1042.4+0+0+-74}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:\"883px\",y:(componentViewport?.y||0)+0+1381.6+0+1203.4+0+0+-104,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jg5yzx-container\",nodeId:\"p0Q3Crn85\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperBackground,{height:\"100%\",i61sJSAbx:\"Two\",id:\"p0Q3Crn85\",layoutId:\"p0Q3Crn85\",style:{height:\"100%\",width:\"100%\"},variant:\"iW0e8BRO4\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-129ov7q hidden-1wemmbm\",\"data-framer-name\":\"Abstract Background\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-18rl2in-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NZ6ontnPQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:38},children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgb(239, 243, 255)\",colors:[],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:10,hoverModes:\"none\",hoverParallax:true,hoverSmooth:10},id:\"NZ6ontnPQ\",layoutId:\"NZ6ontnPQ\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"top\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"out\",moveRandom:false,moveSpeed:.7,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:15,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"Thirteen\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:.7,sizeMax:10,sizeMin:1,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Stick Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1289.6+0+1042.4+0+0+246.2-272+0),pixelHeight:556,pixelWidth:616,sizes:\"402px\",src:\"https://framerusercontent.com/images/Lg5icEwW7eRiMF3xSWlqodarI.svg\",srcSet:\"https://framerusercontent.com/images/Lg5icEwW7eRiMF3xSWlqodarI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Lg5icEwW7eRiMF3xSWlqodarI.svg 616w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Stick Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1381.6+0+1203.4+0+0+253.4-430+0),pixelHeight:556,pixelWidth:616,sizes:\"616px\",src:\"https://framerusercontent.com/images/Lg5icEwW7eRiMF3xSWlqodarI.svg\",srcSet:\"https://framerusercontent.com/images/Lg5icEwW7eRiMF3xSWlqodarI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Lg5icEwW7eRiMF3xSWlqodarI.svg 616w\"},className:\"framer-1mulo99\",\"data-framer-name\":\"Background\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kg28xk\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n08fba\",\"data-framer-name\":\"Gradient\"})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ew975u hidden-1wemmbm\",\"data-framer-name\":\"Abstract Background\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-fgc0fy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ium19yz2p\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-38},children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgb(239, 243, 255)\",colors:[],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:10,hoverModes:\"none\",hoverParallax:true,hoverSmooth:10},id:\"ium19yz2p\",layoutId:\"ium19yz2p\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"top\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"out\",moveRandom:false,moveSpeed:.7,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:15,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"Twelve\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:.7,sizeMax:10,sizeMin:1,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Stick Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1289.6+0+1042.4+0+0+246.2-272+0),pixelHeight:556,pixelWidth:616,sizes:\"402px\",src:\"https://framerusercontent.com/images/s86pE6NdLKAVI3DiqWQs31H8Ufk.svg\",srcSet:\"https://framerusercontent.com/images/s86pE6NdLKAVI3DiqWQs31H8Ufk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/s86pE6NdLKAVI3DiqWQs31H8Ufk.svg 616w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Stick Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1381.6+0+1203.4+0+0+253.4-430+0),pixelHeight:556,pixelWidth:616,sizes:\"616px\",src:\"https://framerusercontent.com/images/s86pE6NdLKAVI3DiqWQs31H8Ufk.svg\",srcSet:\"https://framerusercontent.com/images/s86pE6NdLKAVI3DiqWQs31H8Ufk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/s86pE6NdLKAVI3DiqWQs31H8Ufk.svg 616w\"},className:\"framer-3iiinh\",\"data-framer-name\":\"Background\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3jun72\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e4lkr9\",\"data-framer-name\":\"Gradient\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ag2qg\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(204, 215, 255)\"},children:\"Why Us\"})}),className:\"framer-1wp6rl3\",\"data-framer-name\":\"Text\",fonts:[\"GF;Rethink Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19k0ymz\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-177nmvw\",\"data-styles-preset\":\"tApuA7q4Y\",style:{\"--framer-text-alignment\":\"center\"},children:\"Why Brandburn Stands Out\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:\"Why Brandburn Stands Out\"})}),className:\"framer-r4i0qy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Discover why Brandburn excels in delivering innovative, client-focused web design solutions.\"})}),className:\"framer-1ecedzw\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-72ntec\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sw7970\",\"data-framer-name\":\"Items Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+1063.4+0+309.4+0+0+0+0},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1289.6+0+1042.4+0+346.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:189,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1381.6+0+1203.4+0+383.4+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i6lxly-container\",nodeId:\"UOTsQ3Kno\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{LMGYp4avW:\"30px 24px 24px 24px\"}},children:/*#__PURE__*/_jsx(CardsWhyUsCard,{height:\"100%\",id:\"UOTsQ3Kno\",k_d_dxfEg:\"Expert Team\",layoutId:\"UOTsQ3Kno\",LMGYp4avW:\"40px 30px 30px 30px\",style:{width:\"100%\"},ThZHaXbC0:\"Dedicated professionals with expertise in cutting-edge web design + development.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+1063.4+0+309.4+0+0+0+229},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1289.6+0+1042.4+0+346.2+0+0+229}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:189,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1381.6+0+1203.4+0+383.4+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8d80t-container\",nodeId:\"XFAZnFc18\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{LMGYp4avW:\"30px 24px 24px 24px\"}},children:/*#__PURE__*/_jsx(CardsWhyUsCard,{ddt8xAZJ9:addImageAlt({pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/YtzOAx01DcB3KHR9NTd80Vla5I.svg\"},\"Icon\"),height:\"100%\",id:\"XFAZnFc18\",k_d_dxfEg:\"Client-Centric Approach\",layoutId:\"XFAZnFc18\",LMGYp4avW:\"40px 30px 30px 30px\",style:{width:\"100%\"},ThZHaXbC0:\"Tailoring solutions to meet your unique business needs and exceed expectations.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+1063.4+0+309.4+0+0+0+458},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1289.6+0+1042.4+0+346.2+0+0+458}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:189,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1381.6+0+1203.4+0+383.4+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-efb3x7-container\",nodeId:\"gvVp9dLrI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{LMGYp4avW:\"30px 24px 24px 24px\"}},children:/*#__PURE__*/_jsx(CardsWhyUsCard,{ddt8xAZJ9:addImageAlt({pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/FrIMZalbRWvH45ZcljefWOsq8U.svg\"},\"Icon\"),height:\"100%\",id:\"gvVp9dLrI\",k_d_dxfEg:\"Proven Experience\",layoutId:\"gvVp9dLrI\",LMGYp4avW:\"40px 30px 30px 30px\",style:{width:\"100%\"},ThZHaXbC0:\"Years of successfully delivering impactful web solutions across diverse industries.\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mwdfq3\",\"data-framer-name\":\"Items Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+1063.4+0+309.4+0+687+0+0},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1289.6+0+1042.4+0+346.2+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:189,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1381.6+0+1203.4+0+383.4+0+229+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ouve7b-container\",nodeId:\"yd89n8E06\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{LMGYp4avW:\"30px 24px 24px 24px\"}},children:/*#__PURE__*/_jsx(CardsWhyUsCard,{ddt8xAZJ9:addImageAlt({pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/lnYaGJq9pRJD22YIDwI3qq3n2AQ.svg\"},\"Icon\"),height:\"100%\",id:\"yd89n8E06\",k_d_dxfEg:\"Timely Delivery\",layoutId:\"yd89n8E06\",LMGYp4avW:\"40px 30px 30px 30px\",style:{width:\"100%\"},ThZHaXbC0:\"Meeting deadlines consistently without compromising on quality or precision.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+1063.4+0+309.4+0+687+0+229},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1289.6+0+1042.4+0+346.2+0+0+229}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:189,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1381.6+0+1203.4+0+383.4+0+229+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19c6xnf-container\",nodeId:\"A9KBGVctx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{LMGYp4avW:\"30px 24px 24px 24px\"}},children:/*#__PURE__*/_jsx(CardsWhyUsCard,{ddt8xAZJ9:addImageAlt({pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/Z9vxEnjDAq1Z3O1e7JN5wKhIAQ.svg\"},\"Icon\"),height:\"100%\",id:\"A9KBGVctx\",k_d_dxfEg:\"Responsive Solutions\",layoutId:\"A9KBGVctx\",LMGYp4avW:\"40px 30px 30px 30px\",style:{width:\"100%\"},ThZHaXbC0:\"Ensuring seamless performance across all devices for optimal user experience.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+1063.4+0+309.4+0+687+0+458},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1289.6+0+1042.4+0+346.2+0+0+458}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:189,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1381.6+0+1203.4+0+383.4+0+229+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gb1hn-container\",nodeId:\"VMWHLF4nW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{LMGYp4avW:\"30px 24px 24px 24px\"}},children:/*#__PURE__*/_jsx(CardsWhyUsCard,{ddt8xAZJ9:addImageAlt({pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/cw61VFDI1uUPAc6lz9zGNvdlE.svg\"},\"Icon\"),height:\"100%\",id:\"VMWHLF4nW\",k_d_dxfEg:\"Transparent Communication\",layoutId:\"VMWHLF4nW\",LMGYp4avW:\"40px 30px 30px 30px\",style:{width:\"100%\"},ThZHaXbC0:\"Clear, open lines of communication throughout every stage of your project.\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-19i3gvu\",\"data-framer-name\":\"Process\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-48t2pg\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:160,width:\"428px\",y:(componentViewport?.y||0)+0+1038.6+0+2806.8+0+0+-24},LeUDAL3J1:{height:259,width:\"695px\",y:(componentViewport?.y||0)+0+1289.6+0+2104.6+0+0+-64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:268,width:\"717px\",y:(componentViewport?.y||0)+0+1381.6+0+2204.8+0+0+-68,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u352ii-container\",nodeId:\"Itfsw3mcV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperBackground,{height:\"100%\",i61sJSAbx:\"Three\",id:\"Itfsw3mcV\",layoutId:\"Itfsw3mcV\",style:{height:\"100%\",width:\"100%\"},variant:\"r6R5UgO9g\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dx5maj\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(204, 215, 255)\"},children:\"Process\"})}),className:\"framer-bzjdsa\",\"data-framer-name\":\"Text\",fonts:[\"GF;Rethink Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l5sm1q\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:\"Our Design Process\"})}),className:\"framer-1k9jk5k\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(109, 119, 146)\"},children:\"Explore our streamlined approach to creating bespoke websites that align with your goals.\"})}),className:\"framer-182m8jv\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Rethink Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r0xvbu\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+2806.8+0+305.4+0+0},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2104.6+0+313.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 30px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+2204.8+0+333.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yrm8hj-container\",nodeId:\"PLTsJzGTX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{hky6Nfix5:\"24px\"}},children:/*#__PURE__*/_jsx(CardsPrimaryCard,{a4pC9ejgV:\"Step 01\",Aksk1XknM:\"Understanding your brand, objectives and target audience to define project goals.\",G9Mdz_PFT:\"Discovery Phase\",height:\"100%\",hky6Nfix5:\"30px\",id:\"PLTsJzGTX\",layoutId:\"PLTsJzGTX\",P0skZOkGv:\"column\",style:{width:\"100%\"},variant:\"aButKF8zb\",VMncI_R1b:addImageAlt({pixelHeight:26,pixelWidth:26,src:\"https://framerusercontent.com/images/jJ6toYSKz9DtEMWJDpteC9pF1HM.svg\"},\"Icon\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+2806.8+0+305.4+0+208},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2104.6+0+313.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 30px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+2204.8+0+333.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ojv3cy-container\",nodeId:\"LL0msHNtj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{hky6Nfix5:\"24px\"}},children:/*#__PURE__*/_jsx(CardsPrimaryCard,{a4pC9ejgV:\"Step 02\",Aksk1XknM:\"Creating initial design concepts based on insights gathered during the discovery phase.\",G9Mdz_PFT:\"Design Concept\",height:\"100%\",hky6Nfix5:\"30px\",id:\"LL0msHNtj\",layoutId:\"LL0msHNtj\",P0skZOkGv:\"column\",style:{width:\"100%\"},variant:\"aButKF8zb\",VMncI_R1b:addImageAlt({pixelHeight:26,pixelWidth:26,src:\"https://framerusercontent.com/images/AXgyjaoddAArynSnELMK0OyXdTc.svg\"},\"Icon\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+2806.8+0+305.4+0+416},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2104.6+0+313.4+0+208}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 30px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+2204.8+0+333.4+0+218,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tcn57p-container\",nodeId:\"uPTDzq69w\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{hky6Nfix5:\"24px\"}},children:/*#__PURE__*/_jsx(CardsPrimaryCard,{a4pC9ejgV:\"Step 03\",Aksk1XknM:\"Building and refining the website, ensuring functionality and compatibility across devices.\",G9Mdz_PFT:\"Development & Testing\",height:\"100%\",hky6Nfix5:\"30px\",id:\"uPTDzq69w\",layoutId:\"uPTDzq69w\",P0skZOkGv:\"column\",style:{width:\"100%\"},variant:\"aButKF8zb\",VMncI_R1b:addImageAlt({pixelHeight:26,pixelWidth:26,src:\"https://framerusercontent.com/images/7YvpqdgJKVCiaafRYxXpuUlwE.svg\"},\"Icon\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+2806.8+0+305.4+0+624},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2104.6+0+313.4+0+208}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 30px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+2204.8+0+333.4+0+218,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wp5g21-container\",nodeId:\"m0brBoE7N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{hky6Nfix5:\"24px\"}},children:/*#__PURE__*/_jsx(CardsPrimaryCard,{a4pC9ejgV:\"Step 04\",Aksk1XknM:\"Deploying the finalized website and providing ongoing support to ensure long-term success.\",G9Mdz_PFT:\"Launch & Support\",height:\"100%\",hky6Nfix5:\"30px\",id:\"m0brBoE7N\",layoutId:\"m0brBoE7N\",P0skZOkGv:\"column\",style:{width:\"100%\"},variant:\"aButKF8zb\",VMncI_R1b:addImageAlt({pixelHeight:26,pixelWidth:26,src:\"https://framerusercontent.com/images/JQVOSvT8HSfik1as2hcjm0MO3I.svg\"},\"Icon\"),width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-5tpqnn\",\"data-framer-name\":\"Tools\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fw19yb\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:159,width:\"440px\",y:(componentViewport?.y||0)+0+1038.6+0+4024.2+0+0+-11},LeUDAL3J1:{height:259,width:\"716px\",y:(componentViewport?.y||0)+0+1289.6+0+2883+0+0+-47}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:\"883px\",y:(componentViewport?.y||0)+0+1381.6+0+3144.2+0+0+-87,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qx72eq-container\",nodeId:\"QCSwTEplo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperBackground,{height:\"100%\",i61sJSAbx:\"Four\",id:\"QCSwTEplo\",layoutId:\"QCSwTEplo\",style:{height:\"100%\",width:\"100%\"},variant:\"iW0e8BRO4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hecd5g\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Tools\"})}),className:\"framer-18bqgm4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mrm6k0\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9zzv9b\",\"data-border\":true,\"data-framer-name\":\"Ticker Wrap\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hcg5l2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wrRrqSdiI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:8,height:\"100%\",hoverFactor:1,id:\"wrRrqSdiI\",layoutId:\"wrRrqSdiI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i7zwnb\",\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tool Logo\",fit:\"fill\",pixelHeight:488,pixelWidth:512,src:\"https://framerusercontent.com/images/owAEIU4MFkuBumN2e5CFbSPSYQ.png\"},className:\"framer-1fgq707\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1amkhya\",\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tool Logo\",fit:\"fill\",pixelHeight:486,pixelWidth:513,sizes:\"28px\",src:\"https://framerusercontent.com/images/WTgAx3FQwjMl06hxKFhgGbBCNY.png\",srcSet:\"https://framerusercontent.com/images/WTgAx3FQwjMl06hxKFhgGbBCNY.png?scale-down-to=512 512w,https://framerusercontent.com/images/WTgAx3FQwjMl06hxKFhgGbBCNY.png 513w\"},className:\"framer-nfp3sl\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rkacez\",\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tool Logo\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"28px\",src:\"https://framerusercontent.com/images/h2k165aKFpFmi8k6jjd5YCBWOQ.png\",srcSet:\"https://framerusercontent.com/images/h2k165aKFpFmi8k6jjd5YCBWOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/h2k165aKFpFmi8k6jjd5YCBWOQ.png 1024w\"},className:\"framer-14oyuzt\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rgpv0y\",\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tool Logo\",fit:\"fill\",pixelHeight:292,pixelWidth:292,src:\"https://framerusercontent.com/images/WawXoAkLznIt1qE3lnbA4P0rT4E.svg\"},className:\"framer-13fa78v\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v794o6\",\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tool Logo\",fit:\"fill\",pixelHeight:517,pixelWidth:517,sizes:\"28px\",src:\"https://framerusercontent.com/images/woGazvdh4v0dEIR2GUQMyhitqMY.png\",srcSet:\"https://framerusercontent.com/images/woGazvdh4v0dEIR2GUQMyhitqMY.png?scale-down-to=512 512w,https://framerusercontent.com/images/woGazvdh4v0dEIR2GUQMyhitqMY.png 517w\"},className:\"framer-dnxtom\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18djy80\",\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tool Logo\",fit:\"fill\",pixelHeight:947,pixelWidth:947,sizes:\"28px\",src:\"https://framerusercontent.com/images/eh3iZ6EiC6N2hyRRRX9Zeeo7cM8.png\",srcSet:\"https://framerusercontent.com/images/eh3iZ6EiC6N2hyRRRX9Zeeo7cM8.png?scale-down-to=512 512w,https://framerusercontent.com/images/eh3iZ6EiC6N2hyRRRX9Zeeo7cM8.png 947w\"},className:\"framer-ywysu\",\"data-framer-name\":\"Icon\"})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-177nmvw\",\"data-styles-preset\":\"tApuA7q4Y\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Tools We Use to Create\",/*#__PURE__*/_jsx(\"br\",{}),\"Impactful Digital Experiences\"]})})},LeUDAL3J1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-177nmvw\",\"data-styles-preset\":\"tApuA7q4Y\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Tools We Use to \",/*#__PURE__*/_jsx(\"br\",{}),\"Create Impactful Digital Experiences\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:[\"Tools We Use to \",/*#__PURE__*/_jsx(\"br\",{}),\"Create Impactful Digital Experiences\"]})}),className:\"framer-p5qei5\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lvw2x6\",\"data-framer-name\":\"Paragraph Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"The industry-leading tools we use to design, develop and market effectively.\"})}),className:\"framer-c7zja\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sv483n\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1482rp0\",\"data-framer-name\":\"Background\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1euzmse\",\"data-framer-name\":\"Items Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px) - 42px)`,y:(componentViewport?.y||0)+0+1038.6+0+4024.2+0+354.2+1+0+20+0},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 82px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2883+0+354.2+1+0+30+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 102px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+3144.2+0+361.4+1+0+30+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dhc2yz-container\",nodeId:\"vX1Tc2Re7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{sKOedtuE3:\"24px\"}},children:/*#__PURE__*/_jsx(CardsToolsCard,{E3NfzBte1:\"Adobe Creative\",height:\"100%\",HRkWqekUn:true,HZUjHGiHS:\"Bring your brand to life with powerful professional design tools.\",id:\"vX1Tc2Re7\",layoutId:\"vX1Tc2Re7\",lyXAy1XBT:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/h2k165aKFpFmi8k6jjd5YCBWOQ.png\",srcSet:\"https://framerusercontent.com/images/h2k165aKFpFmi8k6jjd5YCBWOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/h2k165aKFpFmi8k6jjd5YCBWOQ.png 1024w\"},\"Adobe Creative\"),sKOedtuE3:\"30px\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px) - 42px)`,y:(componentViewport?.y||0)+0+1038.6+0+4024.2+0+354.2+1+0+20+196},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 82px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2883+0+354.2+1+0+30+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 102px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+3144.2+0+361.4+1+0+30+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3jhyk1-container\",nodeId:\"YN1j6gc16\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{sKOedtuE3:\"24px\"}},children:/*#__PURE__*/_jsx(CardsToolsCard,{E3NfzBte1:\"Framer\",height:\"100%\",HRkWqekUn:true,HZUjHGiHS:\"Build fast, user-friendly websites for better engagement and conversions.\",id:\"YN1j6gc16\",layoutId:\"YN1j6gc16\",lyXAy1XBT:addImageAlt({pixelHeight:486,pixelWidth:513,src:\"https://framerusercontent.com/images/WTgAx3FQwjMl06hxKFhgGbBCNY.png\",srcSet:\"https://framerusercontent.com/images/WTgAx3FQwjMl06hxKFhgGbBCNY.png?scale-down-to=512 512w,https://framerusercontent.com/images/WTgAx3FQwjMl06hxKFhgGbBCNY.png 513w\"},\"Framer Logo\"),sKOedtuE3:\"30px\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px) - 42px)`,y:(componentViewport?.y||0)+0+1038.6+0+4024.2+0+354.2+1+0+20+392},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 82px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2883+0+354.2+1+0+30+196}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 102px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+3144.2+0+361.4+1+0+30+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ein79e-container\",nodeId:\"Md82YS6mm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{sKOedtuE3:\"24px\"}},children:/*#__PURE__*/_jsx(CardsToolsCard,{E3NfzBte1:\"Figma\",height:\"100%\",HRkWqekUn:true,HZUjHGiHS:\"Create high-end designs for a better user experience and engagement.\",id:\"Md82YS6mm\",layoutId:\"Md82YS6mm\",lyXAy1XBT:addImageAlt({pixelHeight:488,pixelWidth:512,src:\"https://framerusercontent.com/images/owAEIU4MFkuBumN2e5CFbSPSYQ.png\"},\"Shopify Logo\"),sKOedtuE3:\"30px\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px) - 42px)`,y:(componentViewport?.y||0)+0+1038.6+0+4024.2+0+354.2+1+0+20+588},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 82px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2883+0+354.2+1+0+30+196}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 102px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+3144.2+0+361.4+1+0+30+196,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16xoa8u-container\",nodeId:\"IZns_Cv8N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{sKOedtuE3:\"24px\"}},children:/*#__PURE__*/_jsx(CardsToolsCard,{E3NfzBte1:\"Zapier\",height:\"100%\",HRkWqekUn:true,HZUjHGiHS:\"Automate workflows, reduce costs, save time and boost productivity.\",id:\"IZns_Cv8N\",layoutId:\"IZns_Cv8N\",lyXAy1XBT:addImageAlt({pixelHeight:320,pixelWidth:320,src:\"https://framerusercontent.com/images/NsV9qYstXQvnepZ90qroO2LxVLc.png\"},\"Zapier\"),sKOedtuE3:\"30px\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:\"326px\",y:(componentViewport?.y||0)+0+1038.6+0+4024.2+0+354.2+1+0+20+784},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 82px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2883+0+354.2+1+0+30+392}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 102px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+3144.2+0+361.4+1+0+30+196,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cjvycj-container\",nodeId:\"vCkVGwiZ_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{sKOedtuE3:\"24px\"}},children:/*#__PURE__*/_jsx(CardsToolsCard,{E3NfzBte1:\"Shopify\",height:\"100%\",HRkWqekUn:true,HZUjHGiHS:\"Build and scale e-commerce stores. Unlock seamless shopping experiences.\",id:\"vCkVGwiZ_\",layoutId:\"vCkVGwiZ_\",lyXAy1XBT:addImageAlt({pixelHeight:292,pixelWidth:292,src:\"https://framerusercontent.com/images/WawXoAkLznIt1qE3lnbA4P0rT4E.svg\"},\"Shopify Logo\"),sKOedtuE3:\"30px\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px) - 42px)`,y:(componentViewport?.y||0)+0+1038.6+0+4024.2+0+354.2+1+0+20+980},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 82px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2883+0+354.2+1+0+30+392}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 102px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+3144.2+0+361.4+1+0+30+196,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lb0qva-container\",nodeId:\"cltlCpl2a\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{sKOedtuE3:\"24px\"}},children:/*#__PURE__*/_jsx(CardsToolsCard,{E3NfzBte1:\"Meta Ads\",height:\"100%\",HRkWqekUn:true,HZUjHGiHS:\"Drive sales with targeted ads. Maximize ROI with optimized campaigns.\",id:\"cltlCpl2a\",layoutId:\"cltlCpl2a\",lyXAy1XBT:addImageAlt({pixelHeight:517,pixelWidth:517,src:\"https://framerusercontent.com/images/woGazvdh4v0dEIR2GUQMyhitqMY.png\",srcSet:\"https://framerusercontent.com/images/woGazvdh4v0dEIR2GUQMyhitqMY.png?scale-down-to=512 512w,https://framerusercontent.com/images/woGazvdh4v0dEIR2GUQMyhitqMY.png 517w\"},\"Meta \"),sKOedtuE3:\"30px\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px) - 42px)`,y:(componentViewport?.y||0)+0+1038.6+0+4024.2+0+354.2+1+0+20+1176},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 82px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2883+0+354.2+1+0+30+588}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 102px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+3144.2+0+361.4+1+0+30+392,children:/*#__PURE__*/_jsx(Container,{className:\"framer-117ppms-container\",nodeId:\"IhV3qp0R9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{sKOedtuE3:\"24px\"}},children:/*#__PURE__*/_jsx(CardsToolsCard,{E3NfzBte1:\"WordPress\",height:\"100%\",HRkWqekUn:true,HZUjHGiHS:\"Turn visitors into paying customers with SEO driven content.\",id:\"IhV3qp0R9\",layoutId:\"IhV3qp0R9\",lyXAy1XBT:addImageAlt({pixelHeight:361,pixelWidth:360,src:\"https://framerusercontent.com/images/2XxkmH0mvnQM0wptBFyHx6RpnA.png\"},\"WordPress\"),sKOedtuE3:\"30px\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px) - 42px)`,y:(componentViewport?.y||0)+0+1038.6+0+4024.2+0+354.2+1+0+20+1372},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 82px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2883+0+354.2+1+0+30+588}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 102px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+3144.2+0+361.4+1+0+30+392,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m3rrry-container\",nodeId:\"wZ46kUb4K\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{sKOedtuE3:\"24px\"}},children:/*#__PURE__*/_jsx(CardsToolsCard,{E3NfzBte1:\"Google Ads \",height:\"100%\",HRkWqekUn:true,HZUjHGiHS:\"Get instant traffic. Boost revenue with high intent paid search ads.\",id:\"wZ46kUb4K\",layoutId:\"wZ46kUb4K\",lyXAy1XBT:addImageAlt({pixelHeight:468,pixelWidth:504,src:\"https://framerusercontent.com/images/F1S2Y0Tw2vqJry0Ro3HkeNV4ds.png\"},\"Google Ads \"),sKOedtuE3:\"30px\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px) - 42px)`,y:(componentViewport?.y||0)+0+1038.6+0+4024.2+0+354.2+1+0+20+1568},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 82px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1289.6+0+2883+0+354.2+1+0+30+784}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 102px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1381.6+0+3144.2+0+361.4+1+0+30+392,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hg9wza-container\",nodeId:\"nPDztddm8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{sKOedtuE3:\"24px\"}},children:/*#__PURE__*/_jsx(CardsToolsCard,{E3NfzBte1:\"Chat GPT\",height:\"100%\",HRkWqekUn:true,HZUjHGiHS:\"Generate high quality content, enhance engagemen & drive organic traffic \",id:\"nPDztddm8\",layoutId:\"nPDztddm8\",lyXAy1XBT:addImageAlt({pixelHeight:947,pixelWidth:947,src:\"https://framerusercontent.com/images/eh3iZ6EiC6N2hyRRRX9Zeeo7cM8.png\",srcSet:\"https://framerusercontent.com/images/eh3iZ6EiC6N2hyRRRX9Zeeo7cM8.png?scale-down-to=512 512w,https://framerusercontent.com/images/eh3iZ6EiC6N2hyRRRX9Zeeo7cM8.png 947w\"},\"GPT\"),sKOedtuE3:\"30px\",style:{width:\"100%\"},width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-uc07da\",\"data-framer-name\":\"Video Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mar7cv\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hzh90d\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212))\"},children:\"See How We Can Help Your Brand\"})}),className:\"framer-gzwr50\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i9j7jc\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ywqtdd\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:229,width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px) - 12px)`,y:(componentViewport?.y||0)+0+1038.6+0+6264.4+0+43+6+0},LeUDAL3J1:{height:439,width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 20px)`,y:(componentViewport?.y||0)+0+1289.6+0+4328.2+0+47+10+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:630,width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 20px)`,y:(componentViewport?.y||0)+0+1381.6+0+4335.6+0+47+10+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nyyijl-container\",nodeId:\"G5msxrW8x\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{wCTmIW5YJ:\"16px\"}},children:/*#__PURE__*/_jsx(HelperVideo,{height:\"100%\",id:\"G5msxrW8x\",layoutId:\"G5msxrW8x\",lk2aVS79j:addImageAlt({pixelHeight:585,pixelWidth:1076,src:\"https://framerusercontent.com/images/uGpg3tPNL1E0kelWRxVrC056xQ.png\",srcSet:\"https://framerusercontent.com/images/uGpg3tPNL1E0kelWRxVrC056xQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/uGpg3tPNL1E0kelWRxVrC056xQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uGpg3tPNL1E0kelWRxVrC056xQ.png 1076w\"},\"Video Thumbnail\"),style:{height:\"100%\",width:\"100%\"},variant:\"Pn6NgdC1I\",wCTmIW5YJ:\"24px\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e4nbd4\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+6264.4+0+300+0+0},LeUDAL3J1:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 800px)`,y:(componentViewport?.y||0)+0+1289.6+0+4328.2+0+526+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1381.6+0+4335.6+0+717+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qpc6n0-container\",nodeId:\"r9PfXjzRq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{hky6Nfix5:\"24px\"},LeUDAL3J1:{P0skZOkGv:\"row\"}},children:/*#__PURE__*/_jsx(CardsPrimaryCard,{a4pC9ejgV:\"Step 01\",Aksk1XknM:\"Tailored websites meticulously crafted to reflect your brand.\",G9Mdz_PFT:\"Custom Designs\",height:\"100%\",hky6Nfix5:\"30px\",id:\"r9PfXjzRq\",layoutId:\"r9PfXjzRq\",P0skZOkGv:\"column\",style:{width:\"100%\"},variant:\"Mx0AflTI2\",VMncI_R1b:addImageAlt({pixelHeight:26,pixelWidth:26,src:\"https://framerusercontent.com/images/9lDwe5RVWhcROsUnUSLQ5QiaaPk.svg\"},\"Icon\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+6264.4+0+300+0+208},LeUDAL3J1:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 800px)`,y:(componentViewport?.y||0)+0+1289.6+0+4328.2+0+526+0+208}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1381.6+0+4335.6+0+717+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16s99hs-container\",nodeId:\"vDTiW79UK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{hky6Nfix5:\"24px\"},LeUDAL3J1:{P0skZOkGv:\"row\"}},children:/*#__PURE__*/_jsx(CardsPrimaryCard,{a4pC9ejgV:\"Step 01\",Aksk1XknM:\"Optimized for lightning-fast speed to enhance user experience.\",G9Mdz_PFT:\"Fast Performance\",height:\"100%\",hky6Nfix5:\"30px\",id:\"vDTiW79UK\",layoutId:\"vDTiW79UK\",P0skZOkGv:\"column\",style:{width:\"100%\"},variant:\"Mx0AflTI2\",VMncI_R1b:addImageAlt({pixelHeight:26,pixelWidth:26,src:\"https://framerusercontent.com/images/FhPczbEeg5bRtLspTbQHpRUUg.svg\"},\"Icon\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,y:(componentViewport?.y||0)+0+1038.6+0+6264.4+0+300+0+416},LeUDAL3J1:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 800px)`,y:(componentViewport?.y||0)+0+1289.6+0+4328.2+0+526+0+416}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:188,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1381.6+0+4335.6+0+717+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yvhfec-container\",nodeId:\"GiIrmLQfB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{hky6Nfix5:\"24px\"},LeUDAL3J1:{P0skZOkGv:\"row\"}},children:/*#__PURE__*/_jsx(CardsPrimaryCard,{a4pC9ejgV:\"Step 01\",Aksk1XknM:\"Designed to improve SEO and increase visibility effortlessly.\",G9Mdz_PFT:\"SEO Friendly\",height:\"100%\",hky6Nfix5:\"30px\",id:\"GiIrmLQfB\",layoutId:\"GiIrmLQfB\",P0skZOkGv:\"column\",style:{width:\"100%\"},variant:\"Mx0AflTI2\",VMncI_R1b:addImageAlt({pixelHeight:26,pixelWidth:26,src:\"https://framerusercontent.com/images/36QlWRG5xFqx3DaY9IWO4wgp98.svg\"},\"Icon\"),width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-cq4k9t\",\"data-framer-name\":\"About Us\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1038.6+0+7268.4+0+0),pixelHeight:2040,pixelWidth:2260,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.92, 400px)`,src:\"https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png\",srcSet:\"https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png?scale-down-to=512 512w,https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png 2260w\"}},LeUDAL3J1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1289.6+0+5527.2+0+0),pixelHeight:2040,pixelWidth:2260,sizes:`min(${componentViewport?.width||\"100vw\"} * 0.9, 800px)`,src:\"https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png\",srcSet:\"https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png?scale-down-to=512 512w,https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png 2260w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1381.6+0+5440.6+20.9),pixelHeight:2040,pixelWidth:2260,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 50px) / 2, 1px)`,src:\"https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png\",srcSet:\"https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png?scale-down-to=512 512w,https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fv5yPBmjikTk2Jc47v6BFoFyxg.png 2260w\"},className:\"framer-nqbvl4\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tkdjbn\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v04ka\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-htrbjd\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kpjvxe\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"About Us\"})}),className:\"framer-ttih8r\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sjm2q1\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Discover Who We Are \",/*#__PURE__*/_jsx(\"br\",{}),\"and Our Mission\"]})})},LeUDAL3J1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Discover Who We Are \",/*#__PURE__*/_jsx(\"br\",{}),\"and Our Mission\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Discover Who We Are \",/*#__PURE__*/_jsx(\"br\",{}),\"and Our Mission\"]})}),className:\"framer-1b9pmiy\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Discover who we are and our mission at BrandBurn. We are a passionate team of creative professionals dedicated to crafting exceptional web design solutions. Our mission is to empower businesses with innovative websites that not only captivate but also drive results.\"})})},LeUDAL3J1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Discover who we are and our mission at BrandBurn. We are a passionate team of creative professionals dedicated to crafting exceptional web design solutions. Our mission is to empower businesses with innovative websites that not only captivate but also drive results.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Discover who we are and our mission at BrandBurn. We are a passionate team of creative professionals dedicated to crafting exceptional web design solutions. Our mission is to empower businesses with innovative websites that not only captivate but also drive results.\"})}),className:\"framer-mbi2hr\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sd3jjj\",\"data-framer-name\":\"Buttons Container\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(min(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px), 560px), 320px)`,y:(componentViewport?.y||0)+0+1038.6+0+7268.4+0+278+0+0+0+286.4+0+0},LeUDAL3J1:{y:(componentViewport?.y||0)+0+1289.6+0+5527.2+0+560+0+0+0+286.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+1381.6+0+5440.6+0+0+0+0+286.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jcblov-container\",nodeId:\"RTUByHv_q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{style:{width:\"100%\"},ZvjocOTJv:resolvedLinks1[2]},LeUDAL3J1:{ZvjocOTJv:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonsPrimaryButton,{E4fAQIzGx:\"14px 18px 14px 18px\",height:\"100%\",id:\"RTUByHv_q\",iwEsvMhc8:\"Contact Us\",layoutId:\"RTUByHv_q\",o6CCkd0YV:false,variant:\"SXpBejMKJ\",width:\"100%\",ZvjocOTJv:resolvedLinks1[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":mA9z_YpGw\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":mA9z_YpGw\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":mA9z_YpGw\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(min(min(${componentViewport?.width||\"100vw\"} * 0.92, 400px), 560px), 320px)`,y:(componentViewport?.y||0)+0+1038.6+0+7268.4+0+278+0+0+0+286.4+0+71},LeUDAL3J1:{y:(componentViewport?.y||0)+0+1289.6+0+5527.2+0+560+0+0+0+286.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+1381.6+0+5440.6+0+0+0+0+286.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-du48t3-container\",nodeId:\"Vs0cWF_vH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{bpFxMLEgq:resolvedLinks2[2],style:{width:\"100%\"}},LeUDAL3J1:{bpFxMLEgq:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondaryButton,{BDoRw6qpq:\"View Projects\",bpFxMLEgq:resolvedLinks2[0],CYrRJoCm6:false,EHjrljF63:false,H1wAYdpr0:\"14px 18px 14px 18px\",height:\"100%\",IAygV25Ya:addImageAlt({pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/Ml0a0r9783FLVDGX8DM8quAXg.svg\"},\"Arrow Icon\"),id:\"Vs0cWF_vH\",layoutId:\"Vs0cWF_vH\",OXYrzQZWG:addImageAlt({pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/dqTNTAopWAZyP4W4c7TuXeQhxA.svg\"},\"\"),variant:\"voJeZMcB1\",vsYaxZvQF:true,width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7861gq\",\"data-border\":true,\"data-framer-name\":\"Founder\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bn6kwl\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1038.6+0+7268.4+0+278+0+452.4+10+0+0),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/M3X2ktGKGEjzjKkOfnZGSbkZN4c.png\"}},LeUDAL3J1:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1289.6+0+5527.2+0+560+0+381.4+0+14),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/M3X2ktGKGEjzjKkOfnZGSbkZN4c.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1381.6+0+5440.6+0+0+381.4+0+14),pixelHeight:160,pixelWidth:160,src:\"https://framerusercontent.com/images/M3X2ktGKGEjzjKkOfnZGSbkZN4c.png\"},className:\"framer-hztp3c\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rht07y\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Ryan Matthews\"})}),className:\"framer-5a9xe8\",\"data-framer-name\":\"Name\",fonts:[\"GF;Rethink Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Co Founder\"})}),className:\"framer-15hchyz\",\"data-framer-name\":\"Text\",fonts:[\"GF;Rethink Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{y:(componentViewport?.y||0)+0+1038.6+0+7268.4+0+278+0+452.4+10+0+0},LeUDAL3J1:{y:(componentViewport?.y||0)+0+1289.6+0+5527.2+0+560+0+381.4+0+14}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+1381.6+0+5440.6+0+0+381.4+0+14,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zucqnj-container\",nodeId:\"IPDaisupW\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation10,children:/*#__PURE__*/_jsx(ButtonsSocialButton2,{G938Y7mSI:\"var(--token-f7f2488e-33ec-4b05-ab27-e7cbbd10b0a5, rgb(0, 6, 51))\",gdypGzUGL:\"var(--token-9808df8b-9423-4c64-ab16-a95758a33d6f, rgb(0, 9, 76))\",height:\"100%\",id:\"IPDaisupW\",layoutId:\"IPDaisupW\",M_rhBF_JF:\"https://x.com/\",OjywytQei:{borderColor:\"var(--token-1de346e1-893e-48fc-baa6-bfb90f41753f, rgb(22, 28, 68))\",borderStyle:\"solid\",borderWidth:1},rtuGKJ4ka:\"10px\",S5TNNpKPH:true,sTBzUtlkV:addImageAlt({pixelHeight:19,pixelWidth:19,src:\"https://framerusercontent.com/images/plK5K6J3raIvTcKAy0d3jc1aX4.svg\"},\"x.com\"),width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dr1ncr\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11q9xsp\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1038.6+0+7268.4+0+278+0+452.4+10+143.4+0),pixelHeight:706,pixelWidth:1060,sizes:\"40px\",src:\"https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png\",srcSet:\"https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png 1060w\"}},LeUDAL3J1:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1289.6+0+5527.2+0+560+0+381.4+0+14),pixelHeight:706,pixelWidth:1060,sizes:\"40px\",src:\"https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png\",srcSet:\"https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png 1060w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1381.6+0+5440.6+0+0+381.4+0+14),pixelHeight:706,pixelWidth:1060,sizes:\"40px\",src:\"https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png\",srcSet:\"https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png?scale-down-to=512 512w,https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gF9H8D7b4FTYz9lRLp75RsXJPo.png 1060w\"},className:\"framer-fewkrj\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lju39i\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"David Parker\"})}),className:\"framer-1y8fj17\",\"data-framer-name\":\"Name\",fonts:[\"GF;Rethink Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Co Founder\"})}),className:\"framer-hci7q8\",\"data-framer-name\":\"Text\",fonts:[\"GF;Rethink Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{y:(componentViewport?.y||0)+0+1038.6+0+7268.4+0+278+0+452.4+10+143.4+0},LeUDAL3J1:{y:(componentViewport?.y||0)+0+1289.6+0+5527.2+0+560+0+381.4+0+14}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+1381.6+0+5440.6+0+0+381.4+0+14,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10z0e7n-container\",nodeId:\"zgWCo4to7\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation10,children:/*#__PURE__*/_jsx(ButtonsSocialButton2,{G938Y7mSI:\"var(--token-f7f2488e-33ec-4b05-ab27-e7cbbd10b0a5, rgb(0, 6, 51))\",gdypGzUGL:\"var(--token-9808df8b-9423-4c64-ab16-a95758a33d6f, rgb(0, 9, 76))\",height:\"100%\",id:\"zgWCo4to7\",layoutId:\"zgWCo4to7\",M_rhBF_JF:\"https://x.com/\",OjywytQei:{borderColor:\"var(--token-1de346e1-893e-48fc-baa6-bfb90f41753f, rgb(22, 28, 68))\",borderStyle:\"solid\",borderWidth:1},rtuGKJ4ka:\"10px\",S5TNNpKPH:true,sTBzUtlkV:addImageAlt({pixelHeight:19,pixelWidth:19,src:\"https://framerusercontent.com/images/plK5K6J3raIvTcKAy0d3jc1aX4.svg\"},\"x.com\"),width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1qcea8x\",\"data-border\":true,\"data-framer-name\":\"Our Mission\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ehflku\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wds02a\",\"data-framer-name\":\"Background\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wtydbx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TL77Dw3su\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"TL77Dw3su\",isMixedBorderRadius:false,layoutId:\"TL77Dw3su\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/lfS5V3lb1ImRKGmUShdiVKUM.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ejygni\",\"data-framer-name\":\"Fill\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kbgim2\",\"data-framer-name\":\"Fill\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pazoeo\",\"data-framer-name\":\"Fill\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lttpwp\",\"data-framer-name\":\"Fade Out\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nqgzzq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fg2Iyce8o\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"fg2Iyce8o\",isMixedBorderRadius:false,layoutId:\"fg2Iyce8o\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/V81XLButChh9sPk8EvpsCqY5A.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-at64y1\",\"data-framer-name\":\"Fade Out\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Our mission is to design websites that attract and engage customers.\"})})},LeUDAL3J1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Our mission is to design websites that attract and engage customers.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Our mission is to design websites that attract and engage customers.\"})}),className:\"framer-kghjs2\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jjtc50\",\"data-styles-preset\":\"otR1sty3h\",children:\"However, we approach things a bit differently around here.\"})}),className:\"framer-5na1vu\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-negu9l\",\"data-framer-name\":\"Body Middle\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-15srq5f\",\"data-framer-name\":\"Services\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lltxt6\",\"data-framer-name\":\"Sub Container\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nmbmv1 hidden-1wemmbm\",\"data-framer-name\":\"Abstract Background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+0+0+0+253.4-127+0),pixelHeight:189,pixelWidth:212,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9vcSyo96vHEThLwNPwVMScU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+0+0+0+253.4-162+0),pixelHeight:289,pixelWidth:507,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XSAEaYbC0TioOcWQfJW5x3VTUM.svg\"},className:\"framer-jetmr6\",\"data-framer-name\":\"Abstract Background\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qnp1jg\",\"data-framer-name\":\"Fill\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+0+0+0+253.4-127+0),pixelHeight:189,pixelWidth:212,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8ptkzSRdUPoCw7SXqhEnWdZc3cM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+0+0+0+253.4-162+0),pixelHeight:289,pixelWidth:508,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QcPlj2gQtViv4XfKb56KCgPw5BY.svg\"},className:\"framer-1u4p8sp\",\"data-framer-name\":\"Abstract Background\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cijgrk\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ihr0z8\",\"data-framer-name\":\"Background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:160,width:\"440px\",y:(componentViewport?.y||0)+0+9861.2+0+0+0+0+0+-45+0},LeUDAL3J1:{height:259.7732,width:\"716px\",y:(componentViewport?.y||0)+0+8561.2+0+0+0+0+0+-84+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:\"882px\",y:(componentViewport?.y||0)+0+8279.6+0+0+0+0+0+-114+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7at4tk-container\",nodeId:\"GtHK90coY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperBackground,{height:\"100%\",i61sJSAbx:\"Seven\",id:\"GtHK90coY\",layoutId:\"GtHK90coY\",style:{height:\"100%\",width:\"100%\"},variant:\"iW0e8BRO4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+0+0+0+0+-45+160-211),pixelHeight:625,pixelWidth:799,sizes:\"300px\",src:\"https://framerusercontent.com/images/AlUU80ePWWBn9KNSPihCaYtCBJY.svg\",srcSet:\"https://framerusercontent.com/images/AlUU80ePWWBn9KNSPihCaYtCBJY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/AlUU80ePWWBn9KNSPihCaYtCBJY.svg 799w\"}},LeUDAL3J1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+0+0+0+0+-84+259.7732-326),pixelHeight:625,pixelWidth:799,sizes:\"400px\",src:\"https://framerusercontent.com/images/AlUU80ePWWBn9KNSPihCaYtCBJY.svg\",srcSet:\"https://framerusercontent.com/images/AlUU80ePWWBn9KNSPihCaYtCBJY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/AlUU80ePWWBn9KNSPihCaYtCBJY.svg 799w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+0+0+0+0+-114+-147),pixelHeight:625,pixelWidth:799,sizes:\"500px\",src:\"https://framerusercontent.com/images/AlUU80ePWWBn9KNSPihCaYtCBJY.svg\",srcSet:\"https://framerusercontent.com/images/AlUU80ePWWBn9KNSPihCaYtCBJY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/AlUU80ePWWBn9KNSPihCaYtCBJY.svg 799w\"},className:\"framer-17gyohp\",\"data-framer-name\":\"Light\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+0+0+0+0+-45+160-211),pixelHeight:625,pixelWidth:799,sizes:\"300px\",src:\"https://framerusercontent.com/images/L7CpEUs0IRH6OiJichMUMCK5g.svg\",srcSet:\"https://framerusercontent.com/images/L7CpEUs0IRH6OiJichMUMCK5g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/L7CpEUs0IRH6OiJichMUMCK5g.svg 799w\"}},LeUDAL3J1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+0+0+0+0+-84+259.7732-373),pixelHeight:625,pixelWidth:799,sizes:\"400px\",src:\"https://framerusercontent.com/images/L7CpEUs0IRH6OiJichMUMCK5g.svg\",srcSet:\"https://framerusercontent.com/images/L7CpEUs0IRH6OiJichMUMCK5g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/L7CpEUs0IRH6OiJichMUMCK5g.svg 799w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+0+0+0+0+-114+-147),pixelHeight:625,pixelWidth:799,sizes:\"501px\",src:\"https://framerusercontent.com/images/L7CpEUs0IRH6OiJichMUMCK5g.svg\",srcSet:\"https://framerusercontent.com/images/L7CpEUs0IRH6OiJichMUMCK5g.svg?scale-down-to=512 512w,https://framerusercontent.com/images/L7CpEUs0IRH6OiJichMUMCK5g.svg 799w\"},className:\"framer-1fus5bi\",\"data-framer-name\":\"Light\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14w1ba8\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(204, 215, 255)\"},children:\"Services\"})}),className:\"framer-75mrch\",\"data-framer-name\":\"Text\",fonts:[\"GF;Rethink Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-100u6mk\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:\"Explore Our Core Services\"})}),className:\"framer-124zt1u\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f9gz6e\",\"data-framer-name\":\"Paragraph Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover our comprehensive range of services tailored to enhance your digital presence.\"})}),className:\"framer-1kadk4c\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ihujay\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ubs19b\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ntp0e9\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-279q7z\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ptxw33\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"UI/UX  Design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"UI/UX  Design\"})}),className:\"framer-1h4kpjr\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Creating user-friendly and visually stunning experiences that engage and convert.\"})}),className:\"framer-enpnwp\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-q1bmpt hidden-72rtr7 hidden-1nnxuaf\",\"data-framer-name\":\"Button Container\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:55,width:`max(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px, 1px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+0+30+0+0+315+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11gumkf-container hidden-72rtr7\",nodeId:\"bUzlKFkgB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{bpFxMLEgq:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondaryButton,{BDoRw6qpq:\"Book a Call\",bpFxMLEgq:resolvedLinks3[0],CYrRJoCm6:true,EHjrljF63:false,H1wAYdpr0:\"12px 18px 12px 18px\",height:\"100%\",IAygV25Ya:addImageAlt({pixelHeight:21,pixelWidth:20,src:\"https://framerusercontent.com/images/VuPuRgusLiwwTAtgY2wrrbolKU.svg\"},\"\"),id:\"bUzlKFkgB\",layoutId:\"bUzlKFkgB\",style:{width:\"100%\"},variant:\"voJeZMcB1\",vsYaxZvQF:false,width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4tdxh0\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+0+30+402+30+0},LeUDAL3J1:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 160px, 590px) - 80px)`,y:(componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+0+0+0+40+377+30+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 130px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+0+0+40+377+30+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tjtizt-container\",nodeId:\"VQG8G2XN7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperServicePointer,{g6sRtdMft:\"Custom design tailored to your brand\",height:\"100%\",id:\"VQG8G2XN7\",layoutId:\"VQG8G2XN7\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+0+30+402+30+47},LeUDAL3J1:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 160px, 590px) - 80px)`,y:(componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+0+0+0+40+377+30+47}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 130px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+0+0+40+377+30+47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12qpw7h-container\",nodeId:\"lvjKFFNun\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperServicePointer,{g6sRtdMft:\"Easy-to-use, intuitive interface\\n\",height:\"100%\",id:\"lvjKFFNun\",layoutId:\"lvjKFFNun\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+0+30+402+30+94},LeUDAL3J1:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 160px, 590px) - 80px)`,y:(componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+0+0+0+40+377+30+94}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 130px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+0+0+40+377+30+94,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ujwadw-container\",nodeId:\"Mk4hXRtLM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperServicePointer,{g6sRtdMft:\"Mobile & desktop-friendly layouts\",height:\"100%\",id:\"Mk4hXRtLM\",layoutId:\"Mk4hXRtLM\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+0+30+402+30+141},LeUDAL3J1:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 160px, 590px) - 80px)`,y:(componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+0+0+0+40+377+30+141}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 130px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+0+0+40+377+30+141,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18yodjo-container\",nodeId:\"x0tYCd6xI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperServicePointer,{g6sRtdMft:\"Interactive & engaging elements\",height:\"100%\",id:\"x0tYCd6xI\",layoutId:\"x0tYCd6xI\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+0+30+402+30+188},LeUDAL3J1:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 160px, 590px) - 80px)`,y:(componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+0+0+0+40+377+30+188}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 130px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+0+0+40+377+30+188,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l9hec1-container\",nodeId:\"ZL67qJxPS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperServicePointer,{g6sRtdMft:\"Research-backed user experience\",height:\"100%\",id:\"ZL67qJxPS\",layoutId:\"ZL67qJxPS\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17954q8\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jva6e\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g96s3u\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Website Development\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Website Development\"})}),className:\"framer-obunqg\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Building fast, secure, and scalable websites for seamless performance.\"})}),className:\"framer-13p3gij\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-d7lbrs hidden-72rtr7 hidden-1nnxuaf\",\"data-framer-name\":\"Button Container\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`max(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px, 1px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+727+30+0+0+315+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-96kxeu-container\",nodeId:\"Yu4FKCWXq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{bpFxMLEgq:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondaryButton,{BDoRw6qpq:\"Book a Call\",bpFxMLEgq:resolvedLinks4[0],CYrRJoCm6:true,EHjrljF63:false,H1wAYdpr0:\"12px 18px 12px 18px\",height:\"100%\",IAygV25Ya:addImageAlt({pixelHeight:21,pixelWidth:20,src:\"https://framerusercontent.com/images/VuPuRgusLiwwTAtgY2wrrbolKU.svg\"},\"\"),id:\"Yu4FKCWXq\",layoutId:\"Yu4FKCWXq\",style:{width:\"100%\"},variant:\"voJeZMcB1\",vsYaxZvQF:false,width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x662bp\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+727+30+398+30+0},LeUDAL3J1:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 160px, 590px) - 80px)`,y:(componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+0+0+732+40+377+30+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 130px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+0+0+40+377+30+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-owt6qh-container\",nodeId:\"vgNEiJWAZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperServicePointer,{g6sRtdMft:\"Custom website development\",height:\"100%\",id:\"vgNEiJWAZ\",layoutId:\"vgNEiJWAZ\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+727+30+398+30+47},LeUDAL3J1:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 160px, 590px) - 80px)`,y:(componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+0+0+732+40+377+30+47}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 130px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+0+0+40+377+30+47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1moo0po-container\",nodeId:\"Xe1GcYPF3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperServicePointer,{g6sRtdMft:\"Ongoing support & maintenance\",height:\"100%\",id:\"Xe1GcYPF3\",layoutId:\"Xe1GcYPF3\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+727+30+398+30+94},LeUDAL3J1:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 160px, 590px) - 80px)`,y:(componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+0+0+732+40+377+30+94}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 130px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+0+0+40+377+30+94,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n6oyk8-container\",nodeId:\"VmkWhSLMy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperServicePointer,{g6sRtdMft:\"Strong security & data protection\",height:\"100%\",id:\"VmkWhSLMy\",layoutId:\"VmkWhSLMy\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+727+30+398+30+141},LeUDAL3J1:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 160px, 590px) - 80px)`,y:(componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+0+0+732+40+377+30+141}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 130px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+0+0+40+377+30+141,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xoy4j7-container\",nodeId:\"C2hCF4D22\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperServicePointer,{g6sRtdMft:\"CMS for easy content updates\",height:\"100%\",id:\"C2hCF4D22\",layoutId:\"C2hCF4D22\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px) - 60px)`,y:(componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+0+0+727+30+398+30+188},LeUDAL3J1:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 160px, 590px) - 80px)`,y:(componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+0+0+732+40+377+30+188}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.94, 1260px) - 130px) / 2, 1px) - 80px)`,y:(componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+0+0+40+377+30+188,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bjxit5-container\",nodeId:\"nbOppKjLr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperServicePointer,{g6sRtdMft:\"API integrations & automation\\n\",height:\"100%\",id:\"nbOppKjLr\",layoutId:\"nbOppKjLr\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qxrlew\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oubjx3\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbcxks\",\"data-framer-name\":\"Abstract Design\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r1wrx8\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Line Head Design Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+1470+0+0+5.5+0),pixelHeight:18,pixelWidth:24,src:\"https://framerusercontent.com/images/Ei66cGLo9dgdPPkUwJ4SDT6ierU.svg\"}},LeUDAL3J1:{background:{alt:\"Line Head Design Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+1496+0+0+5.5+0),pixelHeight:18,pixelWidth:24,src:\"https://framerusercontent.com/images/Ei66cGLo9dgdPPkUwJ4SDT6ierU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Line Head Design Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+764+0+0+5.5+0),pixelHeight:18,pixelWidth:24,src:\"https://framerusercontent.com/images/Ei66cGLo9dgdPPkUwJ4SDT6ierU.svg\"},className:\"framer-mktjiz\",\"data-framer-name\":\"Head\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jjtc50\",\"data-styles-preset\":\"otR1sty3h\",style:{\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Other Services\"})}),className:\"framer-438qz9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wjgb0x\",\"data-framer-name\":\"Abstract Design\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Line Head Design Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+0+0+303.4+0+1470+0+0+5.5+0),pixelHeight:18,pixelWidth:24,src:\"https://framerusercontent.com/images/nHD8uAANbtAqeP5nyPmt3TqgEQ.svg\"}},LeUDAL3J1:{background:{alt:\"Line Head Design Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+0+0+313.4+0+1496+0+0+5.5+0),pixelHeight:18,pixelWidth:24,src:\"https://framerusercontent.com/images/nHD8uAANbtAqeP5nyPmt3TqgEQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Line Head Design Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+0+0+333.4+0+764+0+0+5.5+0),pixelHeight:18,pixelWidth:24,src:\"https://framerusercontent.com/images/nHD8uAANbtAqeP5nyPmt3TqgEQ.svg\"},className:\"framer-2q5l2j\",\"data-framer-name\":\"Head\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5l6cov\",\"data-framer-name\":\"Line\"})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-68ovhr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jtcyAztjL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"jtcyAztjL\",layoutId:\"jtcyAztjL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4p3r28\",\"data-border\":true,\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:21,pixelWidth:20,src:\"https://framerusercontent.com/images/PV214Eg5kQBlxA4OdYCqYYKq9s.svg\"},className:\"framer-1rf5kok\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-73bf1c19-b295-4a80-8fec-e4a1490718db, rgb(240, 241, 244))\"},children:\"Logo Design\"})}),className:\"framer-1fxgs1l\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-quzi7v\",\"data-border\":true,\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:21,pixelWidth:20,src:\"https://framerusercontent.com/images/eEyGO0E5p329x3skPa4SJd3Sljc.svg\"},className:\"framer-58f5fg\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-73bf1c19-b295-4a80-8fec-e4a1490718db, rgb(240, 241, 244))\"},children:\"Social Post Design\"})}),className:\"framer-19vbb9w\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12li7cw\",\"data-border\":true,\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:21,pixelWidth:20,src:\"https://framerusercontent.com/images/KAnKldKdyTdqxnqkkB9vAlYQEE.svg\"},className:\"framer-1wt79yh\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-73bf1c19-b295-4a80-8fec-e4a1490718db, rgb(240, 241, 244))\"},children:\"Branding\"})}),className:\"framer-wia4o5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6v894a\",\"data-border\":true,\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:21,pixelWidth:20,src:\"https://framerusercontent.com/images/9W41EHECfANea3t1fLy6515uTE.svg\"},className:\"framer-19s2kar\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-73bf1c19-b295-4a80-8fec-e4a1490718db, rgb(240, 241, 244))\"},children:\"Packaging Design\"})}),className:\"framer-1xi3oyd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kb894a\",\"data-border\":true,\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:21,pixelWidth:20,src:\"https://framerusercontent.com/images/3OKHRpNShTPkyBmpb2eEdKirNa0.svg\"},className:\"framer-4njogv\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-73bf1c19-b295-4a80-8fec-e4a1490718db, rgb(240, 241, 244))\"},children:\"SEO\"})}),className:\"framer-353dro\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lwewg5\",\"data-border\":true,\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:21,pixelWidth:20,src:\"https://framerusercontent.com/images/bBqwjpNcto0zIWrxwad7eovJJEk.svg\"},className:\"framer-fvobsn\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-73bf1c19-b295-4a80-8fec-e4a1490718db, rgb(240, 241, 244))\"},children:\"Content Writing\"})}),className:\"framer-rbywwm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:25,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-zbeye\",\"data-framer-name\":\"Comparison\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n746qx\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:160,width:\"428px\",y:(componentViewport?.y||0)+0+9861.2+0+1977.4+0+0+-35},LeUDAL3J1:{height:259,width:\"695px\",y:(componentViewport?.y||0)+0+8561.2+0+2073.4+0+0+-64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:268,width:\"717px\",y:(componentViewport?.y||0)+0+8279.6+0+1411.4+0+0+-68,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q6u1um-container\",nodeId:\"LQyxPEtxr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperBackground,{height:\"100%\",i61sJSAbx:\"Six\",id:\"LQyxPEtxr\",layoutId:\"LQyxPEtxr\",style:{height:\"100%\",width:\"100%\"},variant:\"r6R5UgO9g\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nw26i4\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Comparison\"})}),className:\"framer-1112q2z\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qtutn0\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:[\"Choosing Brandburn\",/*#__PURE__*/_jsx(\"br\",{}),\"Over Others\"]})}),className:\"framer-10dkwlu\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cbbmac\",\"data-framer-name\":\"Paragraph Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\"},children:\"See why BrandBurn stands out with superior service, innovation and client satisfaction benchmarks.\"})}),className:\"framer-dp1cqg\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a89y6u\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4n5rlc\",\"data-framer-name\":\"Background\"}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ldbpcl hidden-1wemmbm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-724uup\",\"data-framer-name\":\"Light\",id:\"724uup\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13twdmi\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-esghwp\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mcadpq\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Other Agencies\"})}),className:\"framer-hsk4oj\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hmt6yz\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+0+0+0),pixelHeight:965,pixelWidth:2683,sizes:\"144px\",src:\"https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png\",srcSet:\"https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=512 512w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png 2683w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+0+0+0),pixelHeight:965,pixelWidth:2683,sizes:\"144px\",src:\"https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png\",srcSet:\"https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=512 512w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png 2683w\"},className:\"framer-nlbys0\",\"data-framer-name\":\"Logo\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9blbe\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qpmwgu\",\"data-border\":true,\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i2kwko\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+0+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+0+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"},className:\"framer-mwialp\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Experienced team delivering standard solutions.\"})}),className:\"framer-r9q15o\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-asqwwy\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bcd3ms\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+0+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+0+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"},className:\"framer-6ig82t\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",style:{\"--framer-text-color\":\"var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212))\"},children:\"Highly skilled specialists delivering customized solutions.\"})}),className:\"framer-d217m2\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rt9t56\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Background Lines\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+0+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Background Lines\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+0+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"},className:\"framer-1lm2unj\",\"data-framer-name\":\"Background\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vew55c\",\"data-border\":true,\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19haka1\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+191+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+191+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"},className:\"framer-rw1c35\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Offers standard, template-based designs.\"})}),className:\"framer-1em032e\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xu915q\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wio0jg\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+191+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+191+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"},className:\"framer-5nij2t\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",style:{\"--framer-text-color\":\"var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212))\"},children:\"Offers innovative, bespoke website designs.\"})}),className:\"framer-1qkqd28\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-37oitb\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Background Lines\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+191+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Background Lines\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+191+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"},className:\"framer-1khl1c2\",\"data-framer-name\":\"Background\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xq5lpo\",\"data-border\":true,\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hhpo7d\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+382+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+382+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"},className:\"framer-z4kqls\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Limited post-launch support and updates.\"})}),className:\"framer-12ftgo9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-197cmb4\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14pdmz4\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+382+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+382+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"},className:\"framer-j9yu6h\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",style:{\"--framer-text-color\":\"var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212))\"},children:\"Comprehensive post-launch support and updates.\"})}),className:\"framer-8et0u\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ad8j0e\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Background Lines\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+382+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Background Lines\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+382+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"},className:\"framer-1wg3p8g\",\"data-framer-name\":\"Background\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-irslvc\",\"data-border\":true,\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ka5ja\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+573+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+573+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"},className:\"framer-120sa9t\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Basic performance with average loading times.\"})}),className:\"framer-y4qs5j\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9k3fag\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pwsu5k\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+573+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+573+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"},className:\"framer-leossn\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",style:{\"--framer-text-color\":\"var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212))\"},children:\"Optimal performance with fast loading times.\"})}),className:\"framer-f48zx0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1500p3f\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Background Lines\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+573+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Background Lines\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+573+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"},className:\"framer-1o4jiv8\",\"data-framer-name\":\"Background\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nnhzpl\",\"data-border\":true,\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99s7la\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+764+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+764+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"},className:\"framer-16xi1ee\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Basic SEO practices implemented.\"})}),className:\"framer-9skadl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fbqvor\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xcg107\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+764+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+764+0+73.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"},className:\"framer-wcgl4j\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",style:{\"--framer-text-color\":\"var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212))\"},children:\"Advanced SEO tactics for enhanced online visibility.\"})}),className:\"framer-1qdcoek\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qo4ih8\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Background Lines\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+50+0+90+0+764+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Background Lines\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+50+0+90+0+764+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"},className:\"framer-75wj1f\",\"data-framer-name\":\"Background\"})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{background:{alt:\"Versus Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+2073.4+0+286.4+1+40),pixelHeight:70,pixelWidth:71,src:\"https://framerusercontent.com/images/UaNueSPHaU4uAnBboSMnR7WEc8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Versus Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+1411.4+0+286.4+1+40),pixelHeight:70,pixelWidth:71,src:\"https://framerusercontent.com/images/UaNueSPHaU4uAnBboSMnR7WEc8.svg\"},className:\"framer-7v8ebe\",\"data-framer-name\":\"Vs\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1krqlp9 hidden-72rtr7 hidden-1nnxuaf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8xwi3v\",\"data-framer-name\":\"Light\",id:\"8xwi3v\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r2j1hm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ltrg6d\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Other Agencies\"})}),className:\"framer-1awgitw\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nrhue3\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l448ri\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+0+0+48.8+0+0+71.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"},className:\"framer-chy4fv\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+0+0+48.8+0+0+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Line Background\",fit:\"fill\",pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"},className:\"framer-1qc6mp4\",\"data-framer-name\":\"Background\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Experienced team delivering standard solutions.\"})}),className:\"framer-sr1mmw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n09x5i\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+0+0+48.8+0+187+71.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"},className:\"framer-3tqrrf\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Offers standard, template-based designs.\"})}),className:\"framer-dyiqc0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+0+0+48.8+0+187+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Line Background\",fit:\"fill\",pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"},className:\"framer-fqyved\",\"data-framer-name\":\"Background\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mu78qm\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+0+0+48.8+0+374+71.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"},className:\"framer-kcn8j1\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Limited post-launch support and updates.\"})}),className:\"framer-1bipie7\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+0+0+48.8+0+374+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Line Background\",fit:\"fill\",pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"},className:\"framer-f4g58u\",\"data-framer-name\":\"Background\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ynnljx\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+0+0+48.8+0+561+71.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"},className:\"framer-tale6d\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Basic performance with average loading times.\"})}),className:\"framer-ymh4ld\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+0+0+48.8+0+561+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Line Background\",fit:\"fill\",pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"},className:\"framer-1g9shy5\",\"data-framer-name\":\"Background\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hv7ouj\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+0+0+48.8+0+748+71.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jdzexwVUUG0v9Tn88L57oI3V28w.svg\"},className:\"framer-i526tb\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\"},children:\"Basic SEO practices for average online visibility.\"})}),className:\"framer-6cr6n7\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+0+0+48.8+0+748+0),pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Line Background\",fit:\"fill\",pixelHeight:403,pixelWidth:410,src:\"https://framerusercontent.com/images/AdPfwI4laWSMfyInnvNTBjrcR0.svg\"},className:\"framer-5lav8z\",\"data-framer-name\":\"Background\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h20z80\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+993.8+0+0),pixelHeight:965,pixelWidth:2683,sizes:\"103px\",src:\"https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png\",srcSet:\"https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=512 512w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png 2683w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fill\",pixelHeight:965,pixelWidth:2683,sizes:\"103px\",src:\"https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png\",srcSet:\"https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=512 512w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OZzD0ryoGGXBU8KhbAu9ME96w.png 2683w\"},className:\"framer-2etwbj\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nqyq4g\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14aoibp\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p1fihh\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+993.8+0+56+0+0+71.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"},className:\"framer-1ctjs0p\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",style:{\"--framer-text-color\":\"var(--token-1b8625e0-13ce-4d73-8156-ae8786fbff1f, rgb(196, 200, 212))\"},children:\"Skilled specialists delivering customized solutions.Skilled specialists delivering customized solutions.\"})}),className:\"framer-1nez4jx\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hrtfn8\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n9y6wb\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+993.8+0+56+0+187+71.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"},className:\"framer-1gftqjx\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",children:\"Offers innovative, bespoke website designs.\"})}),className:\"framer-1891j29\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lch5w1\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wl0ou0\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c0ojyy\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+993.8+0+56+0+374+71.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"},className:\"framer-x259cb\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",children:\"Comprehensive post-launch support and updates.\"})}),className:\"framer-13w2k9t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3thpv0\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ly6pwj\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3gm1cp\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+993.8+0+56+0+561+71.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"},className:\"framer-dke4g0\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",children:\"Optimal performance with fast loading times.\"})}),className:\"framer-1jamgzu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gdz0qs\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q2nupm\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8r8bo5\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+1977.4+0+286.4+1+30+993.8+0+56+0+748+71.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/dGO7W1b7kAcYFMMZtWk6Qz0N4Zw.svg\"},className:\"framer-d38ku4\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",children:\"Advanced SEO tactics for enhanced online visibility.\"})}),className:\"framer-8qtbh\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p9wuq2\",\"data-framer-name\":\"Linear Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tqxgzn\",\"data-framer-name\":\"Line\"})]})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-14tv3jz\",\"data-framer-name\":\"Industry Insight\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o8fo3a\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j79oft\",\"data-framer-name\":\"Abstract Background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Texture Background\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+4376.6+0+0),pixelHeight:1140,pixelWidth:2878,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png\",srcSet:\"https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png 2878w\"}},LeUDAL3J1:{background:{alt:\"Texture Background\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+3616.8+0+0),pixelHeight:1140,pixelWidth:2878,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png\",srcSet:\"https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png 2878w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Texture Background\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+3034.8+0+0),pixelHeight:1140,pixelWidth:2878,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png\",srcSet:\"https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6hp4XCjXHDtpkGmVBUA1lWMW4U.png 2878w\"},className:\"framer-1ojei9a\",\"data-framer-name\":\"Bg Texture\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cml029\",\"data-framer-name\":\"Radial Gradient\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nz0it5\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jjtc50\",\"data-styles-preset\":\"otR1sty3h\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Industry Insights\"})}),className:\"framer-56hp1m\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1so2for\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Website Design Impacts Customer Retention\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UmV0aGluayBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Website Design Impacts Customer Retention\"})}),className:\"framer-tudo6\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Rethink Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hs8fsl\",\"data-framer-name\":\"Paragraph\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jjtc50\",\"data-styles-preset\":\"otR1sty3h\",children:\"Capture and retain more customers by optimizing your website's design for engagement.\"})}),className:\"framer-pye65n\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":JcTPxKRVq\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":JcTPxKRVq\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":JcTPxKRVq\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} - 90px, 300px)`,y:(componentViewport?.y||0)+0+9861.2+0+4376.6+50+534},LeUDAL3J1:{y:(componentViewport?.y||0)+0+8561.2+0+3616.8+80+738}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+8279.6+0+3034.8+100+738,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ce4mkl-container\",nodeId:\"Tx9jjO3PL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{style:{maxWidth:\"100%\",width:\"100%\"},ZvjocOTJv:resolvedLinks5[2]},LeUDAL3J1:{ZvjocOTJv:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(ButtonsPrimaryButton,{E4fAQIzGx:\"12px 20px 12px 20px\",height:\"100%\",id:\"Tx9jjO3PL\",iwEsvMhc8:\"Start a Project\",layoutId:\"Tx9jjO3PL\",o6CCkd0YV:false,variant:\"sp53JEiYC\",width:\"100%\",ZvjocOTJv:resolvedLinks5[0]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Right Side Background\",fit:\"stretch\",intrinsicHeight:527,intrinsicWidth:378,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+4376.6+2),pixelHeight:415,pixelWidth:216,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7lbbiPQgUFsItofnEFIKgrdnMXc.svg\"}},LeUDAL3J1:{background:{alt:\"Right Side Background\",fit:\"stretch\",intrinsicHeight:527,intrinsicWidth:378,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+3616.8+2),pixelHeight:506,pixelWidth:289,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lO6iO2l5t8mUxzIrTre7zaRZ6DQ.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:600,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Right Side Background\",fit:\"stretch\",intrinsicHeight:527,intrinsicWidth:378,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+3034.8+2),pixelHeight:527,pixelWidth:378,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.34)`,src:\"https://framerusercontent.com/images/XUV3B79RFYJmks4RdcuhqtsLo1k.svg\",srcSet:\"https://framerusercontent.com/images/XUV3B79RFYJmks4RdcuhqtsLo1k.svg 378w\"},className:\"framer-645rte\",\"data-framer-name\":\"Abstract Background\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Left Side Background\",fit:\"stretch\",intrinsicHeight:527,intrinsicWidth:378,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9861.2+0+4376.6+0),pixelHeight:415,pixelWidth:216,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/M6sO3fA0k60sOnxkNNj581XaE5k.svg\"}},LeUDAL3J1:{background:{alt:\"Left Side Background\",fit:\"stretch\",intrinsicHeight:527,intrinsicWidth:378,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8561.2+0+3616.8+0),pixelHeight:506,pixelWidth:289,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GEFNCgslWyCZ2uWw92Ob4HTecBs.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:600,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Left Side Background\",fit:\"stretch\",intrinsicHeight:527,intrinsicWidth:378,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8279.6+0+3034.8+0),pixelHeight:527,pixelWidth:378,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.34)`,src:\"https://framerusercontent.com/images/JmnNBcgGwOAnsO70g5notRa1v1k.svg\",srcSet:\"https://framerusercontent.com/images/JmnNBcgGwOAnsO70g5notRa1v1k.svg 378w\"},className:\"framer-82oxwk\",\"data-framer-name\":\"Abstract Background\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vmbxwx\",\"data-framer-name\":\"Body Bottom\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-68oes4\",\"data-framer-name\":\"Result & Analytics\",id:elementId10,ref:ref11,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14d48n5\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+0+0+285.4+234.3818),pixelHeight:231,pixelWidth:313,src:\"https://framerusercontent.com/images/T1ZZ2IZibbSkeOrnrasRb6Ebc.svg\"}},LeUDAL3J1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+0+0+295.4+311.1358),pixelHeight:231,pixelWidth:313,src:\"https://framerusercontent.com/images/T1ZZ2IZibbSkeOrnrasRb6Ebc.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+0+0+311.1358),pixelHeight:231,pixelWidth:313,src:\"https://framerusercontent.com/images/T1ZZ2IZibbSkeOrnrasRb6Ebc.svg\"},className:\"framer-1m2iqus\",\"data-framer-name\":\"Grid\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pz9lyr\",\"data-framer-name\":\"Light\",id:\"1pz9lyr\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f1d8mr\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+0+0+285.4+0+0+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"}},LeUDAL3J1:{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+0+0+295.4+0+0+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+0+0+0+0+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"},className:\"framer-p80xd6\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ys9a5d\",\"data-framer-name\":\"Line\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w82hi3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wrsj5b-container\",isAuthoredByUser:true,nodeId:\"Qs9wpFMUv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:20,font:{fontFamily:'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},fontColor:\"var(--token-f9309884-f46f-42e8-b972-778e14c80307, rgb(229, 235, 255))\",fontSize:45,height:\"100%\",id:\"Qs9wpFMUv\",layoutId:\"Qs9wpFMUv\",loop:false,prefix:\"\",speed:20,startNumber:1,suffix:\"+\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\"},children:\"Happy Customers\"})}),className:\"framer-akl0a8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ekaa8p\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+0+0+285.4+0+180+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"}},LeUDAL3J1:{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+0+0+295.4+0+0+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+0+0+0+0+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"},className:\"framer-1bdt6kb\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r5lmwn\",\"data-framer-name\":\"Line\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4bz0n5-container\",isAuthoredByUser:true,nodeId:\"ttDK_rQN9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:25,font:{fontFamily:'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},fontColor:\"var(--token-f9309884-f46f-42e8-b972-778e14c80307, rgb(229, 235, 255))\",fontSize:45,height:\"100%\",id:\"ttDK_rQN9\",layoutId:\"ttDK_rQN9\",loop:false,prefix:\"\",speed:20,startNumber:3,suffix:\"+\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\"},children:\"Projects Completed\"})}),className:\"framer-tjksm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3rntqz\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+0+0+285.4+0+360+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"}},LeUDAL3J1:{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+0+0+295.4+0+437+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+0+0+0+437+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"},className:\"framer-9rcrvc\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ljy3hs\",\"data-framer-name\":\"Line\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11otsrn-container\",isAuthoredByUser:true,nodeId:\"iwQHlhm9P\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:2,font:{fontFamily:'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},fontColor:\"var(--token-f9309884-f46f-42e8-b972-778e14c80307, rgb(229, 235, 255))\",fontSize:45,height:\"100%\",id:\"iwQHlhm9P\",layoutId:\"iwQHlhm9P\",loop:false,prefix:\"\",speed:90,startNumber:1,suffix:\"+\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\"},children:\"Years of Experience\"})}),className:\"framer-10z1pkd\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5zyo43\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+0+0+285.4+0+540+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"}},LeUDAL3J1:{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+0+0+295.4+0+437+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Card Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+0+0+0+437+0),pixelHeight:160,pixelWidth:281,src:\"https://framerusercontent.com/images/WcrHWFTN7cBpOOCJ3uhVkpsJXQ.svg\"},className:\"framer-myngtj\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wxfuw7\",\"data-framer-name\":\"Line\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x5jldq-container\",isAuthoredByUser:true,nodeId:\"nnmgMQTdJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:10,font:{fontFamily:'\"Rethink Sans\", \"Rethink Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},fontColor:\"var(--token-f9309884-f46f-42e8-b972-778e14c80307, rgb(229, 235, 255))\",fontSize:45,height:\"100%\",id:\"nnmgMQTdJ\",layoutId:\"nnmgMQTdJ\",loop:false,prefix:\"\",speed:20,startNumber:1,suffix:\"+\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\"},children:\"Team Members\"})}),className:\"framer-127mx15\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cjwuli\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sb9xz\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8fblsr\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Results & Analytics\"})}),className:\"framer-1piq3jf\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Performance Insights and Analytics Overview\"})})},LeUDAL3J1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Performance Insights and Analytics Overview\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",style:{\"--framer-text-alignment\":\"left\"},children:\"Performance Insights and Analytics Overview\"})}),className:\"framer-cr226q\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17qq25n\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j5tet3\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-59cd66d6-36bb-4bdb-9ad2-2a08345c93a4, rgb(225, 227, 233))\"},children:\"Trusted by Leading Brands\"})}),className:\"framer-h84czk\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16cs26t\",\"data-framer-name\":\"Line\"}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wyolbp hidden-72rtr7\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cf9ok\",\"data-framer-name\":\"Ticker Wrap\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bwxuwz hidden-1nnxuaf hidden-1wemmbm\",\"data-framer-name\":\"Gradient\"}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fudlte hidden-1nnxuaf hidden-1wemmbm\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10gahqs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qBtIYY7Mz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:4,height:\"100%\",hoverFactor:1,id:\"qBtIYY7Mz\",layoutId:\"qBtIYY7Mz\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/tX5t5zvtBHZvqfRjy8qFQVo3XrM.svg\"},className:\"framer-y1pd2s\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/eMzGPVJMpdDgggvfg1Dlk0Cqw8.svg\"},className:\"framer-1py0tlb\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/2IxQ8yBsSOmnAJkXm8PlYSuIA.svg\"},className:\"framer-1ifyxw\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/6gn4mx43rDdkfL06zwMuuMxn04I.svg\"},className:\"framer-4nt9bc\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/zX6uTbw5hlEkPCsvSrYbEkCnaF0.svg\"},className:\"framer-1ahbo9\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/Sf2OtVBvA8GHEI8OJADHK5tTAw.svg\"},className:\"framer-1bkvsyv\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/44hqjxw022dRKGk9woaDqsq5YYE.svg\"},className:\"framer-1htcryw\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/eH1eLwU7Bo5VgQWXCjn8wOCu9NE.svg\"},className:\"framer-1rd2di6\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/AVjWrX3JWvNDyyeoMiiET9amMjE.svg\"},className:\"framer-11796xf\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/ebjcb9K2rNqqTN55ko4CJbLpfM.svg\"},className:\"framer-eq4ibd\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/OHwvUQvHGCZshMblM9hINVvmbs.svg\"},className:\"framer-lcoord\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Company Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:120,src:\"https://framerusercontent.com/images/hG35hyKVsCUbLCg0Z7tGb5y6Lg.svg\"},className:\"framer-ysf0an\",\"data-framer-name\":\"Logo\"})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-pk196g\",\"data-framer-name\":\"Pricing\",id:elementId11,ref:ref12,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wn5p1f\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:160,width:\"428px\",y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+0+-25},LeUDAL3J1:{height:260,width:\"695px\",y:(componentViewport?.y||0)+0+13281+0+1299.4+0+0+-64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:268,width:\"717px\",y:(componentViewport?.y||0)+0+12507.4+0+1054+0+0+-68,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xbp8ch-container\",nodeId:\"mqlgmwx7S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperBackground,{height:\"100%\",i61sJSAbx:\"Eight\",id:\"mqlgmwx7S\",layoutId:\"mqlgmwx7S\",style:{height:\"100%\",width:\"100%\"},variant:\"r6R5UgO9g\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rgpboy\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Pricing\"})}),className:\"framer-1v4i06t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gvs9s\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:\"Transparent Pricing Options\"})}),className:\"framer-25idhb\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore our competitive pricing plans designed to meet diverse business needs and budgets.\"})}),className:\"framer-c8nj48\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1btlike\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1594psy\",\"data-framer-name\":\"Items Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gi7a7f\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-abg1mb\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+0+0+1),pixelHeight:403,pixelWidth:346,src:\"https://framerusercontent.com/images/EsPf5xDkIVTXAJkHR03G5V7QU.svg\"}},LeUDAL3J1:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+0+0+1),pixelHeight:403,pixelWidth:346,src:\"https://framerusercontent.com/images/EsPf5xDkIVTXAJkHR03G5V7QU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+1),pixelHeight:403,pixelWidth:346,src:\"https://framerusercontent.com/images/EsPf5xDkIVTXAJkHR03G5V7QU.svg\"},className:\"framer-pb9w5q\",\"data-framer-name\":\"Background\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r4g1zd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j3via4\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+0+0+30+0+0+0+63),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/q8PCK0iIVKHMPnxvnPcndYxbRHo.svg\"}},LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+0+0+30+0+0+0+63),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/q8PCK0iIVKHMPnxvnPcndYxbRHo.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+0+0+0+63),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/q8PCK0iIVKHMPnxvnPcndYxbRHo.svg\"},className:\"framer-q2oqmy\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tx4y0s\",\"data-styles-preset\":\"fiCnJZnWr\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Standard\"})}),className:\"framer-18ouw95\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sj41lh\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1apzna0\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-177nmvw\",\"data-styles-preset\":\"tApuA7q4Y\",children:\"\u20B930,000\"})}),className:\"framer-s4q86z\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10aeukx\",\"data-styles-preset\":\"bKrhIMCPv\",children:\"Perfect for a strong start\"})}),className:\"framer-w96d9g\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tyfngi\",\"data-framer-name\":\"Buttons Container\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+0+0+30+390.2+0+0},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+0+0+30+390.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+390.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pt7yy6-container\",nodeId:\"yULNJvCsj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{bpFxMLEgq:resolvedLinks6[2]},LeUDAL3J1:{bpFxMLEgq:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondaryButton,{BDoRw6qpq:\"Get Strated\",bpFxMLEgq:resolvedLinks6[0],CYrRJoCm6:false,EHjrljF63:false,H1wAYdpr0:\"14px 18px 14px 18px\",height:\"100%\",id:\"yULNJvCsj\",layoutId:\"yULNJvCsj\",style:{width:\"100%\"},variant:\"Buwu3gSIC\",vsYaxZvQF:false,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+0+0+30+390.2+0+61},LeUDAL3J1:{y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+0+0+30+390.2+0+61}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+390.2+0+61,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1075oiq-container\",nodeId:\"S8An0C6tW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperLink,{height:\"100%\",id:\"S8An0C6tW\",layoutId:\"S8An0C6tW\",TsYFO1LUx:\"cal.com\",width:\"100%\",ZN7ZyUH44:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8vo5yx\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",style:{\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"What's included:\"})}),className:\"framer-1t7mlxl\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nxotq7\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+0+0+30+524.2+0+153+0+0},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+0+0+30+524.2+0+153+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-34yqbj-container\",nodeId:\"XZCn4JvZN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"customized-designed website\",id:\"XZCn4JvZN\",layoutId:\"XZCn4JvZN\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+0+0+30+524.2+0+153+0+70},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+0+0+30+524.2+0+153+0+70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+70,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fi9n6k-container\",nodeId:\"Jc9lfsd7l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"Desktop & Mob Optimized\",id:\"Jc9lfsd7l\",layoutId:\"Jc9lfsd7l\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+0+0+30+524.2+0+153+0+140},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+0+0+30+524.2+0+153+0+140}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+140,children:/*#__PURE__*/_jsx(Container,{className:\"framer-olm364-container\",nodeId:\"S3WCfPzwc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"Animations & interactions\",id:\"S3WCfPzwc\",layoutId:\"S3WCfPzwc\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+0+0+30+524.2+0+153+0+210},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+0+0+30+524.2+0+153+0+210}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+210,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ba5n9-container\",nodeId:\"WGZDMqiwI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"SEO-friendly structure\\n\",id:\"WGZDMqiwI\",layoutId:\"WGZDMqiwI\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+0+0+30+524.2+0+153+0+280},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+0+0+30+524.2+0+153+0+280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+280,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uponeb-container\",nodeId:\"OJPoW9NSv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"2 revision round\\n\",id:\"OJPoW9NSv\",layoutId:\"OJPoW9NSv\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+0+0+30+524.2+0+153+0+350},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+0+0+30+524.2+0+153+0+350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5dch0l-container\",nodeId:\"jSWngZxpH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"7-day delivery\",id:\"jSWngZxpH\",layoutId:\"jSWngZxpH\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11cgwzm\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i0zcsk\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+1171.2+1+0),pixelHeight:403,pixelWidth:346,src:\"https://framerusercontent.com/images/EsPf5xDkIVTXAJkHR03G5V7QU.svg\"}},LeUDAL3J1:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+1191.2+1+0),pixelHeight:403,pixelWidth:346,src:\"https://framerusercontent.com/images/EsPf5xDkIVTXAJkHR03G5V7QU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+1+0),pixelHeight:403,pixelWidth:346,src:\"https://framerusercontent.com/images/EsPf5xDkIVTXAJkHR03G5V7QU.svg\"},className:\"framer-1hqesi9\",\"data-framer-name\":\"Lines\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vgldm2\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8df05a3e-88ed-41cb-8776-b8209a1b500f, rgb(239, 243, 255))\"},children:\"Recommended\"})}),className:\"framer-1i5ibjg\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-den01c\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-159t0go\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bxs6kk\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+1171.2+1+147+30+0+0+0+63),pixelHeight:24,pixelWidth:25,src:\"https://framerusercontent.com/images/TeFFctk0IZbLbLfEaDK7CzFyrUc.svg\"}},LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+1191.2+1+147+30+0+0+0+63),pixelHeight:24,pixelWidth:25,src:\"https://framerusercontent.com/images/TeFFctk0IZbLbLfEaDK7CzFyrUc.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+1+147+30+0+0+0+63),pixelHeight:24,pixelWidth:25,src:\"https://framerusercontent.com/images/TeFFctk0IZbLbLfEaDK7CzFyrUc.svg\"},className:\"framer-1lgu1sl\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tx4y0s\",\"data-styles-preset\":\"fiCnJZnWr\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Pro\"})}),className:\"framer-dwpdcp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vn649i\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-knhsc3\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-177nmvw\",\"data-styles-preset\":\"tApuA7q4Y\",children:\"\u20B950,000\"})}),className:\"framer-18tvk4i\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10aeukx\",\"data-styles-preset\":\"bKrhIMCPv\",children:\"UX research focused\"})}),className:\"framer-16zok8l\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s868at\",\"data-framer-name\":\"Buttons Container\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px) - 62px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+1171.2+1+147+30+390.2+0+0},LeUDAL3J1:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 302px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+1191.2+1+147+30+390.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 62px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+1+147+30+390.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u7wsft-container\",nodeId:\"K0g_qHgMH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{bpFxMLEgq:resolvedLinks7[2]},LeUDAL3J1:{bpFxMLEgq:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondaryButton,{BDoRw6qpq:\"Get Strated\",bpFxMLEgq:resolvedLinks7[0],CYrRJoCm6:false,EHjrljF63:false,H1wAYdpr0:\"14px 18px 14px 18px\",height:\"100%\",id:\"K0g_qHgMH\",layoutId:\"K0g_qHgMH\",style:{width:\"100%\"},variant:\"Buwu3gSIC\",vsYaxZvQF:false,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+1171.2+1+147+30+390.2+0+61},LeUDAL3J1:{y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+1191.2+1+147+30+390.2+0+61}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+1+147+30+390.2+0+61,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rtn5jf-container\",nodeId:\"DWd150L0N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperLink,{height:\"100%\",id:\"DWd150L0N\",layoutId:\"DWd150L0N\",TsYFO1LUx:\"cal.com\",width:\"100%\",ZN7ZyUH44:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gz1z5h\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",style:{\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"What's included:\"})}),className:\"framer-1dkttd5\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vq69va\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px) - 62px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+1171.2+1+147+30+524.2+0+153+0+0},LeUDAL3J1:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 302px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+1191.2+1+147+30+524.2+0+153+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 62px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+1+147+30+524.2+0+153+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a1rp3z-container\",nodeId:\"T3Vuz5mU8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"CMS integration\",id:\"T3Vuz5mU8\",layoutId:\"T3Vuz5mU8\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px) - 62px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+1171.2+1+147+30+524.2+0+153+0+70},LeUDAL3J1:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 302px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+1191.2+1+147+30+524.2+0+153+0+70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 62px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+1+147+30+524.2+0+153+0+70,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l5tx0x-container\",nodeId:\"SAYSMrzag\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"In-depth UX Research \",id:\"SAYSMrzag\",layoutId:\"SAYSMrzag\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px) - 62px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+1171.2+1+147+30+524.2+0+153+0+140},LeUDAL3J1:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 302px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+1191.2+1+147+30+524.2+0+153+0+140}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 62px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+1+147+30+524.2+0+153+0+140,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10fa6q5-container\",nodeId:\"cnVepsLK3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"Advanced animations & interactions\",id:\"cnVepsLK3\",layoutId:\"cnVepsLK3\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px) - 62px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+1171.2+1+147+30+524.2+0+153+0+210},LeUDAL3J1:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 302px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+1191.2+1+147+30+524.2+0+153+0+210}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 62px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+1+147+30+524.2+0+153+0+210,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1an6mv7-container\",nodeId:\"Qm2X3URk_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"Adv SEO-friendly structure\\n\",id:\"Qm2X3URk_\",layoutId:\"Qm2X3URk_\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px) - 62px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+1171.2+1+147+30+524.2+0+153+0+280},LeUDAL3J1:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 302px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+1191.2+1+147+30+524.2+0+153+0+280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 62px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+1+147+30+524.2+0+153+0+280,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q8rmyv-container\",nodeId:\"FfG8JvZUq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"2 revision rounds\",id:\"FfG8JvZUq\",layoutId:\"FfG8JvZUq\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px) - 62px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+1171.2+1+147+30+524.2+0+153+0+350},LeUDAL3J1:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 302px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+1191.2+1+147+30+524.2+0+153+0+350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 62px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+1+147+30+524.2+0+153+0+350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j00a7o-container\",nodeId:\"mW77kwahU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"15-day delivery\",id:\"mW77kwahU\",layoutId:\"mW77kwahU\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y3bvis\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1isk26e\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+2490.4+0+1),pixelHeight:403,pixelWidth:346,src:\"https://framerusercontent.com/images/EsPf5xDkIVTXAJkHR03G5V7QU.svg\"}},LeUDAL3J1:{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+2530.4+0+1),pixelHeight:403,pixelWidth:346,src:\"https://framerusercontent.com/images/EsPf5xDkIVTXAJkHR03G5V7QU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Line Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+1),pixelHeight:403,pixelWidth:346,src:\"https://framerusercontent.com/images/EsPf5xDkIVTXAJkHR03G5V7QU.svg\"},className:\"framer-14hk8j2\",\"data-framer-name\":\"Background\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b3awac\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pesa8m\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+2490.4+0+30+0+0+0+63),pixelHeight:24,pixelWidth:25,src:\"https://framerusercontent.com/images/Pl7lVMFgE2fw0SJ7QVYa9taxO8g.svg\"}},LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+2530.4+0+30+0+0+0+63),pixelHeight:24,pixelWidth:25,src:\"https://framerusercontent.com/images/Pl7lVMFgE2fw0SJ7QVYa9taxO8g.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+0+0+0+63),pixelHeight:24,pixelWidth:25,src:\"https://framerusercontent.com/images/Pl7lVMFgE2fw0SJ7QVYa9taxO8g.svg\"},className:\"framer-3w2ek2\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-tx4y0s\",\"data-styles-preset\":\"fiCnJZnWr\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Premium\"})}),className:\"framer-1p3ngvm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oe469m\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a3vw2y\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-177nmvw\",\"data-styles-preset\":\"tApuA7q4Y\",children:\"\u20B91,30,000\"})}),className:\"framer-6tc9uu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10aeukx\",\"data-styles-preset\":\"bKrhIMCPv\",children:\"High-performance design\"})}),className:\"framer-szhuqz\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3dw0gi\",\"data-framer-name\":\"Buttons Container\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+2490.4+0+30+390.2+0+0},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+2530.4+0+30+390.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+390.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a7y2qy-container\",nodeId:\"EhNCh00CQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{bpFxMLEgq:resolvedLinks8[2]},LeUDAL3J1:{bpFxMLEgq:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(ButtonsSecondaryButton,{BDoRw6qpq:\"Get Strated\",bpFxMLEgq:resolvedLinks8[0],CYrRJoCm6:false,EHjrljF63:false,H1wAYdpr0:\"14px 18px 14px 18px\",height:\"100%\",id:\"EhNCh00CQ\",layoutId:\"EhNCh00CQ\",style:{width:\"100%\"},variant:\"Buwu3gSIC\",vsYaxZvQF:false,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+2490.4+0+30+390.2+0+61},LeUDAL3J1:{y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+2530.4+0+30+390.2+0+61}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+390.2+0+61,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6xi73d-container\",nodeId:\"XNEJHFH6u\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperLink,{height:\"100%\",id:\"XNEJHFH6u\",layoutId:\"XNEJHFH6u\",TsYFO1LUx:\"cal.com\",width:\"100%\",ZN7ZyUH44:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-78k9hj\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jzcp5h\",\"data-styles-preset\":\"Mcl3N1nfx\",style:{\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"What's included:\"})}),className:\"framer-1cztw6s\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bvphh5\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+2490.4+0+30+524.2+0+153+0+0},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+2530.4+0+30+524.2+0+153+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hf49r2-container\",nodeId:\"nQCaughh4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"Unlimited pages\",id:\"nQCaughh4\",layoutId:\"nQCaughh4\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+2490.4+0+30+524.2+0+153+0+70},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+2530.4+0+30+524.2+0+153+0+70}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+70,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7kx8ua-container\",nodeId:\"HMnxw65BX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"Comprehensive UX \",id:\"HMnxw65BX\",layoutId:\"HMnxw65BX\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+2490.4+0+30+524.2+0+153+0+140},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+2530.4+0+30+524.2+0+153+0+140}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+140,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yymwp6-container\",nodeId:\"RnIaGt_OS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"10 CMS Include\",id:\"RnIaGt_OS\",layoutId:\"RnIaGt_OS\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+2490.4+0+30+524.2+0+153+0+210},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+2530.4+0+30+524.2+0+153+0+210}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+210,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nwrecj-container\",nodeId:\"zlaLYh4Ml\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"Performance optimization\\n\",id:\"zlaLYh4Ml\",layoutId:\"zlaLYh4Ml\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+2490.4+0+30+524.2+0+153+0+280},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+2530.4+0+30+524.2+0+153+0+280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+280,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ookn1q-container\",nodeId:\"apH7hJ_BJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"Animations & micro-interactions\",id:\"apH7hJ_BJ\",layoutId:\"apH7hJ_BJ\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1px) - 60px)`,y:(componentViewport?.y||0)+0+15026.8+0+1085.4+0+306.4+0+0+0+2490.4+0+30+524.2+0+153+0+350},LeUDAL3J1:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 240px, 1px) - 60px)`,y:(componentViewport?.y||0)+0+13281+0+1299.4+0+316.4+0+0+0+2530.4+0+30+524.2+0+153+0+350}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 140px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+12507.4+0+1054+0+316.4+0+0+0+36+30+524.2+0+153+0+350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7781ow-container\",nodeId:\"mXQjixRAY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperPricingPointer,{height:\"100%\",HgB064Vz0:\"24-days delivery\\n\",id:\"mXQjixRAY\",layoutId:\"mXQjixRAY\",style:{width:\"100%\"},variant:\"o_utWabCT\",width:\"100%\"})})})})]})]})]})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-11gezq2\",\"data-framer-name\":\"Features\",id:elementId12,ref:ref13,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j9ni15\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:160,width:\"440px\",y:(componentViewport?.y||0)+0+15026.8+0+5133.4+0+0+-45},LeUDAL3J1:{height:260,width:\"716px\",y:(componentViewport?.y||0)+0+13281+0+5447.4+0+0+-84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:\"883px\",y:(componentViewport?.y||0)+0+12507.4+0+2869.6+0+0+-114,children:/*#__PURE__*/_jsx(Container,{className:\"framer-84brwd-container\",nodeId:\"InxHDZlVg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperBackground,{height:\"100%\",i61sJSAbx:\"Nine\",id:\"InxHDZlVg\",layoutId:\"InxHDZlVg\",style:{height:\"100%\",width:\"100%\"},variant:\"iW0e8BRO4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s6nn6q\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Feature\"})}),className:\"framer-1mioi9f\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s0h3ti\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:\"Key Features Overview\"})}),className:\"framer-1in0hbg\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Explore the comprehensive features that set BrandBurn apart in web design excellence.\"})}),className:\"framer-cv832e\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mlrawq\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5mi8i\",\"data-framer-name\":\"Card Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 400px)`,y:(componentViewport?.y||0)+0+15026.8+0+5133.4+0+306.4+0+0+0+0},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+13281+0+5447.4+0+316.4+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,width:`max((max(min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) * 0.6787 - 20px, 1px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+12507.4+0+2869.6+0+336.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jv9fxu-container\",nodeId:\"wK7gGOh91\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{variant:\"N44gxtpdn\"},LeUDAL3J1:{variant:\"N44gxtpdn\"}},children:/*#__PURE__*/_jsx(CardsFeatureCard1,{height:\"100%\",id:\"wK7gGOh91\",layoutId:\"wK7gGOh91\",style:{height:\"100%\",width:\"100%\"},variant:\"SfFsoc3d6\",width:\"100%\",Z9AfFpsg3:\"Empower your business to thrive with our tailored web design solutions.\",zzm203ZdU:\"Fuel Your Growth\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 400px)`,y:(componentViewport?.y||0)+0+15026.8+0+5133.4+0+306.4+0+0+0+356},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+13281+0+5447.4+0+316.4+0+0+.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:`max((max(min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) * 0.6787 - 20px, 1px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+12507.4+0+2869.6+0+336.4+0+.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v9m2q1-container\",nodeId:\"GqRLC8m0z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{variant:\"MGKYffkKO\"},LeUDAL3J1:{variant:\"MGKYffkKO\"}},children:/*#__PURE__*/_jsx(CardsFeatureCard2,{height:\"100%\",I0KtDm67s:\"Join a community of satisfied clients benefiting from our proven excellence.\",id:\"GqRLC8m0z\",jxpw6yvEh:\"100% Client Success Rate\",layoutId:\"GqRLC8m0z\",style:{height:\"100%\",width:\"100%\"},variant:\"vv2ZNc6Xi\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:339,width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 400px)`,y:(componentViewport?.y||0)+0+15026.8+0+5133.4+0+306.4+0+711},LeUDAL3J1:{height:343,width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) * 0.49)`,y:(componentViewport?.y||0)+0+13281+0+5447.4+0+316.4+0+356}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) * 0.3213)`,y:(componentViewport?.y||0)+0+12507.4+0+2869.6+0+336.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nb1pwq-container\",nodeId:\"J_YlvvzHH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{variant:\"xssdcmJUN\"},LeUDAL3J1:{variant:\"xssdcmJUN\"}},children:/*#__PURE__*/_jsx(CardsFeatureCard3,{A5s7EgHee:\"Stay ahead with innovative web designs crafted by Brandburn\",fTw5h1r00:\"Lead the Way\",height:\"100%\",id:\"J_YlvvzHH\",layoutId:\"J_YlvvzHH\",style:{height:\"100%\",width:\"100%\"},variant:\"M2AJLbAe_\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lyrrsk\",\"data-framer-name\":\"Our Blogs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rt7pa\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:160,width:\"428px\",y:(componentViewport?.y||0)+0+15026.8+0+6589.8+0+0+-23},LeUDAL3J1:{height:260,width:\"695px\",y:(componentViewport?.y||0)+0+13281+0+6612.8+0+0+-64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:268,width:\"717px\",y:(componentViewport?.y||0)+0+12507.4+0+3742+0+0+-68,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hojqsu-container\",nodeId:\"vcEkDcKzI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperBackground,{height:\"100%\",i61sJSAbx:\"Five\",id:\"vcEkDcKzI\",layoutId:\"vcEkDcKzI\",style:{height:\"100%\",width:\"100%\"},variant:\"r6R5UgO9g\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hjz8a9\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"Our Blogs\"})}),className:\"framer-18oiwew\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ov0rxs\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:\"News, insights and more\"})}),className:\"framer-yrgy9b\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dive into our blog for expert insights, tips, and industry trends to elevateyour project management journey.\"})}),className:\"framer-1oxcalt\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fhels3\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uo551i\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LeUDAL3J1:{query:{from:{alias:\"lCb5KpzNo\",data:Blogs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"lCb5KpzNo\",name:\"UdjOnwSXl\",type:\"Identifier\"},{collection:\"lCb5KpzNo\",name:\"jLOlWE_7p\",type:\"Identifier\"},{collection:\"lCb5KpzNo\",name:\"QxvCbteLQ\",type:\"Identifier\"},{collection:\"lCb5KpzNo\",name:\"wX1pknWSM\",type:\"Identifier\"},{collection:\"lCb5KpzNo\",name:\"pZu3NBvaI\",type:\"Identifier\"},{collection:\"lCb5KpzNo\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lCb5KpzNo\",data:Blogs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"lCb5KpzNo\",name:\"UdjOnwSXl\",type:\"Identifier\"},{collection:\"lCb5KpzNo\",name:\"jLOlWE_7p\",type:\"Identifier\"},{collection:\"lCb5KpzNo\",name:\"QxvCbteLQ\",type:\"Identifier\"},{collection:\"lCb5KpzNo\",name:\"wX1pknWSM\",type:\"Identifier\"},{collection:\"lCb5KpzNo\",name:\"pZu3NBvaI\",type:\"Identifier\"},{collection:\"lCb5KpzNo\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idlCb5KpzNo,jLOlWE_7p:jLOlWE_7plCb5KpzNo,pZu3NBvaI:pZu3NBvaIlCb5KpzNo,QxvCbteLQ:QxvCbteLQlCb5KpzNo,UdjOnwSXl:UdjOnwSXllCb5KpzNo,wX1pknWSM:wX1pknWSMlCb5KpzNo},index1)=>{wX1pknWSMlCb5KpzNo??=\"\";pZu3NBvaIlCb5KpzNo??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lCb5KpzNo-${idlCb5KpzNo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{pZu3NBvaI:pZu3NBvaIlCb5KpzNo},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{pZu3NBvaI:pZu3NBvaIlCb5KpzNo},webPageId:\"Ux50h3wbR\"},implicitPathVariables:undefined},{href:{pathVariables:{pZu3NBvaI:pZu3NBvaIlCb5KpzNo},webPageId:\"Ux50h3wbR\"},implicitPathVariables:undefined},{href:{pathVariables:{pZu3NBvaI:pZu3NBvaIlCb5KpzNo},webPageId:\"Ux50h3wbR\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`max(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 50px)`,y:(componentViewport?.y||0)+0+15026.8+0+6589.8+0+306.4+0+0+0+0},LeUDAL3J1:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 800px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+13281+0+6612.8+0+316.4+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:501,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+12507.4+0+3742+0+336.4+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3o2mlg-container\",nodeId:\"XlY2USKhL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{sYbF1g2HR:resolvedLinks9[2],variant:\"MboNi5442\"},LeUDAL3J1:{sYbF1g2HR:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(CardsBlogCard,{FAZlrKcr5:toResponsiveImage(UdjOnwSXllCb5KpzNo),height:\"100%\",id:\"XlY2USKhL\",kHtMstJO3:enumToDisplayNameFunctions1[\"jLOlWE_7p\"]?.(jLOlWE_7plCb5KpzNo,activeLocale),layoutId:\"XlY2USKhL\",ODF9W8laC:wX1pknWSMlCb5KpzNo,style:{width:\"100%\"},sYbF1g2HR:resolvedLinks9[0],variant:\"Om1lI2Xg3\",width:\"100%\",Xi66D1fWI:toDateString(QxvCbteLQlCb5KpzNo,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode)})})})})})})})},idlCb5KpzNo);})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{y:(componentViewport?.y||0)+0+15026.8+0+6589.8+0+306.4+0+571},LeUDAL3J1:{y:(componentViewport?.y||0)+0+13281+0+6612.8+0+316.4+0+561}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+12507.4+0+3742+0+336.4+0+571,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aqpshm-container\",nodeId:\"x46kQUKVN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonsSecondaryButton,{BDoRw6qpq:\"View All Blogs\",CYrRJoCm6:false,EHjrljF63:false,H1wAYdpr0:\"16px 20px 16px 20px\",height:\"100%\",id:\"x46kQUKVN\",layoutId:\"x46kQUKVN\",variant:\"Buwu3gSIC\",vsYaxZvQF:true,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1omp4p3\",\"data-framer-name\":\"FAQ\",id:elementId13,ref:ref14,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xuj2d2\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{height:159,width:\"440px\",y:(componentViewport?.y||0)+0+15026.8+0+7622.2+0+0+-45},LeUDAL3J1:{height:260,width:\"716px\",y:(componentViewport?.y||0)+0+13281+0+7695.2+0+0+-84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:\"882px\",y:(componentViewport?.y||0)+0+12507.4+0+4904.4+0+0+-114,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iidtbv-container\",nodeId:\"kp4TpmAPE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperBackground,{height:\"100%\",i61sJSAbx:\"Eleven\",id:\"kp4TpmAPE\",layoutId:\"kp4TpmAPE\",style:{height:\"100%\",width:\"100%\"},variant:\"iW0e8BRO4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-52y3ee\",\"data-border\":true,\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-color\":\"var(--token-7ee28b8f-420f-4d85-9988-ce51fb6e8852, rgb(204, 215, 255))\"},children:\"FAQ\u2019s\"})}),className:\"framer-1qky5z1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bi7xs2\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:\"Frequently Asked Questions\"})}),className:\"framer-1v1shl3\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Answers to common questions about our services, processes, and what sets us apart.\"})}),className:\"framer-1mul0su\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w80isb\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1260px)`,y:(componentViewport?.y||0)+0+15026.8+0+7622.2+0+306.4+0+0},LeUDAL3J1:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, 800px), 1260px)`,y:(componentViewport?.y||0)+0+13281+0+7695.2+0+306.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1260px)`,y:(componentViewport?.y||0)+0+12507.4+0+4904.4+0+306.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12u84yx-container\",nodeId:\"dOEd303Ls\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{variant:\"cfFz6Miae\"},LeUDAL3J1:{variant:\"RNzrVxVAf\"}},children:/*#__PURE__*/_jsx(FAQContainer,{height:\"100%\",id:\"dOEd303Ls\",layoutId:\"dOEd303Ls\",style:{width:\"100%\"},variant:\"GJvnHWd0F\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4unaml\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6dhmx\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-inmec\",\"data-border\":true,\"data-framer-name\":\"Icon Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+7622.2+0+306.4+0+460+8+49.5+6+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/ZjgMIJH0NDQeRncPHoJGwf65M.svg\"}},LeUDAL3J1:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+7695.2+0+306.4+0+470+8+49.5+6+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/ZjgMIJH0NDQeRncPHoJGwf65M.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+4904.4+0+306.4+0+470+8+49.5+6+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/ZjgMIJH0NDQeRncPHoJGwf65M.svg\"},className:\"framer-1rgam3b\",\"data-framer-name\":\"Icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c63500d0-3392-49ff-b400-617c8d04a492, rgb(255, 255, 255))\"},children:\"Still Have a Question\"})}),className:\"framer-1sdwjey\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{y:(componentViewport?.y||0)+0+15026.8+0+7622.2+0+306.4+0+460+48},LeUDAL3J1:{y:(componentViewport?.y||0)+0+13281+0+7695.2+0+306.4+0+470+48}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+12507.4+0+4904.4+0+306.4+0+470+48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yi61ta-container\",nodeId:\"VPz9G0T3D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{ZvjocOTJv:resolvedLinks10[2]},LeUDAL3J1:{ZvjocOTJv:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(ButtonsPrimaryButton,{E4fAQIzGx:\"12px 20px 12px 20px\",height:\"100%\",id:\"VPz9G0T3D\",iwEsvMhc8:\"Ask Question\",layoutId:\"VPz9G0T3D\",o6CCkd0YV:false,variant:\"sp53JEiYC\",width:\"100%\",ZvjocOTJv:resolvedLinks10[0]})})})})})})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ihzyjp\",\"data-border\":true,\"data-framer-name\":\"CTA\",id:elementId14,ref:ref15,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t4jmgx\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Background Design\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+8639.6+6+0+-1),pixelHeight:343,pixelWidth:232,src:\"https://framerusercontent.com/images/jUjkRLmhkhvppSSBYZOnxJasEk.svg\"}},LeUDAL3J1:{background:{alt:\"Background Design\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+8772.6+8+0+0),pixelHeight:380,pixelWidth:327,src:\"https://framerusercontent.com/images/48ri2dVLQC8qajL8eodMYpmYB4.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:50,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Background Design\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+6031.8+8+0+0),pixelHeight:1712,pixelWidth:1672,sizes:\"498.7162px\",src:\"https://framerusercontent.com/images/C8iXhZOAtTSW3ZP6tIsYg6xPIlU.png\",srcSet:\"https://framerusercontent.com/images/C8iXhZOAtTSW3ZP6tIsYg6xPIlU.png?scale-down-to=1024 1000w,https://framerusercontent.com/images/C8iXhZOAtTSW3ZP6tIsYg6xPIlU.png 1672w\"},className:\"framer-1k0hph8\",\"data-framer-name\":\"Design\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Background Design\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+8639.6+6+0+0),pixelHeight:343,pixelWidth:232,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iusiYcS9aOMP5Ql2hyyP0UJ6yP8.svg\"}},LeUDAL3J1:{background:{alt:\"Background Design\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+8772.6+8+0+0),pixelHeight:380,pixelWidth:327,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/q1lMyooLfjlt2YmIqG2oNInw1i8.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:50,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Background Design\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+6031.8+8+0+0),pixelHeight:1712,pixelWidth:1676,positionX:\"center\",positionY:\"center\",sizes:\"498.7162px\",src:\"https://framerusercontent.com/images/XBtz1phaWuFmJnHyQtKgezPJHUU.png\",srcSet:\"https://framerusercontent.com/images/XBtz1phaWuFmJnHyQtKgezPJHUU.png?scale-down-to=1024 1002w,https://framerusercontent.com/images/XBtz1phaWuFmJnHyQtKgezPJHUU.png 1676w\"},className:\"framer-1a9af78\",\"data-framer-name\":\"Design\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cae81\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13q050f\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-otma36\",\"data-styles-preset\":\"vISVgjJlX\",children:\"Start Your Project\"})}),className:\"framer-dhumpw\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18w2i0a\",\"data-framer-name\":\"Paragraph Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v6dn59\",\"data-styles-preset\":\"lQdiPxxce\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8b751802-c4ad-424d-ba87-061787dcedbf, rgb(109, 119, 146))\"},children:\"Contact us today to start crafting your exceptional and customized website solution.\"})}),className:\"framer-5gzwna\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rvtcz9\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-20xkrk\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Tick icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+8639.6+6+0+40+0+0+217.4+0+0+8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/kWedhcFiMFVAegynh5rxadiQA0.svg\"}},LeUDAL3J1:{background:{alt:\"Tick icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+8772.6+8+0+60+0+0+217.4+0+8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/kWedhcFiMFVAegynh5rxadiQA0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tick icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+6031.8+8+0+80+0+0+217.4+0+8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/kWedhcFiMFVAegynh5rxadiQA0.svg\"},className:\"framer-33u47i\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zfaahk\",\"data-styles-preset\":\"v3p2ahbsR\",children:\"Customized design\"})}),className:\"framer-1xp14h\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ar9r7\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Tick icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+8639.6+6+0+40+0+0+217.4+0+46+8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/kWedhcFiMFVAegynh5rxadiQA0.svg\"}},LeUDAL3J1:{background:{alt:\"Tick icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+8772.6+8+0+60+0+0+217.4+0+8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/kWedhcFiMFVAegynh5rxadiQA0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tick icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+6031.8+8+0+80+0+0+217.4+0+8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/kWedhcFiMFVAegynh5rxadiQA0.svg\"},className:\"framer-1ruwj9v\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zfaahk\",\"data-styles-preset\":\"v3p2ahbsR\",children:\"Ongoing support\"})}),className:\"framer-1xxrywc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-em3xqe\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{background:{alt:\"Tick icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15026.8+0+8639.6+6+0+40+0+0+217.4+0+92+8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/kWedhcFiMFVAegynh5rxadiQA0.svg\"}},LeUDAL3J1:{background:{alt:\"Tick icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13281+0+8772.6+8+0+60+0+0+217.4+0+8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/kWedhcFiMFVAegynh5rxadiQA0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Tick icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12507.4+0+6031.8+8+0+80+0+0+217.4+0+8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/kWedhcFiMFVAegynh5rxadiQA0.svg\"},className:\"framer-p7gwl4\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zfaahk\",\"data-styles-preset\":\"v3p2ahbsR\",children:\"Fast delivery\"})}),className:\"framer-1qk12ul\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined},{href:{webPageId:\"j9bKKlYIF\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9, 400px), 1180px) - 92px)`,y:(componentViewport?.y||0)+0+15026.8+0+8639.6+6+0+40+375.4},LeUDAL3J1:{y:(componentViewport?.y||0)+0+13281+0+8772.6+8+0+60+293.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+12507.4+0+6031.8+8+0+80+293.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hqzfho-container\",nodeId:\"Ws1AIQmrT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{style:{width:\"100%\"},ZvjocOTJv:resolvedLinks11[2]},LeUDAL3J1:{ZvjocOTJv:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(ButtonsPrimaryButton,{E4fAQIzGx:\"14px 20px 14px 20px\",height:\"100%\",id:\"Ws1AIQmrT\",iwEsvMhc8:\"Start a Project\",layoutId:\"Ws1AIQmrT\",o6CCkd0YV:false,variant:\"sp53JEiYC\",width:\"100%\",ZvjocOTJv:resolvedLinks11[0]})})})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{y:(componentViewport?.y||0)+0+24288.8},LeUDAL3J1:{y:(componentViewport?.y||0)+0+22688}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:489,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+19263.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10lsyyt-container\",nodeId:\"Rp800EWtR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{variant:\"MXRbUvkEM\"},LeUDAL3J1:{variant:\"bngMmqv_H\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Rp800EWtR\",layoutId:\"Rp800EWtR\",style:{width:\"100%\"},variant:\"J1YMsoh0J\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:872,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ek784-container\",layoutScroll:true,nodeId:\"B_2hpges7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L3kCwAA4H:{variant:\"yG0vNXBvU\"},LeUDAL3J1:{variant:\"yG0vNXBvU\"}},children:/*#__PURE__*/_jsx(ButtonsFloatingBtn,{height:\"100%\",id:\"B_2hpges7\",layoutId:\"B_2hpges7\",variant:\"CvqIhNTnQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:946,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lpe29j-container\",layoutScroll:true,nodeId:\"yT9DsccuG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HelperFigmaButton,{height:\"100%\",id:\"yT9DsccuG\",layoutId:\"yT9DsccuG\",qlE34ZEf9:\"https://shop.oxygen.supply/buy/621a9169-591c-408c-980a-2624ef8137fd\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-I24XY.framer-lux5qc, .framer-I24XY .framer-lux5qc { display: block; }\",\".framer-I24XY.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-6cf39457-d957-4967-8059-39c512f3137e, #00020f); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-I24XY .framer-174z0xa-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-I24XY .framer-1bzqgr6 { -webkit-user-select: none; flex: none; height: 870px; left: 0px; overflow: visible; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; z-index: 0; }\",\".framer-I24XY .framer-19xj8v4 { -webkit-mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 9.00900900900901%, rgb(0, 0, 0) 88.73873873873875%, rgba(0, 0, 0, 0) 100%) add; -webkit-user-select: none; flex: none; height: 954px; left: calc(50.00000000000002% - 1440px / 2); mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 9.00900900900901%, rgb(0, 0, 0) 88.73873873873875%, rgba(0, 0, 0, 0) 100%) add; overflow: hidden; pointer-events: none; position: absolute; top: 0px; user-select: none; width: 1440px; will-change: var(--framer-will-change-effect-override, transform); z-index: 7; }\",\".framer-I24XY .framer-1kerl7k { -webkit-mask: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 1) 91.8918918918919%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 601px; mask: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 1) 91.8918918918919%, rgba(0, 0, 0, 0) 100%) add; opacity: 0.6; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 664px; z-index: 3; }\",\".framer-I24XY .framer-m4zssk-container { flex: none; height: 290px; position: absolute; right: 0px; top: 0px; width: 306px; }\",\".framer-I24XY .framer-1myh9u8 { -webkit-mask: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 1) 91.8918918918919%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 618px; left: 0px; mask: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 1) 91.8918918918919%, rgba(0, 0, 0, 0) 100%) add; opacity: 0.6; overflow: hidden; position: absolute; top: 0px; width: 664px; }\",\".framer-I24XY .framer-lv8r9e-container { flex: none; height: 290px; left: 0px; position: absolute; top: 0px; width: 306px; }\",\".framer-I24XY .framer-73dn7q-container { flex: none; height: 199px; left: calc(50.00000000000002% - 50% / 2); position: absolute; top: 0px; width: 50%; }\",\".framer-I24XY .framer-8fioq8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 220px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-qxgjp8, .framer-I24XY .framer-1lltxt6, .framer-I24XY .framer-rvtcz9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-f1sy2j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-9fsph6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 780px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-167fvm2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1h4qh6o { align-content: flex-start; align-items: flex-start; background-color: rgba(0, 2, 15, 0.05); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-I24XY .framer-10fx7dv { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(6px); align-content: center; align-items: center; backdrop-filter: blur(6px); background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 8px 10.899999618530273px 0px rgba(0, 3, 18, 0.12), 0px 1px 1px 0px rgba(0, 3, 18, 0.3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 8px 8px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-I24XY .framer-1xy465h, .framer-I24XY .framer-cb95il, .framer-I24XY .framer-df3u05, .framer-I24XY .framer-1wp6rl3, .framer-I24XY .framer-bzjdsa, .framer-I24XY .framer-18bqgm4, .framer-I24XY .framer-gzwr50, .framer-I24XY .framer-ttih8r, .framer-I24XY .framer-75mrch, .framer-I24XY .framer-438qz9, .framer-I24XY .framer-1fxgs1l, .framer-I24XY .framer-19vbb9w, .framer-I24XY .framer-wia4o5, .framer-I24XY .framer-1xi3oyd, .framer-I24XY .framer-353dro, .framer-I24XY .framer-rbywwm, .framer-I24XY .framer-1112q2z, .framer-I24XY .framer-hsk4oj, .framer-I24XY .framer-1awgitw, .framer-I24XY .framer-1piq3jf, .framer-I24XY .framer-h84czk, .framer-I24XY .framer-1v4i06t, .framer-I24XY .framer-s4q86z, .framer-I24XY .framer-18tvk4i, .framer-I24XY .framer-6tc9uu, .framer-I24XY .framer-1mioi9f, .framer-I24XY .framer-18oiwew, .framer-I24XY .framer-1qky5z1, .framer-I24XY .framer-1xp14h, .framer-I24XY .framer-1xxrywc, .framer-I24XY .framer-1qk12ul { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-I24XY .framer-z724t8 { align-content: center; align-items: center; background-color: #194eff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 4px 10px 4px 10px; position: relative; width: min-content; }\",\".framer-I24XY .framer-1kztfyh { flex: none; height: 18px; overflow: hidden; position: relative; width: 18px; }\",\".framer-I24XY .framer-1e8ubz0, .framer-I24XY .framer-1r2j1hm, .framer-I24XY .framer-h20z80, .framer-I24XY .framer-1so2for { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-19pbg3t, .framer-I24XY .framer-1rklj7r { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-I24XY .framer-1brff4n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 196px; }\",\".framer-I24XY .framer-1p77mir { 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: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-I24XY .framer-2hr3v8-container, .framer-I24XY .framer-6aj9i7-container, .framer-I24XY .framer-1yx57q4-container, .framer-I24XY .framer-1kervzz-container, .framer-I24XY .framer-l27gni-container, .framer-I24XY .framer-3u0htn-container, .framer-I24XY .framer-17cxumf-container, .framer-I24XY .framer-1bnc5bm-container, .framer-I24XY .framer-kjkuy0-container, .framer-I24XY .framer-sjr3xv-container, .framer-I24XY .framer-1gzli1b-container, .framer-I24XY .framer-1q0zafr-container, .framer-I24XY .framer-1922w41-container, .framer-I24XY .framer-xqcur7-container, .framer-I24XY .framer-9o9mw0-container, .framer-I24XY .framer-lunyh5-container, .framer-I24XY .framer-1ycqkks-container, .framer-I24XY .framer-hcu20v-container, .framer-I24XY .framer-jcblov-container, .framer-I24XY .framer-du48t3-container, .framer-I24XY .framer-1ce4mkl-container, .framer-I24XY .framer-1wrsj5b-container, .framer-I24XY .framer-4bz0n5-container, .framer-I24XY .framer-11otsrn-container, .framer-I24XY .framer-x5jldq-container, .framer-I24XY .framer-1075oiq-container, .framer-I24XY .framer-rtn5jf-container, .framer-I24XY .framer-6xi73d-container, .framer-I24XY .framer-aqpshm-container, .framer-I24XY .framer-yi61ta-container, .framer-I24XY .framer-1hqzfho-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-I24XY .framer-1gzobo1-container { flex: none; height: 354px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-I24XY .framer-1up9sjo, .framer-I24XY .framer-1kuffox { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-I24XY .framer-1941bx6-container { flex: none; height: 222px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-I24XY .framer-6hquf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1w5hmr0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-I24XY .framer-16oclgy { flex: none; height: 16px; overflow: hidden; position: relative; width: 96px; }\",\".framer-I24XY .framer-1wd23zf-container { flex: none; height: 42px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-I24XY .framer-9wgav, .framer-I24XY .framer-13bhhd9, .framer-I24XY .framer-1br35z1, .framer-I24XY .framer-187kh9c, .framer-I24XY .framer-4cuu20, .framer-I24XY .framer-1vkxwzs { height: 42px; overflow: hidden; position: relative; width: 126px; }\",\".framer-I24XY .framer-nh5zi3, .framer-I24XY .framer-1vmbxwx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; max-width: 1260px; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-I24XY .framer-pv4tkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1080px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-I24XY .framer-4b4y17, .framer-I24XY .framer-rt7pa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 525px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1lh0zo5-container, .framer-I24XY .framer-u352ii-container, .framer-I24XY .framer-xbp8ch-container, .framer-I24XY .framer-1hojqsu-container { flex: none; height: 268px; left: calc(50.00000000000002% - 717px / 2); position: absolute; top: -68px; width: 717px; z-index: 0; }\",\".framer-I24XY .framer-1dufrjs, .framer-I24XY .framer-hecd5g, .framer-I24XY .framer-1kpjvxe, .framer-I24XY .framer-nw26i4, .framer-I24XY .framer-8fblsr, .framer-I24XY .framer-rgpboy, .framer-I24XY .framer-s6nn6q, .framer-I24XY .framer-1hjz8a9, .framer-I24XY .framer-52y3ee { --border-bottom-width: 1px; --border-color: var(--token-1de346e1-893e-48fc-baa6-bfb90f41753f, #161c44); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-f4b26379-d03c-4ef3-a642-d95a8cac7d1c, #000529); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; }\",\".framer-I24XY .framer-u9qq4e, .framer-I24XY .framer-l5sm1q, .framer-I24XY .framer-mrm6k0, .framer-I24XY .framer-100u6mk, .framer-I24XY .framer-1qtutn0, .framer-I24XY .framer-16gvs9s, .framer-I24XY .framer-1s0h3ti, .framer-I24XY .framer-1ov0rxs, .framer-I24XY .framer-bi7xs2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1wrst78, .framer-I24XY .framer-1l6h6fi, .framer-I24XY .framer-r4i0qy, .framer-I24XY .framer-1ecedzw, .framer-I24XY .framer-1k9jk5k, .framer-I24XY .framer-182m8jv, .framer-I24XY .framer-1b9pmiy, .framer-I24XY .framer-mbi2hr, .framer-I24XY .framer-5a9xe8, .framer-I24XY .framer-15hchyz, .framer-I24XY .framer-1y8fj17, .framer-I24XY .framer-hci7q8, .framer-I24XY .framer-kghjs2, .framer-I24XY .framer-5na1vu, .framer-I24XY .framer-124zt1u, .framer-I24XY .framer-enpnwp, .framer-I24XY .framer-13p3gij, .framer-I24XY .framer-10dkwlu, .framer-I24XY .framer-56hp1m, .framer-I24XY .framer-tudo6, .framer-I24XY .framer-akl0a8, .framer-I24XY .framer-tjksm, .framer-I24XY .framer-10z1pkd, .framer-I24XY .framer-127mx15, .framer-I24XY .framer-cr226q, .framer-I24XY .framer-25idhb, .framer-I24XY .framer-c8nj48, .framer-I24XY .framer-w96d9g, .framer-I24XY .framer-1t7mlxl, .framer-I24XY .framer-16zok8l, .framer-I24XY .framer-1dkttd5, .framer-I24XY .framer-szhuqz, .framer-I24XY .framer-1cztw6s, .framer-I24XY .framer-1in0hbg, .framer-I24XY .framer-cv832e, .framer-I24XY .framer-yrgy9b, .framer-I24XY .framer-1oxcalt, .framer-I24XY .framer-1v1shl3, .framer-I24XY .framer-1mul0su, .framer-I24XY .framer-dhumpw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-I24XY .framer-cxa8ey, .framer-I24XY .framer-fhels3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1yw09mo { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-uod2mi-container, .framer-I24XY .framer-1dhc2yz-container, .framer-I24XY .framer-3jhyk1-container, .framer-I24XY .framer-ein79e-container, .framer-I24XY .framer-16xoa8u-container, .framer-I24XY .framer-cjvycj-container, .framer-I24XY .framer-1lb0qva-container, .framer-I24XY .framer-117ppms-container, .framer-I24XY .framer-m3rrry-container, .framer-I24XY .framer-1hg9wza-container, .framer-I24XY .framer-3o2mlg-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-I24XY .framer-10jeb82 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 130px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-I24XY .framer-17577fz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 565px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-jg5yzx-container { flex: none; height: 320px; left: calc(50.00000000000002% - 883px / 2); position: absolute; top: -104px; width: 883px; z-index: 0; }\",\".framer-I24XY .framer-129ov7q { -webkit-user-select: none; bottom: -126px; flex: none; height: 556px; left: -435px; pointer-events: none; position: absolute; user-select: none; width: 616px; z-index: 0; }\",\".framer-I24XY .framer-18rl2in-container { flex: none; height: 200px; left: 240px; position: absolute; top: calc(47.302158273381316% - 200px / 2); width: 200px; }\",\".framer-I24XY .framer-1mulo99, .framer-I24XY .framer-3iiinh { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-I24XY .framer-kg28xk { background: linear-gradient(90deg, #00020f 0%, rgba(0, 2, 15, 0) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 25%; }\",\".framer-I24XY .framer-n08fba, .framer-I24XY .framer-1e4lkr9 { background: linear-gradient(180deg, rgba(0, 2, 15, 0) 0%, rgb(0, 2, 15) 100%); bottom: 0px; flex: none; height: 18%; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-I24XY .framer-1ew975u { -webkit-user-select: none; bottom: -126px; flex: none; height: 556px; pointer-events: none; position: absolute; right: -435px; user-select: none; width: 616px; z-index: 0; }\",\".framer-I24XY .framer-fgc0fy-container { flex: none; height: 200px; left: 176px; position: absolute; top: calc(47.302158273381316% - 200px / 2); width: 200px; }\",\".framer-I24XY .framer-3jun72 { background: linear-gradient(90deg, rgba(0, 2, 15, 0) 0%, rgb(0, 2, 15) 100%); bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 25%; }\",\".framer-I24XY .framer-4ag2qg, .framer-I24XY .framer-1dx5maj, .framer-I24XY .framer-14w1ba8 { --border-bottom-width: 1px; --border-color: #161c44; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #000529; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; }\",\".framer-I24XY .framer-19k0ymz, .framer-I24XY .framer-13q050f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-72ntec { 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: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-I24XY .framer-1sw7970, .framer-I24XY .framer-mwdfq3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-i6lxly-container { flex: 1 0 0px; height: auto; mix-blend-mode: multiply; position: relative; width: 1px; }\",\".framer-I24XY .framer-8d80t-container, .framer-I24XY .framer-efb3x7-container, .framer-I24XY .framer-ouve7b-container, .framer-I24XY .framer-19c6xnf-container, .framer-I24XY .framer-1gb1hn-container, .framer-I24XY .framer-1qpc6n0-container, .framer-I24XY .framer-16s99hs-container, .framer-I24XY .framer-yvhfec-container, .framer-I24XY .framer-11gumkf-container, .framer-I24XY .framer-96kxeu-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-I24XY .framer-19i3gvu, .framer-I24XY .framer-15srq5f, .framer-I24XY .framer-11gezq2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-I24XY .framer-48t2pg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 530px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1r0xvbu { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1yrm8hj-container, .framer-I24XY .framer-1ojv3cy-container, .framer-I24XY .framer-1tcn57p-container, .framer-I24XY .framer-1wp5g21-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-I24XY .framer-5tpqnn, .framer-I24XY .framer-zbeye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-I24XY .framer-fw19yb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 580px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-qx72eq-container { flex: none; height: 320px; left: calc(50.00000000000002% - 883px / 2); position: absolute; top: -87px; width: 883px; z-index: 0; }\",\".framer-I24XY .framer-9zzv9b { --border-bottom-width: 1px; --border-color: var(--token-0c394b86-baae-4b2e-84cd-f4354c621d84, #1f275f); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(6, 8, 20, 0.1); border-bottom-left-radius: 190px; border-bottom-right-radius: 190px; border-top-left-radius: 190px; border-top-right-radius: 190px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 245px; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-hcg5l2-container { flex: none; height: 45px; position: relative; width: 100%; }\",\".framer-I24XY .framer-i7zwnb, .framer-I24XY .framer-1amkhya, .framer-I24XY .framer-1rkacez, .framer-I24XY .framer-1rgpv0y, .framer-I24XY .framer-1v794o6, .framer-I24XY .framer-18djy80 { align-content: center; align-items: center; background-color: var(--token-f4b26379-d03c-4ef3-a642-d95a8cac7d1c, #000529); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-1fgq707, .framer-I24XY .framer-nfp3sl, .framer-I24XY .framer-14oyuzt, .framer-I24XY .framer-13fa78v, .framer-I24XY .framer-dnxtom, .framer-I24XY .framer-ywysu { flex: none; height: 28px; overflow: hidden; position: relative; width: 28px; }\",\".framer-I24XY .framer-p5qei5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 129%; word-break: break-word; word-wrap: break-word; }\",\".framer-I24XY .framer-lvw2x6, .framer-I24XY .framer-f9gz6e, .framer-I24XY .framer-cbbmac { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-I24XY .framer-c7zja { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 122%; word-break: break-word; word-wrap: break-word; }\",\".framer-I24XY .framer-1sv483n { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, rgba(14, 19, 47, 0) 0%, rgba(14, 19, 47, 0.5) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 1px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1482rp0 { background-color: var(--token-6cf39457-d957-4967-8059-39c512f3137e, #00020f); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 1px; flex: none; left: 1px; overflow: hidden; position: absolute; right: 1px; top: 1px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-I24XY .framer-1euzmse { background: linear-gradient(180deg, rgba(0, 3, 25, 0) 0%, rgba(0, 3, 25, 0.5) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-I24XY .framer-uc07da, .framer-I24XY .framer-279q7z, .framer-I24XY .framer-1jva6e, .framer-I24XY .framer-1v9blbe, .framer-I24XY .framer-nrhue3, .framer-I24XY .framer-nqyq4g, .framer-I24XY .framer-17qq25n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1mar7cv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-hzh90d { background: linear-gradient(270deg, #171d45 28.82882882882883%, rgba(23, 29, 69, 0) 100%); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-I24XY .framer-1i9j7jc { background: linear-gradient(270deg, rgba(23, 29, 69, 0) 28.82882882882883%, rgb(23, 29, 69) 100%); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-I24XY .framer-ywqtdd { --border-bottom-width: 1px; --border-color: var(--token-c2774d4c-a446-44d7-82cc-dd6eef7b715d, #131839); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-f40c3d7d-74c3-4e52-9cd9-1acb262c1c61, #0a0c1e); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1nyyijl-container { flex: none; height: 630px; position: relative; width: 100%; }\",\".framer-I24XY .framer-e4nbd4, .framer-I24XY .framer-1594psy, .framer-I24XY .framer-1mlrawq { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-cq4k9t, .framer-I24XY .framer-68oes4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-I24XY .framer-nqbvl4 { --border-bottom-width: 1px; --border-color: #0e122e; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; gap: 10px; height: 510px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-1tkdjbn { 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-I24XY .framer-1v04ka { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-htrbjd, .framer-I24XY .framer-sjm2q1, .framer-I24XY .framer-1sb9xz, .framer-I24XY .framer-1sj41lh, .framer-I24XY .framer-vn649i, .framer-I24XY .framer-1oe469m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-sd3jjj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-I24XY .framer-7861gq { --border-bottom-width: 1px; --border-color: var(--token-c2774d4c-a446-44d7-82cc-dd6eef7b715d, #131839); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0c2a37bd-a518-4be7-ad0d-0de6e24f8c72, #00041f); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; opacity: 0; overflow: visible; padding: 0px 14px 0px 14px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1bn6kwl, .framer-I24XY .framer-11q9xsp { 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: flex-start; overflow: visible; padding: 14px 0px 14px 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-hztp3c, .framer-I24XY .framer-fewkrj { aspect-ratio: 1 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-I24XY .framer-1rht07y, .framer-I24XY .framer-1lju39i { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-zucqnj-container, .framer-I24XY .framer-10z0e7n-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-I24XY .framer-1dr1ncr { background-color: var(--token-1de346e1-893e-48fc-baa6-bfb90f41753f, #161c44); flex: none; height: 51px; overflow: hidden; position: relative; width: 1px; }\",\".framer-I24XY .framer-1qcea8x { --border-bottom-width: 1px; --border-color: #080b1c; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-I24XY .framer-1ehflku { --border-bottom-width: 1px; --border-color: var(--token-e5e32cd2-9193-48bc-af06-07aa6da4bbe5, #0e122e); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 100px 120px 100px; position: relative; width: 1px; z-index: 1; }\",\".framer-I24XY .framer-wds02a { -webkit-user-select: none; border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; bottom: 0px; flex: none; gap: 0px; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-I24XY .framer-wtydbx-container { bottom: 0px; flex: none; left: 0px; opacity: 0.3; position: absolute; right: 0px; top: 0px; }\",\".framer-I24XY .framer-1ejygni { background-color: rgba(0, 59, 255, 0.45); bottom: 0px; flex: none; left: 0px; mix-blend-mode: color; position: absolute; right: 0px; top: 0px; }\",\".framer-I24XY .framer-kbgim2, .framer-I24XY .framer-pazoeo { -webkit-filter: blur(30px); background-color: rgba(0, 2, 15, 0.07); bottom: 0px; filter: blur(30px); flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-I24XY .framer-lttpwp { background: linear-gradient(270deg, #00020f 0%, rgba(0, 2, 15, 0) 57.46203064918518%, rgb(0, 2, 15) 100%); bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-I24XY .framer-1nqgzzq-container { bottom: 0px; flex: none; left: 0px; opacity: 0.5; position: absolute; right: 0px; top: 0px; }\",\".framer-I24XY .framer-at64y1 { background: linear-gradient(180deg, #00020f 0%, rgba(0, 2, 15, 0) 57.46203064918518%, rgb(0, 2, 15) 100%); bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-I24XY .framer-negu9l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1nmbmv1 { -webkit-user-select: none; align-content: center; align-items: center; bottom: -127px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; pointer-events: none; position: absolute; right: 0px; user-select: none; z-index: 1; }\",\".framer-I24XY .framer-jetmr6, .framer-I24XY .framer-1u4p8sp { flex: 1 0 0px; height: 289px; overflow: hidden; position: relative; width: 1px; z-index: 1; }\",\".framer-I24XY .framer-1qnp1jg { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 498px; z-index: 1; }\",\".framer-I24XY .framer-cijgrk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 565px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-1ihr0z8 { flex: none; height: 320px; left: calc(49.916666666666686% - 882px / 2); overflow: visible; position: absolute; top: -114px; width: 882px; z-index: 0; }\",\".framer-I24XY .framer-7at4tk-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-I24XY .framer-17gyohp { bottom: 0px; flex: none; overflow: hidden; position: absolute; right: -296px; top: -147px; width: 500px; }\",\".framer-I24XY .framer-1fus5bi { bottom: 0px; flex: none; left: -297px; overflow: hidden; position: absolute; top: -147px; width: 501px; }\",\".framer-I24XY .framer-1kadk4c, .framer-I24XY .framer-1h4kpjr, .framer-I24XY .framer-obunqg, .framer-I24XY .framer-dp1cqg, .framer-I24XY .framer-r9q15o, .framer-I24XY .framer-d217m2, .framer-I24XY .framer-1em032e, .framer-I24XY .framer-1qkqd28, .framer-I24XY .framer-12ftgo9, .framer-I24XY .framer-8et0u, .framer-I24XY .framer-y4qs5j, .framer-I24XY .framer-f48zx0, .framer-I24XY .framer-9skadl, .framer-I24XY .framer-1qdcoek, .framer-I24XY .framer-sr1mmw, .framer-I24XY .framer-dyiqc0, .framer-I24XY .framer-1bipie7, .framer-I24XY .framer-ymh4ld, .framer-I24XY .framer-6cr6n7, .framer-I24XY .framer-1nez4jx, .framer-I24XY .framer-1891j29, .framer-I24XY .framer-13w2k9t, .framer-I24XY .framer-1jamgzu, .framer-I24XY .framer-8qtbh, .framer-I24XY .framer-pye65n, .framer-I24XY .framer-18ouw95, .framer-I24XY .framer-1i5ibjg, .framer-I24XY .framer-dwpdcp, .framer-I24XY .framer-1p3ngvm, .framer-I24XY .framer-1sdwjey, .framer-I24XY .framer-5gzwna { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-I24XY .framer-1ihujay { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: flex-start; max-width: 1260px; overflow: visible; padding: 0px; position: relative; width: 94%; }\",\".framer-I24XY .framer-ubs19b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; z-index: 1; }\",\".framer-I24XY .framer-1ntp0e9, .framer-I24XY .framer-17954q8 { --border-bottom-width: 1px; --border-color: var(--token-c2774d4c-a446-44d7-82cc-dd6eef7b715d, #131839); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-0c2a37bd-a518-4be7-ad0d-0de6e24f8c72, #00041f); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-1ptxw33, .framer-I24XY .framer-g96s3u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-q1bmpt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 200px; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-4tdxh0, .framer-I24XY .framer-1x662bp { --border-bottom-width: 0px; --border-color: var(--token-1de346e1-893e-48fc-baa6-bfb90f41753f, #161c44); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-tjtizt-container, .framer-I24XY .framer-12qpw7h-container, .framer-I24XY .framer-ujwadw-container, .framer-I24XY .framer-18yodjo-container, .framer-I24XY .framer-l9hec1-container, .framer-I24XY .framer-owt6qh-container, .framer-I24XY .framer-1moo0po-container, .framer-I24XY .framer-1n6oyk8-container, .framer-I24XY .framer-1xoy4j7-container, .framer-I24XY .framer-1bjxit5-container, .framer-I24XY .framer-pt7yy6-container, .framer-I24XY .framer-34yqbj-container, .framer-I24XY .framer-1fi9n6k-container, .framer-I24XY .framer-olm364-container, .framer-I24XY .framer-16ba5n9-container, .framer-I24XY .framer-1uponeb-container, .framer-I24XY .framer-5dch0l-container, .framer-I24XY .framer-u7wsft-container, .framer-I24XY .framer-1a1rp3z-container, .framer-I24XY .framer-1l5tx0x-container, .framer-I24XY .framer-10fa6q5-container, .framer-I24XY .framer-1an6mv7-container, .framer-I24XY .framer-1q8rmyv-container, .framer-I24XY .framer-j00a7o-container, .framer-I24XY .framer-1a7y2qy-container, .framer-I24XY .framer-hf49r2-container, .framer-I24XY .framer-7kx8ua-container, .framer-I24XY .framer-yymwp6-container, .framer-I24XY .framer-1nwrecj-container, .framer-I24XY .framer-1ookn1q-container, .framer-I24XY .framer-7781ow-container, .framer-I24XY .framer-12u84yx-container, .framer-I24XY .framer-10lsyyt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-I24XY .framer-d7lbrs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-qxrlew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-oubjx3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1sbcxks, .framer-I24XY .framer-wjgb0x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-1r1wrx8 { background: linear-gradient(270deg, #0e122e 0%, rgba(26, 75, 255, 0.3) 13.513513513513512%, rgba(0, 36, 121, 0) 100%); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-I24XY .framer-mktjiz, .framer-I24XY .framer-2q5l2j { flex: none; height: 19px; overflow: hidden; position: relative; width: 23px; }\",\".framer-I24XY .framer-5l6cov { background: linear-gradient(270deg, rgba(14, 18, 46, 0) 0%, rgba(26, 75, 255, 0.3) 90.09009009009009%, rgb(0, 36, 121) 100%); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-I24XY .framer-68ovhr-container { flex: none; height: 54px; max-width: 780px; position: relative; width: 100%; }\",\".framer-I24XY .framer-4p3r28, .framer-I24XY .framer-quzi7v, .framer-I24XY .framer-12li7cw, .framer-I24XY .framer-6v894a, .framer-I24XY .framer-kb894a, .framer-I24XY .framer-1lwewg5 { --border-bottom-width: 1px; --border-color: var(--token-1de346e1-893e-48fc-baa6-bfb90f41753f, #161c44); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-f4b26379-d03c-4ef3-a642-d95a8cac7d1c, #000529); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 14px 12px 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-1rf5kok, .framer-I24XY .framer-58f5fg, .framer-I24XY .framer-1wt79yh, .framer-I24XY .framer-19s2kar, .framer-I24XY .framer-4njogv, .framer-I24XY .framer-fvobsn, .framer-I24XY .framer-33u47i, .framer-I24XY .framer-1ruwj9v, .framer-I24XY .framer-p7gwl4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-I24XY .framer-1n746qx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 565px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1q6u1um-container { flex: none; height: 268px; left: calc(49.911504424778784% - 717px / 2); position: absolute; top: -68px; width: 717px; z-index: 0; }\",\".framer-I24XY .framer-1a89y6u { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(14, 19, 47, 0) 0%, rgb(14, 19, 47) 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 1px; position: relative; width: 94%; }\",\".framer-I24XY .framer-4n5rlc { background-color: var(--token-6cf39457-d957-4967-8059-39c512f3137e, #00020f); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 1px; flex: none; left: 1px; overflow: hidden; position: absolute; right: 1px; top: 1px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-I24XY .framer-ldbpcl { align-content: flex-start; align-items: flex-start; background: radial-gradient(100% 100% at 50% 0%, rgba(0, 2, 15, 0.5) 65.7463788986206%, rgba(0, 4, 31, 0.5) 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 60px 60px 60px; position: relative; width: 100%; }\",\".framer-I24XY .framer-724uup { -webkit-filter: blur(15px); -webkit-user-select: none; aspect-ratio: 1.0244470314318976 / 1; background: radial-gradient(50% 50% at 50% 50%, rgba(15, 47, 153, 0.15) 0%, rgba(0, 2, 15, 0) 100%); bottom: -90px; filter: blur(15px); flex: none; height: var(--framer-aspect-ratio-supported, 391px); left: 50%; pointer-events: none; position: absolute; transform: translateX(-50%); user-select: none; width: 400px; z-index: 1; }\",\".framer-I24XY .framer-13twdmi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-esghwp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1mcadpq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 0px 7px 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-1hmt6yz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-nlbys0 { flex: none; height: 50px; overflow: hidden; position: relative; width: 144px; }\",\".framer-I24XY .framer-qpmwgu, .framer-I24XY .framer-vew55c, .framer-I24XY .framer-xq5lpo, .framer-I24XY .framer-irslvc, .framer-I24XY .framer-nnhzpl { --border-bottom-width: 1px; --border-color: var(--token-e5e32cd2-9193-48bc-af06-07aa6da4bbe5, #0e122e); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-1i2kwko, .framer-I24XY .framer-19haka1, .framer-I24XY .framer-hhpo7d, .framer-I24XY .framer-4ka5ja, .framer-I24XY .framer-99s7la { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px 20px 18px 20px; position: relative; width: 1px; }\",\".framer-I24XY .framer-mwialp, .framer-I24XY .framer-6ig82t, .framer-I24XY .framer-rw1c35, .framer-I24XY .framer-5nij2t, .framer-I24XY .framer-z4kqls, .framer-I24XY .framer-j9yu6h, .framer-I24XY .framer-120sa9t, .framer-I24XY .framer-leossn, .framer-I24XY .framer-16xi1ee, .framer-I24XY .framer-wcgl4j, .framer-I24XY .framer-chy4fv, .framer-I24XY .framer-3tqrrf, .framer-I24XY .framer-kcn8j1, .framer-I24XY .framer-tale6d, .framer-I24XY .framer-i526tb, .framer-I24XY .framer-1ctjs0p, .framer-I24XY .framer-1gftqjx, .framer-I24XY .framer-x259cb, .framer-I24XY .framer-dke4g0, .framer-I24XY .framer-d38ku4, .framer-I24XY .framer-q2oqmy, .framer-I24XY .framer-1lgu1sl, .framer-I24XY .framer-3w2ek2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-I24XY .framer-asqwwy, .framer-I24XY .framer-1xu915q, .framer-I24XY .framer-197cmb4, .framer-I24XY .framer-9k3fag, .framer-I24XY .framer-1fbqvor { --border-bottom-width: 0px; --border-color: var(--token-e5e32cd2-9193-48bc-af06-07aa6da4bbe5, #0e122e); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-0c2a37bd-a518-4be7-ad0d-0de6e24f8c72, #00041f); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 18px 20px 18px 20px; position: relative; width: 1px; }\",\".framer-I24XY .framer-bcd3ms, .framer-I24XY .framer-1wio0jg, .framer-I24XY .framer-14pdmz4, .framer-I24XY .framer-1pwsu5k, .framer-I24XY .framer-xcg107, .framer-I24XY .framer-1p1fihh, .framer-I24XY .framer-1lch5w1, .framer-I24XY .framer-3thpv0, .framer-I24XY .framer-1gdz0qs, .framer-I24XY .framer-1p9wuq2 { -webkit-filter: blur(10px); background: linear-gradient(90deg, rgba(51, 99, 255, 0.15) 0%, rgba(0, 2, 15, 0) 100%); bottom: 0px; filter: blur(10px); flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 169px; z-index: 0; }\",\".framer-I24XY .framer-1rt9t56, .framer-I24XY .framer-37oitb, .framer-I24XY .framer-1ad8j0e, .framer-I24XY .framer-1500p3f, .framer-I24XY .framer-qo4ih8, .framer-I24XY .framer-1hrtfn8, .framer-I24XY .framer-wl0ou0, .framer-I24XY .framer-1ly6pwj, .framer-I24XY .framer-q2nupm, .framer-I24XY .framer-1tqxgzn { background-color: var(--token-f1a1ff14-8606-46dd-b2d5-8d68b8e62368, #3362ff); border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; border-top-left-radius: 42px; border-top-right-radius: 42px; flex: none; height: 34px; left: 0px; position: absolute; top: calc(50.79365079365081% - 34px / 2); width: 1px; z-index: 1; }\",\".framer-I24XY .framer-1lm2unj, .framer-I24XY .framer-1khl1c2, .framer-I24XY .framer-1wg3p8g, .framer-I24XY .framer-1o4jiv8, .framer-I24XY .framer-75wj1f { -webkit-user-select: none; bottom: -332px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; top: 0px; user-select: none; width: 50%; z-index: 0; }\",\".framer-I24XY .framer-7v8ebe { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; gap: 10px; height: 70px; left: calc(50.00000000000002% - 70px / 2); overflow: visible; position: absolute; top: 40px; width: 70px; z-index: 1; }\",\".framer-I24XY .framer-1krqlp9 { align-content: flex-start; align-items: flex-start; background: radial-gradient(100% 100% at 50% 0%, rgba(0, 2, 15, 0.5) 65.7463788986206%, rgba(0, 4, 31, 0.5) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 16px 16px 16px; position: relative; width: 1px; }\",\".framer-I24XY .framer-8xwi3v { -webkit-filter: blur(15px); aspect-ratio: 1.0244470314318976 / 1; background: radial-gradient(50% 50% at 50% 50%, rgba(15, 47, 153, 0.15) 0%, rgba(0, 2, 15, 0) 100%); bottom: -90px; filter: blur(15px); flex: none; height: var(--framer-aspect-ratio-supported, 390px); left: 50%; position: absolute; transform: translateX(-50%); width: 400px; z-index: 1; }\",\".framer-I24XY .framer-ltrg6d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-I24XY .framer-1l448ri, .framer-I24XY .framer-1n09x5i, .framer-I24XY .framer-mu78qm, .framer-I24XY .framer-1ynnljx, .framer-I24XY .framer-1hv7ouj { --border-bottom-width: 1px; --border-color: var(--token-e5e32cd2-9193-48bc-af06-07aa6da4bbe5, #0e122e); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; 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: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-1qc6mp4, .framer-I24XY .framer-fqyved, .framer-I24XY .framer-f4g58u, .framer-I24XY .framer-1g9shy5, .framer-I24XY .framer-5lav8z { bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 80%; z-index: 0; }\",\".framer-I24XY .framer-2etwbj { flex: none; height: 36px; overflow: hidden; position: relative; width: 103px; }\",\".framer-I24XY .framer-14aoibp, .framer-I24XY .framer-1n9y6wb, .framer-I24XY .framer-1c0ojyy, .framer-I24XY .framer-3gm1cp, .framer-I24XY .framer-8r8bo5 { --border-bottom-width: 1px; --border-color: var(--token-e5e32cd2-9193-48bc-af06-07aa6da4bbe5, #0e122e); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0c2a37bd-a518-4be7-ad0d-0de6e24f8c72, #00041f); 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: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-I24XY .framer-14tv3jz { align-content: center; align-items: center; background: radial-gradient(50.62442525104286% 100% at 49.999993965098234% -1.9984014443252818e-13%, #00041f 0%, rgb(0, 2, 15) 73.83127212524414%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 280px 100px 280px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-I24XY .framer-o8fo3a { background: radial-gradient(50% 50% at 50% 50%, #131839 0%, rgba(19, 24, 57, 0) 100%); flex: none; height: 1px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-I24XY .framer-j79oft { -webkit-user-select: none; bottom: 0px; flex: none; gap: 0px; left: 0px; overflow: visible; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; z-index: 0; }\",\".framer-I24XY .framer-1ojei9a { bottom: 0px; flex: none; left: 0px; mix-blend-mode: color-dodge; position: absolute; right: 0px; top: 0px; }\",\".framer-I24XY .framer-cml029 { background: radial-gradient(49.99999999999999% 100.00000000000003% at 49.99999999999999% -1.1102230246251565e-13%, rgba(0, 4, 31, 0) 0%, rgb(0, 2, 15) 100%); bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-I24XY .framer-1nz0it5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 634px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1hs8fsl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-I24XY .framer-645rte { -webkit-user-select: none; flex: none; height: 527px; mix-blend-mode: color-dodge; pointer-events: none; position: absolute; right: 0px; top: 2px; user-select: none; width: 34%; z-index: 0; }\",\".framer-I24XY .framer-82oxwk { -webkit-user-select: none; flex: none; height: 527px; left: 0px; mix-blend-mode: color-dodge; pointer-events: none; position: absolute; top: 0px; user-select: none; width: 34%; z-index: 0; }\",\".framer-I24XY .framer-14d48n5 { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-1m2iqus { flex: none; height: 229px; left: calc(49.90619136960602% - 311px / 2); overflow: hidden; position: absolute; top: calc(49.84025559105433% - 229px / 2); width: 311px; z-index: 0; }\",\".framer-I24XY .framer-1pz9lyr { -webkit-filter: blur(15px); aspect-ratio: 1.0244470314318976 / 1; background: radial-gradient(50% 50% at 50% 50%, rgba(15, 47, 153, 0.15) 0%, rgba(0, 2, 15, 0) 100%); filter: blur(15px); flex: none; height: var(--framer-aspect-ratio-supported, 293px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 300px; z-index: 1; }\",\".framer-I24XY .framer-1f1d8mr, .framer-I24XY .framer-ekaa8p { --border-bottom-width: 1px; --border-color: #131839; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; aspect-ratio: 1.75625 / 1; background-color: #00041f; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: var(--framer-aspect-ratio-supported, 146px); justify-content: flex-start; justify-self: start; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-p80xd6, .framer-I24XY .framer-1bdt6kb { -webkit-user-select: none; aspect-ratio: 1.75625 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 146px); left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-I24XY .framer-1ys9a5d, .framer-I24XY .framer-r5lmwn, .framer-I24XY .framer-1ljy3hs, .framer-I24XY .framer-wxfuw7 { background-color: var(--token-f1a1ff14-8606-46dd-b2d5-8d68b8e62368, #3362ff); border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; border-top-left-radius: 42px; border-top-right-radius: 42px; flex: none; height: 1px; left: calc(49.80544747081714% - 34px / 2); overflow: hidden; position: absolute; top: 1px; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-1w82hi3, .framer-I24XY .framer-18w2i0a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-3rntqz, .framer-I24XY .framer-5zyo43 { --border-bottom-width: 1px; --border-color: #131839; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; aspect-ratio: 1.75625 / 1; background-color: #00041f; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: var(--framer-aspect-ratio-supported, 147px); justify-content: flex-start; justify-self: start; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-9rcrvc, .framer-I24XY .framer-myngtj { -webkit-user-select: none; aspect-ratio: 1.75625 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 147px); left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-I24XY .framer-cjwuli { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 46%; }\",\".framer-I24XY .framer-j5tet3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-16cs26t { background: linear-gradient(270deg, rgba(23, 29, 69, 0) 0%, rgb(23, 29, 69) 70.72072072072072%, rgb(23, 29, 69) 100%); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-I24XY .framer-1wyolbp { background: linear-gradient(90deg, rgba(23, 29, 69, 0) 0%, rgb(23, 29, 69) 70.72072072072072%, rgb(23, 29, 69) 100%); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-I24XY .framer-cf9ok { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-bwxuwz { background: linear-gradient(89deg, rgba(51, 99, 255, 0.15) 0%, rgba(0, 2, 15, 0) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 20%; z-index: 1; }\",\".framer-I24XY .framer-fudlte { align-self: stretch; background-color: var(--token-f1a1ff14-8606-46dd-b2d5-8d68b8e62368, #3362ff); border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; border-top-left-radius: 42px; border-top-right-radius: 42px; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-10gahqs-container { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 18.91891891891892%, rgba(0,0,0,1) 82.43243243243244%, rgba(0,0,0,0) 100%) add; flex: 1 0 0px; height: 41px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 18.91891891891892%, rgba(0,0,0,1) 82.43243243243244%, rgba(0,0,0,0) 100%) add; position: relative; width: 1px; }\",\".framer-I24XY .framer-y1pd2s, .framer-I24XY .framer-1py0tlb, .framer-I24XY .framer-1ifyxw, .framer-I24XY .framer-4nt9bc, .framer-I24XY .framer-1ahbo9, .framer-I24XY .framer-1bkvsyv, .framer-I24XY .framer-1htcryw, .framer-I24XY .framer-1rd2di6, .framer-I24XY .framer-11796xf, .framer-I24XY .framer-eq4ibd, .framer-I24XY .framer-lcoord, .framer-I24XY .framer-ysf0an { height: 40px; overflow: hidden; position: relative; width: 120px; }\",\".framer-I24XY .framer-pk196g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-I24XY .framer-1wn5p1f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 680px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1btlike { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 50px 10px 50px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1gi7a7f, .framer-I24XY .framer-1y3bvis { 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: flex-start; overflow: visible; padding: 36px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-abg1mb, .framer-I24XY .framer-1isk26e { --border-bottom-width: 1px; --border-color: var(--token-c2774d4c-a446-44d7-82cc-dd6eef7b715d, #131839); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-0c2a37bd-a518-4be7-ad0d-0de6e24f8c72, #00041f); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-pb9w5q, .framer-I24XY .framer-14hk8j2 { -webkit-user-select: none; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 403px; left: 1px; overflow: hidden; pointer-events: none; position: absolute; right: 1px; top: 1px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-I24XY .framer-r4g1zd, .framer-I24XY .framer-159t0go, .framer-I24XY .framer-1b3awac { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-j3via4, .framer-I24XY .framer-bxs6kk, .framer-I24XY .framer-pesa8m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1apzna0, .framer-I24XY .framer-knhsc3, .framer-I24XY .framer-a3vw2y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1tyfngi, .framer-I24XY .framer-1s868at, .framer-I24XY .framer-3dw0gi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-8vo5yx, .framer-I24XY .framer-1gz1z5h, .framer-I24XY .framer-78k9hj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1nxotq7, .framer-I24XY .framer-vq69va, .framer-I24XY .framer-bvphh5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-11cgwzm { align-content: center; align-items: center; background: linear-gradient(180deg, #3363ff 0%, rgb(0, 2, 15) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 1px 1px 0px 1px; position: relative; width: 1px; }\",\".framer-I24XY .framer-i0zcsk { -webkit-user-select: none; background-color: var(--token-f1a1ff14-8606-46dd-b2d5-8d68b8e62368, #3362ff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 95px; left: 1px; overflow: hidden; pointer-events: none; position: absolute; right: 1px; top: 1px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-I24XY .framer-1hqesi9 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 403px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-I24XY .framer-1vgldm2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 6px 10px 6px 10px; position: relative; width: 100%; }\",\".framer-I24XY .framer-den01c { --border-bottom-width: 1px; --border-color: var(--token-c2774d4c-a446-44d7-82cc-dd6eef7b715d, #131839); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-0c2a37bd-a518-4be7-ad0d-0de6e24f8c72, #00041f); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1j9ni15 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 505px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-84brwd-container { flex: none; height: 320px; left: calc(50.00000000000002% - 883px / 2); position: absolute; top: -114px; width: 883px; z-index: 0; }\",\".framer-I24XY .framer-5mi8i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-1jv9fxu-container { aspect-ratio: 1.0354223433242506 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 335px); position: relative; width: 1px; }\",\".framer-I24XY .framer-1v9m2q1-container { aspect-ratio: 1.0328358208955224 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 336px); position: relative; width: 1px; }\",\".framer-I24XY .framer-1nb1pwq-container { aspect-ratio: 1.035820895522388 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 335px); position: relative; width: 32%; }\",\".framer-I24XY .framer-lyrrsk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-uo551i { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1omp4p3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1260px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-I24XY .framer-xuj2d2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1iidtbv-container { aspect-ratio: 2.75625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 320px); left: 50%; position: absolute; top: -114px; transform: translateX(-50%); width: 882px; z-index: 0; }\",\".framer-I24XY .framer-1w80isb { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-4unaml { --border-bottom-width: 1px; --border-color: var(--token-c2774d4c-a446-44d7-82cc-dd6eef7b715d, #131839); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-0c2a37bd-a518-4be7-ad0d-0de6e24f8c72, #00041f); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 8px 8px 20px; position: relative; width: 430px; }\",\".framer-I24XY .framer-1p6dhmx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-I24XY .framer-inmec { --border-bottom-width: 1px; --border-color: var(--token-9808df8b-9423-4c64-ab16-a95758a33d6f, #00094c); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-f4b26379-d03c-4ef3-a642-d95a8cac7d1c, #000529); border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-1rgam3b { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-I24XY .framer-ihzyjp { --border-bottom-width: 1px; --border-color: #080b1c; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-I24XY .framer-1t4jmgx { --border-bottom-width: 1px; --border-color: var(--token-e5e32cd2-9193-48bc-af06-07aa6da4bbe5, #0e122e); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: linear-gradient(180deg, rgba(0, 4, 31, 0) 0%, rgba(0, 4, 31, 0.6) 100%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-I24XY .framer-1k0hph8 { -webkit-user-select: none; aspect-ratio: 0.9809523809523809 / 1; border-bottom-left-radius: 30px; border-top-left-radius: 30px; bottom: 0px; flex: none; left: 0px; pointer-events: none; position: absolute; top: 0px; user-select: none; width: var(--framer-aspect-ratio-supported, 420px); z-index: 0; }\",\".framer-I24XY .framer-1a9af78 { -webkit-user-select: none; aspect-ratio: 0.9809523809523809 / 1; border-bottom-right-radius: 30px; border-top-right-radius: 30px; bottom: 0px; flex: none; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; width: var(--framer-aspect-ratio-supported, 419px); z-index: 0; }\",\".framer-I24XY .framer-cae81 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 565px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I24XY .framer-20xkrk, .framer-I24XY .framer-19ar9r7, .framer-I24XY .framer-em3xqe { --border-bottom-width: 1px; --border-color: #0e122e; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #00041f; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 16px 8px 8px; position: relative; width: min-content; }\",\".framer-I24XY .framer-3ek784-container { bottom: 66px; flex: none; height: auto; opacity: 0; position: fixed; right: 20px; width: auto; z-index: 3; }\",\".framer-I24XY .framer-lpe29j-container { bottom: 20px; flex: none; height: auto; left: 20px; opacity: 0; position: fixed; width: auto; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-I24XY[data-border=\"true\"]::after, .framer-I24XY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-I24XY.framer-72rtr7 { gap: 150px; width: 810px; } .framer-I24XY .framer-174z0xa-container { height: 97px; } .framer-I24XY .framer-19xj8v4 { aspect-ratio: 1.6551724137931034 / 1; height: var(--framer-aspect-ratio-supported, 603px); left: 50%; top: 32px; transform: translateX(-50%); width: 998px; } .framer-I24XY .framer-1kerl7k { aspect-ratio: 1.137546468401487 / 1; height: var(--framer-aspect-ratio-supported, 341px); width: 388px; } .framer-I24XY .framer-1myh9u8 { aspect-ratio: 1.137546468401487 / 1; height: var(--framer-aspect-ratio-supported, 341px); left: 0px; top: 0px; width: 388px; } .framer-I24XY .framer-73dn7q-container { height: 157px; } .framer-I24XY .framer-8fioq8 { padding: 178px 0px 0px 0px; } .framer-I24XY .framer-f1sy2j { max-width: 622px; } .framer-I24XY .framer-nh5zi3 { gap: 69px; max-width: 800px; } .framer-I24XY .framer-1lh0zo5-container, .framer-I24XY .framer-u352ii-container, .framer-I24XY .framer-1q6u1um-container, .framer-I24XY .framer-xbp8ch-container, .framer-I24XY .framer-1hojqsu-container { aspect-ratio: 2.675373134328358 / 1; height: var(--framer-aspect-ratio-supported, 260px); left: 50%; top: -64px; transform: translateX(-50%); width: 695px; } .framer-I24XY .framer-1yw09mo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; max-width: 550px; } .framer-I24XY .framer-uod2mi-container { align-self: unset; } .framer-I24XY .framer-10jeb82 { gap: 100px; } .framer-I24XY .framer-17577fz { max-width: 500px; } .framer-I24XY .framer-jg5yzx-container { aspect-ratio: 2.759375 / 1; height: var(--framer-aspect-ratio-supported, 260px); left: 50%; top: -74px; transform: translateX(-50%); width: 717px; } .framer-I24XY .framer-129ov7q { aspect-ratio: 1.1079136690647482 / 1; bottom: -91px; height: var(--framer-aspect-ratio-supported, 363px); left: -252px; width: 402px; } .framer-I24XY .framer-18rl2in-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 150px); left: 145px; top: 47%; transform: translateY(-50%); width: 150px; } .framer-I24XY .framer-1ew975u { aspect-ratio: 1.1079136690647482 / 1; bottom: -91px; height: var(--framer-aspect-ratio-supported, 363px); right: -252px; width: 402px; } .framer-I24XY .framer-fgc0fy-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 150px); left: 99px; top: 47%; transform: translateY(-50%); width: 150px; } .framer-I24XY .framer-72ntec { flex-direction: row; gap: 30px; } .framer-I24XY .framer-1sw7970, .framer-I24XY .framer-mwdfq3 { flex: 1 0 0px; flex-direction: column; gap: 40px; width: 1px; } .framer-I24XY .framer-i6lxly-container, .framer-I24XY .framer-8d80t-container, .framer-I24XY .framer-efb3x7-container, .framer-I24XY .framer-ouve7b-container, .framer-I24XY .framer-19c6xnf-container, .framer-I24XY .framer-1gb1hn-container, .framer-I24XY .framer-1qpc6n0-container, .framer-I24XY .framer-16s99hs-container, .framer-I24XY .framer-yvhfec-container, .framer-I24XY .framer-nqbvl4, .framer-I24XY .framer-11cgwzm { flex: none; width: 100%; } .framer-I24XY .framer-19i3gvu, .framer-I24XY .framer-15srq5f, .framer-I24XY .framer-lyrrsk { gap: 60px; } .framer-I24XY .framer-1r0xvbu { gap: 20px; } .framer-I24XY .framer-qx72eq-container { aspect-ratio: 2.759375 / 1; height: var(--framer-aspect-ratio-supported, 260px); left: 50%; top: -47px; transform: translateX(-50%); width: 716px; } .framer-I24XY .framer-1euzmse, .framer-I24XY .framer-uo551i { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-I24XY .framer-1nyyijl-container { height: 439px; } .framer-I24XY .framer-e4nbd4, .framer-I24XY .framer-cq4k9t, .framer-I24XY .framer-68oes4 { flex-direction: column; } .framer-I24XY .framer-1tkdjbn { flex: none; max-width: 560px; width: 100%; } .framer-I24XY .framer-1v04ka, .framer-I24XY .framer-htrbjd, .framer-I24XY .framer-1sb9xz { align-content: center; align-items: center; } .framer-I24XY .framer-1ehflku { padding: 80px 50px 80px 50px; } .framer-I24XY .framer-negu9l { gap: 150px; } .framer-I24XY .framer-1nmbmv1 { bottom: -62px; } .framer-I24XY .framer-jetmr6, .framer-I24XY .framer-1u4p8sp { height: 189px; } .framer-I24XY .framer-1ihr0z8 { aspect-ratio: 2.75625 / 1; height: var(--framer-aspect-ratio-supported, 260px); left: 50%; top: -84px; transform: translateX(-50%); width: 716px; } .framer-I24XY .framer-17gyohp { aspect-ratio: 1.2285012285012284 / 1; height: var(--framer-aspect-ratio-supported, 326px); right: -200px; top: unset; width: 400px; } .framer-I24XY .framer-1fus5bi { aspect-ratio: 1.0728051391862956 / 1; height: var(--framer-aspect-ratio-supported, 373px); left: -200px; top: unset; width: 400px; } .framer-I24XY .framer-ubs19b { align-content: center; align-items: center; flex-direction: column; padding: 0px 80px 0px 80px; } .framer-I24XY .framer-1ntp0e9, .framer-I24XY .framer-17954q8 { flex: none; max-width: 590px; width: 100%; } .framer-I24XY .framer-1a89y6u { max-width: 800px; } .framer-I24XY .framer-ldbpcl { padding: 50px 30px 30px 30px; } .framer-I24XY .framer-724uup, .framer-I24XY .framer-1wyolbp { order: 0; } .framer-I24XY .framer-13twdmi, .framer-I24XY .framer-h84czk { order: 1; } .framer-I24XY .framer-7v8ebe, .framer-I24XY .framer-16cs26t { order: 2; } .framer-I24XY .framer-14tv3jz { overflow: hidden; padding: 80px; } .framer-I24XY .framer-645rte, .framer-I24XY .framer-82oxwk { height: 536px; width: 39%; } .framer-I24XY .framer-1vmbxwx { gap: 150px; max-width: 800px; } .framer-I24XY .framer-14d48n5 { flex: none; max-width: 590px; order: 1; width: 100%; } .framer-I24XY .framer-1f1d8mr, .framer-I24XY .framer-p80xd6, .framer-I24XY .framer-ekaa8p, .framer-I24XY .framer-1bdt6kb { height: var(--framer-aspect-ratio-supported, 162px); } .framer-I24XY .framer-3rntqz, .framer-I24XY .framer-9rcrvc, .framer-I24XY .framer-5zyo43, .framer-I24XY .framer-myngtj { height: var(--framer-aspect-ratio-supported, 163px); } .framer-I24XY .framer-cjwuli { align-content: center; align-items: center; justify-content: center; order: 0; width: 100%; } .framer-I24XY .framer-1btlike { padding: 0px 0px 10px 0px; } .framer-I24XY .framer-1594psy { flex-direction: column; gap: 50px; padding: 0px 120px 0px 120px; } .framer-I24XY .framer-1gi7a7f, .framer-I24XY .framer-1y3bvis { flex: none; padding: 0px; width: 100%; } .framer-I24XY .framer-11gezq2 { gap: 60px; justify-content: center; } .framer-I24XY .framer-1j9ni15 { width: 69%; } .framer-I24XY .framer-84brwd-container { aspect-ratio: 2.759375 / 1; height: var(--framer-aspect-ratio-supported, 260px); left: 50%; top: -84px; transform: translateX(-50%); width: 716px; } .framer-I24XY .framer-1mlrawq { align-content: center; align-items: center; flex-direction: column; justify-content: center; } .framer-I24XY .framer-5mi8i { flex: none; order: 0; width: 100%; } .framer-I24XY .framer-1jv9fxu-container, .framer-I24XY .framer-1v9m2q1-container { height: var(--framer-aspect-ratio-supported, 343px); } .framer-I24XY .framer-1nb1pwq-container { height: var(--framer-aspect-ratio-supported, 345px); order: 1; width: 49%; } .framer-I24XY .framer-fhels3 { gap: 40px; } .framer-I24XY .framer-1iidtbv-container { height: var(--framer-aspect-ratio-supported, 260px); top: -84px; width: 716px; } .framer-I24XY .framer-1t4jmgx { padding: 60px 80px 60px 80px; } .framer-I24XY .framer-1k0hph8, .framer-I24XY .framer-1a9af78 { aspect-ratio: unset; bottom: unset; height: 381px; width: 327px; } .framer-I24XY .framer-18w2i0a { padding: 0px 40px 0px 40px; }}\",\"@media (max-width: 809px) { .framer-I24XY.framer-72rtr7 { gap: 100px; width: 390px; } .framer-I24XY .framer-19xj8v4 { height: 505px; left: calc(50.00000000000002% - 664px / 2); top: -20px; width: 664px; } .framer-I24XY .framer-1kerl7k, .framer-I24XY .framer-1myh9u8 { height: 272px; width: 211px; } .framer-I24XY .framer-m4zssk-container, .framer-I24XY .framer-lv8r9e-container { aspect-ratio: 0.5 / 1; height: var(--framer-aspect-ratio-supported, 200px); top: -13px; width: 100px; } .framer-I24XY .framer-73dn7q-container { height: 200px; left: calc(50.76923076923079% - 170px / 2); top: -13px; width: 170px; } .framer-I24XY .framer-8fioq8 { padding: 170px 0px 0px 0px; } .framer-I24XY .framer-qxgjp8 { max-width: 450px; padding: 0px 16px 0px 16px; } .framer-I24XY .framer-f1sy2j { gap: 40px; } .framer-I24XY .framer-9fsph6, .framer-I24XY .framer-1w80isb { gap: 30px; } .framer-I24XY .framer-1e8ubz0, .framer-I24XY .framer-48t2pg, .framer-I24XY .framer-uc07da { gap: 16px; } .framer-I24XY .framer-2hr3v8-container { align-self: stretch; } .framer-I24XY .framer-6hquf { gap: 24px; } .framer-I24XY .framer-nh5zi3 { gap: 100px; max-width: 400px; width: 92%; } .framer-I24XY .framer-pv4tkn, .framer-I24XY .framer-19i3gvu, .framer-I24XY .framer-pk196g, .framer-I24XY .framer-11gezq2, .framer-I24XY .framer-lyrrsk { gap: 50px; } .framer-I24XY .framer-1lh0zo5-container, .framer-I24XY .framer-1hojqsu-container { aspect-ratio: 2.675373134328358 / 1; height: var(--framer-aspect-ratio-supported, 160px); left: 50%; top: -23px; transform: translateX(-50%); width: 428px; } .framer-I24XY .framer-1yw09mo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-I24XY .framer-uod2mi-container, .framer-I24XY .framer-1dhc2yz-container, .framer-I24XY .framer-3jhyk1-container, .framer-I24XY .framer-ein79e-container, .framer-I24XY .framer-16xoa8u-container, .framer-I24XY .framer-1lb0qva-container, .framer-I24XY .framer-117ppms-container, .framer-I24XY .framer-m3rrry-container, .framer-I24XY .framer-1hg9wza-container { align-self: unset; } .framer-I24XY .framer-10jeb82 { gap: 60px; } .framer-I24XY .framer-17577fz { gap: 16px; max-width: 500px; } .framer-I24XY .framer-jg5yzx-container { aspect-ratio: 2.759375 / 1; height: var(--framer-aspect-ratio-supported, 160px); left: 50%; top: -37px; transform: translateX(-50%); width: 440px; } .framer-I24XY .framer-1sw7970, .framer-I24XY .framer-mwdfq3, .framer-I24XY .framer-cq4k9t { flex-direction: column; gap: 40px; } .framer-I24XY .framer-i6lxly-container, .framer-I24XY .framer-8d80t-container, .framer-I24XY .framer-efb3x7-container, .framer-I24XY .framer-ouve7b-container, .framer-I24XY .framer-19c6xnf-container, .framer-I24XY .framer-1gb1hn-container, .framer-I24XY .framer-1qpc6n0-container, .framer-I24XY .framer-16s99hs-container, .framer-I24XY .framer-yvhfec-container, .framer-I24XY .framer-11cgwzm { flex: none; width: 100%; } .framer-I24XY .framer-u352ii-container { aspect-ratio: 2.675373134328358 / 1; height: var(--framer-aspect-ratio-supported, 160px); left: 50%; top: -24px; transform: translateX(-50%); width: 428px; } .framer-I24XY .framer-1r0xvbu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; justify-content: flex-start; } .framer-I24XY .framer-1yrm8hj-container, .framer-I24XY .framer-1ojv3cy-container, .framer-I24XY .framer-1tcn57p-container, .framer-I24XY .framer-1wp5g21-container { align-self: unset; height: auto; } .framer-I24XY .framer-qx72eq-container { aspect-ratio: 2.759375 / 1; height: var(--framer-aspect-ratio-supported, 160px); left: 50%; top: -11px; transform: translateX(-50%); width: 440px; } .framer-I24XY .framer-lvw2x6, .framer-I24XY .framer-1hs8fsl { padding: 0px; } .framer-I24XY .framer-1euzmse { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; padding: 20px; } .framer-I24XY .framer-cjvycj-container { align-self: unset; width: 326px; } .framer-I24XY .framer-ywqtdd, .framer-I24XY .framer-1qcea8x, .framer-I24XY .framer-ihzyjp { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 6px; } .framer-I24XY .framer-1nyyijl-container { height: 229px; } .framer-I24XY .framer-e4nbd4, .framer-I24XY .framer-68oes4, .framer-I24XY .framer-1mlrawq, .framer-I24XY .framer-rvtcz9 { flex-direction: column; } .framer-I24XY .framer-nqbvl4 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 238px; width: 100%; } .framer-I24XY .framer-1tkdjbn { flex: none; max-width: 560px; width: 100%; } .framer-I24XY .framer-1v04ka, .framer-I24XY .framer-htrbjd, .framer-I24XY .framer-1sb9xz { align-content: center; align-items: center; } .framer-I24XY .framer-sd3jjj { flex-direction: column; max-width: 320px; width: 100%; } .framer-I24XY .framer-jcblov-container, .framer-I24XY .framer-du48t3-container, .framer-I24XY .framer-1hqzfho-container { width: 100%; } .framer-I24XY .framer-7861gq { flex-direction: column; gap: 0px; padding: 10px; } .framer-I24XY .framer-1bn6kwl, .framer-I24XY .framer-11q9xsp, .framer-I24XY .framer-1gi7a7f, .framer-I24XY .framer-1y3bvis { flex: none; padding: 0px; width: 100%; } .framer-I24XY .framer-1dr1ncr { height: 1px; width: 100%; } .framer-I24XY .framer-1ehflku { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; gap: 20px; padding: 50px 24px 50px 24px; } .framer-I24XY .framer-negu9l { gap: 100px; } .framer-I24XY .framer-15srq5f { gap: 50px; max-width: 400px; width: 90%; } .framer-I24XY .framer-cijgrk { max-width: 400px; } .framer-I24XY .framer-1ihr0z8 { aspect-ratio: 2.75625 / 1; height: var(--framer-aspect-ratio-supported, 160px); left: 50%; top: -45px; transform: translateX(-50%); width: 440px; } .framer-I24XY .framer-17gyohp { aspect-ratio: 1.6339869281045751 / 1; bottom: 28px; height: var(--framer-aspect-ratio-supported, 184px); right: -110px; top: unset; width: 300px; } .framer-I24XY .framer-1fus5bi { aspect-ratio: 1.6372549019607843 / 1; bottom: 28px; height: var(--framer-aspect-ratio-supported, 183px); left: -110px; top: unset; width: 300px; } .framer-I24XY .framer-1ihujay { gap: 40px; width: 100%; } .framer-I24XY .framer-ubs19b { flex-direction: column; gap: 20px; padding: 0px; } .framer-I24XY .framer-1ntp0e9 { flex: none; gap: 24px; padding: 30px; width: 100%; } .framer-I24XY .framer-279q7z, .framer-I24XY .framer-1jva6e, .framer-I24XY .framer-1so2for { gap: 12px; } .framer-I24XY .framer-q1bmpt { min-height: unset; } .framer-I24XY .framer-17954q8 { flex: none; gap: 20px; padding: 30px; width: 100%; } .framer-I24XY .framer-qxrlew { gap: 20px; } .framer-I24XY .framer-1n746qx { max-width: 400px; width: 90%; } .framer-I24XY .framer-1q6u1um-container { aspect-ratio: 2.675373134328358 / 1; height: var(--framer-aspect-ratio-supported, 160px); left: 50%; top: -35px; transform: translateX(-50%); width: 428px; } .framer-I24XY .framer-1a89y6u { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; max-width: 400px; width: 90%; } .framer-I24XY .framer-4n5rlc { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; order: 0; } .framer-I24XY .framer-1krqlp9, .framer-I24XY .framer-16cs26t { order: 2; } .framer-I24XY .framer-8xwi3v { height: var(--framer-aspect-ratio-supported, 391px); } .framer-I24XY .framer-14tv3jz { gap: 30px; overflow: hidden; padding: 50px 45px 50px 45px; } .framer-I24XY .framer-1nz0it5 { gap: 12px; max-width: 400px; } .framer-I24XY .framer-1ce4mkl-container { max-width: 300px; width: 100%; } .framer-I24XY .framer-645rte, .framer-I24XY .framer-82oxwk { height: 415px; width: 38%; } .framer-I24XY .framer-1vmbxwx { gap: 100px; max-width: 400px; } .framer-I24XY .framer-14d48n5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; max-width: 590px; order: 1; width: 100%; } .framer-I24XY .framer-1f1d8mr, .framer-I24XY .framer-ekaa8p, .framer-I24XY .framer-3rntqz, .framer-I24XY .framer-5zyo43 { align-self: unset; height: var(--framer-aspect-ratio-supported, 160px); width: 281px; } .framer-I24XY .framer-p80xd6, .framer-I24XY .framer-1bdt6kb, .framer-I24XY .framer-9rcrvc, .framer-I24XY .framer-myngtj { height: var(--framer-aspect-ratio-supported, 160px); } .framer-I24XY .framer-cjwuli { align-content: center; align-items: center; gap: 40px; justify-content: center; order: 0; width: 100%; } .framer-I24XY .framer-h84czk { order: 1; } .framer-I24XY .framer-1wyolbp { order: 0; } .framer-I24XY .framer-xbp8ch-container { aspect-ratio: 2.675373134328358 / 1; height: var(--framer-aspect-ratio-supported, 160px); left: 50%; top: -25px; transform: translateX(-50%); width: 428px; } .framer-I24XY .framer-1btlike { padding: 0px 0px 10px 0px; } .framer-I24XY .framer-1594psy { flex-direction: column; gap: 30px; } .framer-I24XY .framer-84brwd-container { aspect-ratio: 2.759375 / 1; height: var(--framer-aspect-ratio-supported, 160px); left: 50%; top: -45px; transform: translateX(-50%); width: 440px; } .framer-I24XY .framer-5mi8i { flex: none; flex-direction: column; width: 100%; } .framer-I24XY .framer-1jv9fxu-container { flex: none; height: var(--framer-aspect-ratio-supported, 339px); width: 100%; } .framer-I24XY .framer-1v9m2q1-container { flex: none; height: var(--framer-aspect-ratio-supported, 340px); width: 100%; } .framer-I24XY .framer-1nb1pwq-container { height: var(--framer-aspect-ratio-supported, 339px); width: 100%; } .framer-I24XY .framer-uo551i { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-I24XY .framer-1iidtbv-container { height: var(--framer-aspect-ratio-supported, 160px); top: -45px; width: 440px; } .framer-I24XY .framer-4unaml { gap: 12px; padding: 8px 8px 8px 16px; width: 100%; } .framer-I24XY .framer-1p6dhmx { gap: 8px; } .framer-I24XY .framer-1t4jmgx { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; gap: 30px; padding: 40px; } .framer-I24XY .framer-1k0hph8 { aspect-ratio: unset; border-bottom-left-radius: unset; border-top-left-radius: 16px; bottom: unset; height: 343px; top: -1px; width: 232px; } .framer-I24XY .framer-1a9af78 { aspect-ratio: unset; border-bottom-right-radius: unset; border-top-right-radius: 16px; bottom: unset; height: 343px; width: 232px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 17228.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LeUDAL3J1\":{\"layout\":[\"fixed\",\"auto\"]},\"L3kCwAA4H\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"DsgFqezgd\":{\"pattern\":\":DsgFqezgd\",\"name\":\"home\"},\"mA9z_YpGw\":{\"pattern\":\":mA9z_YpGw\",\"name\":\"work\"},\"PgfaHu1Oj\":{\"pattern\":\":PgfaHu1Oj\",\"name\":\"why-us\"},\"Xk4GvYRM2\":{\"pattern\":\":Xk4GvYRM2\",\"name\":\"process\"},\"SSWwehQvf\":{\"pattern\":\":SSWwehQvf\",\"name\":\"tools\"},\"ljBFwnhAK\":{\"pattern\":\":ljBFwnhAK\",\"name\":\"about\"},\"fWfxu9GLz\":{\"pattern\":\":fWfxu9GLz\",\"name\":\"our-mission\"},\"yinHUrXOX\":{\"pattern\":\":yinHUrXOX\",\"name\":\"services\"},\"bHCv5lWWh\":{\"pattern\":\":bHCv5lWWh\",\"name\":\"comparison\"},\"WL5fXWqha\":{\"pattern\":\":WL5fXWqha\",\"name\":\"industry-insight\"},\"HXHMrvwJK\":{\"pattern\":\":HXHMrvwJK\",\"name\":\"result-analytics\"},\"JcTPxKRVq\":{\"pattern\":\":JcTPxKRVq\",\"name\":\"pricing\"},\"dLUZcqvkX\":{\"pattern\":\":dLUZcqvkX\",\"name\":\"features\"},\"ghaaNSoE4\":{\"pattern\":\":ghaaNSoE4\",\"name\":\"faq\"},\"Yx9wPTYGX\":{\"pattern\":\":Yx9wPTYGX\",\"name\":\"cta\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-I24XY\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:17228.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqklNRCEvmma-aua4.woff2\",weight:\"500\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45Dmqkr9WCEvmma-aua4.woff2\",weight:\"600\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkmFRCEvmma-aua4.woff2\",weight:\"400\"},{family:\"Rethink Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rethinksans/v5/AMODz4SDuXOMCPfdoglY9JQuWHBGG0X45DmqkoZWCEvmma-aua4.woff2\",weight:\"700\"}]},...NavbarFonts,...ParticlesFonts,...ButtonsPrimaryButtonFonts,...CardWorkCardFonts,...TickerFonts,...Ticker1Fonts,...HelperBackgroundFonts,...CardsWorkCardFonts,...ButtonsSecondaryButtonFonts,...CardsWhyUsCardFonts,...CardsPrimaryCardFonts,...CardsToolsCardFonts,...HelperVideoFonts,...ButtonsSocialButton2Fonts,...VideoFonts,...HelperServicePointerFonts,...NumberCounterFonts,...HelperLinkFonts,...HelperPricingPointerFonts,...CardsFeatureCard1Fonts,...CardsFeatureCard2Fonts,...CardsFeatureCard3Fonts,...CardsBlogCardFonts,...FAQContainerFonts,...FooterFonts,...ButtonsFloatingBtnFonts,...HelperFigmaButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LeUDAL3J1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L3kCwAA4H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"DsgFqezgd\\\":{\\\"pattern\\\":\\\":DsgFqezgd\\\",\\\"name\\\":\\\"home\\\"},\\\"mA9z_YpGw\\\":{\\\"pattern\\\":\\\":mA9z_YpGw\\\",\\\"name\\\":\\\"work\\\"},\\\"PgfaHu1Oj\\\":{\\\"pattern\\\":\\\":PgfaHu1Oj\\\",\\\"name\\\":\\\"why-us\\\"},\\\"Xk4GvYRM2\\\":{\\\"pattern\\\":\\\":Xk4GvYRM2\\\",\\\"name\\\":\\\"process\\\"},\\\"SSWwehQvf\\\":{\\\"pattern\\\":\\\":SSWwehQvf\\\",\\\"name\\\":\\\"tools\\\"},\\\"ljBFwnhAK\\\":{\\\"pattern\\\":\\\":ljBFwnhAK\\\",\\\"name\\\":\\\"about\\\"},\\\"fWfxu9GLz\\\":{\\\"pattern\\\":\\\":fWfxu9GLz\\\",\\\"name\\\":\\\"our-mission\\\"},\\\"yinHUrXOX\\\":{\\\"pattern\\\":\\\":yinHUrXOX\\\",\\\"name\\\":\\\"services\\\"},\\\"bHCv5lWWh\\\":{\\\"pattern\\\":\\\":bHCv5lWWh\\\",\\\"name\\\":\\\"comparison\\\"},\\\"WL5fXWqha\\\":{\\\"pattern\\\":\\\":WL5fXWqha\\\",\\\"name\\\":\\\"industry-insight\\\"},\\\"HXHMrvwJK\\\":{\\\"pattern\\\":\\\":HXHMrvwJK\\\",\\\"name\\\":\\\"result-analytics\\\"},\\\"JcTPxKRVq\\\":{\\\"pattern\\\":\\\":JcTPxKRVq\\\",\\\"name\\\":\\\"pricing\\\"},\\\"dLUZcqvkX\\\":{\\\"pattern\\\":\\\":dLUZcqvkX\\\",\\\"name\\\":\\\"features\\\"},\\\"ghaaNSoE4\\\":{\\\"pattern\\\":\\\":ghaaNSoE4\\\",\\\"name\\\":\\\"faq\\\"},\\\"Yx9wPTYGX\\\":{\\\"pattern\\\":\\\":Yx9wPTYGX\\\",\\\"name\\\":\\\"cta\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"17228.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "heading", "height", "id", "text", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jxpw6yvEh", "I0KtDm67s", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterr3rdya", "args", "onMouseLeavellyst6", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FrameraJQBWtt9u", "withCSS", "aJQBWtt9u_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "g6sRtdMft", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FrameraU0Y9Afv7", "withCSS", "aU0Y9Afv7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "heading", "height", "id", "text", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zzm203ZdU", "Z9AfFpsg3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1jxnm8a", "args", "onMouseLeave4zju07", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerf8WfU2jMQ", "withCSS", "f8WfU2jMQ_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qlE34ZEf9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerFnLhc8lAP", "withCSS", "FnLhc8lAP_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", "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", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerIcjfBXCvG", "withCSS", "IcjfBXCvG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "toResponsiveImage", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon", "id", "link", "newTab", "padding", "subText", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "aK6RM5mH2", "HRkWqekUn", "lyXAy1XBT", "E3NfzBte1", "HZUjHGiHS", "sKOedtuE3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "RichText2", "css", "FramerIywykxv6x", "withCSS", "Iywykxv6x_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "numberToPixelString", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "heading", "height", "icon", "id", "padding", "subHeading", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ddt8xAZJ9", "k_d_dxfEg", "ThZHaXbC0", "LMGYp4avW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerJi_kxN6QL", "withCSS", "Ji_kxN6QL_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TsYFO1LUx", "ZN7ZyUH44", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerRisD07fNB", "withCSS", "RisD07fNB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "category", "height", "id", "image", "width", "workTitle", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "tIbDfJWuT", "uPNBFqzMC", "GpeXIItGn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framervh_Uh6aCU", "withCSS", "vh_Uh6aCU_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "HgB064Vz0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerw59uHh8HX", "withCSS", "w59uHh8HX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "heading", "height", "id", "text", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fTw5h1r00", "A5s7EgHee", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1jk458g", "args", "onMouseLeavee4o8u3", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerZPVT9hL3D", "withCSS", "ZPVT9hL3D_default", "addPropertyControls", "ControlType", "addFonts", "NumberCounterStyles", "NumberCounter", "props", "startNumber", "endNumber", "speed", "prefix", "suffix", "loop", "decimalSeparator", "fontSize", "font", "fontColor", "count", "setCount", "ye", "isVisible", "setIsVisible", "ref", "e", "ue", "observer", "entries", "entry", "intervalId", "prevCount", "formatCount", "number", "u", "motion", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "me8LuZ20A_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "ParticlesFonts", "ParticleWrapper", "ImageWithFX", "withFX", "ContainerWithFX", "Container", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonsPrimaryButtonFonts", "SHwspzjuM_default", "CardWorkCardFonts", "vh_Uh6aCU_default", "TickerFonts", "Ticker", "ContainerWithOptimizedAppearEffect", "Ticker1Fonts", "HelperBackgroundFonts", "nevMPs773_default", "CardsWorkCardFonts", "uHGeR8Cbp_default", "ButtonsSecondaryButtonFonts", "WOvOXGBiU_default", "CardsWhyUsCardFonts", "Ji_kxN6QL_default", "CardsPrimaryCardFonts", "n5AShpGAk_default", "CardsToolsCardFonts", "Iywykxv6x_default", "HelperVideoFonts", "jW5uY6jen_default", "ButtonsSocialButton2Fonts", "b4p2nYqLY_default", "VideoFonts", "Video", "HelperServicePointerFonts", "aU0Y9Afv7_default", "NumberCounterFonts", "NumberCounter", "HelperLinkFonts", "RisD07fNB_default", "HelperPricingPointerFonts", "w59uHh8HX_default", "CardsFeatureCard1Fonts", "f8WfU2jMQ_default", "CardsFeatureCard2Fonts", "aJQBWtt9u_default", "CardsFeatureCard3Fonts", "ZPVT9hL3D_default", "CardsBlogCardFonts", "SKjQddFXm_default", "FAQContainerFonts", "HD4JrW9gt_default", "FooterFonts", "hYL69wU1a_default", "ButtonsFloatingBtnFonts", "IcjfBXCvG_default", "HelperFigmaButtonFonts", "FnLhc8lAP_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "animation2", "transition2", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "transition7", "animation8", "transition8", "animation9", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transformTemplate2", "transition9", "animation10", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "l8x4zkBQGlfY0Y5riS", "JfWwVNrV7lfY0Y5riS", "M6ncWYE_2lfY0Y5riS", "Cp0JtmVcwlfY0Y5riS", "h3hGs1DgelfY0Y5riS", "idlfY0Y5riS", "UdjOnwSXllCb5KpzNo", "jLOlWE_7plCb5KpzNo", "QxvCbteLQlCb5KpzNo", "wX1pknWSMlCb5KpzNo", "pZu3NBvaIlCb5KpzNo", "idlCb5KpzNo", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "router", "useRouter", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "isDisplayed2", "isDisplayed3", "elementId11", "ref12", "elementId12", "ref13", "activeLocaleCode", "useLocaleCode", "elementId13", "ref14", "elementId14", "ref15", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "Link", "x", "ChildrenCanSuspend", "hykAOrKre_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "enumToDisplayNameFunctions", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "tVgCQzjXN_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
