{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/56hYCvV3bgVIBSTM69gb/1TaCGU6kID9Gq2lZ7Uri/MveyZfocH.js", "ssg:https://framerusercontent.com/modules/pDJXnL4UCfaSoeOvOCwn/rYrjIDZdR7bd09ZwMdA1/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (4458791)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-X2fmQ\";const variantClassNames={guWKjYNbZ:\"framer-v-l2qa6q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"guWKjYNbZ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-l2qa6q\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"guWKjYNbZ\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:131,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jtXklWn3cMKsK6SuVa3wVSyec.png\"},className:\"framer-1g00ue4\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"BQfyN_1oe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:365,pixelWidth:684,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/pkTp95jtXnyHxMzZUT18LEdPC4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pkTp95jtXnyHxMzZUT18LEdPC4.png?scale-down-to=512 512w,https://framerusercontent.com/images/pkTp95jtXnyHxMzZUT18LEdPC4.png 684w\"},className:\"framer-gu99u6\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"i6WQYlKdR\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:201,pixelWidth:820,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/yyGVMXNsecY0LLdeBQ24WvavPk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yyGVMXNsecY0LLdeBQ24WvavPk.png?scale-down-to=512 512w,https://framerusercontent.com/images/yyGVMXNsecY0LLdeBQ24WvavPk.png 820w\"},className:\"framer-1bu04ty\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"qrRU9nwa4\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X2fmQ.framer-15ox8ti, .framer-X2fmQ .framer-15ox8ti { display: block; }\",\".framer-X2fmQ.framer-l2qa6q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 685px; }\",\".framer-X2fmQ .framer-1g00ue4, .framer-X2fmQ .framer-gu99u6, .framer-X2fmQ .framer-1bu04ty { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: hidden; position: relative; width: 136px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46\n * @framerIntrinsicWidth 685\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMveyZfocH=withCSS(Component,css,\"framer-X2fmQ\");export default FramerMveyZfocH;FramerMveyZfocH.displayName=\"brand logos\";FramerMveyZfocH.defaultProps={height:46,width:685};addFonts(FramerMveyZfocH,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMveyZfocH\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"46\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"685\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MveyZfocH.map", "// Generated by Framer (64bdc4e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import ButtonMainButton from\"#framer/local/canvasComponent/Csa3l6Asm/Csa3l6Asm.js\";import ButtonSubButton from\"#framer/local/canvasComponent/eLPghSXHG/eLPghSXHG.js\";import FAQsSingleFAQ from\"#framer/local/canvasComponent/GJGRZDt21/GJGRZDt21.js\";import Review from\"#framer/local/canvasComponent/jePEdS4RN/jePEdS4RN.js\";import CTA from\"#framer/local/canvasComponent/MBU299z6Y/MBU299z6Y.js\";import BrandLogos from\"#framer/local/canvasComponent/MveyZfocH/MveyZfocH.js\";import Footer from\"#framer/local/canvasComponent/nD8ama7rf/nD8ama7rf.js\";import NavbarNavbar from\"#framer/local/canvasComponent/SDFhNJXGw/SDFhNJXGw.js\";import Counter from\"#framer/local/codeFile/wsQmppm/Counter.js\";import*as sharedStyle3 from\"#framer/local/css/a3q0NdvcQ/a3q0NdvcQ.js\";import*as sharedStyle1 from\"#framer/local/css/Eou8lZgYg/Eou8lZgYg.js\";import*as sharedStyle2 from\"#framer/local/css/LsD64tzfB/LsD64tzfB.js\";import*as sharedStyle from\"#framer/local/css/Mzu6SFbJ7/Mzu6SFbJ7.js\";import*as sharedStyle4 from\"#framer/local/css/OgRYqaJQn/OgRYqaJQn.js\";import*as sharedStyle5 from\"#framer/local/css/zxDQuI8Uk/zxDQuI8Uk.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarNavbarFonts=getFonts(NavbarNavbar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonMainButtonFonts=getFonts(ButtonMainButton);const BrandLogosFonts=getFonts(BrandLogos);const ButtonSubButtonFonts=getFonts(ButtonSubButton);const VideoFonts=getFonts(Video);const CounterFonts=getFonts(Counter);const EmbedFonts=getFonts(Embed);const ReviewFonts=getFonts(Review);const FAQsSingleFAQFonts=getFonts(FAQsSingleFAQ);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={CIYuPWjfD:\"(max-width: 809px)\",hcMvc6Ov5:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-0FuVw\";const variantClassNames={CIYuPWjfD:\"framer-v-1fx776b\",hcMvc6Ov5:\"framer-v-1yj7wkg\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:45,delay:1,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30};const transition2={damping:45,delay:.75,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={damping:45,delay:.04,mass:1,stiffness:150,type:\"spring\"};const textEffect={effect:animation3,repeat:false,startDelay:0,tokenization:\"word\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const transition4={bounce:.2,delay:.75,duration:1,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};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:\"CIYuPWjfD\",Tablet:\"hcMvc6Ov5\"};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,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"EXElfhBPa\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"nNpbbs9iT\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"Spf6J50dP\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"ZZbqMz6P0\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"CIYuPWjfD\")return false;return true;};const elementId4=useRouteElementId(\"NvFutE00M\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"WhFuERudo\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"AQPMvMW3d\");const ref7=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-7c556ede-4841-49c5-855a-9b25094188c4, rgb(5, 5, 5)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1i3452o-container\",\"data-framer-appear-id\":\"1i3452o\",initial:animation1,layoutScroll:true,nodeId:\"tQi6qKHvr\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{variant:\"KgWHlY4qy\"},hcMvc6Ov5:{variant:\"KgWHlY4qy\"}},children:/*#__PURE__*/_jsx(NavbarNavbar,{height:\"100%\",id:\"tQi6qKHvr\",layoutId:\"tQi6qKHvr\",style:{width:\"100%\"},variant:\"kcPngj2iH\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1iiu3cz\",\"data-framer-name\":\"Hero Section\",id:\"1iiu3cz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pxqek8\",\"data-framer-name\":\"Hero content\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1yiz8i5\",\"data-framer-appear-id\":\"1yiz8i5\",\"data-framer-name\":\"Avater Section\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13rs697\",\"data-framer-name\":\"Avater Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:28.888887740947627,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:52,src:\"https://framerusercontent.com/images/4Hpv445mEb8Fz67ZLBFxwWC0gQ.png\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:28.888887740947627,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:52,src:\"https://framerusercontent.com/images/4Hpv445mEb8Fz67ZLBFxwWC0gQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:28.888887740947627,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:52,src:\"https://framerusercontent.com/images/4Hpv445mEb8Fz67ZLBFxwWC0gQ.png\"},className:\"framer-1rq3lpd\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:29.44444327442739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:53,src:\"https://framerusercontent.com/images/TPTJvZFXUQaesLbjFbF7OadZY.png\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:29.44444327442739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:53,src:\"https://framerusercontent.com/images/TPTJvZFXUQaesLbjFbF7OadZY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:29.44444327442739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:53,src:\"https://framerusercontent.com/images/TPTJvZFXUQaesLbjFbF7OadZY.png\"},className:\"framer-1vrapxc\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:29.44444327442739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:53,src:\"https://framerusercontent.com/images/i68qHafot8fNYkXhPJZKZj5yZU.png\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:29.44444327442739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:53,src:\"https://framerusercontent.com/images/i68qHafot8fNYkXhPJZKZj5yZU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:29.44444327442739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:53,src:\"https://framerusercontent.com/images/i68qHafot8fNYkXhPJZKZj5yZU.png\"},className:\"framer-u6jig9\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:29.44444327442739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+130+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:53,src:\"https://framerusercontent.com/images/D3eENmxKUJDm9Q6O4iDjBEQ4zQ.png\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:29.44444327442739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:53,src:\"https://framerusercontent.com/images/D3eENmxKUJDm9Q6O4iDjBEQ4zQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.888887740947627,intrinsicWidth:29.44444327442739,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+0+11.2+0-28),pixelHeight:52,pixelWidth:53,src:\"https://framerusercontent.com/images/D3eENmxKUJDm9Q6O4iDjBEQ4zQ.png\"},className:\"framer-174qa9o\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"200+ happy clients\"})}),className:\"framer-qlcqem\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-180g2e2\",\"data-framer-name\":\"Tittle text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:[\"E-commerce \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"SEO \"}),\"that increases your Traffic & conversions\"]})})},hcMvc6Ov5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:[\"E-commerce \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"SEO \"}),\"that increases your Traffic & conversions\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:[\"E-commerce \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTZXJpZi1pdGFsaWM=\",\"--framer-font-family\":'\"Instrument Serif\", \"Instrument Serif Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\"},children:\"SEO \"}),\"that increases your Traffic & conversions\"]})}),className:\"framer-1h8jjwd\",effect:textEffect,fonts:[\"GF;Instrument Sans-500\",\"GF;Instrument Serif-italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"ECommerce SEO Consultant For Traffic & Conversions\"})}),className:\"framer-cytaak\",\"data-framer-appear-id\":\"cytaak\",fonts:[\"Inter\"],initial:animation5,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+0+130+0+0+259.4},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+0+160+0+0+272.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+0+180+0+0+284.4,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-gvuwcz-container\",\"data-framer-appear-id\":\"gvuwcz\",initial:animation6,nodeId:\"IfC3HIt4w\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonMainButton,{En1a59uFp:\"Book a Call\",height:\"100%\",id:\"IfC3HIt4w\",layoutId:\"IfC3HIt4w\",variant:\"MwgUQJIEd\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ambp7a\",\"data-styles-preset\":\"LsD64tzfB\",children:\"Trusted By\"})}),className:\"framer-1249beq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`min(1000px, min(${componentViewport?.width||\"100vw\"} - 40px, 685px))`,y:(componentViewport?.y||0)+0+0+130+0+0+388},hcMvc6Ov5:{width:`min(1000px, min(${componentViewport?.width||\"100vw\"} - 80px, 685px))`,y:(componentViewport?.y||0)+0+0+160+0+0+401}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:`min(1000px, min(${componentViewport?.width||\"100vw\"} - 160px, 685px))`,y:(componentViewport?.y||0)+0+0+180+0+0+413,children:/*#__PURE__*/_jsx(Container,{className:\"framer-103q74r-container\",nodeId:\"k4nPftgTE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BrandLogos,{height:\"100%\",id:\"k4nPftgTE\",layoutId:\"k4nPftgTE\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:733.3333041932859,intrinsicWidth:1333.333280351429,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:1320,pixelWidth:2400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qU7w2WhSCJVcAWZE4LjJySo5zpA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/qU7w2WhSCJVcAWZE4LjJySo5zpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/qU7w2WhSCJVcAWZE4LjJySo5zpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qU7w2WhSCJVcAWZE4LjJySo5zpA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qU7w2WhSCJVcAWZE4LjJySo5zpA.png 2400w\"},className:\"framer-1hndm4q\",\"data-framer-name\":\"Background\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13ksgjc\",\"data-framer-name\":\"Highlights Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3hvvre\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9399q\",\"data-framer-name\":\"Text container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+624+80+0+0+0+0+0},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+787+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+819+80+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6h24gx-container\",nodeId:\"Yjtx_dPsV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSubButton,{DjQOtAypz:\"Highlights\",height:\"100%\",id:\"Yjtx_dPsV\",layoutId:\"Yjtx_dPsV\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",children:\"Increase your Ecommerce traffic & profits with SEO\"})}),className:\"framer-173oldr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Choose eCommerce SEO services and systems that focuses on your \",/*#__PURE__*/_jsx(\"strong\",{children:\"organic product page sales\"}),\"!\"]})}),className:\"framer-3zg6bi\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1upp8ho-container\",isModuleExternal:true,nodeId:\"gyVHV8p92\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"gyVHV8p92\",isMixedBorderRadius:false,layoutId:\"gyVHV8p92\",loop:true,muted:false,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/AS8thaHYgKroVuXZK2yR9tgjxY.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__*/_jsxs(\"div\",{className:\"framer-ux0d7p\",\"data-framer-name\":\"Counter Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1brsilh\",\"data-framer-name\":\"Counter\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yprmho-container\",isAuthoredByUser:true,nodeId:\"tsN8tbao2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hcMvc6Ov5:{value:288}},children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"tsN8tbao2\",layoutId:\"tsN8tbao2\",prefix:true,prefixText:\"+\",stiffness:300,suffix:true,suffixText:\"k+\",value:570,width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Return on Investment\"})}),className:\"framer-1qwxtl0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tf5eeo\",\"data-framer-name\":\"Counter\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ej5u64-container\",isAuthoredByUser:true,nodeId:\"XdkY8Tk7n\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"XdkY8Tk7n\",layoutId:\"XdkY8Tk7n\",prefix:true,prefixText:\"+\",stiffness:300,suffix:true,suffixText:\"k+\",value:690,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Monthly Organic Traffic\"})}),className:\"framer-1uiy6ey\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dafpcx\",\"data-framer-name\":\"Counter\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19b779o-container\",isAuthoredByUser:true,nodeId:\"Ro4jqEu5V\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\",damping:100,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"Ro4jqEu5V\",layoutId:\"Ro4jqEu5V\",prefix:true,prefixText:\"+\",stiffness:300,suffix:true,suffixText:\"k+\",value:800,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Ranking Keywords\"})}),className:\"framer-3fjt6v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1smfhor-container\",\"data-framer-name\":\"KitForm\",id:\"1smfhor\",isAuthoredByUser:true,isModuleExternal:true,name:\"KitForm\",nodeId:\"xZ8k2hqws\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script async data-uid=\"038a988742\" src=\"https://flyhighdigital.kit.com/038a988742/index.js\"></script>',id:\"xZ8k2hqws\",layoutId:\"xZ8k2hqws\",name:\"KitForm\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-3kjk3k\",\"data-framer-name\":\"Highlights\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6g01g8\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kteng3\",\"data-framer-name\":\"Content.\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ouyzo8\",\"data-framer-name\":\"Titel\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+3335+60+0+0+0+0+0+0},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+2728+80+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+2709+60+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k9lr4p-container\",nodeId:\"WMzg6e3aI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSubButton,{DjQOtAypz:\"Features\",height:\"100%\",id:\"WMzg6e3aI\",layoutId:\"WMzg6e3aI\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",children:\"How I build Your Ecommerce Performance Engine\"})}),className:\"framer-1sjh1be\",\"data-framer-name\":\"Performance Tracking and Reporting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Turn your eCommerce store into a profit engine.\"})}),className:\"framer-1k3t85i\",\"data-framer-name\":\"Data-Driven Strategies, Real-Time Insights, and Remarkable Results for Your Business Growth\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+3335+60+0+0+0+244},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+2728+80+0+0+0+244}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+2709+60+0+0+0+244,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6yv8w-container\",nodeId:\"GPsCP6EZA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonMainButton,{En1a59uFp:\"Book a Call\",height:\"100%\",id:\"GPsCP6EZA\",layoutId:\"GPsCP6EZA\",variant:\"MwgUQJIEd\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16eidb8\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"Highlights\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3335+60+0+339+0+0),pixelHeight:968,pixelWidth:680,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px)`,src:\"https://framerusercontent.com/images/soA979PcVaXOqvYHwXC5UorbI.png\",srcSet:\"https://framerusercontent.com/images/soA979PcVaXOqvYHwXC5UorbI.png 680w\"}},hcMvc6Ov5:{background:{alt:\"Highlights\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2728+80+0+339+0),pixelHeight:968,pixelWidth:680,sizes:\"340px\",src:\"https://framerusercontent.com/images/soA979PcVaXOqvYHwXC5UorbI.png\",srcSet:\"https://framerusercontent.com/images/soA979PcVaXOqvYHwXC5UorbI.png 680w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Highlights\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2709+60+0+339+0),pixelHeight:968,pixelWidth:680,sizes:`min(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 30px) / 2, 1px), 340px)`,src:\"https://framerusercontent.com/images/soA979PcVaXOqvYHwXC5UorbI.png\",srcSet:\"https://framerusercontent.com/images/soA979PcVaXOqvYHwXC5UorbI.png 680w\"},className:\"framer-loafk9\",\"data-border\":true,\"data-framer-name\":\"image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-97i1vm\",\"data-framer-name\":\"Titel\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",children:\"Search Engine Optimisation\"})}),className:\"framer-og1uk0\",\"data-framer-name\":\"Search Engine Optimization\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Grow your eCom website's visibility and ranking with expert SEO strategies\"})}),className:\"framer-w6adqx\",\"data-framer-name\":\"Boost your website's visibility and ranking with expert SEO strategies\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3335+60+0+339+0+0+32+192),pixelHeight:502,pixelWidth:552,sizes:\"246.192px\",src:\"https://framerusercontent.com/images/IbWRpZUnPHny81L1JNxtWOUPt88.png\",srcSet:\"https://framerusercontent.com/images/IbWRpZUnPHny81L1JNxtWOUPt88.png?scale-down-to=512 512w,https://framerusercontent.com/images/IbWRpZUnPHny81L1JNxtWOUPt88.png 552w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2728+80+0+339+0+32+192),pixelHeight:502,pixelWidth:552,sizes:\"242.88px\",src:\"https://framerusercontent.com/images/IbWRpZUnPHny81L1JNxtWOUPt88.png\",srcSet:\"https://framerusercontent.com/images/IbWRpZUnPHny81L1JNxtWOUPt88.png?scale-down-to=512 512w,https://framerusercontent.com/images/IbWRpZUnPHny81L1JNxtWOUPt88.png 552w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2709+60+0+339+0+32+192),pixelHeight:502,pixelWidth:552,sizes:`calc(min(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 30px) / 2, 1px), 340px) - 64px)`,src:\"https://framerusercontent.com/images/IbWRpZUnPHny81L1JNxtWOUPt88.png\",srcSet:\"https://framerusercontent.com/images/IbWRpZUnPHny81L1JNxtWOUPt88.png?scale-down-to=512 512w,https://framerusercontent.com/images/IbWRpZUnPHny81L1JNxtWOUPt88.png 552w\"},className:\"framer-42jd1t\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7qruuq\",\"data-framer-name\":\"Wapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3335+60+0+339+0+499+0+0),pixelHeight:486,pixelWidth:1420,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px)`,src:\"https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png\",srcSet:\"https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png?scale-down-to=512 512w,https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png 1420w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2728+80+0+339+0+0+0),pixelHeight:486,pixelWidth:1420,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 370px, 1px)`,src:\"https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png\",srcSet:\"https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png?scale-down-to=512 512w,https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png 1420w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2709+60+0+339+0+0+0),pixelHeight:486,pixelWidth:1420,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png\",srcSet:\"https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png?scale-down-to=512 512w,https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EhElOD1a9sEanaVXxOeagAKRKk.png 1420w\"},className:\"framer-zvzbha\",\"data-border\":true,\"data-framer-name\":\"image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dn33ds\",\"data-framer-name\":\"Titel\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",style:{\"--framer-text-alignment\":\"left\"},children:\"Grow your customers and revenue\"})}),className:\"framer-1vwc0tw\",\"data-framer-name\":\"Enhanced Leadership Skills\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Build clicks that turn into qualified customers.\"})}),className:\"framer-1f6sqy2\",\"data-framer-name\":\"An integrated booking system that allows clients to schedule sessions directly through the website.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"Enhanced Leadership Skills\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3335+60+0+339+0+499+0+0+32+186),pixelHeight:344,pixelWidth:724,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px) - 64px)`,src:\"https://framerusercontent.com/images/mUCJmeByXlPcdOiy1oUV0uqcpVk.png\",srcSet:\"https://framerusercontent.com/images/mUCJmeByXlPcdOiy1oUV0uqcpVk.png?scale-down-to=512 512w,https://framerusercontent.com/images/mUCJmeByXlPcdOiy1oUV0uqcpVk.png 724w\"}},hcMvc6Ov5:{background:{alt:\"Enhanced Leadership Skills\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2728+80+0+339+0+0+0+32+182),pixelHeight:344,pixelWidth:724,sizes:\"300.6082px\",src:\"https://framerusercontent.com/images/mUCJmeByXlPcdOiy1oUV0uqcpVk.png\",srcSet:\"https://framerusercontent.com/images/mUCJmeByXlPcdOiy1oUV0uqcpVk.png?scale-down-to=512 512w,https://framerusercontent.com/images/mUCJmeByXlPcdOiy1oUV0uqcpVk.png 724w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Enhanced Leadership Skills\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2709+60+0+339+0+0+0+33),pixelHeight:344,pixelWidth:724,sizes:\"362px\",src:\"https://framerusercontent.com/images/mUCJmeByXlPcdOiy1oUV0uqcpVk.png\",srcSet:\"https://framerusercontent.com/images/mUCJmeByXlPcdOiy1oUV0uqcpVk.png?scale-down-to=512 512w,https://framerusercontent.com/images/mUCJmeByXlPcdOiy1oUV0uqcpVk.png 724w\"},className:\"framer-xl633v\",\"data-framer-name\":\"imgae\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a69hxi\",\"data-framer-name\":\"image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3335+60+0+339+0+499+0+442+0+0),pixelHeight:422,pixelWidth:680,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px)`,src:\"https://framerusercontent.com/images/QRmYQ2OYB2DVBuKaIptAKqvpyM.png\",srcSet:\"https://framerusercontent.com/images/QRmYQ2OYB2DVBuKaIptAKqvpyM.png?scale-down-to=512 512w,https://framerusercontent.com/images/QRmYQ2OYB2DVBuKaIptAKqvpyM.png 680w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2728+80+0+339+0+0+418+0+0),pixelHeight:422,pixelWidth:680,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 370px, 1px)`,src:\"https://framerusercontent.com/images/QRmYQ2OYB2DVBuKaIptAKqvpyM.png\",srcSet:\"https://framerusercontent.com/images/QRmYQ2OYB2DVBuKaIptAKqvpyM.png?scale-down-to=512 512w,https://framerusercontent.com/images/QRmYQ2OYB2DVBuKaIptAKqvpyM.png 680w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2709+60+0+339+0+0+268+0),pixelHeight:422,pixelWidth:680,sizes:`max((max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 30px) / 2, 1px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/QRmYQ2OYB2DVBuKaIptAKqvpyM.png\",srcSet:\"https://framerusercontent.com/images/QRmYQ2OYB2DVBuKaIptAKqvpyM.png?scale-down-to=512 512w,https://framerusercontent.com/images/QRmYQ2OYB2DVBuKaIptAKqvpyM.png 680w\"},className:\"framer-g860l3\",\"data-border\":true,\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-102mqf5\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",children:\"5X Google Shopping clicks\"})}),className:\"framer-1wwpo09\",\"data-framer-name\":\"Cost-Effective Marketing\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(187, 187, 187)\"},children:\"Fix your Shopping feeds, increase clicks on Google Shopping.\"})}),className:\"framer-clpe1e\",\"data-framer-name\":\"Compared to paid advertising, SEO is cost-effective.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3335+60+0+339+0+499+0+442+0+247),pixelHeight:422,pixelWidth:680,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px)`,src:\"https://framerusercontent.com/images/esUVDnTQypsu9nxR7sN2Qgp5x5U.png\",srcSet:\"https://framerusercontent.com/images/esUVDnTQypsu9nxR7sN2Qgp5x5U.png?scale-down-to=512 512w,https://framerusercontent.com/images/esUVDnTQypsu9nxR7sN2Qgp5x5U.png 680w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2728+80+0+339+0+0+418+0+251),pixelHeight:422,pixelWidth:680,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 370px, 1px)`,src:\"https://framerusercontent.com/images/esUVDnTQypsu9nxR7sN2Qgp5x5U.png\",srcSet:\"https://framerusercontent.com/images/esUVDnTQypsu9nxR7sN2Qgp5x5U.png?scale-down-to=512 512w,https://framerusercontent.com/images/esUVDnTQypsu9nxR7sN2Qgp5x5U.png 680w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2709+60+0+339+0+0+268+0),pixelHeight:422,pixelWidth:680,sizes:`max((max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 30px) / 2, 1px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/esUVDnTQypsu9nxR7sN2Qgp5x5U.png\",srcSet:\"https://framerusercontent.com/images/esUVDnTQypsu9nxR7sN2Qgp5x5U.png?scale-down-to=512 512w,https://framerusercontent.com/images/esUVDnTQypsu9nxR7sN2Qgp5x5U.png 680w\"},className:\"framer-1m9hetf\",\"data-border\":true,\"data-framer-name\":\"image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-116ivtz\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",children:\"Focus on what moves the needle\"})}),className:\"framer-4727r4\",\"data-framer-name\":\"Cost-Effective Marketing\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(187, 187, 187)\"},children:\"Let's cut through the noise and optimise for revenue. \"})}),className:\"framer-tykrl\",\"data-framer-name\":\"Compared to paid advertising, SEO is cost-effective.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})})]})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"louis shopify seo consulant\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5209),pixelHeight:1536,pixelWidth:1024,sizes:\"400px\",src:\"https://framerusercontent.com/images/pbRUDjZyR6TbM1goATfRz90rNr4.png\",srcSet:\"https://framerusercontent.com/images/pbRUDjZyR6TbM1goATfRz90rNr4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/pbRUDjZyR6TbM1goATfRz90rNr4.png 1024w\"}},hcMvc6Ov5:{background:{alt:\"louis shopify seo consulant\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4123),pixelHeight:1536,pixelWidth:1024,sizes:\"400px\",src:\"https://framerusercontent.com/images/pbRUDjZyR6TbM1goATfRz90rNr4.png\",srcSet:\"https://framerusercontent.com/images/pbRUDjZyR6TbM1goATfRz90rNr4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/pbRUDjZyR6TbM1goATfRz90rNr4.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"louis shopify seo consulant\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3714),pixelHeight:1536,pixelWidth:1024,sizes:\"400px\",src:\"https://framerusercontent.com/images/pbRUDjZyR6TbM1goATfRz90rNr4.png\",srcSet:\"https://framerusercontent.com/images/pbRUDjZyR6TbM1goATfRz90rNr4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/pbRUDjZyR6TbM1goATfRz90rNr4.png 1024w\"},className:\"framer-11gpny0\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5731),pixelHeight:1342,pixelWidth:2400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png\",srcSet:\"https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png 2400w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5543),pixelHeight:1342,pixelWidth:2400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png\",srcSet:\"https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png 2400w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"section\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4236),pixelHeight:1342,pixelWidth:2400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png\",srcSet:\"https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hbn6gFlcAesPs4hGUvpVp9m7FaU.png 2400w\"},className:\"framer-1erb9bd\",\"data-framer-name\":\"Report section\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7f6wxz\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ddyce\",\"data-framer-name\":\"Content.\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bd2rp\",\"data-framer-name\":\"Titel\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+5731+60+0+0+0+0+0+0},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+5543+80+73.5+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+4236+100+73.5+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lor45n-container\",nodeId:\"hBvT9VajV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSubButton,{DjQOtAypz:\"Feature\",height:\"100%\",id:\"hBvT9VajV\",layoutId:\"hBvT9VajV\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ecommerce Performance Tracking and Reporting\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Ecommerce Performance Tracking and Reporting\"})}),className:\"framer-12ic1qd\",\"data-framer-name\":\"Performance Tracking and Reporting\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Data-Driven Strategies, conversion focused SEO, and ROI Results for Your Business Growth\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\"},children:\"Data-Driven Strategies, conversion focused SEO, and ROI Results for Your Business Growth\"})}),className:\"framer-136klov\",\"data-framer-name\":\"Data-Driven Strategies, Real-Time Insights, and Remarkable Results for Your Business Growth\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+5731+60+0+0+0+280},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+5543+80+73.5+0+280}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+4236+100+73.5+0+280,children:/*#__PURE__*/_jsx(Container,{className:\"framer-80b62x-container\",nodeId:\"ZPQEPCpNd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonMainButton,{En1a59uFp:\"Book a Call\",height:\"100%\",id:\"ZPQEPCpNd\",layoutId:\"ZPQEPCpNd\",variant:\"MwgUQJIEd\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"Performance Tracking and Reporting\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5731+60+0+375),pixelHeight:968,pixelWidth:1324,sizes:`min(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px), 662px)`,src:\"https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png\",srcSet:\"https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png?scale-down-to=512 512w,https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png 1324w\"}},hcMvc6Ov5:{background:{alt:\"Performance Tracking and Reporting\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5543+80+0),pixelHeight:968,pixelWidth:1324,sizes:`min(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 40px) / 2, 1px), 662px)`,src:\"https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png\",srcSet:\"https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png?scale-down-to=512 512w,https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png 1324w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Performance Tracking and Reporting\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4236+100+0),pixelHeight:968,pixelWidth:1324,sizes:`min(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 40px) / 2, 1px), 662px)`,src:\"https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png\",srcSet:\"https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png?scale-down-to=512 512w,https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zL5qcovYLuEVhQV1CG50tKhH2A.png 1324w\"},className:\"framer-1xp4yg9\",\"data-framer-name\":\"Image\"})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"Bg Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6708),pixelHeight:1226,pixelWidth:1800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png\",srcSet:\"https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png?scale-down-to=512 512w,https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png 1800w\"}},hcMvc6Ov5:{background:{alt:\"Bg Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6185),pixelHeight:1226,pixelWidth:1800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png\",srcSet:\"https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png?scale-down-to=512 512w,https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Bg Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4918),pixelHeight:1226,pixelWidth:1800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png\",srcSet:\"https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png?scale-down-to=512 512w,https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jHXffbN8cg2GT1ffOB2VQ0TA9M.png 1800w\"},className:\"framer-p3in68\",\"data-framer-name\":\"Testimonial Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n2hy7e\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ge5s5z\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",style:{\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Real Results, Real eCommerce Case Studies Success\"})}),className:\"framer-zhgc6m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Focusing on clicks that move the needle for your business. I create a custom SEO growth strategy for your business.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",children:\"Focusing on clicks that move the needle for your business. I create a custom SEO growth strategy for your business.\"})}),className:\"framer-1jnjcer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mlbteq\",\"data-framer-name\":\"Card Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qkg4by\",\"data-border\":true,\"data-framer-name\":\"Card1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207.77776952143103,intrinsicWidth:364.4444299627239,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6708+60+0+0+234+0+0+6+0),pixelHeight:1242,pixelWidth:1696,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1140px) - 12px)`,src:\"https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png?scale-down-to=512 512w,https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png 1696w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207.77776952143103,intrinsicWidth:364.4444299627239,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6185+100+0+0+234+0+6+0),pixelHeight:1242,pixelWidth:1696,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1140px) - 48px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png?scale-down-to=512 512w,https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png 1696w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207.77776952143103,intrinsicWidth:364.4444299627239,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4918+100+0+0+234+0+6+0),pixelHeight:1242,pixelWidth:1696,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 48px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png?scale-down-to=512 512w,https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dbhDckaJ9s2ya5Df5A1OTlrSks.png 1696w\"},className:\"framer-bil257\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lq77bn\",\"data-border\":true,\"data-framer-name\":\"Card2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207.77776952143103,intrinsicWidth:364.4444299627239,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6708+60+0+0+234+0+243.7778+6+0),pixelHeight:1030,pixelWidth:1698,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1140px) - 12px)`,src:\"https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png?scale-down-to=512 512w,https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png 1698w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207.77776952143103,intrinsicWidth:364.4444299627239,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6185+100+0+0+234+0+6+0),pixelHeight:1030,pixelWidth:1698,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1140px) - 48px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png?scale-down-to=512 512w,https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png 1698w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207.77776952143103,intrinsicWidth:364.4444299627239,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4918+100+0+0+234+0+6+0),pixelHeight:1030,pixelWidth:1698,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 48px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png?scale-down-to=512 512w,https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Th6YMysiiWYyas7cl0Rh8LZNZ2E.png 1698w\"},className:\"framer-z4vxk6\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1axn41e\",\"data-border\":true,\"data-framer-name\":\"Card3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207.77776952143103,intrinsicWidth:364.4444299627239,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6708+60+0+0+234+0+487.5556+6+0),pixelHeight:1076,pixelWidth:1854,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1140px) - 12px)`,src:\"https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png?scale-down-to=512 512w,https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png 1854w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207.77776952143103,intrinsicWidth:364.4444299627239,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6185+100+0+0+234+0+6+0),pixelHeight:1076,pixelWidth:1854,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1140px) - 48px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png?scale-down-to=512 512w,https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png 1854w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:207.77776952143103,intrinsicWidth:364.4444299627239,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4918+100+0+0+234+0+6+0),pixelHeight:1076,pixelWidth:1854,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 48px) / 3, 1px) - 12px)`,src:\"https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png?scale-down-to=512 512w,https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2RDdMSbtjqEXVZXN5u0uRle0E0.png 1854w\"},className:\"framer-ywzd6e\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83D\uDC49 \"}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/louisseo/15min\",motionChild:true,nodeId:\"gNQyc1ifI\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1t6j7h0\",\"data-styles-preset\":\"zxDQuI8Uk\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(29, 245, 212)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Book a FREE 30 Min Consultancy Chat\"})})})}),/*#__PURE__*/_jsx(\"strong\",{children:\" \uD83D\uDC48\"})]})}),className:\"framer-wwyedk\",fonts:[\"Inter\",\"Inter-Bold\"],id:\"wwyedk\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7834.9334),pixelHeight:1410,pixelWidth:2400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png\",srcSet:\"https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png 2400w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4645),pixelHeight:1410,pixelWidth:2400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png\",srcSet:\"https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png 2400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5637.3778),pixelHeight:1410,pixelWidth:2400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png\",srcSet:\"https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zPQ1RQc7ilYMy4D4UG2tLoveDJ8.png 2400w\"},className:\"framer-1sbbja7\",\"data-framer-name\":\"Service Section\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hbaqgk\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w65qkn\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",style:{\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Results-Driven SEO Services\"})}),className:\"framer-196v78f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Strategies that grow your business' profits.\"})}),className:\"framer-1u8enr3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nz0lae\",\"data-framer-name\":\"Service Card Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nybevq\",\"data-framer-name\":\"List 01\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1namn17\",\"data-framer-name\":\"Service Card 01\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7834.9334+60+0+208+0+0+0+0+0+0),pixelHeight:64,pixelWidth:64,src:\"https://framerusercontent.com/images/bWndsloOCHpg0U6Dh3PoHZHmeQY.png\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4645+100+0+208+0+0+0+0+0),pixelHeight:64,pixelWidth:64,src:\"https://framerusercontent.com/images/bWndsloOCHpg0U6Dh3PoHZHmeQY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5637.3778+100+0+208+0+0+0+0+0),pixelHeight:64,pixelWidth:64,src:\"https://framerusercontent.com/images/bWndsloOCHpg0U6Dh3PoHZHmeQY.png\"},className:\"framer-1d59w02\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Content Marketing & SEO\"})}),className:\"framer-1h75dgf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Create and optimise high-quality content that drives organic traffic and engages your audience.\"})}),className:\"framer-1nxlidu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zyft4k\",\"data-framer-name\":\"Service Card 03\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7834.9334+60+0+208+0+0+0+260+0+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/Xm0xbuOTrm3b3gIb0jy5N7gkAwk.svg\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4645+100+0+208+0+0+0+0+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/Xm0xbuOTrm3b3gIb0jy5N7gkAwk.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5637.3778+100+0+208+0+0+0+0+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/Xm0xbuOTrm3b3gIb0jy5N7gkAwk.svg\"},className:\"framer-nr8417\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",style:{\"--framer-text-alignment\":\"center\"},children:\"SEO Reporting & Analytics\"})}),className:\"framer-zoy1x2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Track the performance of your SEO campaigns with detailed reports and analytics for better marketing strategies.\"})}),className:\"framer-15g1t54\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k67xoo\",\"data-framer-name\":\"List 02\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-87jlku\",\"data-framer-name\":\"Service Card 02\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7834.9334+60+0+208+0+520+0+0+0+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/IvDYtjlREPmH7MoX0lGIuRmYs.svg\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4645+100+0+208+0+270+0+0+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/IvDYtjlREPmH7MoX0lGIuRmYs.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5637.3778+100+0+208+0+290+0+0+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/IvDYtjlREPmH7MoX0lGIuRmYs.svg\"},className:\"framer-1pw4sjj\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Intent keyword research\"})}),className:\"framer-17s568x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Transactional keyword research to rank your website in google search. Drive more traffic to your products and collections.\"})}),className:\"framer-5drl41\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbnocp\",\"data-framer-name\":\"Service Card 04\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7834.9334+60+0+208+0+520+0+260+0+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/IvDYtjlREPmH7MoX0lGIuRmYs.svg\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4645+100+0+208+0+270+0+0+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/IvDYtjlREPmH7MoX0lGIuRmYs.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:35.55555414270477,intrinsicWidth:35.55555414270477,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5637.3778+100+0+208+0+290+0+0+0),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/IvDYtjlREPmH7MoX0lGIuRmYs.svg\"},className:\"framer-1r9j8vl\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Google Shopping Optimisation\"})}),className:\"framer-d2qxuw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Let's increase your sales on Google Shopping. Let's optimise your merchant feeds, scale product clicks and increase merchant centre conversions.\"})}),className:\"framer-1k4olf4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ky1tl6\",\"data-framer-name\":\"About us Section\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9162.9334+60),pixelHeight:798,pixelWidth:1620,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px)`,src:\"https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png\",srcSet:\"https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png 1620w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6904.3778+80),pixelHeight:798,pixelWidth:1620,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px)`,src:\"https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png\",srcSet:\"https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png 1620w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6555.3778+100),pixelHeight:798,pixelWidth:1620,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px)`,src:\"https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png\",srcSet:\"https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png?scale-down-to=512 512w,https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JcveX76f3xhIzwkB2xEtEWs0I.png 1620w\"},className:\"framer-j344ey\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sn6zsh\",\"data-framer-name\":\"Left Side\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+9162.9334+60+30+0+0+0},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+6904.3778+80+50+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+6555.3778+100+80+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13j23y6-container\",nodeId:\"cvpRZGVF1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSubButton,{DjQOtAypz:\"About\",height:\"100%\",id:\"cvpRZGVF1\",layoutId:\"cvpRZGVF1\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"11+ years of optimising eCommerce stores for traffic\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",style:{\"--framer-text-alignment\":\"left\"},children:\"11+ years of optimising eCommerce stores for traffic\"})}),className:\"framer-jy68jb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"I keep my strategy simple: Build the best landing pages, optimise for conversions, increase traffic, and scale your brand.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\"},children:\"I keep my strategy simple: Build the best landing pages, optimise for conversions, increase traffic, and scale your brand.\"})}),className:\"framer-1wec5jr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+9162.9334+60+30+0+0+282},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+6904.3778+80+50+0+282}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+6555.3778+100+80+0+282,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x9ap3w-container\",nodeId:\"eQSHunJaZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonMainButton,{En1a59uFp:\"Book a Call\",height:\"100%\",id:\"eQSHunJaZ\",layoutId:\"eQSHunJaZ\",variant:\"MwgUQJIEd\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qft464\",\"data-framer-name\":\"Right Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"Image 01\",fit:\"fill\",intrinsicHeight:179.9999928474429,intrinsicWidth:174.4444375126453,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9162.9334+60+30+377+83.8572),pixelHeight:324,pixelWidth:314,src:\"https://framerusercontent.com/images/BbErjocI2wfdV2GkACVbi04vgs.png\"}},hcMvc6Ov5:{background:{alt:\"Image 01\",fit:\"fill\",intrinsicHeight:179.9999928474429,intrinsicWidth:174.4444375126453,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6904.3778+80+53.9+83.8572),pixelHeight:324,pixelWidth:314,src:\"https://framerusercontent.com/images/BbErjocI2wfdV2GkACVbi04vgs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image 01\",fit:\"fill\",intrinsicHeight:179.9999928474429,intrinsicWidth:174.4444375126453,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6555.3778+100+83.9+83.8572),pixelHeight:324,pixelWidth:314,src:\"https://framerusercontent.com/images/BbErjocI2wfdV2GkACVbi04vgs.png\"},className:\"framer-kdqcri\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1esnddg\",\"data-framer-name\":\"Image Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cfhlku\",\"data-framer-name\":\"Image 02\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"Image 02\",fit:\"fill\",intrinsicHeight:187.77777031615958,intrinsicWidth:149.99999403953575,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9162.9334+60+30+377+0+0+0+0+0),pixelHeight:338,pixelWidth:270,src:\"https://framerusercontent.com/images/Z9qmKqt6FfGjczyzMJKvNcZA4.png\"}},hcMvc6Ov5:{background:{alt:\"Image 02\",fit:\"fill\",intrinsicHeight:187.77777031615958,intrinsicWidth:149.99999403953575,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6904.3778+80+53.9+0+0+0+0+0),pixelHeight:338,pixelWidth:270,src:\"https://framerusercontent.com/images/Z9qmKqt6FfGjczyzMJKvNcZA4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image 02\",fit:\"fill\",intrinsicHeight:187.77777031615958,intrinsicWidth:149.99999403953575,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6555.3778+100+83.9+0+0+0+0+0),pixelHeight:338,pixelWidth:270,src:\"https://framerusercontent.com/images/Z9qmKqt6FfGjczyzMJKvNcZA4.png\"},className:\"framer-feuhsj\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"Image 06\",fit:\"fill\",intrinsicHeight:71.11110828540954,intrinsicWidth:71.11110828540954,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9162.9334+60+30+377+0+0+0+0+97.2),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/v2JpTItATN9LpYH7khiJUTlf9Sg.png\"}},hcMvc6Ov5:{background:{alt:\"Image 06\",fit:\"fill\",intrinsicHeight:71.11110828540954,intrinsicWidth:71.11110828540954,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6904.3778+80+53.9+0+0+0+0+97.2),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/v2JpTItATN9LpYH7khiJUTlf9Sg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image 06\",fit:\"fill\",intrinsicHeight:71.11110828540954,intrinsicWidth:71.11110828540954,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6555.3778+100+83.9+0+0+0+0+97.2),pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/v2JpTItATN9LpYH7khiJUTlf9Sg.png\"},className:\"framer-17023g7\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"Image 04\",fit:\"fill\",intrinsicHeight:179.9999928474429,intrinsicWidth:174.4444375126453,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9162.9334+60+30+377+0+0+185.2),pixelHeight:288,pixelWidth:546,sizes:`max(min(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px) - 40px, 470px) * 0.65 - 16px, 1px)`,src:\"https://framerusercontent.com/images/h9OewFQIgBK3EzT30foMzvEHYU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/h9OewFQIgBK3EzT30foMzvEHYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/h9OewFQIgBK3EzT30foMzvEHYU.png 546w\"}},hcMvc6Ov5:{background:{alt:\"Image 04\",fit:\"fill\",intrinsicHeight:179.9999928474429,intrinsicWidth:174.4444375126453,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6904.3778+80+53.9+0+0+185.2),pixelHeight:288,pixelWidth:546,sizes:`max(min(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 70px) / 2, 1px), 470px) * 0.65 - 16px, 1px)`,src:\"https://framerusercontent.com/images/h9OewFQIgBK3EzT30foMzvEHYU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/h9OewFQIgBK3EzT30foMzvEHYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/h9OewFQIgBK3EzT30foMzvEHYU.png 546w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image 04\",fit:\"fill\",intrinsicHeight:179.9999928474429,intrinsicWidth:174.4444375126453,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6555.3778+100+83.9+0+0+185.2),pixelHeight:288,pixelWidth:546,sizes:`calc(max(min(max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 160px) / 2, 1px), 470px) * 0.65 - 16px, 1px) * 0.94)`,src:\"https://framerusercontent.com/images/h9OewFQIgBK3EzT30foMzvEHYU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/h9OewFQIgBK3EzT30foMzvEHYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/h9OewFQIgBK3EzT30foMzvEHYU.png 546w\"},className:\"framer-1esgif9\",\"data-framer-name\":\"Image\"})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dyu8g5\",\"data-framer-name\":\"Method Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a6ajc3\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5vrrjb\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+9989.1334+60+0+0+0+0},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+7421.3778+80+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+7152.3778+100+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cv5gd-container\",nodeId:\"XG5rKsfvk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSubButton,{DjQOtAypz:\"Method\",height:\"100%\",id:\"XG5rKsfvk\",layoutId:\"XG5rKsfvk\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",children:\"A Transparent SEO Process \"})}),className:\"framer-1td92oh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",children:\"We guide you through each step, ensuring you\u2019re informed and confident in our approach, all while focusing on delivering measurable results.\"})}),className:\"framer-1ggimb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jvpyc5\",\"data-framer-name\":\"Method Content\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p2quav hidden-1fx776b\",\"data-framer-name\":\"LIne\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fa70lq hidden-1fx776b\",\"data-framer-name\":\"LIne\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f4v5gp\",\"data-framer-name\":\"01\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",children:\"01\"})}),className:\"framer-1uwwqmc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15gntrt\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",style:{\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Discovery & Goal Setting\"})}),className:\"framer-sfep0w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\"},children:\"I begin by understanding your business, audience, and objectives.\"})}),className:\"framer-arkz0x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-42xd71\",\"data-framer-name\":\"02\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",children:\"02\"})}),className:\"framer-1wunl4y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tokdb6\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",style:{\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"In-Depth Website Audit\"})}),className:\"framer-do1d9h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\"},children:\"A comprehensive audit of your site\u2019s technical and content aspects helps us identify.\"})}),className:\"framer-1lar55k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hsr3n6\",\"data-framer-name\":\"03\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",children:\"03\"})}),className:\"framer-yqf0j4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eq0zwz\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",style:{\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Custom Strategy Development\"})}),className:\"framer-1gqmxhq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\"},children:\"I create a tailored SEO strategy, including keyword research, on-page optimisation.\"})}),className:\"framer-ycoiol\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2pgq44\",\"data-framer-name\":\"04\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",children:\"04\"})}),className:\"framer-2rdmd5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-heza0g\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-13l0if\",\"data-styles-preset\":\"OgRYqaJQn\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Implementation\"})}),className:\"framer-1d2u2jg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\"},children:\"I executes the strategy, optimising your site\u2019s content, technical setup,\"})}),className:\"framer-fpsazo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mvhyfx\",\"data-framer-name\":\"Benefits Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13vjs9i\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1plz0ss\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+11171.1334+60+0+0+0+0+0},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+8341.3778+80+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+8169.3778+100+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1krqbez-container\",nodeId:\"VwEKdH7IY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSubButton,{DjQOtAypz:\"Advantage\",height:\"100%\",id:\"VwEKdH7IY\",layoutId:\"VwEKdH7IY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",children:\"Why work with me?\"})}),className:\"framer-larrzx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"In the crowded field of SEO providers, it can be challenging to find a partner that truly understands your business and delivers on their promises.\"})}),className:\"framer-1l3ec1r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13dsa4t\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ow84kb\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11171.1334+60+0+0+278+0+0+0),pixelHeight:500,pixelWidth:500,positionX:\"50.2%\",positionY:\"44.2%\",src:\"https://framerusercontent.com/images/N9i9go3PxUpjXhUuKbQdpkVzko.png\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8341.3778+80+0+0+278+0+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N9i9go3PxUpjXhUuKbQdpkVzko.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8169.3778+100+0+0+278+307.5+0),pixelHeight:500,pixelWidth:500,positionX:\"50.2%\",positionY:\"44.2%\",src:\"https://framerusercontent.com/images/N9i9go3PxUpjXhUuKbQdpkVzko.png\"},className:\"framer-1pwjhi9\",\"data-framer-name\":\"Left side\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11171.1334+60+0+0+278+0+383),pixelHeight:688,pixelWidth:1050,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1140px)`,src:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png\",srcSet:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png 1050w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8341.3778+80+0+0+278+0),pixelHeight:688,pixelWidth:1050,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 20px) / 2, 1px)`,src:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png\",srcSet:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png 1050w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8169.3778+100+0+0+278+0),pixelHeight:688,pixelWidth:1050,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png\",srcSet:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png 1050w\"},className:\"framer-13pjo1k\",\"data-border\":true,\"data-framer-name\":\"Right side\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x8zw9f\",\"data-framer-name\":\"01\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fritju\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:6,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Tailored to your business goals and audience.\"})}),className:\"framer-1vgktao\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1di8dv8\",\"data-framer-name\":\"02\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ga611u\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:6,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Open communication and detailed reports.\"})}),className:\"framer-1mhrtrw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11vba80\",\"data-framer-name\":\"03\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-as4jfm\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:6,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"I prioritise driving measurable business outcomes.\"})}),className:\"framer-3iz49u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pesrv\",\"data-framer-name\":\"04\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ry26wm\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:6,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"In-depth technical and content audits.\"})}),className:\"framer-8nrjvw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rfi7f2\",\"data-framer-name\":\"05\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jyo6hh\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:6,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Continuous improvement to adapt to industry.\"})}),className:\"framer-1l4vl9i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g7jxng\",\"data-framer-name\":\"06\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u6kyid\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:6,intrinsicWidth:6,svg:'<svg width=\"6\" height=\"6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"3\" cy=\"3\" r=\"3\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"I prioritise your needs, offering dedicated support.\"})}),className:\"framer-ern792\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-foi2sw\",\"data-framer-name\":\"Pricing Section\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iidtup\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",children:\"Ecommerce Systems Plans and Pricing\"})}),className:\"framer-14ap0ue\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Choose the perfect plan for your design projects, from startup DTC brands to enterprise Ecommerce companies.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"\uD83D\uDC49 \"}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/louisseo/15min\",motionChild:true,nodeId:\"V1D7L1l9_\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1t6j7h0\",\"data-styles-preset\":\"zxDQuI8Uk\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(29, 245, 212)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Book a FREE 30 Min Consultancy Chat\"})})})}),/*#__PURE__*/_jsx(\"strong\",{children:\" \uD83D\uDC48\"})]})]}),className:\"framer-8gbwe5\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1360cba\",\"data-framer-name\":\"Pricing Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1veahbl\",\"data-border\":true,\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bj82ki\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Monthly SEO Growth Machine\"})}),className:\"framer-dshrmo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Perfect for eCommerce brands wanting to scale \uD83D\uDCC8\"})}),className:\"framer-1shcsv7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9h5gog\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uwaisi\",\"data-framer-name\":\"Down\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5onuha\",\"data-framer-name\":\"Text content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ggpz9e\",\"data-framer-name\":\"Plan1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12vnh32\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Custom landing pages + Figma wireframe design\"})}),className:\"framer-1voquwp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3739dq\",\"data-framer-name\":\"Plan2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-csst73\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Google Shopping optimisation\"})}),className:\"framer-13gpsmn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nmmzbv\",\"data-framer-name\":\"Plan3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u4a7x5\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Content strategy to engage your audience\"})}),className:\"framer-1qjjaa8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6lbhd6\",\"data-framer-name\":\"Plan4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7qo9ss\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Ongoing bug fixes and support\"})}),className:\"framer-ertybk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r9krce\",\"data-framer-name\":\"Plan5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fg4q6g\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"SEO systems for your brand\"})}),className:\"framer-no2szq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dddnqy\",\"data-framer-name\":\"Plan6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1fzi61z\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Heat maps for better strategies \"})}),className:\"framer-939p3y\",\"data-framer-name\":\"Heat map analysis \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pluqzx\",\"data-framer-name\":\"Plan7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-bx2asr\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Conversion strategy\"})}),className:\"framer-46gl5n\",\"data-framer-name\":\"Conversion strategy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0b0la\",\"data-framer-name\":\"Plan8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13kd222\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Customer journey optimisation\"})}),className:\"framer-xjrzis\",\"data-framer-name\":\"Customer journey optimisation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19fj4sw\",\"data-framer-name\":\"Plan9\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c2ffqw\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Engagement strategy\"})}),className:\"framer-41bs5m\",\"data-framer-name\":\"Engagement strategy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1140px) - 48px)`,y:(componentViewport?.y||0)+0+12855.1334+60+378+0+0+24+198.6+0+1172},hcMvc6Ov5:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 30px) / 2, 50px) - 48px)`,y:(componentViewport?.y||0)+0+9662.3778+80+378+0+0+24+198.6+0+1172}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 60px) / 3, 1px) - 48px)`,y:(componentViewport?.y||0)+0+9615.3778+100+378+0+24+198.6+0+1172,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2c9ggu-container\",nodeId:\"shiBHuMVu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonMainButton,{En1a59uFp:\"Contact \u2705\",height:\"100%\",id:\"shiBHuMVu\",layoutId:\"shiBHuMVu\",style:{width:\"100%\"},variant:\"lUBRwVfyV\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12855.1334+60+378+0+1503.6),pixelHeight:972,pixelWidth:680,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1140px)`,src:\"https://framerusercontent.com/images/yaofEDPZCAcVp61ExYlpoJI7A.png\",srcSet:\"https://framerusercontent.com/images/yaofEDPZCAcVp61ExYlpoJI7A.png 680w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9662.3778+80+378+0+0),pixelHeight:972,pixelWidth:680,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 30px) / 2, 50px)`,src:\"https://framerusercontent.com/images/yaofEDPZCAcVp61ExYlpoJI7A.png\",srcSet:\"https://framerusercontent.com/images/yaofEDPZCAcVp61ExYlpoJI7A.png 680w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9615.3778+100+378+0),pixelHeight:972,pixelWidth:680,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 60px) / 3, 1px)`,src:\"https://framerusercontent.com/images/yaofEDPZCAcVp61ExYlpoJI7A.png\",srcSet:\"https://framerusercontent.com/images/yaofEDPZCAcVp61ExYlpoJI7A.png 680w\"},className:\"framer-qqxaxi\",\"data-border\":true,\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nh2t3j\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Hyper Growth DTC Consultancy\"})}),className:\"framer-1e7ykl5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Growth strategies for enterprise \u26A1\uFE0F\"})}),className:\"framer-1l4pjqh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bcu4sx\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yapgtw\",\"data-framer-name\":\"Down\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qhzjyj\",\"data-framer-name\":\"Text content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rktwvl\",\"data-framer-name\":\"Plan1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7j2ppj\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Ecommerce systems for your teams\"})}),className:\"framer-1d5u0b1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p7sqd5\",\"data-framer-name\":\"Plan2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nbn46z\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"SEO Team support \"})}),className:\"framer-1e0rxy9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wej6yc\",\"data-framer-name\":\"Plan3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1k6sk05\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Ongoing bug fixes and support\"})}),className:\"framer-ne2dz6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cfck4u\",\"data-framer-name\":\"Plan4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-x3bvf5\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Priority support\"})}),className:\"framer-17p4fp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dilc53\",\"data-framer-name\":\"Plan5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-w6y7gr\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Target to become market leaders\"})}),className:\"framer-wo8v6y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xa7i8r\",\"data-framer-name\":\"Plan6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e8fjrt\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Heat maps for better strategies \"})}),className:\"framer-q0jn48\",\"data-framer-name\":\"Heat map analysis \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c21cje\",\"data-framer-name\":\"Plan7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dfdre1\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Conversion strategy\"})}),className:\"framer-rlhzk3\",\"data-framer-name\":\"Conversion strategy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxe60o\",\"data-framer-name\":\"Plan8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1def7hr\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Customer journey optimisation\"})}),className:\"framer-msndob\",\"data-framer-name\":\"Customer journey optimisation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ckxc3\",\"data-framer-name\":\"Plan9\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jhwqgp\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Engagement strategy\"})}),className:\"framer-1osaxle\",\"data-framer-name\":\"Engagement strategy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1140px) - 48px)`,y:(componentViewport?.y||0)+0+12855.1334+60+378+0+1503.6+24+198.6+0+1172},hcMvc6Ov5:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 30px) / 2, 50px) - 48px)`,y:(componentViewport?.y||0)+0+9662.3778+80+378+0+0+24+198.6+0+1172}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 60px) / 3, 1px) - 48px)`,y:(componentViewport?.y||0)+0+9615.3778+100+378+0+24+198.6+0+1172,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h27utk-container\",nodeId:\"HwrxTl361\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonMainButton,{En1a59uFp:\"Contact \u2705\",height:\"100%\",id:\"HwrxTl361\",layoutId:\"HwrxTl361\",style:{width:\"100%\"},variant:\"lUBRwVfyV\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cmcz8n\",\"data-border\":true,\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nhpwnh\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Ecommerce Audit\"})}),className:\"framer-11uuq9u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Opportunity audits for click growth \uD83D\uDECD\uFE0F\"})}),className:\"framer-1ef5z4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1idke61\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o229rb\",\"data-framer-name\":\"Down\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ptw4g6\",\"data-framer-name\":\"Text content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nt9cr7\",\"data-framer-name\":\"Plan1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17k5cto\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Audit -> slides for your team to use\"})}),className:\"framer-e6kukl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvufvt\",\"data-framer-name\":\"Plan2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1us0g0j\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Audit -> Loom breakdown\"})}),className:\"framer-zfu9rg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m3ihan\",\"data-framer-name\":\"Plan3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10pt8m9\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Roadmap to help increase traffic + conversions\"})}),className:\"framer-4otsfo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13q8o9s\",\"data-framer-name\":\"Plan4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dw7mzk\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"UX analysis \"})}),className:\"framer-1eapo78\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4yguab\",\"data-framer-name\":\"Plan5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mhrwga\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"SEO systems for your brand\"})}),className:\"framer-hv6u9v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hbao9b\",\"data-framer-name\":\"Plan6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nxu66a\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Heat maps for better strategies \"})}),className:\"framer-12vwlkb\",\"data-framer-name\":\"Heat map analysis \",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d8pva4\",\"data-framer-name\":\"Plan7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1yi9uhw\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Conversion analysis\"})}),className:\"framer-1dc13w5\",\"data-framer-name\":\"Conversion strategy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11yqb7p\",\"data-framer-name\":\"Plan8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ohkzwa\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Customer journey analysis\"})}),className:\"framer-1wmfm63\",\"data-framer-name\":\"Customer journey optimisation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bx9kc\",\"data-framer-name\":\"Plan9\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1g01dzj\",\"data-framer-name\":\"Dot\",fill:\"black\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"4\" cy=\"4\" r=\"4\" fill=\"#BBB\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5r5a1m\",\"data-styles-preset\":\"Mzu6SFbJ7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"Engagement analysis\"})}),className:\"framer-1r4ivje\",\"data-framer-name\":\"Engagement strategy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1140px) - 48px)`,y:(componentViewport?.y||0)+0+12855.1334+60+378+0+2205.6+24+198.6+0+1172},hcMvc6Ov5:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 30px) / 2, 50px) - 48px)`,y:(componentViewport?.y||0)+0+9662.3778+80+378+0+1503.6+24+198.6+0+1172}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1140px) - 60px) / 3, 1px) - 48px)`,y:(componentViewport?.y||0)+0+9615.3778+100+378+0+24+198.6+0+1172,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a7xc2t-container\",nodeId:\"G9g3MK3Rz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonMainButton,{En1a59uFp:\"Contact \u2705\",height:\"100%\",id:\"G9g3MK3Rz\",layoutId:\"G9g3MK3Rz\",style:{width:\"100%\"},variant:\"lUBRwVfyV\",width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1od3d0e\",\"data-framer-name\":\"Reviews Section\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jdcj67\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k86olh\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",children:\"Brand Reviews\"})}),className:\"framer-ty0nwe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ambp7a\",\"data-styles-preset\":\"LsD64tzfB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Successful Shopify SEO projects\"})}),className:\"framer-547tm8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kzw0pb\",\"data-framer-name\":\"Review content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px)`,y:(componentViewport?.y||0)+0+16230.7334+120+0+234+0+0},hcMvc6Ov5:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 30px) / 2, 50px)`,y:(componentViewport?.y||0)+0+13177.5778+120+0+234+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+10765.3778+120+0+234+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lyfjs-container\",nodeId:\"YwawOkqfx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{A9fv78V1s:\"Mark T.\",height:\"100%\",id:\"YwawOkqfx\",layoutId:\"YwawOkqfx\",Mor5Gpp3y:\"\u201CWorking with SEOspark has been a game-changer for our business. Within just a few months, we saw a significant increase in website traffic\u201D\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px)`,y:(componentViewport?.y||0)+0+16230.7334+120+0+234+0+256},hcMvc6Ov5:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 30px) / 2, 50px)`,y:(componentViewport?.y||0)+0+13177.5778+120+0+234+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+10765.3778+120+0+234+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-92orib-container\",nodeId:\"ZIlLDrOR9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{A9fv78V1s:\"Shopify Project\",height:\"100%\",id:\"ZIlLDrOR9\",layoutId:\"ZIlLDrOR9\",Mor5Gpp3y:'\"Our experience working with Louis was amazing. We have a clear tracked growth of traffic and revenue from SEO strategy we have built with Louis. For sure, we\\'ll work again with Louis on other projects.\"',style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1140px)`,y:(componentViewport?.y||0)+0+16230.7334+120+0+234+0+512},hcMvc6Ov5:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 30px) / 2, 50px)`,y:(componentViewport?.y||0)+0+13177.5778+120+0+234+0+256}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:226,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1140px) - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+0+10765.3778+120+0+234+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l77u6l-container\",id:\"1l77u6l\",nodeId:\"vWvaD39mD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{A9fv78V1s:\"Cham\",height:\"100%\",id:\"vWvaD39mD\",layoutId:\"vWvaD39mD\",Mor5Gpp3y:'\"Solid SEO specialist who helped us improve SEO strategy/tech.\"',style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+16230.7334+120+0+1012},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+13177.5778+120+0+756}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:(componentViewport?.y||0)+0+10765.3778+120+0+500,children:/*#__PURE__*/_jsx(Container,{className:\"framer-csq22m-container\",nodeId:\"EpbmS7hOx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonMainButton,{En1a59uFp:\"Book a Call\",height:\"100%\",id:\"EpbmS7hOx\",layoutId:\"EpbmS7hOx\",variant:\"MwgUQJIEd\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l8w57d\",\"data-framer-name\":\"FAQ Section\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-184pkc0\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bcsgwy\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-w25sao\",\"data-styles-preset\":\"a3q0NdvcQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-57789e49-c6b9-4ad2-9581-546114f5bb74, rgb(255, 255, 255))\"},children:\"SEO Queries\"})}),className:\"framer-1vslr7b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-aeae4b\",\"data-styles-preset\":\"Eou8lZgYg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Your Questions, Answered\"})}),className:\"framer-1rn1gvz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17477.7334+60+0+230),pixelHeight:688,pixelWidth:1050,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 710px)`,src:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png\",srcSet:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png 1050w\"}},hcMvc6Ov5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14188.5778+80+0+230),pixelHeight:688,pixelWidth:1050,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 710px)`,src:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png\",srcSet:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png 1050w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11540.3778+100+0+230),pixelHeight:688,pixelWidth:1050,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 710px)`,src:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png\",srcSet:\"https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QomuU7KmP8k61o5k1CbbaGgWY.png 1050w\"},className:\"framer-nhtqjf\",\"data-border\":true,\"data-framer-name\":\"FAQ content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 710px) - 40px)`,y:(componentViewport?.y||0)+0+17477.7334+60+0+230+30+0},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+14188.5778+80+0+230+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:141,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 710px) - 80px)`,y:(componentViewport?.y||0)+0+11540.3778+100+0+230+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18rtx42-container\",nodeId:\"rauZ6eW91\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsSingleFAQ,{DlKZSPzFT:\"If you have the proper plan in place and collaborate with a partner that understands how to get outcomes, SEO is profitable. The close rate of SEO leads is far greater than that of traditional marketing, and 93% of online encounters start with a search engine. Consequently, SEO offers a remarkable return on investment\\xa0 -> your ROI!\",height:\"100%\",id:\"rauZ6eW91\",layoutId:\"rauZ6eW91\",style:{width:\"100%\"},syKe5_oGc:\"Is SEO worth it for ecommerce?\",variant:\"uke7nuyd8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 710px) - 40px)`,y:(componentViewport?.y||0)+0+17477.7334+60+0+230+30+141},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+14188.5778+80+0+230+40+141}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:141,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 710px) - 80px)`,y:(componentViewport?.y||0)+0+11540.3778+100+0+230+40+141,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cnv9wl-container\",nodeId:\"k7KsyFcd0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsSingleFAQ,{DlKZSPzFT:\"Ecommerce SEO is understanding your target audience. Then, helping you build a strategy to aquire customers and convert them, to build your brand's profits.\",height:\"100%\",id:\"k7KsyFcd0\",layoutId:\"k7KsyFcd0\",style:{width:\"100%\"},syKe5_oGc:\"How ecommerce SEO is different from normal SEO?\",variant:\"kxHTfAoO4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 710px) - 40px)`,y:(componentViewport?.y||0)+0+17477.7334+60+0+230+30+282},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+14188.5778+80+0+230+40+282}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:141,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 710px) - 80px)`,y:(componentViewport?.y||0)+0+11540.3778+100+0+230+40+282,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qw4pou-container\",nodeId:\"v5G5JnAtU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsSingleFAQ,{DlKZSPzFT:\"I will help your team scale systems to overall improve your brand and customer acquisition.\",height:\"100%\",id:\"v5G5JnAtU\",layoutId:\"v5G5JnAtU\",style:{width:\"100%\"},syKe5_oGc:\"Will you work with my team?\",variant:\"kxHTfAoO4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 710px) - 40px)`,y:(componentViewport?.y||0)+0+17477.7334+60+0+230+30+423},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+14188.5778+80+0+230+40+423}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:141,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 710px) - 80px)`,y:(componentViewport?.y||0)+0+11540.3778+100+0+230+40+423,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mpzzhs-container\",nodeId:\"lwMYUWulE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsSingleFAQ,{DlKZSPzFT:\"I am up to date with the rise of AI and industry trends. My sole focus is to build your products and I have 11 years of experience delivering results (ROI).\",height:\"100%\",id:\"lwMYUWulE\",layoutId:\"lwMYUWulE\",style:{width:\"100%\"},syKe5_oGc:\"How will your eCommerce SEO strategy work in 2025?\",variant:\"kxHTfAoO4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 710px) - 40px)`,y:(componentViewport?.y||0)+0+17477.7334+60+0+230+30+564},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+14188.5778+80+0+230+40+564}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:141,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 710px) - 80px)`,y:(componentViewport?.y||0)+0+11540.3778+100+0+230+40+564,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1of9quu-container\",nodeId:\"BLKheoFT0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsSingleFAQ,{DlKZSPzFT:\"Yes of course, I let the results speak for themselves. Your are NOT locked into a contract.\",height:\"100%\",id:\"BLKheoFT0\",layoutId:\"BLKheoFT0\",style:{width:\"100%\"},syKe5_oGc:\"Can I pause our work?\",variant:\"kxHTfAoO4\",width:\"100%\"})})})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+18592.7334},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+15363.5778}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+12755.3778,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gcwp3w-container\",id:\"1gcwp3w\",nodeId:\"RwBJsacb7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{variant:\"Q0PwMS8CE\"},hcMvc6Ov5:{variant:\"LQi3SuXoR\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"RwBJsacb7\",layoutId:\"RwBJsacb7\",style:{width:\"100%\"},variant:\"VzPq5K_W0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{y:(componentViewport?.y||0)+0+18952.7334},hcMvc6Ov5:{y:(componentViewport?.y||0)+0+15723.5778}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:369,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+13115.3778,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mgy1ls-container\",nodeId:\"wnfYwpFUV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CIYuPWjfD:{variant:\"ivmsWsEFu\"},hcMvc6Ov5:{variant:\"EjgLfmzKU\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"wnfYwpFUV\",layoutId:\"wnfYwpFUV\",style:{width:\"100%\"},variant:\"QfCG6haWL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18yv5kc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GjMl6o4IT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"GjMl6o4IT\",intensity:10,layoutId:\"GjMl6o4IT\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0FuVw.framer-lux5qc, .framer-0FuVw .framer-lux5qc { display: block; }\",\".framer-0FuVw.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-7c556ede-4841-49c5-855a-9b25094188c4, #050505); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-0FuVw .framer-1i3452o-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-0FuVw .framer-1iiu3cz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 180px 80px 180px 80px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-pxqek8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 685px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-0FuVw .framer-1yiz8i5 { 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-0FuVw .framer-13rs697 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 30px; min-width: 98px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0FuVw .framer-1rq3lpd { aspect-ratio: 1 / 1; bottom: 2px; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 0px; overflow: visible; position: absolute; width: 26px; z-index: 1; }\",\".framer-0FuVw .framer-1vrapxc { aspect-ratio: 1 / 1; bottom: 2px; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 21px; overflow: visible; position: absolute; width: 26px; z-index: 1; }\",\".framer-0FuVw .framer-u6jig9 { aspect-ratio: 1 / 1; bottom: 2px; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 43px; overflow: visible; position: absolute; width: 26px; z-index: 2; }\",\".framer-0FuVw .framer-174qa9o { aspect-ratio: 1 / 1; bottom: 2px; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 64px; overflow: visible; position: absolute; width: 26px; z-index: 3; }\",\".framer-0FuVw .framer-qlcqem, .framer-0FuVw .framer-1249beq, .framer-0FuVw .framer-wwyedk, .framer-0FuVw .framer-1uwwqmc, .framer-0FuVw .framer-1wunl4y, .framer-0FuVw .framer-yqf0j4, .framer-0FuVw .framer-2rdmd5, .framer-0FuVw .framer-dshrmo, .framer-0FuVw .framer-1e7ykl5, .framer-0FuVw .framer-11uuq9u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0FuVw .framer-180g2e2 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1h8jjwd, .framer-0FuVw .framer-173oldr, .framer-0FuVw .framer-1qwxtl0, .framer-0FuVw .framer-1uiy6ey, .framer-0FuVw .framer-3fjt6v, .framer-0FuVw .framer-zhgc6m, .framer-0FuVw .framer-1jnjcer, .framer-0FuVw .framer-196v78f, .framer-0FuVw .framer-1u8enr3, .framer-0FuVw .framer-1h75dgf, .framer-0FuVw .framer-1nxlidu, .framer-0FuVw .framer-zoy1x2, .framer-0FuVw .framer-15g1t54, .framer-0FuVw .framer-17s568x, .framer-0FuVw .framer-5drl41, .framer-0FuVw .framer-d2qxuw, .framer-0FuVw .framer-1k4olf4, .framer-0FuVw .framer-jy68jb, .framer-0FuVw .framer-1wec5jr, .framer-0FuVw .framer-1td92oh, .framer-0FuVw .framer-1ggimb, .framer-0FuVw .framer-sfep0w, .framer-0FuVw .framer-arkz0x, .framer-0FuVw .framer-do1d9h, .framer-0FuVw .framer-1lar55k, .framer-0FuVw .framer-1gqmxhq, .framer-0FuVw .framer-ycoiol, .framer-0FuVw .framer-1d2u2jg, .framer-0FuVw .framer-fpsazo, .framer-0FuVw .framer-larrzx, .framer-0FuVw .framer-1l3ec1r, .framer-0FuVw .framer-14ap0ue, .framer-0FuVw .framer-1shcsv7, .framer-0FuVw .framer-1l4pjqh, .framer-0FuVw .framer-1ef5z4, .framer-0FuVw .framer-ty0nwe, .framer-0FuVw .framer-547tm8, .framer-0FuVw .framer-1vslr7b, .framer-0FuVw .framer-1rn1gvz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0FuVw .framer-cytaak { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; 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-0FuVw .framer-gvuwcz-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-0FuVw .framer-103q74r-container { flex: none; height: auto; max-width: 100%; position: relative; width: 1000px; }\",\".framer-0FuVw .framer-1hndm4q { aspect-ratio: 1.8181818181818183 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 660px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-0FuVw .framer-13ksgjc { align-content: center; align-items: center; background-color: var(--token-7c556ede-4841-49c5-855a-9b25094188c4, #050505); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-3hvvre { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 941px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-1v9399q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 659px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-6h24gx-container, .framer-0FuVw .framer-yprmho-container, .framer-0FuVw .framer-ej5u64-container, .framer-0FuVw .framer-19b779o-container, .framer-0FuVw .framer-1k9lr4p-container, .framer-0FuVw .framer-6yv8w-container, .framer-0FuVw .framer-lor45n-container, .framer-0FuVw .framer-80b62x-container, .framer-0FuVw .framer-13j23y6-container, .framer-0FuVw .framer-1x9ap3w-container, .framer-0FuVw .framer-cv5gd-container, .framer-0FuVw .framer-1krqbez-container, .framer-0FuVw .framer-csq22m-container, .framer-0FuVw .framer-18yv5kc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-0FuVw .framer-3zg6bi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0FuVw .framer-1upp8ho-container { flex: none; height: 513px; position: relative; width: 892px; }\",\".framer-0FuVw .framer-ux0d7p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1brsilh, .framer-0FuVw .framer-tf5eeo, .framer-0FuVw .framer-dafpcx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-1smfhor-container { flex: none; height: 553px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-3kjk3k { align-content: center; align-items: center; background-color: var(--token-7c556ede-4841-49c5-855a-9b25094188c4, #050505); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-6g01g8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-kteng3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1ouyzo8 { 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: 100%; }\",\".framer-0FuVw .framer-1sjh1be, .framer-0FuVw .framer-1k3t85i, .framer-0FuVw .framer-og1uk0, .framer-0FuVw .framer-w6adqx, .framer-0FuVw .framer-1vwc0tw, .framer-0FuVw .framer-1f6sqy2, .framer-0FuVw .framer-1wwpo09, .framer-0FuVw .framer-clpe1e, .framer-0FuVw .framer-4727r4, .framer-0FuVw .framer-tykrl, .framer-0FuVw .framer-12ic1qd, .framer-0FuVw .framer-136klov { --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-0FuVw .framer-16eidb8 { 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-0FuVw .framer-loafk9 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 340px; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0FuVw .framer-97i1vm, .framer-0FuVw .framer-102mqf5 { align-content: flex-start; align-items: flex-start; 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-0FuVw .framer-42jd1t { aspect-ratio: 1.104 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); overflow: hidden; position: relative; width: 100%; }\",\".framer-0FuVw .framer-7qruuq { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-zvzbha { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-0FuVw .framer-1dn33ds { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 318px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-xl633v { aspect-ratio: 2.1169590643274856 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 171px); overflow: hidden; position: relative; width: 362px; }\",\".framer-0FuVw .framer-1a69hxi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-g860l3 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 227px; justify-content: center; overflow: hidden; padding: 40px 32px 40px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0FuVw .framer-1m9hetf { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 227px; justify-content: center; overflow: hidden; padding: 40px 32px 42px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0FuVw .framer-116ivtz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-11gpny0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 522px; justify-content: center; padding: 0px; position: relative; width: 400px; }\",\".framer-0FuVw .framer-1erb9bd, .framer-0FuVw .framer-1sbbja7, .framer-0FuVw .framer-1dyu8g5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-7f6wxz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-16ddyce { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 468px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-bd2rp { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1xp4yg9 { aspect-ratio: 1.3112033195020747 / 1; flex: 1 0 0px; gap: 0px; height: var(--framer-aspect-ratio-supported, 482px); max-width: 662px; overflow: visible; position: relative; width: 1px; }\",\".framer-0FuVw .framer-p3in68 { 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: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1n2hy7e, .framer-0FuVw .framer-13vjs9i { 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: 1140px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1ge5s5z { 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: 480px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1mlbteq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-qkg4by, .framer-0FuVw .framer-1lq77bn, .framer-0FuVw .framer-1axn41e { --border-bottom-width: 1px; --border-color: #141414; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(16px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(16px); background-color: var(--token-5c1aaf38-e236-4578-b67f-a4be9c2a6b82, #101010); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0FuVw .framer-bil257, .framer-0FuVw .framer-z4vxk6, .framer-0FuVw .framer-ywzd6e { aspect-ratio: 1.5769230769230769 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 223px); overflow: visible; position: relative; width: 100%; }\",\".framer-0FuVw .framer-hbaqgk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 941px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-w65qkn, .framer-0FuVw .framer-5vrrjb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 510px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1nz0lae { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1nybevq, .framer-0FuVw .framer-1k67xoo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1namn17, .framer-0FuVw .framer-zyft4k, .framer-0FuVw .framer-87jlku, .framer-0FuVw .framer-1bbnocp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 380px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-1d59w02, .framer-0FuVw .framer-nr8417, .framer-0FuVw .framer-1pw4sjj, .framer-0FuVw .framer-1r9j8vl { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; width: 36px; }\",\".framer-0FuVw .framer-ky1tl6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-j344ey { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1140px; overflow: hidden; padding: 80px 60px 80px 55px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0FuVw .framer-sn6zsh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 452px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-1qft464 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 470px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-kdqcri { aspect-ratio: 0.9722222222222222 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 169px); overflow: visible; position: relative; width: 35%; z-index: 1; }\",\".framer-0FuVw .framer-1esnddg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-cfhlku { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 76%; }\",\".framer-0FuVw .framer-feuhsj { aspect-ratio: 0.7978723404255319 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 171px); overflow: visible; position: relative; width: 62%; z-index: 1; }\",\".framer-0FuVw .framer-17023g7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 71px); overflow: visible; position: relative; width: 32%; z-index: 1; }\",\".framer-0FuVw .framer-1esgif9 { aspect-ratio: 1.8888888888888888 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 144px); overflow: visible; position: relative; width: 94%; z-index: 1; }\",\".framer-0FuVw .framer-a6ajc3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; max-width: 1140px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-1jvpyc5 { display: grid; flex: none; gap: 125px; 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: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1p2quav { align-content: center; align-items: center; background-color: rgba(34, 34, 34, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 100%; z-index: 1; }\",\".framer-0FuVw .framer-1fa70lq { align-content: center; align-items: center; background-color: rgba(34, 34, 34, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 1px / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 1px; z-index: 1; }\",\".framer-0FuVw .framer-1f4v5gp, .framer-0FuVw .framer-42xd71, .framer-0FuVw .framer-1hsr3n6, .framer-0FuVw .framer-2pgq44 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: 100%; justify-content: center; justify-self: start; max-width: 428px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-15gntrt, .framer-0FuVw .framer-tokdb6, .framer-0FuVw .framer-eq0zwz, .framer-0FuVw .framer-heza0g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-mvhyfx { align-content: center; align-items: center; background-color: rgba(11, 11, 11, 0.7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1plz0ss { 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: 576px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-13dsa4t { align-content: center; align-items: center; 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-0FuVw .framer-ow84kb { align-content: center; align-items: center; aspect-ratio: 1.4589235127478755 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 353px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-1pwjhi9 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: 100%; opacity: 0.75; overflow: visible; position: relative; width: 1px; }\",\".framer-0FuVw .framer-13pjo1k { --border-bottom-width: 1px; --border-color: #141414; --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: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0FuVw .framer-x8zw9f, .framer-0FuVw .framer-1di8dv8, .framer-0FuVw .framer-11vba80, .framer-0FuVw .framer-pesrv, .framer-0FuVw .framer-1rfi7f2, .framer-0FuVw .framer-g7jxng, .framer-0FuVw .framer-1ggpz9e, .framer-0FuVw .framer-3739dq, .framer-0FuVw .framer-1nmmzbv, .framer-0FuVw .framer-6lbhd6, .framer-0FuVw .framer-1r9krce, .framer-0FuVw .framer-1dddnqy, .framer-0FuVw .framer-pluqzx, .framer-0FuVw .framer-1e0b0la, .framer-0FuVw .framer-19fj4sw, .framer-0FuVw .framer-1rktwvl, .framer-0FuVw .framer-p7sqd5, .framer-0FuVw .framer-1wej6yc, .framer-0FuVw .framer-cfck4u, .framer-0FuVw .framer-1dilc53, .framer-0FuVw .framer-1xa7i8r, .framer-0FuVw .framer-1c21cje, .framer-0FuVw .framer-sxe60o, .framer-0FuVw .framer-3ckxc3, .framer-0FuVw .framer-1nt9cr7, .framer-0FuVw .framer-pvufvt, .framer-0FuVw .framer-1m3ihan, .framer-0FuVw .framer-13q8o9s, .framer-0FuVw .framer-4yguab, .framer-0FuVw .framer-1hbao9b, .framer-0FuVw .framer-d8pva4, .framer-0FuVw .framer-11yqb7p, .framer-0FuVw .framer-1bx9kc { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-fritju, .framer-0FuVw .framer-1ga611u, .framer-0FuVw .framer-as4jfm, .framer-0FuVw .framer-ry26wm, .framer-0FuVw .framer-1jyo6hh, .framer-0FuVw .framer-1u6kyid { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); position: relative; width: 6px; }\",\".framer-0FuVw .framer-1vgktao, .framer-0FuVw .framer-1mhrtrw, .framer-0FuVw .framer-3iz49u, .framer-0FuVw .framer-8nrjvw, .framer-0FuVw .framer-1l4vl9i, .framer-0FuVw .framer-ern792, .framer-0FuVw .framer-1voquwp, .framer-0FuVw .framer-13gpsmn, .framer-0FuVw .framer-1qjjaa8, .framer-0FuVw .framer-ertybk, .framer-0FuVw .framer-no2szq, .framer-0FuVw .framer-939p3y, .framer-0FuVw .framer-46gl5n, .framer-0FuVw .framer-xjrzis, .framer-0FuVw .framer-41bs5m, .framer-0FuVw .framer-1d5u0b1, .framer-0FuVw .framer-1e0rxy9, .framer-0FuVw .framer-ne2dz6, .framer-0FuVw .framer-17p4fp, .framer-0FuVw .framer-wo8v6y, .framer-0FuVw .framer-q0jn48, .framer-0FuVw .framer-rlhzk3, .framer-0FuVw .framer-msndob, .framer-0FuVw .framer-1osaxle, .framer-0FuVw .framer-e6kukl, .framer-0FuVw .framer-zfu9rg, .framer-0FuVw .framer-4otsfo, .framer-0FuVw .framer-1eapo78, .framer-0FuVw .framer-hv6u9v, .framer-0FuVw .framer-12vwlkb, .framer-0FuVw .framer-1dc13w5, .framer-0FuVw .framer-1wmfm63, .framer-0FuVw .framer-1r4ivje { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-0FuVw .framer-foi2sw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-iidtup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 382px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-8gbwe5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0FuVw .framer-1360cba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1veahbl, .framer-0FuVw .framer-1cmcz8n { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #101010; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: 672px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0FuVw .framer-bj82ki, .framer-0FuVw .framer-1nh2t3j, .framer-0FuVw .framer-nhpwnh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-9h5gog, .framer-0FuVw .framer-1bcu4sx, .framer-0FuVw .framer-1idke61 { background-color: #333333; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1uwaisi, .framer-0FuVw .framer-1yapgtw, .framer-0FuVw .framer-1o229rb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-5onuha, .framer-0FuVw .framer-1qhzjyj, .framer-0FuVw .framer-1ptw4g6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-12vnh32, .framer-0FuVw .framer-csst73, .framer-0FuVw .framer-1u4a7x5, .framer-0FuVw .framer-7qo9ss, .framer-0FuVw .framer-fg4q6g, .framer-0FuVw .framer-1fzi61z, .framer-0FuVw .framer-bx2asr, .framer-0FuVw .framer-13kd222, .framer-0FuVw .framer-c2ffqw, .framer-0FuVw .framer-7j2ppj, .framer-0FuVw .framer-nbn46z, .framer-0FuVw .framer-1k6sk05, .framer-0FuVw .framer-x3bvf5, .framer-0FuVw .framer-w6y7gr, .framer-0FuVw .framer-1e8fjrt, .framer-0FuVw .framer-dfdre1, .framer-0FuVw .framer-1def7hr, .framer-0FuVw .framer-jhwqgp, .framer-0FuVw .framer-17k5cto, .framer-0FuVw .framer-1us0g0j, .framer-0FuVw .framer-10pt8m9, .framer-0FuVw .framer-dw7mzk, .framer-0FuVw .framer-1mhrwga, .framer-0FuVw .framer-nxu66a, .framer-0FuVw .framer-1yi9uhw, .framer-0FuVw .framer-1ohkzwa, .framer-0FuVw .framer-1g01dzj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\".framer-0FuVw .framer-2c9ggu-container, .framer-0FuVw .framer-h27utk-container, .framer-0FuVw .framer-1a7xc2t-container, .framer-0FuVw .framer-18rtx42-container, .framer-0FuVw .framer-1cnv9wl-container, .framer-0FuVw .framer-qw4pou-container, .framer-0FuVw .framer-1mpzzhs-container, .framer-0FuVw .framer-1of9quu-container, .framer-0FuVw .framer-1gcwp3w-container, .framer-0FuVw .framer-1mgy1ls-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-0FuVw .framer-qqxaxi { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --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: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: 672px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0FuVw .framer-1od3d0e { 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: 120px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-jdcj67 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1140px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-1k86olh { 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: 608px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-kzw0pb { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-1lyfjs-container, .framer-0FuVw .framer-92orib-container, .framer-0FuVw .framer-1l77u6l-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-0FuVw .framer-l8w57d { align-content: center; align-items: center; background-color: rgba(11, 11, 11, 0.7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 100px 30px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-184pkc0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 710px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0FuVw .framer-1bcsgwy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0FuVw .framer-nhtqjf { --border-bottom-width: 1px; --border-color: #141414; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(16px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(16px); 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: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 710px; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-0FuVw[data-border=\"true\"]::after, .framer-0FuVw [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-0FuVw.framer-72rtr7 { width: 810px; } .framer-0FuVw .framer-1i3452o-container { order: 0; } .framer-0FuVw .framer-1iiu3cz { order: 1; padding: 160px 40px 180px 40px; } .framer-0FuVw .framer-1h8jjwd { --framer-text-wrap: balance; } .framer-0FuVw .framer-1hndm4q { height: var(--framer-aspect-ratio-supported, 446px); } .framer-0FuVw .framer-13ksgjc { order: 2; padding: 80px 40px 120px 40px; } .framer-0FuVw .framer-3hvvre { padding: 0px 40px 0px 40px; } .framer-0FuVw .framer-1v9399q { gap: 12px; } .framer-0FuVw .framer-1smfhor-container { height: 600px; order: 3; } .framer-0FuVw .framer-3kjk3k { order: 4; padding: 80px 30px 80px 30px; } .framer-0FuVw .framer-loafk9 { aspect-ratio: 0.7010309278350515 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 485px); width: 340px; } .framer-0FuVw .framer-42jd1t { height: var(--framer-aspect-ratio-supported, 220px); width: 243px; } .framer-0FuVw .framer-zvzbha { flex-direction: column; gap: 8px; } .framer-0FuVw .framer-1dn33ds { flex: none; max-width: unset; width: 100%; } .framer-0FuVw .framer-xl633v { height: var(--framer-aspect-ratio-supported, 142px); width: 301px; } .framer-0FuVw .framer-1a69hxi { flex-direction: column; gap: 24px; } .framer-0FuVw .framer-g860l3, .framer-0FuVw .framer-1m9hetf { flex: none; width: 100%; } .framer-0FuVw .framer-11gpny0 { order: 5; } .framer-0FuVw .framer-1erb9bd { order: 7; padding: 80px 30px 80px 30px; } .framer-0FuVw .framer-1xp4yg9 { height: var(--framer-aspect-ratio-supported, 271px); } .framer-0FuVw .framer-p3in68 { order: 8; padding: 100px 40px 100px 40px; } .framer-0FuVw .framer-bil257, .framer-0FuVw .framer-z4vxk6, .framer-0FuVw .framer-ywzd6e { height: var(--framer-aspect-ratio-supported, 137px); } .framer-0FuVw .framer-1sbbja7 { order: 6; padding: 100px 40px 100px 40px; } .framer-0FuVw .framer-1nz0lae, .framer-0FuVw .framer-a6ajc3 { gap: 50px; } .framer-0FuVw .framer-1nybevq, .framer-0FuVw .framer-1k67xoo { gap: 50px; justify-content: center; } .framer-0FuVw .framer-ky1tl6 { order: 9; padding: 80px 30px 0px 30px; } .framer-0FuVw .framer-j344ey { gap: 30px; justify-content: center; padding: 50px 20px 50px 20px; } .framer-0FuVw .framer-kdqcri { height: var(--framer-aspect-ratio-supported, 122px); } .framer-0FuVw .framer-cfhlku { gap: 16px; justify-content: flex-start; width: 84%; } .framer-0FuVw .framer-feuhsj { height: var(--framer-aspect-ratio-supported, 134px); order: 0; } .framer-0FuVw .framer-17023g7 { height: var(--framer-aspect-ratio-supported, 55px); order: 1; } .framer-0FuVw .framer-1esgif9 { height: var(--framer-aspect-ratio-supported, 108px); width: 100%; } .framer-0FuVw .framer-1dyu8g5 { order: 10; padding: 80px 30px 80px 30px; } .framer-0FuVw .framer-1jvpyc5 { gap: 80px; padding: 32px 16px 32px 16px; } .framer-0FuVw .framer-1f4v5gp, .framer-0FuVw .framer-42xd71, .framer-0FuVw .framer-1hsr3n6, .framer-0FuVw .framer-2pgq44 { gap: 26px; } .framer-0FuVw .framer-mvhyfx { order: 11; padding: 80px 30px 80px 30px; } .framer-0FuVw .framer-13dsa4t { gap: 20px; } .framer-0FuVw .framer-ow84kb { align-self: stretch; aspect-ratio: unset; height: auto; } .framer-0FuVw .framer-13pjo1k { gap: 15px; padding: 20px; } .framer-0FuVw .framer-foi2sw { order: 12; padding: 80px 30px 80px 30px; } .framer-0FuVw .framer-1360cba, .framer-0FuVw .framer-kzw0pb { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; } .framer-0FuVw .framer-1veahbl, .framer-0FuVw .framer-qqxaxi, .framer-0FuVw .framer-1cmcz8n, .framer-0FuVw .framer-1lyfjs-container, .framer-0FuVw .framer-92orib-container, .framer-0FuVw .framer-1l77u6l-container { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-0FuVw .framer-1od3d0e { order: 13; padding: 120px 30px 80px 30px; } .framer-0FuVw .framer-l8w57d { order: 14; padding: 80px 30px 80px 30px; } .framer-0FuVw .framer-1gcwp3w-container { order: 15; } .framer-0FuVw .framer-1mgy1ls-container { order: 16; } .framer-0FuVw .framer-18yv5kc-container { order: 17; }}\",\"@media (max-width: 809px) { .framer-0FuVw.framer-72rtr7 { width: 390px; } .framer-0FuVw .framer-1iiu3cz { padding: 130px 20px 60px 20px; } .framer-0FuVw .framer-1hndm4q { aspect-ratio: unset; height: 577px; } .framer-0FuVw .framer-13ksgjc { flex-direction: column; padding: 80px 20px 80px 20px; } .framer-0FuVw .framer-3hvvre { flex: none; max-width: 390px; width: 100%; } .framer-0FuVw .framer-ux0d7p, .framer-0FuVw .framer-7f6wxz, .framer-0FuVw .framer-1mlbteq, .framer-0FuVw .framer-13dsa4t, .framer-0FuVw .framer-1360cba, .framer-0FuVw .framer-kzw0pb { flex-direction: column; } .framer-0FuVw .framer-1brsilh, .framer-0FuVw .framer-tf5eeo, .framer-0FuVw .framer-dafpcx, .framer-0FuVw .framer-g860l3, .framer-0FuVw .framer-1m9hetf, .framer-0FuVw .framer-qkg4by, .framer-0FuVw .framer-1lq77bn, .framer-0FuVw .framer-1axn41e, .framer-0FuVw .framer-1namn17, .framer-0FuVw .framer-zyft4k, .framer-0FuVw .framer-87jlku, .framer-0FuVw .framer-1bbnocp, .framer-0FuVw .framer-1qft464, .framer-0FuVw .framer-qqxaxi, .framer-0FuVw .framer-1cmcz8n, .framer-0FuVw .framer-1lyfjs-container, .framer-0FuVw .framer-92orib-container, .framer-0FuVw .framer-1l77u6l-container { flex: none; width: 100%; } .framer-0FuVw .framer-1smfhor-container { height: 610px; width: 340px; } .framer-0FuVw .framer-3kjk3k, .framer-0FuVw .framer-1erb9bd { overflow: visible; padding: 60px 20px 60px 20px; } .framer-0FuVw .framer-16eidb8, .framer-0FuVw .framer-1a69hxi { flex-direction: column; gap: 20px; } .framer-0FuVw .framer-loafk9, .framer-0FuVw .framer-1dn33ds { flex: none; max-width: unset; width: 100%; } .framer-0FuVw .framer-42jd1t { height: var(--framer-aspect-ratio-supported, 223px); width: 246px; } .framer-0FuVw .framer-7qruuq { flex: none; gap: 20px; width: 100%; } .framer-0FuVw .framer-zvzbha { flex-direction: column; gap: 12px; } .framer-0FuVw .framer-xl633v { height: var(--framer-aspect-ratio-supported, 94px); width: 100%; } .framer-0FuVw .framer-16ddyce { align-content: center; align-items: center; flex: none; max-width: unset; width: 100%; } .framer-0FuVw .framer-bd2rp { align-content: center; align-items: center; } .framer-0FuVw .framer-1xp4yg9 { flex: none; height: var(--framer-aspect-ratio-supported, 153px); width: 100%; } .framer-0FuVw .framer-p3in68, .framer-0FuVw .framer-1sbbja7, .framer-0FuVw .framer-1dyu8g5, .framer-0FuVw .framer-mvhyfx, .framer-0FuVw .framer-foi2sw, .framer-0FuVw .framer-l8w57d { padding: 60px 20px 60px 20px; } .framer-0FuVw .framer-bil257, .framer-0FuVw .framer-z4vxk6, .framer-0FuVw .framer-ywzd6e { height: var(--framer-aspect-ratio-supported, 127px); } .framer-0FuVw .framer-1nz0lae, .framer-0FuVw .framer-a6ajc3 { gap: 40px; } .framer-0FuVw .framer-1nybevq, .framer-0FuVw .framer-1k67xoo { flex-direction: column; gap: 40px; justify-content: center; } .framer-0FuVw .framer-ky1tl6 { padding: 60px 20px 0px 20px; } .framer-0FuVw .framer-j344ey { flex-direction: column; gap: 40px; justify-content: center; padding: 30px 20px 30px 20px; } .framer-0FuVw .framer-sn6zsh { align-content: center; align-items: center; flex: none; width: 100%; } .framer-0FuVw .framer-kdqcri { height: var(--framer-aspect-ratio-supported, 206px); } .framer-0FuVw .framer-cfhlku { gap: 15px; justify-content: flex-start; width: 100%; } .framer-0FuVw .framer-feuhsj { height: var(--framer-aspect-ratio-supported, 251px); width: 58%; } .framer-0FuVw .framer-17023g7 { height: var(--framer-aspect-ratio-supported, 200px); } .framer-0FuVw .framer-1esgif9 { height: var(--framer-aspect-ratio-supported, 106px); width: 100%; } .framer-0FuVw .framer-1jvpyc5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 36px; padding: 0px; } .framer-0FuVw .framer-1f4v5gp, .framer-0FuVw .framer-42xd71 { align-self: unset; gap: 24px; height: min-content; } .framer-0FuVw .framer-1hsr3n6, .framer-0FuVw .framer-2pgq44 { align-self: unset; height: min-content; } .framer-0FuVw .framer-ow84kb { flex: none; height: var(--framer-aspect-ratio-supported, 137px); width: 100%; } .framer-0FuVw .framer-13pjo1k { flex: none; gap: 15px; padding: 30px 20px 30px 20px; width: 100%; } .framer-0FuVw .framer-1veahbl { flex: none; height: min-content; width: 100%; } .framer-0FuVw .framer-1od3d0e { padding: 120px 20px 60px 20px; } .framer-0FuVw .framer-nhtqjf { padding: 30px 20px 30px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11764\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hcMvc6Ov5\":{\"layout\":[\"fixed\",\"auto\"]},\"CIYuPWjfD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"EXElfhBPa\":{\"pattern\":\":EXElfhBPa\",\"name\":\"report-section\"},\"nNpbbs9iT\":{\"pattern\":\":nNpbbs9iT\",\"name\":\"report-section\"},\"Spf6J50dP\":{\"pattern\":\":Spf6J50dP\",\"name\":\"service\"},\"ZZbqMz6P0\":{\"pattern\":\":ZZbqMz6P0\",\"name\":\"about\"},\"NvFutE00M\":{\"pattern\":\":NvFutE00M\",\"name\":\"pricing\"},\"WhFuERudo\":{\"pattern\":\":WhFuERudo\",\"name\":\"reviews\"},\"AQPMvMW3d\":{\"pattern\":\":AQPMvMW3d\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-0FuVw\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11764,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v3/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},{family:\"Instrument Serif\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentserif/v4/jizHRFtNs2ka5fXjeivQ4LroWlx-6zATjnTNgNq55w.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavbarNavbarFonts,...ButtonMainButtonFonts,...BrandLogosFonts,...ButtonSubButtonFonts,...VideoFonts,...CounterFonts,...EmbedFonts,...ReviewFonts,...FAQsSingleFAQFonts,...CTAFonts,...FooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"EXElfhBPa\\\":{\\\"pattern\\\":\\\":EXElfhBPa\\\",\\\"name\\\":\\\"report-section\\\"},\\\"nNpbbs9iT\\\":{\\\"pattern\\\":\\\":nNpbbs9iT\\\",\\\"name\\\":\\\"report-section\\\"},\\\"Spf6J50dP\\\":{\\\"pattern\\\":\\\":Spf6J50dP\\\",\\\"name\\\":\\\"service\\\"},\\\"ZZbqMz6P0\\\":{\\\"pattern\\\":\\\":ZZbqMz6P0\\\",\\\"name\\\":\\\"about\\\"},\\\"NvFutE00M\\\":{\\\"pattern\\\":\\\":NvFutE00M\\\",\\\"name\\\":\\\"pricing\\\"},\\\"WhFuERudo\\\":{\\\"pattern\\\":\\\":WhFuERudo\\\",\\\"name\\\":\\\"reviews\\\"},\\\"AQPMvMW3d\\\":{\\\"pattern\\\":\\\":AQPMvMW3d\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hcMvc6Ov5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CIYuPWjfD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"11764\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "css", "FramerMveyZfocH", "withCSS", "MveyZfocH_default", "addFonts", "NavbarNavbarFonts", "getFonts", "SDFhNJXGw_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText", "ButtonMainButtonFonts", "Csa3l6Asm_default", "BrandLogosFonts", "MveyZfocH_default", "ButtonSubButtonFonts", "eLPghSXHG_default", "VideoFonts", "Video", "CounterFonts", "Counter", "EmbedFonts", "Embed", "ReviewFonts", "jePEdS4RN_default", "FAQsSingleFAQFonts", "GJGRZDt21_default", "CTAFonts", "MBU299z6Y_default", "FooterFonts", "nD8ama7rf_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "textEffect", "transition4", "animation4", "animation5", "animation6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "Link", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
