{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/a0I38ES0Es3ctHmiqyi3/ROvaY1U53UqQCzSq9FG2/D5VaVALWd.js", "ssg:https://framerusercontent.com/modules/vCN3FrTmacDDpM0fWqKg/CdnNQJEQ20EXJ5vs5UHb/GNTvgCHJo.js", "ssg:https://framerusercontent.com/modules/lZY2mN7tKGMMhbe5Azu3/wR7IksjAu2cHlsDJkYUl/rvJ7i7T9u.js", "ssg:https://framerusercontent.com/modules/YVVqy6WZGjCqVPFdp4vh/ti7J2YVsrNJXPnydd9BE/v4OAlIwbo.js", "ssg:https://framerusercontent.com/modules/BnVJDQzLizKOnpjUUWYh/Ngnh8u7nmMYs1xLZrm6P/zBrFJsR9J.js", "ssg:https://framerusercontent.com/modules/TeKxU3yxNY2kFD1rvl0H/1euvvJAYlcUcyjcC1Dfs/kMcLtxmLg.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{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={}));// 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 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}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;}/**\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 */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?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!==null&&rawProgressValue!==void 0?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!==null&&startTime!==void 0?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//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)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!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?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\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/guxJM7TWgG5Hp9VcNBXE/THnDWi6bEiOcgb9jUN6p/CK9MmPcy8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/EpYN6ZxP6xRcMMNVMje9/dFT3rbTtM4EIuPjL2Rza/psHVyBeUZ.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/dR88dVGobcwUC33bT2ct/vUGiRxSsGq6HbYP3q2dF/vpCobN6jJ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Ru6giAWwqYzA5NbiKcUu/ld5x7q4npPlroNGW5QwP/Ygnv75AQg.js\";const cycleOrder=[\"XK5voLp13\",\"oCS8wDjg6\"];const serializationHash=\"framer-1xzV3\";const variantClassNames={oCS8wDjg6:\"framer-v-4as1xu\",XK5voLp13:\"framer-v-1sunstd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Desktop:\"XK5voLp13\",Mobile:\"oCS8wDjg6\"};const getProps=({author,date,height,id,link,photo,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,aH8R6YReO:link!==null&&link!==void 0?link:props.aH8R6YReO,deCQ0q_9M:(_ref=title!==null&&title!==void 0?title:props.deCQ0q_9M)!==null&&_ref!==void 0?_ref:\"2023 Design Trends for Modern Websites\",qLIsgXnI7:photo!==null&&photo!==void 0?photo:props.qLIsgXnI7,tjwf2tcDI:(_ref1=date!==null&&date!==void 0?date:props.tjwf2tcDI)!==null&&_ref1!==void 0?_ref1:\"4 August 2023\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"XK5voLp13\",yf73hutSQ:(_ref3=author!==null&&author!==void 0?author:props.yf73hutSQ)!==null&&_ref3!==void 0?_ref3:\"Carolina Grace\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,qLIsgXnI7,deCQ0q_9M,yf73hutSQ,tjwf2tcDI,aH8R6YReO,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"XK5voLp13\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-1xzV3\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:aH8R6YReO,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(\"framer-1sunstd\",className)} framer-k6exeo`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"XK5voLp13\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({oCS8wDjg6:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eq3naj\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"HA0SbLXwQ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"280px\",...toResponsiveImage(qLIsgXnI7)},className:\"framer-b216o9\",\"data-framer-name\":\"Photo\",layoutDependency:layoutDependency,layoutId:\"vo9eWjzek\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({oCS8wDjg6:{background:{alt:\"\",fit:\"fill\",sizes:\"min(600px, 100vw)\",...toResponsiveImage(qLIsgXnI7)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w9jxs0\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"I146:6770;54:605\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1kq7k3y\",\"data-styles-preset\":\"psHVyBeUZ\",children:\"2023 Design Trends for Modern Websites\"})}),className:\"framer-1rd7n4q\",\"data-framer-name\":\"2023 Design Trends for Modern Websites\",layoutDependency:layoutDependency,layoutId:\"I146:6770;54:590\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:deCQ0q_9M,variants:{oCS8wDjg6:{\"--extracted-1eung3n\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oCS8wDjg6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vr7pdk\",\"data-styles-preset\":\"Ygnv75AQg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"2023 Design Trends for Modern Websites\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bxe0k2\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"I146:6770;54:586\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9s4xa\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"I146:6770;54:587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Carolina Grace\"})}),className:\"framer-1jr83ip\",\"data-framer-name\":\"Peter Shaw\",layoutDependency:layoutDependency,layoutId:\"I146:6770;54:588\",style:{\"--extracted-1w1cjl5\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},text:yf73hutSQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",children:\"4 August 2023\"})}),className:\"framer-17zhlbe\",\"data-framer-name\":\"7 September 2023\",layoutDependency:layoutDependency,layoutId:\"I146:6770;54:589\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.5},text:tjwf2tcDI,verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})})})})});});const css=['.framer-1xzV3 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1xzV3 .framer-k6exeo { display: block; }\",\".framer-1xzV3 .framer-1sunstd { align-content: start; align-items: start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 600px; }\",\".framer-1xzV3 .framer-1eq3naj { 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: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-1xzV3 .framer-b216o9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 280px; }\",\".framer-1xzV3 .framer-1w9jxs0 { align-content: start; align-items: start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-1xzV3 .framer-1rd7n4q, .framer-1xzV3 .framer-1jr83ip, .framer-1xzV3 .framer-17zhlbe { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1xzV3 .framer-bxe0k2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 280px; }\",\".framer-1xzV3 .framer-9s4xa { align-content: start; align-items: start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1xzV3 .framer-1sunstd, .framer-1xzV3 .framer-1eq3naj, .framer-1xzV3 .framer-b216o9, .framer-1xzV3 .framer-1w9jxs0, .framer-1xzV3 .framer-bxe0k2, .framer-1xzV3 .framer-9s4xa { gap: 0px; } .framer-1xzV3 .framer-1sunstd > *, .framer-1xzV3 .framer-1eq3naj > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-1xzV3 .framer-1sunstd > :first-child, .framer-1xzV3 .framer-1eq3naj > :first-child, .framer-1xzV3 .framer-b216o9 > :first-child, .framer-1xzV3 .framer-bxe0k2 > :first-child { margin-left: 0px; } .framer-1xzV3 .framer-1sunstd > :last-child, .framer-1xzV3 .framer-1eq3naj > :last-child, .framer-1xzV3 .framer-b216o9 > :last-child, .framer-1xzV3 .framer-bxe0k2 > :last-child { margin-right: 0px; } .framer-1xzV3 .framer-b216o9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1xzV3 .framer-1w9jxs0 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1xzV3 .framer-1w9jxs0 > :first-child, .framer-1xzV3 .framer-9s4xa > :first-child { margin-top: 0px; } .framer-1xzV3 .framer-1w9jxs0 > :last-child, .framer-1xzV3 .framer-9s4xa > :last-child { margin-bottom: 0px; } .framer-1xzV3 .framer-bxe0k2 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-1xzV3 .framer-9s4xa > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-1xzV3.framer-v-4as1xu .framer-1sunstd { flex-direction: column; }\",\".framer-1xzV3.framer-v-4as1xu .framer-1eq3naj { align-content: start; align-items: start; flex: none; flex-direction: column; width: 100%; }\",\".framer-1xzV3.framer-v-4as1xu .framer-b216o9 { width: 100%; }\",\".framer-1xzV3.framer-v-4as1xu .framer-1w9jxs0 { flex: none; gap: 10px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1xzV3.framer-v-4as1xu .framer-1sunstd, .framer-1xzV3.framer-v-4as1xu .framer-1eq3naj, .framer-1xzV3.framer-v-4as1xu .framer-1w9jxs0 { gap: 0px; } .framer-1xzV3.framer-v-4as1xu .framer-1sunstd > *, .framer-1xzV3.framer-v-4as1xu .framer-1eq3naj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-1xzV3.framer-v-4as1xu .framer-1sunstd > :first-child, .framer-1xzV3.framer-v-4as1xu .framer-1eq3naj > :first-child, .framer-1xzV3.framer-v-4as1xu .framer-1w9jxs0 > :first-child { margin-top: 0px; } .framer-1xzV3.framer-v-4as1xu .framer-1sunstd > :last-child, .framer-1xzV3.framer-v-4as1xu .framer-1eq3naj > :last-child, .framer-1xzV3.framer-v-4as1xu .framer-1w9jxs0 > :last-child { margin-bottom: 0px; } .framer-1xzV3.framer-v-4as1xu .framer-1w9jxs0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oCS8wDjg6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"qLIsgXnI7\":\"photo\",\"deCQ0q_9M\":\"title\",\"yf73hutSQ\":\"author\",\"tjwf2tcDI\":\"date\",\"aH8R6YReO\":\"link\"}\n * @framerImmutableVariables true\n */const FramerD5VaVALWd=withCSS(Component,css,\"framer-1xzV3\");export default FramerD5VaVALWd;FramerD5VaVALWd.displayName=\"Blog v3\";FramerD5VaVALWd.defaultProps={height:200,width:600};addPropertyControls(FramerD5VaVALWd,{variant:{options:[\"XK5voLp13\",\"oCS8wDjg6\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},qLIsgXnI7:{title:\"Photo\",type:ControlType.ResponsiveImage},deCQ0q_9M:{defaultValue:\"2023 Design Trends for Modern Websites\",displayTextArea:true,title:\"Title\",type:ControlType.String},yf73hutSQ:{defaultValue:\"Carolina Grace\",displayTextArea:false,title:\"Author\",type:ControlType.String},tjwf2tcDI:{defaultValue:\"4 August 2023\",displayTextArea:false,title:\"Date\",type:ControlType.String},aH8R6YReO:{title:\"Link\",type:ControlType.Link}});addFonts(FramerD5VaVALWd,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD5VaVALWd\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"qLIsgXnI7\\\":\\\"photo\\\",\\\"deCQ0q_9M\\\":\\\"title\\\",\\\"yf73hutSQ\\\":\\\"author\\\",\\\"tjwf2tcDI\\\":\\\"date\\\",\\\"aH8R6YReO\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oCS8wDjg6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/guxJM7TWgG5Hp9VcNBXE/THnDWi6bEiOcgb9jUN6p/CK9MmPcy8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/EpYN6ZxP6xRcMMNVMje9/dFT3rbTtM4EIuPjL2Rza/psHVyBeUZ.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/dR88dVGobcwUC33bT2ct/vUGiRxSsGq6HbYP3q2dF/vpCobN6jJ.js\";const cycleOrder=[\"A4QAyfjFC\"];const serializationHash=\"framer-UNN1p\";const variantClassNames={A4QAyfjFC:\"framer-v-kx3e0r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,name1,photo,position,testimonial,width,...props})=>{var _ref,_ref1,_ref2;return{...props,DJ59zmyBc:(_ref=name1!==null&&name1!==void 0?name1:props.DJ59zmyBc)!==null&&_ref!==void 0?_ref:\"Peter Shaw\",dmfgtGcpA:(_ref1=position!==null&&position!==void 0?position:props.dmfgtGcpA)!==null&&_ref1!==void 0?_ref1:\"CEO of Rawboat Company\",g9HCAC9wx:(_ref2=testimonial!==null&&testimonial!==void 0?testimonial:props.g9HCAC9wx)!==null&&_ref2!==void 0?_ref2:\"DigiCraft has transformed our brand digital presence and brought significant growth to our business. Their team is creative, super responsive, and a pleasure to work with!\",l9XFp6GLH:photo!==null&&photo!==void 0?photo:props.l9XFp6GLH};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,g9HCAC9wx,l9XFp6GLH,DJ59zmyBc,dmfgtGcpA,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"A4QAyfjFC\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-UNN1p\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-kx3e0r\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"A4QAyfjFC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pql580\",\"data-framer-name\":\"Testimonial\",layoutDependency:layoutDependency,layoutId:\"P_k7PXejN\",style:{backgroundColor:\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 5px 40px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l4kcgy\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"XCmBSp2te\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ixlr5c\",\"data-framer-name\":\"Quote Icon\",layoutDependency:layoutDependency,layoutId:\"lfzqxjXJM\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16z930w\",\"data-framer-name\":\"Quote Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:30,layoutDependency:layoutDependency,layoutId:\"I146:6846;37:3844\",svg:'<svg width=\"30\" height=\"24\" viewBox=\"0 0 30 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.3034 1.94118C28.9888 3.88235 30 6 30 9.52941C30 15.7059 25.7865 21.1765 19.8876 24L18.3708 21.7059C23.9326 18.5294 25.1124 14.4706 25.4494 11.8235C24.6067 12.3529 23.427 12.5294 22.2472 12.3529C19.2135 12 16.8539 9.52941 16.8539 6.17647C16.8539 4.58824 17.5281 3 18.5393 1.76471C19.7191 0.529412 21.0674 0 22.7528 0C24.6067 0 26.2921 0.882354 27.3034 1.94118ZM10.4494 1.94118C12.1348 3.88235 13.1461 6 13.1461 9.52941C13.1461 15.7059 8.93258 21.1765 3.03371 24L1.51685 21.7059C7.07865 18.5294 8.25843 14.4706 8.59551 11.8235C7.75281 12.3529 6.57303 12.5294 5.39326 12.3529C2.35955 12 0 9.35294 0 6.17647C0 4.58824 0.674157 3 1.68539 1.76471C2.86517 0.529412 4.21348 0 5.89888 0C7.75281 0 9.4382 0.882354 10.4494 1.94118Z\" fill=\"#FED67A\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1kq7k3y\",\"data-styles-preset\":\"psHVyBeUZ\",children:\"DigiCraft has transformed our brand digital presence and brought significant growth to our business. Their team is creative, super responsive, and a pleasure to work with!\"})}),className:\"framer-gajmn\",\"data-framer-name\":\"DigiCraft has transformed our brand digital presence and brought significant growth to our business. Their team is creative, super responsive, and a pleasure to work with!\",layoutDependency:layoutDependency,layoutId:\"I146:6846;37:3843\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:g9HCAC9wx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r4lgq3\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"I146:6846;37:3845\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"56px\",...toResponsiveImage(l9XFp6GLH)},className:\"framer-m3k7ie\",\"data-framer-name\":\"Photo\",layoutDependency:layoutDependency,layoutId:\"Bl2NX3TSi\",style:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wehw8q\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"I146:6846;37:3847\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Peter Shaw\"})}),className:\"framer-1xzxe19\",\"data-framer-name\":\"Peter Shaw\",layoutDependency:layoutDependency,layoutId:\"I146:6846;37:3848\",style:{\"--extracted-1w1cjl5\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},text:DJ59zmyBc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",children:\"CEO of Rawboat Company\"})}),className:\"framer-nk36n0\",\"data-framer-name\":\"CEO of Rawboat Company\",layoutDependency:layoutDependency,layoutId:\"I146:6846;37:3849\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.5},text:dmfgtGcpA,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})})});});const css=['.framer-UNN1p [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UNN1p .framer-1vts0ci { display: block; }\",\".framer-UNN1p .framer-kx3e0r { align-content: start; align-items: start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 600px; }\",\".framer-UNN1p .framer-pql580 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 32px 32px 32px 32px; position: relative; width: 100%; }\",\".framer-UNN1p .framer-1l4kcgy { align-content: start; align-items: start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-UNN1p .framer-ixlr5c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 24px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 30px; }\",\".framer-UNN1p .framer-16z930w { flex: none; height: 24px; position: relative; width: 30px; }\",\".framer-UNN1p .framer-gajmn, .framer-UNN1p .framer-1xzxe19, .framer-UNN1p .framer-nk36n0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UNN1p .framer-1r4lgq3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-UNN1p .framer-m3k7ie { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 56px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 56px; }\",\".framer-UNN1p .framer-1wehw8q { align-content: start; align-items: start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UNN1p .framer-kx3e0r, .framer-UNN1p .framer-pql580, .framer-UNN1p .framer-1l4kcgy, .framer-UNN1p .framer-ixlr5c, .framer-UNN1p .framer-1r4lgq3, .framer-UNN1p .framer-m3k7ie, .framer-UNN1p .framer-1wehw8q { gap: 0px; } .framer-UNN1p .framer-kx3e0r > *, .framer-UNN1p .framer-1l4kcgy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-UNN1p .framer-kx3e0r > :first-child, .framer-UNN1p .framer-1l4kcgy > :first-child, .framer-UNN1p .framer-1wehw8q > :first-child { margin-top: 0px; } .framer-UNN1p .framer-kx3e0r > :last-child, .framer-UNN1p .framer-1l4kcgy > :last-child, .framer-UNN1p .framer-1wehw8q > :last-child { margin-bottom: 0px; } .framer-UNN1p .framer-pql580 > *, .framer-UNN1p .framer-ixlr5c > *, .framer-UNN1p .framer-m3k7ie > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UNN1p .framer-pql580 > :first-child, .framer-UNN1p .framer-ixlr5c > :first-child, .framer-UNN1p .framer-1r4lgq3 > :first-child, .framer-UNN1p .framer-m3k7ie > :first-child { margin-left: 0px; } .framer-UNN1p .framer-pql580 > :last-child, .framer-UNN1p .framer-ixlr5c > :last-child, .framer-UNN1p .framer-1r4lgq3 > :last-child, .framer-UNN1p .framer-m3k7ie > :last-child { margin-right: 0px; } .framer-UNN1p .framer-1r4lgq3 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-UNN1p .framer-1wehw8q > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 360\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"g9HCAC9wx\":\"testimonial\",\"l9XFp6GLH\":\"photo\",\"DJ59zmyBc\":\"name1\",\"dmfgtGcpA\":\"position\"}\n * @framerImmutableVariables true\n */const FramerGNTvgCHJo=withCSS(Component,css,\"framer-UNN1p\");export default FramerGNTvgCHJo;FramerGNTvgCHJo.displayName=\"Testimonial v1\";FramerGNTvgCHJo.defaultProps={height:360,width:600};addPropertyControls(FramerGNTvgCHJo,{g9HCAC9wx:{defaultValue:\"DigiCraft has transformed our brand digital presence and brought significant growth to our business. Their team is creative, super responsive, and a pleasure to work with!\",displayTextArea:true,title:\"Testimonial\",type:ControlType.String},l9XFp6GLH:{title:\"Photo\",type:ControlType.ResponsiveImage},DJ59zmyBc:{defaultValue:\"Peter Shaw\",displayTextArea:false,title:\"Name\",type:ControlType.String},dmfgtGcpA:{defaultValue:\"CEO of Rawboat Company\",displayTextArea:true,title:\"Position\",type:ControlType.String}});addFonts(FramerGNTvgCHJo,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGNTvgCHJo\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"g9HCAC9wx\\\":\\\"testimonial\\\",\\\"l9XFp6GLH\\\":\\\"photo\\\",\\\"DJ59zmyBc\\\":\\\"name1\\\",\\\"dmfgtGcpA\\\":\\\"position\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"360\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/guxJM7TWgG5Hp9VcNBXE/THnDWi6bEiOcgb9jUN6p/CK9MmPcy8.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/dR88dVGobcwUC33bT2ct/vUGiRxSsGq6HbYP3q2dF/vpCobN6jJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Ru6giAWwqYzA5NbiKcUu/ld5x7q4npPlroNGW5QwP/Ygnv75AQg.js\";const cycleOrder=[\"HCglRtoct\"];const serializationHash=\"framer-GPFNd\";const variantClassNames={HCglRtoct:\"framer-v-pf9wqg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({author,authorPhoto,date,height,id,link,photo,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,Ca3e6HPNs:(_ref=photo!==null&&photo!==void 0?photo:props.Ca3e6HPNs)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/pnIlHtYnfxQgnIfuAcbX4ipgA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/pnIlHtYnfxQgnIfuAcbX4ipgA.png?scale-down-to=512 512w, https://framerusercontent.com/images/pnIlHtYnfxQgnIfuAcbX4ipgA.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/pnIlHtYnfxQgnIfuAcbX4ipgA.png 1800w\"},e6jPASAaG:(_ref1=title!==null&&title!==void 0?title:props.e6jPASAaG)!==null&&_ref1!==void 0?_ref1:\"Be The Ultimate Blogger: Our Best Tips for SEO Optimalization in 2023\",PAWCDq4iQ:(_ref2=date!==null&&date!==void 0?date:props.PAWCDq4iQ)!==null&&_ref2!==void 0?_ref2:\"20 September 2023\",PQMUkvutZ:(_ref3=author!==null&&author!==void 0?author:props.PQMUkvutZ)!==null&&_ref3!==void 0?_ref3:\"John Smith\",wyBste8L1:link!==null&&link!==void 0?link:props.wyBste8L1,XRIcqGT_o:(_ref4=authorPhoto!==null&&authorPhoto!==void 0?authorPhoto:props.XRIcqGT_o)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/d7NviWUgPHIKUqwq5zmRKpcCv8U.png\"}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Ca3e6HPNs,e6jPASAaG,PQMUkvutZ,PAWCDq4iQ,XRIcqGT_o,wyBste8L1,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"HCglRtoct\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:wyBste8L1,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-pf9wqg\",className,classNames)} framer-vtyseh`,\"data-framer-name\":\"Variant 1\",initial:variant,layoutDependency:layoutDependency,layoutId:\"HCglRtoct\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5yetww\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"EGhrIbXQe\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1068,intrinsicWidth:1800,pixelHeight:1068,pixelWidth:1800,sizes:\"min(600px, 100vw)\",...toResponsiveImage(Ca3e6HPNs)},className:\"framer-71memn\",\"data-framer-name\":\"Photo\",layoutDependency:layoutDependency,layoutId:\"KBI6IfxpK\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vr7pdk\",\"data-styles-preset\":\"Ygnv75AQg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Be The Ultimate Blogger: Our Best Tips for SEO Optimalization in 2023\"})}),className:\"framer-ur3638\",\"data-framer-name\":\"Be The Ultimate Blogger: Our Best Tips for SEO Optimalization in 2023\",layoutDependency:layoutDependency,layoutId:\"pjgDJbTtK\",style:{\"--extracted-1eung3n\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},text:e6jPASAaG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p7dal3\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"Rp6FaLvmd\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:224,intrinsicWidth:224,pixelHeight:224,pixelWidth:224,sizes:\"56px\",...toResponsiveImage(XRIcqGT_o)},className:\"framer-qb0pa5\",\"data-framer-name\":\"Photo\",layoutDependency:layoutDependency,layoutId:\"FRB1IgP7I\",style:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6urzx1\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"uXxYxxPQt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"John Smith\"})}),className:\"framer-1jqwxxm\",\"data-framer-name\":\"John Smith\",layoutDependency:layoutDependency,layoutId:\"ZZxfz94fU\",style:{\"--extracted-1w1cjl5\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},text:PQMUkvutZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",children:\"20 September 2023\"})}),className:\"framer-gzkj81\",\"data-framer-name\":\"20 September 2023\",layoutDependency:layoutDependency,layoutId:\"xgb4ptSR6\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.5},text:PAWCDq4iQ,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})});});const css=['.framer-GPFNd[data-border=\"true\"]::after, .framer-GPFNd [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GPFNd.framer-vtyseh, .framer-GPFNd .framer-vtyseh { display: block; }\",\".framer-GPFNd.framer-pf9wqg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 600px; }\",\".framer-GPFNd .framer-5yetww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GPFNd .framer-71memn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 356px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GPFNd .framer-ur3638, .framer-GPFNd .framer-1jqwxxm, .framer-GPFNd .framer-gzkj81 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GPFNd .framer-p7dal3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GPFNd .framer-qb0pa5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GPFNd .framer-6urzx1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GPFNd.framer-pf9wqg, .framer-GPFNd .framer-5yetww, .framer-GPFNd .framer-71memn, .framer-GPFNd .framer-p7dal3, .framer-GPFNd .framer-qb0pa5, .framer-GPFNd .framer-6urzx1 { gap: 0px; } .framer-GPFNd.framer-pf9wqg > *, .framer-GPFNd .framer-5yetww > *, .framer-GPFNd .framer-71memn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-GPFNd.framer-pf9wqg > :first-child, .framer-GPFNd .framer-5yetww > :first-child, .framer-GPFNd .framer-71memn > :first-child, .framer-GPFNd .framer-qb0pa5 > :first-child, .framer-GPFNd .framer-6urzx1 > :first-child { margin-top: 0px; } .framer-GPFNd.framer-pf9wqg > :last-child, .framer-GPFNd .framer-5yetww > :last-child, .framer-GPFNd .framer-71memn > :last-child, .framer-GPFNd .framer-qb0pa5 > :last-child, .framer-GPFNd .framer-6urzx1 > :last-child { margin-bottom: 0px; } .framer-GPFNd .framer-p7dal3 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-GPFNd .framer-p7dal3 > :first-child { margin-left: 0px; } .framer-GPFNd .framer-p7dal3 > :last-child { margin-right: 0px; } .framer-GPFNd .framer-qb0pa5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GPFNd .framer-6urzx1 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 544\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Ca3e6HPNs\":\"photo\",\"e6jPASAaG\":\"title\",\"PQMUkvutZ\":\"author\",\"PAWCDq4iQ\":\"date\",\"XRIcqGT_o\":\"authorPhoto\",\"wyBste8L1\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerrvJ7i7T9u=withCSS(Component,css,\"framer-GPFNd\");export default FramerrvJ7i7T9u;FramerrvJ7i7T9u.displayName=\"Blog v4\";FramerrvJ7i7T9u.defaultProps={height:544,width:600};addPropertyControls(FramerrvJ7i7T9u,{Ca3e6HPNs:{__defaultAssetReference:\"data:framer/asset-reference,pnIlHtYnfxQgnIfuAcbX4ipgA.png?originalFilename=home+2+blog.png&preferredSize=auto\",title:\"Photo\",type:ControlType.ResponsiveImage},e6jPASAaG:{defaultValue:\"Be The Ultimate Blogger: Our Best Tips for SEO Optimalization in 2023\",displayTextArea:true,title:\"Title\",type:ControlType.String},PQMUkvutZ:{defaultValue:\"John Smith\",displayTextArea:false,title:\"Author\",type:ControlType.String},PAWCDq4iQ:{defaultValue:\"20 September 2023\",displayTextArea:false,title:\"Date\",type:ControlType.String},XRIcqGT_o:{__defaultAssetReference:\"data:framer/asset-reference,d7NviWUgPHIKUqwq5zmRKpcCv8U.png?originalFilename=john.png&preferredSize=auto\",title:\"Author Photo\",type:ControlType.ResponsiveImage},wyBste8L1:{title:\"Link\",type:ControlType.Link}});addFonts(FramerrvJ7i7T9u,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrvJ7i7T9u\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"544\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"Ca3e6HPNs\\\":\\\"photo\\\",\\\"e6jPASAaG\\\":\\\"title\\\",\\\"PQMUkvutZ\\\":\\\"author\\\",\\\"PAWCDq4iQ\\\":\\\"date\\\",\\\"XRIcqGT_o\\\":\\\"authorPhoto\\\",\\\"wyBste8L1\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rvJ7i7T9u.map", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,RichText,SVG,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/guxJM7TWgG5Hp9VcNBXE/THnDWi6bEiOcgb9jUN6p/CK9MmPcy8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ABAExfvWnWin6AYaDnml/04BqV56g9oXMThLwWxCw/jOMsDRTg0.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/uOC5X6w6HKQFC1PbN8TF/ftWbDbSeMNEkeBARNR2l/tQS16evyA.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/dR88dVGobcwUC33bT2ct/vUGiRxSsGq6HbYP3q2dF/vpCobN6jJ.js\";import PrimaryButton from\"https://framerusercontent.com/modules/vVdcV2bbju7OpmUneQnl/ohd0ZqzM2kTAUFBE1UOl/Kain7XeUB.js\";const PrimaryButtonFonts=getFonts(PrimaryButton);const enabledGestures={hdT9FVbbq:{hover:true},HpBfLdqpp:{hover:true},NBr3YcXc2:{hover:true}};const cycleOrder=[\"DgGNTzU9K\",\"hdT9FVbbq\",\"vgAEMNWQu\",\"fxh76vSt3\",\"HpBfLdqpp\",\"NBr3YcXc2\"];const serializationHash=\"framer-HJN4x\";const variantClassNames={DgGNTzU9K:\"framer-v-1nh9wap\",fxh76vSt3:\"framer-v-1hz6xy7\",hdT9FVbbq:\"framer-v-1gqflud\",HpBfLdqpp:\"framer-v-ap6z9r\",NBr3YcXc2:\"framer-v-180mb35\",vgAEMNWQu:\"framer-v-14m6lds\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Desktop - Close\":\"hdT9FVbbq\",\"Desktop - Open\":\"DgGNTzU9K\",\"Mobile - Close\":\"NBr3YcXc2\",\"Mobile - Open\":\"fxh76vSt3\",\"Tablet - Close\":\"HpBfLdqpp\",\"Tablet - Open\":\"vgAEMNWQu\"};const getProps=({description,duration,height,id,image,number,price,serviceName,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6;return{...props,d4LIBXgMQ:(_ref=number!==null&&number!==void 0?number:props.d4LIBXgMQ)!==null&&_ref!==void 0?_ref:\"02\",d4RoJoN7x:(_ref1=description!==null&&description!==void 0?description:props.d4RoJoN7x)!==null&&_ref1!==void 0?_ref1:\"Create a robust online presence with our tailor-made websites that provide a seamless user experience and stunning visuals.\",MNYt422J9:(_ref2=price!==null&&price!==void 0?price:props.MNYt422J9)!==null&&_ref2!==void 0?_ref2:\"Start from $499 / month\",oyM_sOM8y:(_ref3=serviceName!==null&&serviceName!==void 0?serviceName:props.oyM_sOM8y)!==null&&_ref3!==void 0?_ref3:\"Web Design Development\",T0hRHHj7H:(_ref4=image!==null&&image!==void 0?image:props.T0hRHHj7H)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/09wN4RcoWR2afA4maM1kmL83OII.png\",srcSet:\"https://framerusercontent.com/images/09wN4RcoWR2afA4maM1kmL83OII.png?scale-down-to=512 512w, https://framerusercontent.com/images/09wN4RcoWR2afA4maM1kmL83OII.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/09wN4RcoWR2afA4maM1kmL83OII.png 1536w\"},twUgs5ERh:(_ref5=duration!==null&&duration!==void 0?duration:props.twUgs5ERh)!==null&&_ref5!==void 0?_ref5:\"6 - 12 Months\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"DgGNTzU9K\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,d4LIBXgMQ,T0hRHHj7H,oyM_sOM8y,d4RoJoN7x,twUgs5ERh,MNYt422J9,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"DgGNTzU9K\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1razi2r=activeVariantCallback(async(...args)=>{setVariant(\"hdT9FVbbq\");});const onTap1mfjem5=activeVariantCallback(async(...args)=>{setVariant(\"DgGNTzU9K\");});const onTap1gegqsk=activeVariantCallback(async(...args)=>{setVariant(\"HpBfLdqpp\");});const onTapa28jvb=activeVariantCallback(async(...args)=>{setVariant(\"NBr3YcXc2\");});const onTap7bgm4c=activeVariantCallback(async(...args)=>{setVariant(\"vgAEMNWQu\");});const onTap1di8bvk=activeVariantCallback(async(...args)=>{setVariant(\"fxh76vSt3\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"hdT9FVbbq-hover\",\"HpBfLdqpp-hover\",\"NBr3YcXc2-hover\"].includes(gestureVariant))return false;if([\"hdT9FVbbq\",\"HpBfLdqpp\",\"NBr3YcXc2\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-HJN4x\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-1nh9wap\",className),\"data-framer-name\":\"Desktop - Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DgGNTzU9K\",onTap:onTap1razi2r,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},variants:{\"hdT9FVbbq-hover\":{backgroundColor:\"var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241))\"},\"HpBfLdqpp-hover\":{backgroundColor:\"var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241))\"},\"NBr3YcXc2-hover\":{backgroundColor:\"var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241))\"},hdT9FVbbq:{backgroundColor:\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},HpBfLdqpp:{backgroundColor:\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},NBr3YcXc2:{backgroundColor:\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"hdT9FVbbq-hover\":{\"data-framer-name\":undefined},\"HpBfLdqpp-hover\":{\"data-framer-name\":undefined},\"NBr3YcXc2-hover\":{\"data-framer-name\":undefined},fxh76vSt3:{\"data-framer-name\":\"Mobile - Open\",onTap:onTapa28jvb},hdT9FVbbq:{\"data-framer-name\":\"Desktop - Close\",onTap:onTap1mfjem5},HpBfLdqpp:{\"data-framer-name\":\"Tablet - Close\",onTap:onTap7bgm4c},NBr3YcXc2:{\"data-framer-name\":\"Mobile - Close\",onTap:onTap1di8bvk},vgAEMNWQu:{\"data-framer-name\":\"Tablet - Open\",onTap:onTap1gegqsk}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h29xpn\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"BLOn2Wv9R\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ehpgoc\",\"data-framer-name\":\"Left Content\",layoutDependency:layoutDependency,layoutId:\"oOe9Ms3nx\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jtg93l\",\"data-border\":true,\"data-framer-name\":\"Number\",layoutDependency:layoutDependency,layoutId:\"w_cYupEjn\",style:{\"--border-bottom-width\":\"4px\",\"--border-color\":'var(--token-18cef09e-c68f-469e-8bcb-7a7202717a9e, rgb(106, 217, 197)) /* {\"name\":\"Green\"} */',\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{hdT9FVbbq:{\"--border-color\":'var(--token-b6e1e388-6693-4117-ba3d-6232bbbf978f, rgb(254, 214, 122)) /* {\"name\":\"Yellow\"} */'},HpBfLdqpp:{\"--border-color\":'var(--token-b6e1e388-6693-4117-ba3d-6232bbbf978f, rgb(254, 214, 122)) /* {\"name\":\"Yellow\"} */'},NBr3YcXc2:{\"--border-color\":'var(--token-b6e1e388-6693-4117-ba3d-6232bbbf978f, rgb(254, 214, 122)) /* {\"name\":\"Yellow\"} */'}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"02\"})}),className:\"framer-1tuyjqj\",\"data-framer-name\":\"02\",layoutDependency:layoutDependency,layoutId:\"HniW9Qk4s\",style:{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:d4LIBXgMQ,variants:{\"hdT9FVbbq-hover\":{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},\"HpBfLdqpp-hover\":{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},\"NBr3YcXc2-hover\":{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},hdT9FVbbq:{\"--extracted-r6o4lv\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},HpBfLdqpp:{\"--extracted-r6o4lv\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},NBr3YcXc2:{\"--extracted-r6o4lv\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"hdT9FVbbq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"02\"})})},\"HpBfLdqpp-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"02\"})})},\"NBr3YcXc2-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"02\"})})},hdT9FVbbq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"02\"})})},HpBfLdqpp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"02\"})})},NBr3YcXc2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"02\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17qv3pr\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FL_4dDXW3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:298,intrinsicWidth:149,pixelHeight:298,pixelWidth:149,src:\"https://framerusercontent.com/images/oMZV9olMfNtRi5MeR4qQIouwjr8.svg\"},className:\"framer-usa3r2\",\"data-framer-name\":\"Element\",layoutDependency:layoutDependency,layoutId:\"h5JvHAzUt\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1192,intrinsicWidth:1536,pixelHeight:1192,pixelWidth:1536,sizes:\"384px\",...toResponsiveImage(T0hRHHj7H)},className:\"framer-xxbwl\",\"data-framer-name\":\"Photo\",layoutDependency:layoutDependency,layoutId:\"npnUus2K1\",style:{borderTopRightRadius:200},...addPropertyOverrides({fxh76vSt3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1192,intrinsicWidth:1536,pixelHeight:1192,pixelWidth:1536,sizes:\"279px\",...toResponsiveImage(T0hRHHj7H)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aejumg\",\"data-framer-name\":\"Element\",layoutDependency:layoutDependency,layoutId:\"MNeqK7tSU\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-78ds10\",\"data-framer-name\":\"element_service\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:31,layoutDependency:layoutDependency,layoutId:\"Mtv2_Viwm\",svg:'<svg width=\"31\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M30.637 15.504 15.703 31.061.72 15.556 15.653 0l14.984 15.504Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nuogk\",\"data-framer-name\":\"Right Content\",layoutDependency:layoutDependency,layoutId:\"UMVepHC5D\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a4fty5\",\"data-framer-name\":\"Title + Duration + Price\",layoutDependency:layoutDependency,layoutId:\"DJSXe4O4D\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oxfjfb\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"mVkakegmI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dgk103\",\"data-styles-preset\":\"tQS16evyA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Web Design Development\"})}),className:\"framer-11vy08d\",\"data-framer-name\":\"Web Design Development\",layoutDependency:layoutDependency,layoutId:\"mkWvoVYlh\",style:{\"--extracted-a0htzi\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:oyM_sOM8y,variants:{\"hdT9FVbbq-hover\":{\"--extracted-a0htzi\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},\"HpBfLdqpp-hover\":{\"--extracted-a0htzi\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},\"NBr3YcXc2-hover\":{\"--extracted-a0htzi\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},hdT9FVbbq:{\"--extracted-a0htzi\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},HpBfLdqpp:{\"--extracted-a0htzi\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},NBr3YcXc2:{\"--extracted-a0htzi\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"hdT9FVbbq-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dgk103\",\"data-styles-preset\":\"tQS16evyA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Web Design Development\"})})},\"HpBfLdqpp-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dgk103\",\"data-styles-preset\":\"tQS16evyA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Web Design Development\"})})},\"NBr3YcXc2-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dgk103\",\"data-styles-preset\":\"tQS16evyA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Web Design Development\"})})},hdT9FVbbq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dgk103\",\"data-styles-preset\":\"tQS16evyA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Web Design Development\"})})},HpBfLdqpp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dgk103\",\"data-styles-preset\":\"tQS16evyA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Web Design Development\"})})},NBr3YcXc2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dgk103\",\"data-styles-preset\":\"tQS16evyA\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Web Design Development\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Create a robust online presence with our tailor-made websites that provide a seamless user experience and stunning visuals.\"})}),className:\"framer-1nzy7vx\",\"data-framer-name\":\"Create a robust online presence with our tailor-made websites that provide a seamless user experience and stunning visuals.\",layoutDependency:layoutDependency,layoutId:\"W1V4LkJZ2\",style:{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.75},text:d4RoJoN7x,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-938dcq\",\"data-framer-name\":\"Duration + Price\",layoutDependency:layoutDependency,layoutId:\"Kmgy9hOAN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kg0tm7\",\"data-framer-name\":\"Duration\",layoutDependency:layoutDependency,layoutId:\"qS_4J57a2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vwqz59\",\"data-framer-name\":\"Clock Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"cIogUkdgJ\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_146_6970)\">\\n<path d=\"M16.2756 14.1192L12.9294 11.6096V6.49728C12.9294 5.98325 12.5139 5.56775 11.9998 5.56775C11.4858 5.56775 11.0703 5.98325 11.0703 6.49728V12.0744C11.0703 12.3672 11.2079 12.6432 11.4421 12.818L15.1602 15.6065C15.3275 15.732 15.5227 15.7925 15.7169 15.7925C16.0004 15.7925 16.2793 15.6651 16.4615 15.4197C16.7702 15.0097 16.6865 14.4269 16.2756 14.1192Z\" fill=\"white\"/>\\n<path d=\"M12 0C5.3828 0 0 5.3828 0 12C0 18.6172 5.3828 24 12 24C18.6172 24 24 18.6172 24 12C24 5.3828 18.6172 0 12 0ZM12 22.141C6.40898 22.141 1.85902 17.591 1.85902 12C1.85902 6.40898 6.40898 1.85902 12 1.85902C17.592 1.85902 22.141 6.40898 22.141 12C22.141 17.591 17.591 22.141 12 22.141Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_146_6970\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1457j76\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"PIABCgHRg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Duration\"})}),className:\"framer-obo7zr\",\"data-framer-name\":\"Duration\",layoutDependency:layoutDependency,layoutId:\"eUP0YAlEB\",style:{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.75},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"6 - 12 Months\"})}),className:\"framer-cdfgh8\",\"data-framer-name\":\"6 - 12 Months\",layoutDependency:layoutDependency,layoutId:\"SCxdI0hYX\",style:{\"--extracted-1w1cjl5\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:twUgs5ERh,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ag5loy\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"fQA5K5Qhu\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-85wyqc\",\"data-framer-name\":\"Dollar Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"gdmOIupEI\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_146_6981)\">\\n<path d=\"M12 24C8.79469 24 5.78119 22.7518 3.51469 20.4853C1.24819 18.2188 0 15.2053 0 12C0 8.79469 1.24823 5.78123 3.51469 3.51469C5.78114 1.24814 8.79469 0 12 0C15.2053 0 18.2188 1.24819 20.4853 3.51469C22.7518 5.78119 24 8.79469 24 12C24 15.2053 22.7518 18.2188 20.4853 20.4853C18.2189 22.7519 15.2053 24 12 24ZM12 1.5C6.21028 1.5 1.5 6.21028 1.5 12C1.5 17.7897 6.21028 22.5 12 22.5C17.7897 22.5 22.5 17.7897 22.5 12C22.5 6.21028 17.7897 1.5 12 1.5Z\" fill=\"white\"/>\\n<path d=\"M12 11.25C10.9661 11.25 10.125 10.4089 10.125 9.375C10.125 8.34113 10.9661 7.5 12 7.5C13.0339 7.5 13.875 8.34113 13.875 9.375C13.875 9.78919 14.2108 10.125 14.625 10.125C15.0392 10.125 15.375 9.78919 15.375 9.375C15.375 7.77183 14.251 6.42712 12.75 6.08503V5.25C12.75 4.83581 12.4142 4.5 12 4.5C11.5858 4.5 11.25 4.83581 11.25 5.25V6.08503C9.74897 6.42712 8.625 7.77183 8.625 9.375C8.625 11.236 10.139 12.75 12 12.75C13.0339 12.75 13.875 13.5911 13.875 14.625C13.875 15.6589 13.0339 16.5 12 16.5C10.9661 16.5 10.125 15.6589 10.125 14.625C10.125 14.2108 9.78923 13.875 9.375 13.875C8.96077 13.875 8.625 14.2108 8.625 14.625C8.625 16.2282 9.74897 17.5729 11.25 17.915V18.75C11.25 19.1642 11.5858 19.5 12 19.5C12.4142 19.5 12.75 19.1642 12.75 18.75V17.915C14.251 17.5729 15.375 16.2282 15.375 14.625C15.375 12.764 13.861 11.25 12 11.25Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_146_6981\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p5u9a5\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Q2HDkPhKy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Price\"})}),className:\"framer-1smlrya\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"n1P47GFB7\",style:{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.75},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Start from $499 / month\"})}),className:\"framer-124ge5y\",\"data-framer-name\":\"Start from $499 / month\",layoutDependency:layoutDependency,layoutId:\"MW_QNOoPC\",style:{\"--extracted-1w1cjl5\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:MNYt422J9,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ija7w-container\",layoutDependency:layoutDependency,layoutId:\"w0QvrgPO0-container\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"w0QvrgPO0\",layoutId:\"w0QvrgPO0\",variant:\"GQDyAb1zp\",width:\"100%\",yudgrvSht:\"Get Free Consultation\",...addPropertyOverrides({fxh76vSt3:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})]})]})})})})});});const css=['.framer-HJN4x [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HJN4x .framer-s03b1l { display: block; }\",\".framer-HJN4x .framer-1nh9wap { align-content: start; align-items: start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 56px 32px 56px 32px; position: relative; width: 1240px; }\",\".framer-HJN4x .framer-h29xpn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HJN4x .framer-ehpgoc { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-HJN4x .framer-jtg93l { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: min-content; }\",\".framer-HJN4x .framer-1tuyjqj, .framer-HJN4x .framer-obo7zr, .framer-HJN4x .framer-cdfgh8, .framer-HJN4x .framer-1smlrya, .framer-HJN4x .framer-124ge5y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HJN4x .framer-17qv3pr { align-content: end; align-items: end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 298px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 533px; }\",\".framer-HJN4x .framer-usa3r2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 298px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 149px; }\",\".framer-HJN4x .framer-xxbwl { align-content: end; align-items: end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 298px; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 384px; }\",\".framer-HJN4x .framer-aejumg { align-content: center; align-items: center; bottom: 247px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: 16px; top: 19px; width: 31px; z-index: 1; }\",\".framer-HJN4x .framer-78ds10 { aspect-ratio: 0.96875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 31px; }\",\".framer-HJN4x .framer-1nuogk { align-content: start; align-items: start; display: flex; flex: 0.9 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HJN4x .framer-a4fty5 { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HJN4x .framer-1oxfjfb { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HJN4x .framer-11vy08d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-HJN4x .framer-1nzy7vx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-HJN4x .framer-938dcq { align-content: start; align-items: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 115px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-HJN4x .framer-1kg0tm7 { align-content: center; align-items: center; display: flex; flex: 0.6 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HJN4x .framer-vwqz59, .framer-HJN4x .framer-85wyqc { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-HJN4x .framer-1457j76, .framer-HJN4x .framer-p5u9a5 { align-content: start; align-items: start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HJN4x .framer-ag5loy { 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: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-HJN4x .framer-13ija7w-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HJN4x .framer-1nh9wap, .framer-HJN4x .framer-ehpgoc, .framer-HJN4x .framer-jtg93l, .framer-HJN4x .framer-17qv3pr, .framer-HJN4x .framer-usa3r2, .framer-HJN4x .framer-xxbwl, .framer-HJN4x .framer-aejumg, .framer-HJN4x .framer-1nuogk, .framer-HJN4x .framer-a4fty5, .framer-HJN4x .framer-1oxfjfb, .framer-HJN4x .framer-938dcq, .framer-HJN4x .framer-1kg0tm7, .framer-HJN4x .framer-1457j76, .framer-HJN4x .framer-ag5loy, .framer-HJN4x .framer-p5u9a5 { gap: 0px; } .framer-HJN4x .framer-1nh9wap > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } .framer-HJN4x .framer-1nh9wap > :first-child, .framer-HJN4x .framer-ehpgoc > :first-child, .framer-HJN4x .framer-17qv3pr > :first-child, .framer-HJN4x .framer-aejumg > :first-child, .framer-HJN4x .framer-938dcq > :first-child, .framer-HJN4x .framer-1kg0tm7 > :first-child, .framer-HJN4x .framer-ag5loy > :first-child { margin-left: 0px; } .framer-HJN4x .framer-1nh9wap > :last-child, .framer-HJN4x .framer-ehpgoc > :last-child, .framer-HJN4x .framer-17qv3pr > :last-child, .framer-HJN4x .framer-aejumg > :last-child, .framer-HJN4x .framer-938dcq > :last-child, .framer-HJN4x .framer-1kg0tm7 > :last-child, .framer-HJN4x .framer-ag5loy > :last-child { margin-right: 0px; } .framer-HJN4x .framer-ehpgoc > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-HJN4x .framer-jtg93l > *, .framer-HJN4x .framer-usa3r2 > *, .framer-HJN4x .framer-1457j76 > *, .framer-HJN4x .framer-p5u9a5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-HJN4x .framer-jtg93l > :first-child, .framer-HJN4x .framer-usa3r2 > :first-child, .framer-HJN4x .framer-xxbwl > :first-child, .framer-HJN4x .framer-1nuogk > :first-child, .framer-HJN4x .framer-a4fty5 > :first-child, .framer-HJN4x .framer-1oxfjfb > :first-child, .framer-HJN4x .framer-1457j76 > :first-child, .framer-HJN4x .framer-p5u9a5 > :first-child { margin-top: 0px; } .framer-HJN4x .framer-jtg93l > :last-child, .framer-HJN4x .framer-usa3r2 > :last-child, .framer-HJN4x .framer-xxbwl > :last-child, .framer-HJN4x .framer-1nuogk > :last-child, .framer-HJN4x .framer-a4fty5 > :last-child, .framer-HJN4x .framer-1oxfjfb > :last-child, .framer-HJN4x .framer-1457j76 > :last-child, .framer-HJN4x .framer-p5u9a5 > :last-child { margin-bottom: 0px; } .framer-HJN4x .framer-17qv3pr > *, .framer-HJN4x .framer-aejumg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-HJN4x .framer-xxbwl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HJN4x .framer-1nuogk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-HJN4x .framer-a4fty5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-HJN4x .framer-1oxfjfb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-HJN4x .framer-938dcq > * { margin: 0px; margin-left: calc(115px / 2); margin-right: calc(115px / 2); } .framer-HJN4x .framer-1kg0tm7 > *, .framer-HJN4x .framer-ag5loy > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-HJN4x.framer-v-1gqflud .framer-1nh9wap { padding: 32px 32px 32px 32px; }\",\".framer-HJN4x.framer-v-1gqflud .framer-h29xpn, .framer-HJN4x.framer-v-ap6z9r .framer-h29xpn, .framer-HJN4x.framer-v-180mb35 .framer-h29xpn { align-content: start; align-items: start; }\",\".framer-HJN4x.framer-v-14m6lds .framer-1nh9wap { width: 810px; }\",\".framer-HJN4x.framer-v-14m6lds .framer-h29xpn, .framer-HJN4x.framer-v-1hz6xy7 .framer-h29xpn { flex-direction: column; gap: 56px; justify-content: flex-start; }\",\".framer-HJN4x.framer-v-14m6lds .framer-ehpgoc, .framer-HJN4x.framer-v-14m6lds .framer-1nzy7vx, .framer-HJN4x.framer-v-1hz6xy7 .framer-1nzy7vx, .framer-HJN4x.framer-v-1hz6xy7 .framer-13ija7w-container { width: 100%; }\",\".framer-HJN4x.framer-v-14m6lds .framer-1nuogk, .framer-HJN4x.framer-v-1hz6xy7 .framer-1nuogk, .framer-HJN4x.framer-v-1hz6xy7 .framer-ag5loy { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HJN4x.framer-v-14m6lds .framer-h29xpn { gap: 0px; } .framer-HJN4x.framer-v-14m6lds .framer-h29xpn > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-HJN4x.framer-v-14m6lds .framer-h29xpn > :first-child { margin-top: 0px; } .framer-HJN4x.framer-v-14m6lds .framer-h29xpn > :last-child { margin-bottom: 0px; } }\",\".framer-HJN4x.framer-v-1hz6xy7 .framer-1nh9wap { padding: 30px 32px 30px 32px; width: 390px; }\",\".framer-HJN4x.framer-v-1hz6xy7 .framer-ehpgoc { flex-direction: column; width: 100%; }\",\".framer-HJN4x.framer-v-1hz6xy7 .framer-17qv3pr { height: 180px; width: 322px; }\",\".framer-HJN4x.framer-v-1hz6xy7 .framer-usa3r2 { height: 102px; width: 51px; }\",\".framer-HJN4x.framer-v-1hz6xy7 .framer-xxbwl { height: 217px; width: 279px; }\",\".framer-HJN4x.framer-v-1hz6xy7 .framer-938dcq { flex-direction: column; gap: 20px; }\",\".framer-HJN4x.framer-v-1hz6xy7 .framer-1kg0tm7 { flex: none; width: 60%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HJN4x.framer-v-1hz6xy7 .framer-h29xpn, .framer-HJN4x.framer-v-1hz6xy7 .framer-ehpgoc, .framer-HJN4x.framer-v-1hz6xy7 .framer-938dcq { gap: 0px; } .framer-HJN4x.framer-v-1hz6xy7 .framer-h29xpn > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-HJN4x.framer-v-1hz6xy7 .framer-h29xpn > :first-child, .framer-HJN4x.framer-v-1hz6xy7 .framer-ehpgoc > :first-child, .framer-HJN4x.framer-v-1hz6xy7 .framer-938dcq > :first-child { margin-top: 0px; } .framer-HJN4x.framer-v-1hz6xy7 .framer-h29xpn > :last-child, .framer-HJN4x.framer-v-1hz6xy7 .framer-ehpgoc > :last-child, .framer-HJN4x.framer-v-1hz6xy7 .framer-938dcq > :last-child { margin-bottom: 0px; } .framer-HJN4x.framer-v-1hz6xy7 .framer-ehpgoc > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-HJN4x.framer-v-1hz6xy7 .framer-938dcq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-HJN4x.framer-v-ap6z9r .framer-1nh9wap { padding: 32px 32px 32px 32px; width: 810px; }\",\".framer-HJN4x.framer-v-180mb35 .framer-1nh9wap { padding: 32px 32px 32px 32px; width: 390px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 410\n * @framerIntrinsicWidth 1240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hdT9FVbbq\":{\"layout\":[\"fixed\",\"auto\"]},\"vgAEMNWQu\":{\"layout\":[\"fixed\",\"auto\"]},\"fxh76vSt3\":{\"layout\":[\"fixed\",\"auto\"]},\"HpBfLdqpp\":{\"layout\":[\"fixed\",\"auto\"]},\"NBr3YcXc2\":{\"layout\":[\"fixed\",\"auto\"]},\"GRHSOuiwm\":{\"layout\":[\"fixed\",\"auto\"]},\"ZAi2NnKQX\":{\"layout\":[\"fixed\",\"auto\"]},\"LseL8mW2h\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"d4LIBXgMQ\":\"number\",\"T0hRHHj7H\":\"image\",\"oyM_sOM8y\":\"serviceName\",\"d4RoJoN7x\":\"description\",\"twUgs5ERh\":\"duration\",\"MNYt422J9\":\"price\"}\n * @framerImmutableVariables true\n */const Framerv4OAlIwbo=withCSS(Component,css,\"framer-HJN4x\");export default Framerv4OAlIwbo;Framerv4OAlIwbo.displayName=\"Services v2\";Framerv4OAlIwbo.defaultProps={height:410,width:1240};addPropertyControls(Framerv4OAlIwbo,{variant:{options:[\"DgGNTzU9K\",\"hdT9FVbbq\",\"vgAEMNWQu\",\"fxh76vSt3\",\"HpBfLdqpp\",\"NBr3YcXc2\"],optionTitles:[\"Desktop - Open\",\"Desktop - Close\",\"Tablet - Open\",\"Mobile - Open\",\"Tablet - Close\",\"Mobile - Close\"],title:\"Variant\",type:ControlType.Enum},d4LIBXgMQ:{defaultValue:\"02\",displayTextArea:false,title:\"Number\",type:ControlType.String},T0hRHHj7H:{__defaultAssetReference:\"data:framer/asset-reference,09wN4RcoWR2afA4maM1kmL83OII.png?originalFilename=Web+design+photo.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},oyM_sOM8y:{defaultValue:\"Web Design Development\",displayTextArea:true,title:\"Service name\",type:ControlType.String},d4RoJoN7x:{defaultValue:\"Create a robust online presence with our tailor-made websites that provide a seamless user experience and stunning visuals.\",displayTextArea:true,title:\"Description\",type:ControlType.String},twUgs5ERh:{defaultValue:\"6 - 12 Months\",displayTextArea:false,title:\"Duration\",type:ControlType.String},MNYt422J9:{defaultValue:\"Start from $499 / month\",displayTextArea:false,title:\"Price\",type:ControlType.String}});addFonts(Framerv4OAlIwbo,[...PrimaryButtonFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv4OAlIwbo\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"d4LIBXgMQ\\\":\\\"number\\\",\\\"T0hRHHj7H\\\":\\\"image\\\",\\\"oyM_sOM8y\\\":\\\"serviceName\\\",\\\"d4RoJoN7x\\\":\\\"description\\\",\\\"twUgs5ERh\\\":\\\"duration\\\",\\\"MNYt422J9\\\":\\\"price\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"410\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1240\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hdT9FVbbq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vgAEMNWQu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fxh76vSt3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HpBfLdqpp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NBr3YcXc2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GRHSOuiwm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZAi2NnKQX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LseL8mW2h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d1ef57f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ABAExfvWnWin6AYaDnml/04BqV56g9oXMThLwWxCw/jOMsDRTg0.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Ru6giAWwqYzA5NbiKcUu/ld5x7q4npPlroNGW5QwP/Ygnv75AQg.js\";const enabledGestures={faCNFnthU:{hover:true}};const cycleOrder=[\"faCNFnthU\"];const serializationHash=\"framer-UG7ph\";const variantClassNames={faCNFnthU:\"framer-v-1ebswtc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({description,height,id,link,photo,title,width,...props})=>{var _ref,_ref1;return{...props,dTRe9ZpLd:link!==null&&link!==void 0?link:props.dTRe9ZpLd,PV8f8iG0y:(_ref=title!==null&&title!==void 0?title:props.PV8f8iG0y)!==null&&_ref!==void 0?_ref:\"Revitalized Branding\",tauMfIi0S:photo!==null&&photo!==void 0?photo:props.tauMfIi0S,YSnPBd5Pl:(_ref1=description!==null&&description!==void 0?description:props.YSnPBd5Pl)!==null&&_ref1!==void 0?_ref1:\"Reimagined and redesigned the brand identity for Grams Company, resulting in a 30% increase in consumer engagement.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,tauMfIi0S,PV8f8iG0y,YSnPBd5Pl,dTRe9ZpLd,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"faCNFnthU\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-UG7ph\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:dTRe9ZpLd,openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(\"framer-1ebswtc\",className)} framer-1q2lx03`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"faCNFnthU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"faCNFnthU-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dfov5m\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"BODXt8e9T\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"min(400px, 100vw)\",...toResponsiveImage(tauMfIi0S)},className:\"framer-148kjy\",\"data-framer-name\":\"Photo\",layoutDependency:layoutDependency,layoutId:\"ZA0kuPHhw\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"none\"},variants:{\"faCNFnthU-hover\":{boxShadow:\"0px 5px 30px 0px rgba(0, 0, 0, 0.16)\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4f2fnv\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"I146:6839;35:3770\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1214zsz\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"I146:6839;14:2230\",style:{backgroundColor:\"var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1go2gxn\",\"data-framer-name\":\"Texts\",layoutDependency:layoutDependency,layoutId:\"I146:6839;35:3769\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vr7pdk\",\"data-styles-preset\":\"Ygnv75AQg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Revitalized Branding\"})}),className:\"framer-ut0uk0\",\"data-framer-name\":\"Revitalized Branding\",layoutDependency:layoutDependency,layoutId:\"I146:6839;14:2228\",style:{\"--extracted-1eung3n\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},text:PV8f8iG0y,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",children:\"Reimagined and redesigned the brand identity for Grams Company, resulting in a 30% increase in consumer engagement.\"})}),className:\"framer-r1b183\",\"data-framer-name\":\"Reimagined and redesigned the brand identity for Grams Company, resulting in a 30% increase in consumer engagement.\",layoutDependency:layoutDependency,layoutId:\"I146:6839;14:2229\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.75},text:YSnPBd5Pl,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})})});});const css=['.framer-UG7ph [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UG7ph .framer-1q2lx03 { display: block; }\",\".framer-UG7ph .framer-1ebswtc { align-content: start; align-items: start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 400px; }\",\".framer-UG7ph .framer-1dfov5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-UG7ph .framer-148kjy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 369px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-UG7ph .framer-4f2fnv { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-UG7ph .framer-1214zsz { flex: none; height: 8px; position: relative; width: 32px; }\",\".framer-UG7ph .framer-1go2gxn { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-UG7ph .framer-ut0uk0, .framer-UG7ph .framer-r1b183 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UG7ph .framer-1ebswtc, .framer-UG7ph .framer-1dfov5m, .framer-UG7ph .framer-148kjy, .framer-UG7ph .framer-4f2fnv, .framer-UG7ph .framer-1go2gxn { gap: 0px; } .framer-UG7ph .framer-1ebswtc > *, .framer-UG7ph .framer-1dfov5m > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-UG7ph .framer-1ebswtc > :first-child, .framer-UG7ph .framer-1dfov5m > :first-child, .framer-UG7ph .framer-148kjy > :first-child, .framer-UG7ph .framer-4f2fnv > :first-child, .framer-UG7ph .framer-1go2gxn > :first-child { margin-top: 0px; } .framer-UG7ph .framer-1ebswtc > :last-child, .framer-UG7ph .framer-1dfov5m > :last-child, .framer-UG7ph .framer-148kjy > :last-child, .framer-UG7ph .framer-4f2fnv > :last-child, .framer-UG7ph .framer-1go2gxn > :last-child { margin-bottom: 0px; } .framer-UG7ph .framer-148kjy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UG7ph .framer-4f2fnv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-UG7ph .framer-1go2gxn > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-UG7ph.framer-v-1ebswtc.hover .framer-1214zsz { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 581\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xMGQoWLQJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"tauMfIi0S\":\"photo\",\"PV8f8iG0y\":\"title\",\"YSnPBd5Pl\":\"description\",\"dTRe9ZpLd\":\"link\"}\n * @framerImmutableVariables true\n */const FramerzBrFJsR9J=withCSS(Component,css,\"framer-UG7ph\");export default FramerzBrFJsR9J;FramerzBrFJsR9J.displayName=\"Featured Work v2\";FramerzBrFJsR9J.defaultProps={height:581,width:400};addPropertyControls(FramerzBrFJsR9J,{tauMfIi0S:{title:\"Photo\",type:ControlType.ResponsiveImage},PV8f8iG0y:{defaultValue:\"Revitalized Branding\",displayTextArea:false,title:\"Title\",type:ControlType.String},YSnPBd5Pl:{defaultValue:\"Reimagined and redesigned the brand identity for Grams Company, resulting in a 30% increase in consumer engagement.\",displayTextArea:true,title:\"Description\",type:ControlType.String},dTRe9ZpLd:{title:\"Link\",type:ControlType.Link}});addFonts(FramerzBrFJsR9J,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzBrFJsR9J\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"581\",\"framerIntrinsicWidth\":\"400\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xMGQoWLQJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"tauMfIi0S\\\":\\\"photo\\\",\\\"PV8f8iG0y\\\":\\\"title\\\",\\\"YSnPBd5Pl\\\":\\\"description\\\",\\\"dTRe9ZpLd\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zBrFJsR9J.map", "// Generated by Framer (98479f1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import FAQV1 from\"#framer/local/canvasComponent/Ab3kVBjBv/Ab3kVBjBv.js\";import BlogV3 from\"#framer/local/canvasComponent/D5VaVALWd/D5VaVALWd.js\";import TestimonialV1 from\"#framer/local/canvasComponent/GNTvgCHJo/GNTvgCHJo.js\";import ButtonBuy2 from\"#framer/local/canvasComponent/HncYmkhG3/HncYmkhG3.js\";import PrimaryButton from\"#framer/local/canvasComponent/Kain7XeUB/Kain7XeUB.js\";import Workflow from\"#framer/local/canvasComponent/lp4lS5cfa/lp4lS5cfa.js\";import SecondaryButton from\"#framer/local/canvasComponent/PrJYCwVx9/PrJYCwVx9.js\";import BlogV4 from\"#framer/local/canvasComponent/rvJ7i7T9u/rvJ7i7T9u.js\";import Navigation from\"#framer/local/canvasComponent/SuP86C0Kg/SuP86C0Kg.js\";import FooterV2 from\"#framer/local/canvasComponent/tCfvt1FD4/tCfvt1FD4.js\";import ServicesV2 from\"#framer/local/canvasComponent/v4OAlIwbo/v4OAlIwbo.js\";import FeaturedWorkV2 from\"#framer/local/canvasComponent/zBrFJsR9J/zBrFJsR9J.js\";import Services from\"#framer/local/collection/pi_t1SB7e/pi_t1SB7e.js\";import Blog from\"#framer/local/collection/wknzkw37V/wknzkw37V.js\";import Works from\"#framer/local/collection/yRPVVQ1dB/yRPVVQ1dB.js\";import*as sharedStyle3 from\"#framer/local/css/CK9MmPcy8/CK9MmPcy8.js\";import*as sharedStyle1 from\"#framer/local/css/jOMsDRTg0/jOMsDRTg0.js\";import*as sharedStyle2 from\"#framer/local/css/p1JB7TT7p/p1JB7TT7p.js\";import*as sharedStyle from\"#framer/local/css/rekGNLphG/rekGNLphG.js\";import*as sharedStyle4 from\"#framer/local/css/vpCobN6jJ/vpCobN6jJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/kMcLtxmLg/kMcLtxmLg.js\";const ButtonBuy2Fonts=getFonts(ButtonBuy2);const NavigationFonts=getFonts(Navigation);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const PrimaryButtonFonts=getFonts(PrimaryButton);const SecondaryButtonFonts=getFonts(SecondaryButton);const ServicesV2Fonts=getFonts(ServicesV2);const TestimonialV1Fonts=getFonts(TestimonialV1);const CarouselFonts=getFonts(Carousel);const FeaturedWorkV2Fonts=getFonts(FeaturedWorkV2);const WorkflowFonts=getFonts(Workflow);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const VideoFonts=getFonts(Video);const FAQV1Fonts=getFonts(FAQV1);const BlogV4Fonts=getFonts(BlogV4);const BlogV3Fonts=getFonts(BlogV3);const FooterV2Fonts=getFonts(FooterV2);const breakpoints={MeK6Th1AH:\"(min-width: 1440px)\",qt088ATnj:\"(min-width: 1200px) and (max-width: 1439px)\",YJCkl_HvW:\"(max-width: 809px)\",Zi4AEu2FJ:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-L6VYt\";const variantClassNames={MeK6Th1AH:\"framer-v-1k7zq2i\",qt088ATnj:\"framer-v-1g0an4s\",YJCkl_HvW:\"framer-v-1gr9j0o\",Zi4AEu2FJ:\"framer-v-1eulioy\"};const transition1={delay:0,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition2={delay:.5,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:1,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:1.5,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"MeK6Th1AH\",Laptop:\"qt088ATnj\",Phone:\"YJCkl_HvW\",Tablet:\"Zi4AEu2FJ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"MeK6Th1AH\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,sBKRkR_HEEZe6pHaKF,P1GXH2DAPEZe6pHaKF,hrGISsCpGEZe6pHaKF,YwV0_yWdDEZe6pHaKF,xHeoO2nUrEZe6pHaKF,Ash6QsRCuEZe6pHaKF,dXNW3d5czEZe6pHaKF,idEZe6pHaKF,p9bW775JpU5kC0KUEx,PhubAzNvRU5kC0KUEx,bZ6pWFH_dU5kC0KUEx,WVYJ1S2dsU5kC0KUEx,idU5kC0KUEx,MI6eD4eWrvzNZkL4MB,zAJeq4UQ3vzNZkL4MB,lnYhhfWd8vzNZkL4MB,RfBOrzZ7VvzNZkL4MB,jPoSChfJLvzNZkL4MB,ZerSptMOivzNZkL4MB,idvzNZkL4MB,MI6eD4eWrfPCMWE61K,zAJeq4UQ3fPCMWE61K,lnYhhfWd8fPCMWE61K,RfBOrzZ7VfPCMWE61K,ZerSptMOifPCMWE61K,idfPCMWE61K,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-L6VYt`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-L6VYt`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"YJCkl_HvW\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Zi4AEu2FJ\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"YJCkl_HvW\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"YJCkl_HvW\",\"qt088ATnj\",\"Zi4AEu2FJ\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"MeK6Th1AH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1k7zq2i\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:898,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13gbmbr-container hidden-1gr9j0o\",\"data-framer-name\":\"Remove This Buy Button\",layoutScroll:true,name:\"Remove This Buy Button\",children:/*#__PURE__*/_jsx(ButtonBuy2,{cduyS1Ada:\"https://peterdraw.lemonsqueezy.com/buy/74cfd0af-a31a-4933-a793-8b9af9e2cb97\",height:\"100%\",id:\"vd29_Yims\",layoutId:\"vd29_Yims\",name:\"Remove This Buy Button\",width:\"100%\",yoHhge7xS:\"Purchase Now\"})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ct6v5h\",\"data-framer-appear-id\":\"ct6v5h\",\"data-framer-name\":\"Menu\",initial:animation1,name:\"Menu\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1828ovi-container\",\"data-framer-name\":\"Navigation\",name:\"Navigation\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YJCkl_HvW:{variant:\"cTbD5DWjo\"},Zi4AEu2FJ:{variant:\"cTbD5DWjo\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"Pbvkl4eAi\",layoutId:\"Pbvkl4eAi\",name:\"Navigation\",style:{width:\"100%\"},variant:\"acv3zHcSp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-fr6iy2\",\"data-framer-appear-id\":\"fr6iy2\",\"data-framer-name\":\"Hero\",initial:animation1,name:\"Hero\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ne1p6v\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m5xkq4\",\"data-framer-name\":\"Texts\",name:\"Texts\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14vuu8p\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1cftb3z\",\"data-styles-preset\":\"rekGNLphG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Empowering \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241))\"},children:\"Excellence\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Through Innovation\"]})}),className:\"framer-1pa4nqg\",\"data-framer-name\":\"Empowering Excellence Through Innovation\",fonts:[\"Inter\"],name:\"Empowering Excellence Through Innovation\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-alignment\":\"center\"},children:\"We blend creativity and strategy to craft digital solutions that inspire, engage, and drive success for your business.\"})}),className:\"framer-zmstsj\",\"data-framer-name\":\"We blend creativity and strategy to craft digital solutions that inspire, engage, and drive success for your business.\",fonts:[\"Inter\"],name:\"We blend creativity and strategy to craft digital solutions that inspire, engage, and drive success for your business.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hp34y4\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hgpyv9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{jmC9WFiAE:resolvedLinks[2]},YJCkl_HvW:{jmC9WFiAE:resolvedLinks[1]},Zi4AEu2FJ:{jmC9WFiAE:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"m9_0yHx9D\",jmC9WFiAE:resolvedLinks[0],layoutId:\"m9_0yHx9D\",variant:\"GQDyAb1zp\",width:\"100%\",yudgrvSht:\"Get Free Consultation\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lkp17k-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{G8hBdvW_C:resolvedLinks1[2]},YJCkl_HvW:{G8hBdvW_C:resolvedLinks1[1]},Zi4AEu2FJ:{G8hBdvW_C:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(SecondaryButton,{BIZjDzs3y:\"Explore Services\",G8hBdvW_C:resolvedLinks1[0],height:\"100%\",id:\"n0z5CsKF4\",layoutId:\"n0z5CsKF4\",variant:\"eBv5VeVvL\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322,intrinsicWidth:1440,pixelHeight:322,pixelWidth:1440,sizes:\"max(min(100vw, 1200px), 1200px)\",src:\"https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg\",srcSet:\"https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg 1440w\"}},YJCkl_HvW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322,intrinsicWidth:1440,pixelHeight:322,pixelWidth:1440,sizes:\"583px\",src:\"https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg\",srcSet:\"https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322,intrinsicWidth:1440,pixelHeight:322,pixelWidth:1440,sizes:\"min(100vw, 1440px)\",src:\"https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg\",srcSet:\"https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vzKQG7hzpTzmWXDKHKDkZnkMaXQ.svg 1440w\"},className:\"framer-a20ho7\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lmrnqd\",\"data-framer-name\":\"Number\",name:\"Number\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ebysbj\",\"data-framer-name\":\"Item 1\",name:\"Item 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"500+\"})}),className:\"framer-1jrih00\",\"data-framer-name\":\"500+\",fonts:[\"Inter\"],name:\"500+\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},children:\"Clients & Partnerships\"})}),className:\"framer-6rabi0\",\"data-framer-name\":\"Clients & Partnerships\",fonts:[\"Inter\"],name:\"Clients & Partnerships\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k4x2uc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.5004 8.98583L9.01514 17.4711L0.501576 9.01419L8.98685 0.528918L17.5004 8.98583Z\" fill=\"#FED67A\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-129pl4j\",\"data-framer-name\":\"Item 2\",name:\"Item 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"98%\"})}),className:\"framer-cai5k\",\"data-framer-name\":\"98%\",fonts:[\"Inter\"],name:\"98%\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},children:\"Project Succession Rate\"})}),className:\"framer-1r853jc\",\"data-framer-name\":\"Project Succession Rate\",fonts:[\"Inter\"],name:\"Project Succession Rate\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wgmput\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4994 8.98583L9.01416 17.4711L0.500599 9.01419L8.98587 0.528918L17.4994 8.98583Z\" fill=\"#FED67A\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lgz1b6\",\"data-framer-name\":\"Item 3\",name:\"Item 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"12\"})}),className:\"framer-16lpjvc\",\"data-framer-name\":\"12\",fonts:[\"Inter\"],name:\"12\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},children:\"Years of Experience\"})}),className:\"framer-78wdlg\",\"data-framer-name\":\"Years of Experience\",fonts:[\"Inter\"],name:\"Years of Experience\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1l00v2r hidden-1eulioy\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,name:\"Vector\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.4982 8.98583L9.01294 17.4711L0.499378 9.01419L8.98465 0.528918L17.4982 8.98583Z\" fill=\"#FED67A\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-148azye hidden-1eulioy\",\"data-framer-name\":\"Item 4\",name:\"Item 4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-alignment\":\"left\"},children:\"24/7\"})}),className:\"framer-1k6gmxp\",\"data-framer-name\":\"24/7\",fonts:[\"Inter\"],name:\"24/7\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},children:\"Customer Service\"})}),className:\"framer-b7quvx\",\"data-framer-name\":\"Customer Service\",fonts:[\"Inter\"],name:\"Customer Service\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-155e9ue\",\"data-framer-name\":\"Services Section\",name:\"Services Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12z3ixp\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wl8div\",\"data-framer-name\":\"Title + Button\",name:\"Title + Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16zpps8\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMzAw\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"SERVICES\"})}),className:\"framer-75tl3y\",\"data-framer-name\":\"SERVICES\",fonts:[\"GF;Helvetica Neue-300\"],name:\"SERVICES\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"What We Can Do\"})}),className:\"framer-1o9gkk\",\"data-framer-name\":\"What We Can Do\",fonts:[\"Inter\"],name:\"What We Can Do\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8j0cxf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{G8hBdvW_C:resolvedLinks2[2]},YJCkl_HvW:{G8hBdvW_C:resolvedLinks2[1]},Zi4AEu2FJ:{G8hBdvW_C:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(SecondaryButton,{BIZjDzs3y:\"See More Services\",G8hBdvW_C:resolvedLinks2[0],height:\"100%\",id:\"wFHX8Ahmv\",layoutId:\"wFHX8Ahmv\",variant:\"eBv5VeVvL\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19yrqz4\",\"data-framer-name\":\"Items\",name:\"Items\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ppdsf0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"EZe6pHaKF\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"EZe6pHaKF\",name:\"sBKRkR_HE\",type:\"Identifier\"},{collection:\"EZe6pHaKF\",name:\"P1GXH2DAP\",type:\"Identifier\"},{collection:\"EZe6pHaKF\",name:\"hrGISsCpG\",type:\"Identifier\"},{collection:\"EZe6pHaKF\",name:\"YwV0_yWdD\",type:\"Identifier\"},{collection:\"EZe6pHaKF\",name:\"xHeoO2nUr\",type:\"Identifier\"},{collection:\"EZe6pHaKF\",name:\"Ash6QsRCu\",type:\"Identifier\"},{collection:\"EZe6pHaKF\",name:\"dXNW3d5cz\",type:\"Identifier\"},{collection:\"EZe6pHaKF\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({Ash6QsRCu:Ash6QsRCuEZe6pHaKF,dXNW3d5cz:dXNW3d5czEZe6pHaKF,hrGISsCpG:hrGISsCpGEZe6pHaKF,id:idEZe6pHaKF,P1GXH2DAP:P1GXH2DAPEZe6pHaKF,sBKRkR_HE:sBKRkR_HEEZe6pHaKF,xHeoO2nUr:xHeoO2nUrEZe6pHaKF,YwV0_yWdD:YwV0_yWdDEZe6pHaKF},i)=>{sBKRkR_HEEZe6pHaKF!==null&&sBKRkR_HEEZe6pHaKF!==void 0?sBKRkR_HEEZe6pHaKF:sBKRkR_HEEZe6pHaKF=\"\";hrGISsCpGEZe6pHaKF!==null&&hrGISsCpGEZe6pHaKF!==void 0?hrGISsCpGEZe6pHaKF:hrGISsCpGEZe6pHaKF=\"\";YwV0_yWdDEZe6pHaKF!==null&&YwV0_yWdDEZe6pHaKF!==void 0?YwV0_yWdDEZe6pHaKF:YwV0_yWdDEZe6pHaKF=\"\";xHeoO2nUrEZe6pHaKF!==null&&xHeoO2nUrEZe6pHaKF!==void 0?xHeoO2nUrEZe6pHaKF:xHeoO2nUrEZe6pHaKF=\"\";Ash6QsRCuEZe6pHaKF!==null&&Ash6QsRCuEZe6pHaKF!==void 0?Ash6QsRCuEZe6pHaKF:Ash6QsRCuEZe6pHaKF=\"\";dXNW3d5czEZe6pHaKF!==null&&dXNW3d5czEZe6pHaKF!==void 0?dXNW3d5czEZe6pHaKF:dXNW3d5czEZe6pHaKF=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`EZe6pHaKF-${idEZe6pHaKF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{dXNW3d5cz:dXNW3d5czEZe6pHaKF},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uehfhw-container\",\"data-framer-name\":\"Service 1\",name:\"Service 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YJCkl_HvW:{variant:\"NBr3YcXc2\"}},children:/*#__PURE__*/_jsx(ServicesV2,{d4LIBXgMQ:sBKRkR_HEEZe6pHaKF,d4RoJoN7x:YwV0_yWdDEZe6pHaKF,height:\"100%\",id:\"g_YOdIq3F\",layoutId:\"g_YOdIq3F\",MNYt422J9:Ash6QsRCuEZe6pHaKF,name:\"Service 1\",oyM_sOM8y:hrGISsCpGEZe6pHaKF,style:{width:\"100%\"},T0hRHHj7H:toResponsiveImage(P1GXH2DAPEZe6pHaKF),twUgs5ERh:xHeoO2nUrEZe6pHaKF,variant:\"hdT9FVbbq\",width:\"100%\"})})})})})},idEZe6pHaKF);})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m3l0o\",\"data-framer-name\":\"About + Partners\",name:\"About + Partners\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ys192i\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13asber\",\"data-framer-name\":\"About Us\",name:\"About Us\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"ABOUT\"})}),className:\"framer-1ojodd9\",\"data-framer-name\":\"ABOUT\",fonts:[\"Inter\"],name:\"ABOUT\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ojkict\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-alignment\":\"center\"},children:\"Combining Creativity\"})}),className:\"framer-drg26p\",\"data-framer-name\":\"Combining Creativity & Digital Expertise, We Work for Your Business to Earn The Best Performance\",fonts:[\"Inter\"],name:\"Combining Creativity & Digital Expertise, We Work for Your Business to Earn The Best Performance\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vtds4t\",\"data-framer-name\":\"Element\",name:\"Element\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"& Digital Expertise\"})}),className:\"framer-1r532xr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-alignment\":\"center\"},children:\"We Work\"})}),className:\"framer-1wtal95\",\"data-framer-name\":\"We Work\",fonts:[\"Inter\"],name:\"We Work\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18rvla6\",\"data-framer-name\":\"Element\",name:\"Element\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"For Your Business\"})}),className:\"framer-1pjmrxq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-alignment\":\"center\"},children:\"to Earn The Best\"})}),className:\"framer-yujtzv\",\"data-framer-name\":\"We Work\",fonts:[\"Inter\"],name:\"We Work\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qbha7h\",\"data-framer-name\":\"Element\",name:\"Element\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"Performance\"})}),className:\"framer-1gk7dcz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1phrlx7\",\"data-framer-name\":\"Top\",name:\"Top\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l69h6x\",\"data-framer-name\":\"Logo_2\",fill:\"black\",intrinsicHeight:30,intrinsicWidth:117,name:\"Logo_2\",svg:'<svg width=\"117\" height=\"30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34.576 9.949h2.811v10.524h-2.81V9.949Zm3.932 6.565c0-2.607 1.752-4.17 4.379-4.17s4.379 1.563 4.379 4.17-1.69 4.185-4.38 4.185c-2.688 0-4.378-1.522-4.378-4.185Zm5.973 0c0-1.433-.605-2.275-1.568-2.275-.963 0-1.559.81-1.559 2.275 0 1.465.596 2.267 1.56 2.267.962 0 1.584-.802 1.584-2.259l-.017-.008Zm3.905 4.5h2.715c.124.271.34.497.615.643.275.146.594.205.91.168 1.076 0 1.637-.535 1.637-1.328V19.04h.008a2.57 2.57 0 0 1-1.076 1.085 2.869 2.869 0 0 1-1.55.331c-2.059 0-3.425-1.449-3.425-3.942 0-2.493 1.305-4.048 3.503-4.048a2.859 2.859 0 0 1 1.577.38c.47.273.837.675 1.05 1.15h-.079v-1.465h2.785v7.885c0 1.902-1.821 3.092-4.501 3.092-2.434-.008-3.993-1.036-4.151-2.485l-.018-.008Zm5.885-4.5c0-1.271-.63-2.072-1.628-2.072-.999 0-1.612.81-1.612 2.072 0 1.263.605 2.008 1.612 2.008 1.007 0 1.628-.688 1.628-2.008Zm3.898 0c0-2.607 1.75-4.17 4.378-4.17 2.627 0 4.379 1.563 4.379 4.17s-1.7 4.185-4.379 4.185c-2.68 0-4.361-1.522-4.361-4.185h-.017Zm5.972 0c0-1.433-.613-2.275-1.568-2.275-.954 0-1.558.81-1.558 2.275 0 1.465.595 2.267 1.558 2.267.964 0 1.586-.802 1.586-2.259l-.018-.008Zm3.923-5.901a1.25 1.25 0 0 1 .212-.753c.15-.226.37-.404.631-.514.261-.109.552-.143.834-.099.283.045.544.167.751.35.207.183.35.42.411.678.06.26.036.53-.07.775a1.356 1.356 0 0 1-.529.605 1.52 1.52 0 0 1-.803.229 1.486 1.486 0 0 1-.537-.087 1.402 1.402 0 0 1-.458-.27 1.28 1.28 0 0 1-.31-.414 1.197 1.197 0 0 1-.114-.492l-.018-.008Zm0 1.91h2.846v7.982h-2.802l-.044-7.982Zm13.084 3.991c0 2.599-1.261 4.104-3.407 4.104a2.863 2.863 0 0 1-1.565-.359 2.558 2.558 0 0 1-1.062-1.122h-.053v3.934h-2.81V12.547h2.793v1.425h.052a2.57 2.57 0 0 1 1.051-1.153c.47-.275 1.02-.41 1.577-.385 2.206-.016 3.476 1.481 3.476 4.088l-.052-.008Zm-2.864 0c0-1.263-.64-2.08-1.629-2.08-.99 0-1.611.809-1.62 2.08-.009 1.27.63 2.072 1.62 2.072.99 0 1.682-.752 1.682-2.064l-.053-.008Zm7.663-4.177c2.355 0 3.818 1.028 3.835 2.68h-2.565c0-.575-.517-.932-1.288-.932-.77 0-1.138.276-1.138.688 0 .413.324.543.972.664l1.804.34c1.751.34 2.452.988 2.452 2.194 0 1.62-1.62 2.72-4.028 2.72-2.409 0-3.976-1.068-4.09-2.696h2.723c.08.591.587.94 1.41.94s1.209-.243 1.209-.672c0-.43-.263-.502-.937-.632l-1.629-.316c-1.69-.332-2.575-1.15-2.575-2.372.053-1.586 1.524-2.598 3.897-2.598l-.052-.008Zm13.486 8.16H96.71v-1.498h-.052a2.29 2.29 0 0 1-.941 1.238 2.617 2.617 0 0 1-1.572.422 3.223 3.223 0 0 1-1.237-.206 3.026 3.026 0 0 1-1.037-.655 2.746 2.746 0 0 1-.657-.99 2.578 2.578 0 0 1-.16-1.153v-5.124h2.81v4.566c0 .939.535 1.449 1.41 1.449a1.54 1.54 0 0 0 .595-.124c.187-.08.352-.196.485-.34a1.247 1.247 0 0 0 .33-1.058v-4.493h2.803l-.053 7.966Zm1.357-7.974h2.733v1.538h.061c.151-.493.475-.925.92-1.23a2.646 2.646 0 0 1 1.541-.454 2.371 2.371 0 0 1 1.553.417c.444.313.746.768.846 1.275h.123c.175-.51.527-.953 1.003-1.258a2.782 2.782 0 0 1 1.624-.434c.385-.013.768.048 1.125.181s.679.334.946.59c.267.256.472.561.603.896.131.334.184.69.155 1.045v5.416h-2.829v-4.752c0-.81-.411-1.263-1.208-1.263a1.315 1.315 0 0 0-.514.096 1.22 1.22 0 0 0-.423.285 1.115 1.115 0 0 0-.257.423 1.056 1.056 0 0 0-.041.483v4.728h-2.68v-4.776c0-.81-.429-1.239-1.2-1.239a1.34 1.34 0 0 0-.518.1 1.25 1.25 0 0 0-.428.289 1.12 1.12 0 0 0-.306.915v4.71h-2.811l-.018-7.981Zm-71.775-1.886a7.582 7.582 0 0 0-1.51-4.515c-.983-1.33-2.379-2.355-4.003-2.939a9.32 9.32 0 0 0-5.1-.337c-1.697.365-3.236 1.196-4.414 2.383H3.058v21.323h23.076v-9.965a8.055 8.055 0 0 0 2.127-2.691 7.481 7.481 0 0 0 .754-3.26Zm-4.44 0a3.696 3.696 0 0 1-.707 2.17 4.166 4.166 0 0 1-1.892 1.44 4.542 4.542 0 0 1-2.44.226 4.339 4.339 0 0 1-2.163-1.066 3.821 3.821 0 0 1-1.158-1.998 3.629 3.629 0 0 1 .239-2.256 3.985 3.985 0 0 1 1.554-1.752 4.47 4.47 0 0 1 2.346-.658c1.118 0 2.19.41 2.982 1.14.791.73 1.237 1.72 1.24 2.754Zm-2.88 11.81H7.498V9.334h4.326c-.084.43-.128.867-.132 1.304.003 2.122.916 4.157 2.54 5.659 1.623 1.5 3.825 2.345 6.121 2.347a9.138 9.138 0 0 0 1.34-.105v3.91Z\" fill=\"#222\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-a0ge8q\",\"data-framer-name\":\"Logo_6\",fill:\"black\",intrinsicHeight:34,intrinsicWidth:120,name:\"Logo_6\",svg:'<svg width=\"120\" height=\"34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.444 1.744c-2.17 0-4.32.394-6.326 1.161a16.688 16.688 0 0 0-5.364 3.307 15.239 15.239 0 0 0-3.583 4.95A14.242 14.242 0 0 0 1.912 17c0 2.003.428 3.988 1.259 5.838a15.24 15.24 0 0 0 3.583 4.95 16.689 16.689 0 0 0 5.364 3.307 17.742 17.742 0 0 0 6.326 1.162v-7.629a8.868 8.868 0 0 1-3.163-.58 8.343 8.343 0 0 1-2.682-1.654 7.617 7.617 0 0 1-1.792-2.475A7.12 7.12 0 0 1 10.178 17c0-1.002.214-1.994.63-2.92a7.618 7.618 0 0 1 1.791-2.474 8.344 8.344 0 0 1 2.682-1.653 8.868 8.868 0 0 1 3.163-.581V1.744Z\" fill=\"#222\"/><path d=\"M18.444 22.085c3.044 0 5.51-2.276 5.51-5.085s-2.466-5.085-5.51-5.085c-3.043 0-5.51 2.276-5.51 5.085s2.467 5.085 5.51 5.085Z\" fill=\"#222\"/><path d=\"M1.912 17c0 2.003.428 3.987 1.259 5.838a15.238 15.238 0 0 0 3.583 4.95 16.689 16.689 0 0 0 5.364 3.307 17.742 17.742 0 0 0 6.326 1.161c2.171 0 4.321-.394 6.327-1.16a16.69 16.69 0 0 0 5.363-3.308 15.238 15.238 0 0 0 3.584-4.95A14.241 14.241 0 0 0 34.976 17H26.71a7.12 7.12 0 0 1-.629 2.92 7.62 7.62 0 0 1-1.792 2.474 8.343 8.343 0 0 1-2.681 1.654 8.869 8.869 0 0 1-3.164.58 8.868 8.868 0 0 1-3.163-.58 8.343 8.343 0 0 1-2.682-1.654 7.619 7.619 0 0 1-1.792-2.475A7.119 7.119 0 0 1 10.178 17H1.912Zm22.043 0c0-1.349-.58-2.642-1.614-3.596-1.034-.954-2.435-1.49-3.897-1.49-1.461 0-2.863.536-3.896 1.49-1.034.954-1.614 2.247-1.614 3.596h11.021Zm19.657-5.732h-2.053v10.527h2.053V11.268Zm1.339 6.797c0 2.437 1.825 3.94 4.237 3.94s4.237-1.503 4.237-3.94c0-2.436-1.825-3.94-4.237-3.94s-4.237 1.504-4.237 3.94Zm2.053 0c0-1.443.913-2.286 2.184-2.286 1.271 0 2.184.843 2.184 2.286 0 1.444-.913 2.286-2.184 2.286-1.271 0-2.184-.842-2.184-2.286Zm13.759-3.729v1.007H60.6c-.489-.646-1.27-1.218-2.672-1.218-1.923 0-3.65 1.504-3.65 3.82s1.727 3.82 3.65 3.82c1.401 0 2.183-.587 2.64-1.173h.163v.722c0 1.443-.913 2.105-2.25 2.105-1.336 0-2.02-.662-2.297-1.519l-1.841.737c.423 1.128 1.662 2.376 4.171 2.376 2.575 0 4.27-1.248 4.27-3.654v-7.023h-2.02Zm-2.216 5.805c-1.271 0-2.216-.842-2.216-2.196 0-1.353.945-2.196 2.216-2.196 1.271 0 2.216.843 2.216 2.196 0 1.354-.945 2.196-2.216 2.196Zm5.564-2.076c0 2.437 1.825 3.94 4.237 3.94s4.237-1.503 4.237-3.94c0-2.436-1.825-3.94-4.237-3.94s-4.237 1.504-4.237 3.94Zm2.054 0c0-1.443.912-2.286 2.183-2.286s2.184.843 2.184 2.286c0 1.444-.913 2.286-2.184 2.286-1.27 0-2.183-.842-2.183-2.286Zm8.032-5.895c0 .767.636 1.294 1.451 1.294.815 0 1.45-.527 1.45-1.294s-.635-1.293-1.45-1.293-1.45.526-1.45 1.293Zm2.477 2.166h-2.053v7.459h2.053v-7.46Zm1.83 10.467h2.054v-3.97h.162c.456.6 1.239 1.172 2.64 1.172 1.923 0 3.65-1.503 3.65-3.94 0-2.436-1.727-3.94-3.65-3.94-1.401 0-2.184.572-2.672 1.218h-.163v-1.007h-2.021v10.467Zm4.237-4.422c-1.27 0-2.216-.842-2.216-2.316 0-1.473.945-2.316 2.216-2.316 1.271 0 2.216.843 2.216 2.316 0 1.474-.945 2.316-2.216 2.316Zm5.469-3.955c0 1.474 1.336 2.015 3.03 2.316l.425.075c1.01.18 1.466.406 1.466.888 0 .48-.457.857-1.401.857-.946 0-1.711-.361-1.924-1.444l-1.89.451c.278 1.564 1.695 2.436 3.814 2.436 2.052 0 3.39-.887 3.39-2.45 0-1.565-1.37-1.986-3.195-2.317l-.424-.075c-.847-.15-1.304-.36-1.304-.857 0-.451.425-.737 1.207-.737s1.336.3 1.531 1.113l1.858-.526c-.39-1.204-1.58-2.03-3.39-2.03-1.923 0-3.193.826-3.193 2.3Zm16.132 5.369v-7.46h-2.053v3.85c0 1.384-.733 2.196-1.989 2.196-1.108 0-1.727-.556-1.727-1.684v-4.361H96.52v4.451c0 1.85 1.255 3.128 3.145 3.128 1.483 0 2.167-.601 2.493-1.233h.163v1.113h2.021Zm1.82-7.459v7.459h2.054v-4.451c0-1.023.521-1.595 1.466-1.595.815 0 1.304.422 1.304 1.234v4.812h2.053v-4.451c0-1.023.522-1.595 1.467-1.595.815 0 1.303.422 1.303 1.234v4.812h2.054v-4.903c0-1.804-1.206-2.676-2.706-2.676-1.319 0-1.922.541-2.313 1.173h-.164c-.375-.707-1.042-1.173-2.216-1.173-1.173 0-1.809.48-2.118 1.052h-.163v-.932h-2.021Z\" fill=\"#222\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m6976e\",\"data-framer-name\":\"Logo_1\",fill:\"black\",intrinsicHeight:34,intrinsicWidth:149,name:\"Logo_1\",svg:'<svg width=\"149\" height=\"34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#222\"><path d=\"M44.906 24.143h10.467v-2.915h-6.747V10.251h-3.72v13.892ZM61.574 22.2c-1.492 0-2.27-1.205-2.27-3.011 0-1.807.777-3.031 2.27-3.031 1.492 0 2.29 1.224 2.29 3.03 0 1.807-.798 3.012-2.29 3.012Zm.02 2.254c3.469 0 5.739-2.274 5.739-5.265 0-2.992-2.27-5.266-5.738-5.266-3.447 0-5.76 2.274-5.76 5.266 0 2.991 2.313 5.265 5.76 5.265Zm11.741 3.127c1.598 0 3.006-.33 3.952-1.107.861-.719 1.429-1.807 1.429-3.303v-8.976h-3.279v1.069h-.042c-.63-.836-1.597-1.36-3.027-1.36-2.669 0-4.518 2.06-4.518 4.974 0 3.05 2.249 4.72 4.666 4.72 1.303 0 2.122-.485 2.753-1.146h.084v.991c0 1.205-.61 1.904-2.06 1.904-1.135 0-1.702-.447-1.891-.971H68.08c.336 2.079 2.29 3.205 5.254 3.205Zm-.02-6.333c-1.283 0-2.124-.972-2.124-2.468 0-1.515.841-2.486 2.123-2.486 1.43 0 2.186 1.126 2.186 2.467 0 1.399-.694 2.487-2.186 2.487Zm12.142.952c-1.493 0-2.27-1.205-2.27-3.011 0-1.807.777-3.031 2.27-3.031 1.492 0 2.29 1.224 2.29 3.03 0 1.807-.798 3.012-2.29 3.012Zm.02 2.254c3.468 0 5.738-2.274 5.738-5.265 0-2.992-2.27-5.266-5.737-5.266-3.447 0-5.76 2.274-5.76 5.266 0 2.991 2.313 5.265 5.76 5.265Zm6.74-.311h3.426v-9.948h-3.426v9.948Zm0-11.327h3.426V10.25h-3.426v2.565Zm4.912 14.61h3.426v-4.313h.042c.672.835 1.66 1.34 3.047 1.34 2.817 0 4.687-2.059 4.687-5.284 0-2.992-1.744-5.265-4.603-5.265-1.471 0-2.522.602-3.257 1.496h-.063v-1.205h-3.28v13.231Zm5.633-5.42c-1.472 0-2.312-1.108-2.312-2.72 0-1.613.756-2.837 2.249-2.837 1.471 0 2.164 1.127 2.164 2.836 0 1.69-.798 2.72-2.101 2.72Zm11.147 2.447c2.817 0 4.897-1.126 4.897-3.302 0-2.546-2.228-2.992-4.119-3.284-1.366-.233-2.585-.33-2.585-1.03 0-.621.651-.913 1.492-.913.946 0 1.597.272 1.723 1.166h3.153c-.168-1.962-1.808-3.186-4.855-3.186-2.543 0-4.645 1.088-4.645 3.186 0 2.332 1.997 2.798 3.867 3.09 1.429.232 2.733.33 2.733 1.223 0 .641-.652.991-1.682.991-1.135 0-1.849-.486-1.976-1.476h-3.236c.105 2.195 2.081 3.535 5.233 3.535Zm9.55-.019c1.492 0 2.438-.544 3.216-1.515h.063v1.224h3.278v-9.948h-3.425v5.557c0 1.185-.715 2.001-1.892 2.001-1.093 0-1.618-.602-1.618-1.69v-5.868h-3.405v6.528c0 2.215 1.303 3.711 3.783 3.711Zm8.049-.291h3.426v-5.576c0-1.186.63-2.02 1.702-2.02 1.03 0 1.513.62 1.513 1.69v5.906h3.426v-5.576c0-1.186.61-2.02 1.703-2.02 1.03 0 1.513.62 1.513 1.69v5.906h3.426v-6.47c0-2.234-1.219-3.77-3.657-3.77-1.387 0-2.543.545-3.384 1.75h-.042c-.547-1.07-1.618-1.75-3.027-1.75-1.555 0-2.585.68-3.257 1.71h-.063v-1.418h-3.279v9.948Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.605 33.048c9.673 0 17.514-7.249 17.514-16.19C35.12 7.914 27.278.666 17.605.666 7.93.667.09 7.915.09 16.857s7.841 16.19 17.515 16.19Zm2.703-19.872c1.493-1.38 1.493-3.618 0-4.998-1.493-1.38-3.914-1.38-5.407 0-1.493 1.38-1.493 3.618 0 4.998l2.704 2.499 2.703-2.499Zm1.279 6.18c1.493 1.38 3.914 1.38 5.407 0 1.493-1.38 1.493-3.618 0-4.998-1.493-1.38-3.914-1.38-5.407 0l-2.703 2.5 2.703 2.498Zm-1.28 6.18c1.494-1.38 1.494-3.617 0-4.998l-2.702-2.498-2.704 2.498c-1.493 1.38-1.493 3.618 0 4.998 1.493 1.38 3.914 1.38 5.407 0Zm-12.092-6.18c-1.493-1.38-1.493-3.618 0-4.998 1.494-1.38 3.914-1.38 5.407 0l2.704 2.5-2.704 2.498c-1.493 1.38-3.913 1.38-5.407 0Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .405)\" d=\"M0 0h148.875v33.191H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l7impc\",\"data-framer-name\":\"Logo_3\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:122,name:\"Logo_3\",svg:'<svg width=\"122\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18.807 20.09 3.097 10.073c-1.592-1.016-1.051-3.13.934-3.626l16.698-4.19a2.546 2.546 0 0 1 1.105-.111c.373.044.73.17 1.039.368.31.197.564.46.742.766.178.306.274.647.28.995l-.99 14.206c-.117 1.686-2.506 2.625-4.098 1.61Z\" fill=\"#222\"/><path d=\"M13.825 22.564 4.57 5.832a2.185 2.185 0 0 1 .202-2.43c.273-.348.644-.62 1.073-.785.429-.166.9-.22 1.359-.154l17.153 2.448c.395.056.77.198 1.093.414.324.217.588.501.77.83.182.329.276.693.276 1.062 0 .37-.095.734-.277 1.063l-7.901 14.285a2.418 2.418 0 0 1-.93.925 2.68 2.68 0 0 1-1.316.342 2.68 2.68 0 0 1-1.316-.342 2.417 2.417 0 0 1-.93-.926Z\" fill=\"#222\"/><path d=\"m23.854 4.838-8.551-1.22L4.805 6.253l4.19 7.578 9.813 6.26c.216.136.454.24.706.31l3.727-6.738.613-8.825Zm43.31 1.956c0-.294.094-.58.27-.825.178-.245.428-.435.722-.547a1.73 1.73 0 0 1 .928-.085c.312.057.599.199.823.407.225.207.378.472.44.76.062.288.03.587-.091.859a1.518 1.518 0 0 1-.592.666 1.692 1.692 0 0 1-2.024-.19 1.447 1.447 0 0 1-.476-1.045Zm.268 2.212h2.679v8.252h-2.679V9.006Zm14.248 4.126a3.858 3.858 0 0 1-.253 1.606 4.096 4.096 0 0 1-.9 1.393 4.478 4.478 0 0 1-1.41.967 4.784 4.784 0 0 1-1.704.392 3.602 3.602 0 0 1-1.453-.227 3.37 3.37 0 0 1-1.208-.78v4.076h-2.678V9.006h2.678v.775c.335-.34.748-.606 1.208-.78a3.6 3.6 0 0 1 1.453-.226 4.79 4.79 0 0 1 1.703.392 4.477 4.477 0 0 1 1.41.966c.397.405.703.879.9 1.393.198.515.284 1.06.253 1.606Zm-2.679 0a1.868 1.868 0 0 0-.384-1.078 2.108 2.108 0 0 0-.964-.702 2.29 2.29 0 0 0-1.224-.091 2.18 2.18 0 0 0-1.074.549 1.92 1.92 0 0 0-.567 1.006 1.83 1.83 0 0 0 .13 1.129c.163.356.435.66.783.873.349.214.758.328 1.176.328.287.012.573-.032.84-.13.268-.098.51-.246.71-.437.201-.19.356-.417.455-.667.099-.249.14-.515.12-.78Zm10.946 1.649c0 1.898-1.786 2.707-3.714 2.707a4.176 4.176 0 0 1-2.246-.438 3.758 3.758 0 0 1-1.593-1.527l2.321-1.22c.095.298.297.557.573.734.276.176.61.26.945.237.643 0 .963-.182.963-.512 0-.908-4.392-.429-4.392-3.285 0-1.798 1.642-2.706 3.503-2.706a4.17 4.17 0 0 1 2.001.443 3.785 3.785 0 0 1 1.48 1.323l-2.284 1.139a1.228 1.228 0 0 0-.48-.531 1.374 1.374 0 0 0-.717-.198c-.464 0-.75.162-.75.462-.002.947 4.39.32 4.39 3.372Zm9.787-5.775v8.252h-2.678v-.777c-.31.342-.702.612-1.146.787-.444.175-.926.25-1.408.22-1.803 0-3.338-1.189-3.338-3.417V9.006h2.678v4.704a1.26 1.26 0 0 0 .071.582c.07.188.181.359.33.502.147.143.327.254.526.326.2.072.413.104.627.091.981 0 1.663-.527 1.663-1.7V9.006h2.675Zm15.35 3.184v5.068h-2.678v-4.852c0-.825-.429-1.354-1.285-1.354-.894 0-1.393.578-1.393 1.552v4.654h-2.679v-4.852c0-.825-.428-1.354-1.285-1.354-.893 0-1.393.578-1.393 1.552v4.654h-2.678V9.006h2.683v.756a2.717 2.717 0 0 1 1.059-.777 2.942 2.942 0 0 1 1.333-.213 2.85 2.85 0 0 1 1.325.26 2.6 2.6 0 0 1 1.014.829c.297-.37.69-.663 1.143-.853.453-.19.951-.272 1.447-.236 2.049.003 3.387 1.356 3.387 3.418Zm2.269-3.235c1.098 0 1.988-.823 1.988-1.838 0-1.015-.89-1.837-1.988-1.837-1.098 0-1.988.822-1.988 1.837 0 1.015.89 1.838 1.988 1.838ZM30.602 5.21h2.678v12.048h-2.678V5.21Zm4.195 7.922a4.14 4.14 0 0 1 .79-2.432 4.667 4.667 0 0 1 2.12-1.617 5.09 5.09 0 0 1 2.733-.254 4.861 4.861 0 0 1 2.425 1.193 4.28 4.28 0 0 1 1.298 2.238 4.067 4.067 0 0 1-.266 2.528 4.465 4.465 0 0 1-1.742 1.964 5.008 5.008 0 0 1-2.629.738 5.02 5.02 0 0 1-1.814-.32 4.726 4.726 0 0 1-1.54-.942 4.32 4.32 0 0 1-1.024-1.42 4.044 4.044 0 0 1-.35-1.676Zm6.785 0a1.803 1.803 0 0 0-.371-1.04 2.036 2.036 0 0 0-.933-.678 2.212 2.212 0 0 0-1.182-.088 2.105 2.105 0 0 0-1.037.53 1.855 1.855 0 0 0-.547.973c-.075.367-.032.746.125 1.09.157.344.42.637.757.844.336.206.731.317 1.135.317.276.007.552-.039.808-.135a2.02 2.02 0 0 0 .682-.423c.193-.183.343-.4.441-.64.097-.24.14-.495.126-.75h-.004Zm13.355-4.129v7.84c0 2.773-2.34 3.945-4.714 3.945a4.884 4.884 0 0 1-2.419-.45 4.448 4.448 0 0 1-1.812-1.547l2.285-1.222c.184.344.478.629.842.815.364.185.78.264 1.194.225.264.033.532.012.786-.064.254-.075.486-.203.679-.372.193-.17.343-.377.438-.607a1.53 1.53 0 0 0 .11-.722v-.76a3.158 3.158 0 0 1-1.165.823 3.401 3.401 0 0 1-1.441.25c-1.179-.034-2.297-.49-3.117-1.273-.82-.782-1.28-1.83-1.28-2.92 0-1.089.46-2.136 1.28-2.918.82-.783 1.938-1.24 3.117-1.273a3.4 3.4 0 0 1 1.441.25c.453.186.852.468 1.166.822v-.842h2.61Zm-2.607 3.961a1.884 1.884 0 0 0-.32-1.132 2.119 2.119 0 0 0-.952-.772 2.325 2.325 0 0 0-1.256-.148 2.232 2.232 0 0 0-1.13.528 1.965 1.965 0 0 0-.618 1.022c-.09.39-.053.796.108 1.166.16.37.438.688.796.911a2.29 2.29 0 0 0 1.21.343c.282.018.564-.018.83-.107.264-.088.507-.227.71-.408.204-.18.365-.398.472-.639.107-.241.158-.5.15-.761v-.003Zm4.123.162a4.139 4.139 0 0 1 .79-2.432 4.666 4.666 0 0 1 2.12-1.616 5.089 5.089 0 0 1 2.733-.255 4.862 4.862 0 0 1 2.425 1.194 4.28 4.28 0 0 1 1.298 2.238 4.064 4.064 0 0 1-.266 2.527 4.465 4.465 0 0 1-1.742 1.964 5.009 5.009 0 0 1-2.629.738 5.017 5.017 0 0 1-1.812-.319 4.725 4.725 0 0 1-1.539-.94 4.318 4.318 0 0 1-1.025-1.419 4.04 4.04 0 0 1-.353-1.674v-.006Zm6.785 0a1.806 1.806 0 0 0-.371-1.041 2.039 2.039 0 0 0-.933-.678 2.212 2.212 0 0 0-1.182-.089 2.105 2.105 0 0 0-1.039.531 1.856 1.856 0 0 0-.547.973c-.075.367-.031.747.126 1.091s.42.638.757.844c.337.207.732.317 1.136.317.276.007.55-.04.805-.135.256-.096.487-.24.68-.422.193-.182.343-.4.44-.637.099-.239.142-.493.128-.748v-.006Z\" fill=\"#222\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sw0qnx\",\"data-framer-name\":\"Logo_4\",fill:\"black\",intrinsicHeight:34,intrinsicWidth:112,name:\"Logo_4\",svg:'<svg width=\"112\" height=\"34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.239 6.024c1.05-.977 2.752-.977 3.802 0 1.05.977 1.05 2.56 0 3.538l-6.401 5.956c-1.838-2.292-1.638-5.552.599-7.633l2-1.861Zm9.151 13.437c1.051.977 1.051 2.561 0 3.538-1.048.977-2.751.977-3.801 0l-6.401-5.956c2.463-1.71 5.966-1.524 8.203.557l2 1.861Zm-14.44 8.515c-1.05.977-2.753.977-3.803 0-1.05-.977-1.05-2.56 0-3.538l6.401-5.956c1.838 2.292 1.639 5.552-.599 7.633l-2 1.861Zm-9.153-13.438c-1.05-.976-1.05-2.56 0-3.537 1.05-.977 2.753-.977 3.803 0l6.4 5.956c-2.463 1.71-5.966 1.524-8.203-.558l-2-1.86Zm13.012 12.709c1.548-1.602 2.267-3.651 2.158-5.67l3.075 2.861.023.022v2.042c0 1.381-1.204 2.501-2.689 2.501-1.206 0-2.227-.739-2.567-1.756ZM41.581 18.13c1.722 1.44 3.924 2.11 6.093 2.009l-3.074 2.86-.023.022h-2.195c-1.485 0-2.689-1.12-2.689-2.502 0-1.122.794-2.072 1.888-2.389Zm22.025-2.26c-1.721-1.441-3.924-2.11-6.092-2.009l3.074-2.86.023-.022h2.195c1.485 0 2.689 1.12 2.689 2.502 0 1.122-.795 2.072-1.889 2.389ZM51.38 6.753c-1.55 1.602-2.269 3.651-2.16 5.669l-3.074-2.86-.023-.022V7.498c0-1.381 1.204-2.501 2.689-2.501 1.206 0 2.226.739 2.567 1.756Z\" fill=\"#222\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M48.812 2.961c-2.693 0-4.876 2.032-4.876 4.537v.883c-1.62-.394-3.416 0-4.685 1.18-1.905 1.772-1.905 4.645 0 6.417l.67.624c-1.445.787-2.415 2.247-2.415 3.917 0 2.506 2.183 4.537 4.876 4.537h.948c-.423 1.507 0 3.178 1.27 4.359 1.904 1.772 4.991 1.772 6.896 0l2-1.86c1.764-1.642 2.588-3.828 2.472-5.977l3.074 2.86c1.905 1.772 4.992 1.772 6.896 0 1.905-1.772 1.905-4.644 0-6.416l-.67-.624c1.444-.787 2.415-2.247 2.415-3.917 0-2.506-2.183-4.537-4.876-4.537h-.949c.424-1.507 0-3.178-1.269-4.36-1.904-1.771-4.992-1.771-6.896 0l-2 1.862c-1.764 1.641-2.588 3.827-2.472 5.976l-3.074-2.86-.023-.022V7.498c0-1.381 1.203-2.501 2.688-2.501 1.206 0 2.227.739 2.568 1.756.1-.104.205-.207.313-.307l1.33-1.237c-.847-1.345-2.416-2.248-4.21-2.248Zm11.8 8.018-.023.022-3.074 2.86c2.169-.101 4.371.568 6.092 2.009 1.094-.317 1.889-1.267 1.889-2.39 0-1.38-1.204-2.5-2.69-2.5h-2.194ZM44.577 23.021l.023-.022 3.074-2.86c-2.169.101-4.371-.568-6.093-2.009-1.094.317-1.888 1.267-1.888 2.39 0 1.38 1.204 2.5 2.689 2.5h2.195Zm11.8 8.017c-1.796 0-3.364-.902-4.21-2.247l1.329-1.237c.108-.1.212-.203.313-.307.341 1.017 1.362 1.756 2.568 1.756 1.485 0 2.688-1.12 2.688-2.501V24.46c.63.578 1.388.965 2.188 1.16v.882c0 2.505-2.183 4.537-4.876 4.537Zm2.665-25.014c-1.05-.977-2.752-.977-3.802 0l-2 1.86c-2.237 2.082-2.437 5.342-.6 7.633l6.402-5.955c1.05-.977 1.05-2.561 0-3.538Zm5.35 16.975c1.05-.977 1.05-2.56 0-3.538l-2-1.86c-2.238-2.082-5.741-2.268-8.204-.558L60.589 23c1.05.977 2.753.977 3.802 0Zm-14.443 4.977c-1.05.977-2.752.977-3.802 0-1.05-.977-1.05-2.56 0-3.538l6.4-5.956c1.839 2.292 1.64 5.552-.598 7.633l-2 1.86ZM40.797 11c-1.05.977-1.05 2.56 0 3.538l2 1.86c2.238 2.082 5.741 2.268 8.204.558L44.6 11c-1.05-.977-2.753-.977-3.803 0Z\" fill=\"#222\"/><path d=\"M1.414 12.136h2.391v6.913h4.107v1.873H1.414v-8.786Zm10.839 8.974c-.802 0-1.504-.133-2.108-.402-.603-.276-1.071-.653-1.405-1.13a2.943 2.943 0 0 1-.486-1.673c0-.628.162-1.181.486-1.659.334-.486.802-.863 1.405-1.131.604-.277 1.306-.415 2.108-.415s1.504.138 2.107.415c.604.268 1.068.645 1.392 1.131.333.478.5 1.03.5 1.66 0 .628-.167 1.185-.5 1.671-.324.478-.788.855-1.392 1.131-.603.269-1.305.403-2.107.403Zm0-1.721c.477 0 .855-.13 1.135-.39.288-.268.432-.633.432-1.094 0-.46-.144-.821-.432-1.08-.28-.269-.658-.403-1.135-.403-.478 0-.86.134-1.148.402-.28.26-.42.62-.42 1.081 0 .461.14.826.42 1.094.288.26.67.39 1.148.39Zm8.465 4.424a7.77 7.77 0 0 1-1.31-.113 5.68 5.68 0 0 1-1.122-.302v-1.533c.712.285 1.522.427 2.432.427.658 0 1.13-.126 1.419-.377.297-.251.446-.62.446-1.106v-.365a2.86 2.86 0 0 1-.973.49 4.081 4.081 0 0 1-1.216.177c-.685 0-1.288-.134-1.81-.403a3.033 3.033 0 0 1-1.23-1.13c-.288-.487-.432-1.044-.432-1.673 0-.637.144-1.198.432-1.684a2.86 2.86 0 0 1 1.216-1.119c.522-.268 1.121-.402 1.797-.402.928 0 1.693.264 2.297.792v-.604h2.296v5.62c0 1.047-.346 1.86-1.04 2.438-.684.578-1.752.867-3.202.867Zm.27-4.412c.37 0 .698-.088.987-.264.288-.176.49-.41.608-.704v-1.056a1.446 1.446 0 0 0-.622-.691 1.829 1.829 0 0 0-.973-.264c-.486 0-.878.134-1.175.402-.297.26-.446.616-.446 1.069 0 .46.149.83.446 1.106.297.268.689.402 1.175.402Zm8.576 1.709c-.802 0-1.505-.133-2.108-.402-.604-.276-1.072-.653-1.405-1.13a2.942 2.942 0 0 1-.486-1.673c0-.628.162-1.181.486-1.659.333-.486.802-.863 1.405-1.131.603-.277 1.306-.415 2.108-.415.801 0 1.504.138 2.107.415.604.268 1.067.645 1.392 1.131.333.478.5 1.03.5 1.66 0 .628-.167 1.185-.5 1.671-.325.478-.788.855-1.392 1.131-.603.269-1.306.403-2.107.403Zm0-1.721c.477 0 .855-.13 1.134-.39.288-.268.433-.633.433-1.094 0-.46-.145-.821-.433-1.08-.279-.269-.657-.403-1.134-.403-.478 0-.86.134-1.149.402-.28.26-.419.62-.419 1.081 0 .461.14.826.42 1.094.287.26.67.39 1.148.39ZM71.7 12.136h2.39v8.786H71.7v-8.786Zm3.603 2.753H77.6v.603c.603-.528 1.368-.792 2.296-.792.675 0 1.275.134 1.797.402.523.26.927.633 1.216 1.119.288.478.432 1.035.432 1.672 0 .628-.144 1.19-.432 1.684a2.94 2.94 0 0 1-1.216 1.131c-.513.269-1.112.403-1.797.403a4.08 4.08 0 0 1-1.242-.189 2.862 2.862 0 0 1-.973-.49v3.243h-2.378v-8.787Zm3.972 4.5c.486 0 .878-.134 1.175-.403.297-.268.446-.632.446-1.093 0-.461-.149-.822-.446-1.081-.297-.268-.689-.402-1.175-.402-.36 0-.685.087-.973.263a1.447 1.447 0 0 0-.621.692v1.068c.126.294.332.528.62.704a1.9 1.9 0 0 0 .974.252Zm7.61 1.721c-.522 0-1.067-.05-1.634-.15-.568-.092-1.019-.227-1.352-.402v-1.622a6.2 6.2 0 0 0 2.757.691c.314 0 .544-.02.688-.063.145-.041.216-.125.216-.25 0-.102-.049-.181-.148-.24-.09-.067-.262-.134-.514-.2a18.531 18.531 0 0 0-.85-.24c-.55-.15-.982-.306-1.297-.465-.316-.159-.55-.36-.703-.603-.153-.243-.23-.549-.23-.918 0-.653.275-1.14.824-1.458.559-.327 1.32-.49 2.284-.49.468 0 .959.046 1.472.138.523.092.914.214 1.176.365v1.596c-.27-.168-.631-.306-1.081-.415a5.2 5.2 0 0 0-1.243-.163c-.306 0-.545.03-.716.088-.171.05-.257.142-.257.276 0 .126.086.223.257.29.17.067.477.15.918.25.288.068.41.097.365.089.576.142 1.022.302 1.338.478.315.176.535.385.662.628.135.235.202.536.202.905 0 .578-.27 1.04-.81 1.383-.532.335-1.307.503-2.324.503Zm6.685 0c-.892 0-1.563-.23-2.013-.69-.442-.462-.663-1.07-.663-1.823v-3.709h2.378v3.457c0 .696.338 1.044 1.014 1.044.306 0 .585-.067.837-.202.252-.134.46-.33.621-.59v-3.709h2.378v6.034h-2.296v-.654c-.28.277-.617.486-1.014.629-.396.142-.81.214-1.243.214Zm5.77-6.221h2.202v.653c.27-.268.581-.473.932-.616a2.81 2.81 0 0 1 1.122-.226c.486 0 .874.067 1.162.201.297.134.535.335.716.603.27-.251.599-.448.986-.59a3.379 3.379 0 0 1 1.175-.214c.856 0 1.464.205 1.824.616.36.402.54.984.54 1.747v3.859h-2.269v-3.545c0-.335-.068-.578-.203-.729-.135-.15-.36-.226-.675-.226-.406 0-.735.134-.987.402.009.143.014.36.014.654v3.444h-2.27v-3.633c0-.31-.058-.532-.175-.666-.118-.134-.325-.2-.621-.2-.46 0-.856.238-1.19.716v3.783H99.34v-6.034Z\" fill=\"#222\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11hrusu\",\"data-framer-name\":\"Logo_5\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:117,name:\"Logo_5\",svg:'<svg width=\"117\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34.31 15.93c0 .512-.114.906-.343 1.181-.223.276-.595.413-1.117.413-.493 0-.842-.137-1.047-.413-.2-.275-.3-.669-.3-1.181V7.377c0-.512.1-.906.3-1.181.205-.275.554-.413 1.047-.413.522 0 .894.138 1.117.413.229.275.343.669.343 1.181v8.553Zm.852-2.484c0-.572.1-1.111.3-1.618.204-.513.51-.96.914-1.344.41-.383.92-.687 1.53-.914.616-.227 1.338-.34 2.165-.34.791 0 1.492.105 2.102.316.61.21 1.123.504 1.54.882.416.372.732.817.95 1.335.216.512.325 1.073.325 1.683 0 .566-.103 1.103-.308 1.61a3.734 3.734 0 0 1-.924 1.327c-.41.378-.923.68-1.54.906-.615.222-1.33.332-2.145.332-.804 0-1.513-.105-2.13-.315-.61-.216-1.122-.51-1.539-.883a3.733 3.733 0 0 1-.932-1.326 4.397 4.397 0 0 1-.308-1.651Zm2.93 0c0 .356.035.696.105 1.02.07.318.182.598.334.841a1.8 1.8 0 0 0 .616.582c.252.14.56.21.924.21.334 0 .624-.064.87-.193.253-.13.458-.31.616-.542.164-.232.287-.51.37-.834.082-.329.123-.69.123-1.084 0-.356-.038-.693-.115-1.012a2.52 2.52 0 0 0-.343-.85 1.702 1.702 0 0 0-.615-.582c-.247-.145-.549-.218-.906-.218-.358 0-.663.07-.915.21-.252.14-.458.332-.616.575a2.518 2.518 0 0 0-.343.85c-.07.323-.106.665-.106 1.027Zm14.115 2.516a2.57 2.57 0 0 1-.58.688 3.155 3.155 0 0 1-.748.47c-.27.118-.56.207-.871.266a5.39 5.39 0 0 1-.941.081 3.95 3.95 0 0 1-1.478-.267 3.26 3.26 0 0 1-1.153-.769 3.567 3.567 0 0 1-.739-1.246c-.175-.49-.263-1.052-.263-1.683 0-.593.082-1.149.246-1.667a4.07 4.07 0 0 1 .712-1.35 3.417 3.417 0 0 1 1.162-.907c.457-.221.979-.332 1.565-.332.669 0 1.261.119 1.777.356.522.237.97.626 1.346 1.165v-.21c0-.388.114-.68.343-.874.235-.2.557-.3.968-.3.246 0 .454.038.624.114a.89.89 0 0 1 .405.324c.1.14.17.315.211.526.047.205.07.44.07.704v5.42c0 .659-.09 1.247-.272 1.765a3.188 3.188 0 0 1-.827 1.31c-.376.357-.856.626-1.443.81-.586.189-1.284.283-2.093.283-.57 0-1.074-.024-1.513-.073a6.344 6.344 0 0 1-1.126-.202c-.317-.103-.557-.216-.722-.34a.588.588 0 0 1-.237-.486.99.99 0 0 1 .053-.323.823.823 0 0 1 .158-.275.89.89 0 0 1 .29-.186c.123-.044.273-.065.449-.065.188 0 .375.01.563.032.193.022.393.043.598.065.211.027.431.051.66.073.234.021.486.032.756.032.323 0 .61-.03.862-.089a1.49 1.49 0 0 0 .642-.315c.176-.151.311-.354.405-.607.094-.248.14-.567.14-.955v-.963Zm0-2.516a5.52 5.52 0 0 0-.097-1.076 2.239 2.239 0 0 0-.308-.826 1.462 1.462 0 0 0-.59-.534c-.245-.13-.553-.194-.923-.194-.363 0-.665.067-.906.202a1.535 1.535 0 0 0-.563.558 2.55 2.55 0 0 0-.299.834 6.209 6.209 0 0 0-.079 1.02c0 .825.158 1.445.475 1.86.317.416.777.624 1.381.624a2.15 2.15 0 0 0 .765-.146c.235-.097.437-.245.607-.445.17-.2.302-.453.396-.76.094-.308.14-.68.14-1.117Zm3.465 0c0-.572.1-1.111.299-1.618.205-.513.51-.96.915-1.344.41-.383.92-.687 1.53-.914.616-.227 1.337-.34 2.164-.34.792 0 1.493.105 2.103.316.61.21 1.123.504 1.539.882.416.372.733.817.95 1.335a4.27 4.27 0 0 1 .326 1.683 4.25 4.25 0 0 1-.308 1.61 3.733 3.733 0 0 1-.924 1.327c-.41.378-.924.68-1.54.906-.615.222-1.33.332-2.146.332-.803 0-1.513-.105-2.128-.315-.61-.216-1.123-.51-1.54-.883a3.736 3.736 0 0 1-.932-1.326 4.4 4.4 0 0 1-.308-1.651Zm2.93 0c0 .356.034.696.105 1.02.07.318.181.598.334.841.158.243.364.437.616.582.252.14.56.21.923.21.335 0 .625-.064.871-.193.252-.13.458-.31.616-.542.164-.232.287-.51.37-.834.081-.329.123-.69.123-1.084 0-.356-.039-.693-.115-1.012a2.52 2.52 0 0 0-.343-.85 1.703 1.703 0 0 0-.616-.582c-.246-.145-.548-.218-.906-.218-.357 0-.662.07-.915.21a1.72 1.72 0 0 0-.615.575 2.518 2.518 0 0 0-.343.85c-.07.323-.106.665-.106 1.027ZM69.27 6.503a.88.88 0 0 1-.132.478 1.16 1.16 0 0 1-.343.34c-.14.091-.305.161-.493.21a2.428 2.428 0 0 1-1.152-.008 1.666 1.666 0 0 1-.484-.21 1.146 1.146 0 0 1-.334-.349.87.87 0 0 1-.123-.46c0-.157.038-.3.114-.43.082-.135.19-.25.326-.348.135-.097.296-.172.484-.226a2.21 2.21 0 0 1 .615-.081c.194 0 .381.024.563.073.188.048.352.118.493.21.14.092.252.205.334.34a.826.826 0 0 1 .132.461Zm-.132 9.427c0 .512-.114.906-.343 1.181-.223.275-.595.413-1.117.413-.493 0-.842-.138-1.047-.413-.2-.275-.299-.669-.299-1.181v-4.952c0-.513.1-.906.3-1.182.204-.275.553-.412 1.046-.412.522 0 .894.137 1.117.412.229.276.343.67.343 1.182v4.952Zm4.044-2.5c0 .36.03.698.088 1.01.065.314.17.589.317.826.152.232.352.415.598.55.252.135.563.203.932.203.34 0 .625-.065.854-.194a1.56 1.56 0 0 0 .563-.55c.14-.238.24-.516.298-.834a5.21 5.21 0 0 0 .097-1.036 5.99 5.99 0 0 0-.07-.906 2.75 2.75 0 0 0-.264-.85 1.69 1.69 0 0 0-.537-.623c-.228-.162-.527-.242-.897-.242s-.683.053-.941.161a1.437 1.437 0 0 0-.616.494 2.182 2.182 0 0 0-.325.833c-.065.33-.097.715-.097 1.157Zm-.009-2.452c.147-.286.334-.537.563-.753a3.44 3.44 0 0 1 .757-.542c.275-.146.563-.254.862-.324a3.76 3.76 0 0 1 .905-.113c.54 0 1.027.11 1.461.332.434.221.803.523 1.108.906.31.378.549.825.713 1.343a5.39 5.39 0 0 1 .246 1.651 5.09 5.09 0 0 1-.264 1.675c-.17.507-.413.944-.73 1.31-.31.362-.686.645-1.126.85a3.354 3.354 0 0 1-1.451.308c-.657 0-1.243-.14-1.76-.421a3.603 3.603 0 0 1-1.284-1.181v2.913c0 .512-.114.906-.343 1.181-.223.275-.595.413-1.117.413-.493 0-.841-.138-1.047-.413-.2-.275-.299-.669-.299-1.181v-7.954c0-.513.1-.907.3-1.182.204-.275.553-.412 1.046-.412.522 0 .894.137 1.117.412.229.275.343.67.343 1.182Zm9.71.575c0 .21.1.374.299.493.2.113.475.208.827.283.334.07.677.138 1.03.202.351.065.694.14 1.028.227.334.081.648.178.942.291.292.114.55.257.773.43.224.167.4.372.528.614.13.238.194.524.194.858 0 .42-.094.796-.282 1.125a2.462 2.462 0 0 1-.8.825c-.34.227-.747.402-1.222.526a6.47 6.47 0 0 1-1.575.194c-.545 0-1.07-.032-1.575-.097a6.905 6.905 0 0 1-1.346-.283c-.387-.13-.697-.289-.932-.478-.235-.194-.352-.42-.352-.68a.63.63 0 0 1 .238-.525c.158-.124.36-.186.607-.186.094 0 .205.016.334.048.129.033.27.073.422.122.152.048.314.102.484.161.175.054.357.103.545.146a7.6 7.6 0 0 0 .721.146c.252.032.51.048.775.048.163 0 .325-.013.483-.04.159-.033.3-.078.423-.138a.994.994 0 0 0 .317-.242.672.672 0 0 0 .149-.356.707.707 0 0 0 .043-.098.325.325 0 0 0 .019-.113c0-.151-.077-.286-.23-.404-.146-.12-.355-.214-.624-.284a79.378 79.378 0 0 0-1.293-.267c-.41-.08-.791-.167-1.144-.259a7.584 7.584 0 0 1-.95-.315 2.686 2.686 0 0 1-.721-.437 1.872 1.872 0 0 1-.457-.623 2.2 2.2 0 0 1-.159-.882c0-.372.091-.704.273-.995a2.26 2.26 0 0 1 .8-.745c.347-.2.766-.35 1.259-.453a7.838 7.838 0 0 1 1.67-.162c1.115 0 1.962.124 2.543.372.586.243.88.561.88.955 0 .221-.08.391-.238.51a.957.957 0 0 1-.571.17c-.118 0-.241-.019-.37-.057a7.1 7.1 0 0 0-.448-.137 4.569 4.569 0 0 0-.634-.138 5.195 5.195 0 0 0-.897-.065 7.6 7.6 0 0 0-.74.033c-.216.021-.404.06-.562.113a.908.908 0 0 0-.36.219.5.5 0 0 0-.124.348Zm9.192 2.969c0 .253.036.475.106.663.076.19.179.348.308.478.13.124.278.218.448.283.177.06.364.09.563.09.235 0 .461-.033.678-.098a1.63 1.63 0 0 0 .572-.3c.17-.134.305-.304.404-.51.1-.204.15-.444.15-.72v-3.43c0-.513.1-.906.299-1.182.205-.275.554-.412 1.047-.412.521 0 .894.137 1.117.412.229.276.343.67.343 1.182v4.952c0 .512-.114.906-.343 1.181-.223.275-.596.413-1.117.413-.493 0-.842-.138-1.047-.413-.2-.275-.3-.669-.3-1.181a2.67 2.67 0 0 1-.483.68 2.948 2.948 0 0 1-.686.534 3.512 3.512 0 0 1-.862.34c-.31.08-.649.12-1.012.12-.392 0-.77-.061-1.135-.185a2.86 2.86 0 0 1-.95-.567 2.787 2.787 0 0 1-.66-.938c-.164-.373-.246-.807-.246-1.303v-3.633c0-.513.1-.906.3-1.182.205-.275.553-.412 1.046-.412.522 0 .894.137 1.117.412.23.276.343.67.343 1.182v3.544Zm7.308-3.544c0-.513.1-.907.3-1.182.204-.275.553-.412 1.046-.412.522 0 .894.137 1.117.412.229.275.343.67.343 1.182.118-.26.276-.494.476-.704.204-.216.436-.4.694-.55a3.55 3.55 0 0 1 .853-.348 3.59 3.59 0 0 1 1.848-.016c.298.07.575.185.827.347.257.157.483.356.677.6.194.242.343.533.449.873a3.51 3.51 0 0 1 .642-.914 3.27 3.27 0 0 1 .8-.6c.287-.15.587-.258.898-.323.316-.065.632-.097.949-.097.375 0 .733.062 1.073.186.347.124.648.313.906.567.265.248.473.563.625.946.158.378.237.82.237 1.327v3.658c0 .512-.114.906-.343 1.181-.222.275-.595.413-1.117.413-.492 0-.841-.138-1.046-.413-.2-.275-.3-.669-.3-1.181v-3.544c0-.243-.035-.459-.105-.648a1.302 1.302 0 0 0-.299-.485 1.135 1.135 0 0 0-.44-.3 1.417 1.417 0 0 0-.545-.105c-.241 0-.469.035-.686.105-.217.07-.408.178-.572.324a1.628 1.628 0 0 0-.387.558 2.129 2.129 0 0 0-.141.818v3.277c0 .512-.115.906-.343 1.181-.223.275-.595.413-1.118.413-.492 0-.841-.138-1.046-.413-.2-.275-.299-.669-.299-1.181v-3.39c0-.556-.127-.977-.378-1.263-.247-.286-.584-.429-1.012-.429a2.13 2.13 0 0 0-.704.113 1.592 1.592 0 0 0-.563.332 1.588 1.588 0 0 0-.378.542 1.96 1.96 0 0 0-.132.745v3.35c0 .512-.114.906-.343 1.181-.223.275-.595.413-1.117.413-.493 0-.842-.138-1.047-.413-.2-.275-.3-.669-.3-1.181v-4.952ZM13.21 16.143c-2.487 0-4.503-1.855-4.503-4.143s2.016-4.143 4.504-4.143c2.487 0 4.504 1.855 4.504 4.143s-2.017 4.143-4.504 4.143Z\" fill=\"#222\"/><path d=\"M4.485 13.415c-1.306.212-2.2 1.372-1.7 2.5.7 1.576 1.816 2.98 3.263 4.077 2.068 1.568 4.678 2.406 7.358 2.363 2.68-.043 5.257-.964 7.264-2.598 1.405-1.143 2.467-2.582 3.106-4.179.458-1.144-.48-2.274-1.793-2.444-1.312-.17-2.49.71-3.139 1.772a6.064 6.064 0 0 1-1.354 1.545c-1.152.937-2.63 1.466-4.167 1.49-1.539.025-3.036-.456-4.222-1.356a6.117 6.117 0 0 1-1.412-1.5c-.688-1.041-1.9-1.882-3.204-1.67Z\" fill=\"#222\"/><path d=\"M24.383 13.294c.058-.424.087-.856.087-1.294 0-5.72-5.04-10.357-11.26-10.357C6.993 1.643 1.952 6.28 1.952 12c0 .563.049 1.114.143 1.653.517-.652 1.324-1.116 2.196-1.258.943-.153 1.8.058 2.525.451A5.52 5.52 0 0 1 6.75 12c0-3.282 2.893-5.942 6.46-5.942 3.568 0 6.46 2.66 6.46 5.942 0 .216-.012.43-.036.64.71-.416 1.558-.654 2.507-.531.876.113 1.7.551 2.242 1.185Z\" fill=\"#222\"/></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:700,intrinsicWidth:1440,pixelHeight:700,pixelWidth:1440,sizes:\"100vw\",src:\"https://framerusercontent.com/images/xOR3syhsvOZyl0rK7HBxnCk.svg\",srcSet:\"https://framerusercontent.com/images/xOR3syhsvOZyl0rK7HBxnCk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/xOR3syhsvOZyl0rK7HBxnCk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xOR3syhsvOZyl0rK7HBxnCk.svg 1440w\"},className:\"framer-yf2vzi\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vul3n0\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nowtot\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wrgswx\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-color\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},children:\"TESTIMONIALS\"})}),className:\"framer-1db328a\",\"data-framer-name\":\"TESTIMONIALS\",fonts:[\"Inter\"],name:\"TESTIMONIALS\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-color\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},children:\"What They Say\"})}),className:\"framer-kvv0ok\",\"data-framer-name\":\"What They Say\",fonts:[\"Inter\"],name:\"What They Say\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YJCkl_HvW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},children:\"Don't just take our word for it\u2014listen to our satisfied clients share how our digital marketing solutions have boosted their business.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},children:\"Don't just take our word for it\u2014listen to our satisfied clients share how our digital marketing solutions have boosted their business.\"})}),className:\"framer-1jvsxax\",\"data-framer-name\":\"Don't just take our word for it\u2014listen to our satisfied clients share how our digital marketing solutions have boosted their business.\",fonts:[\"Inter\"],name:\"Don't just take our word for it\u2014listen to our satisfied clients share how our digital marketing solutions have boosted their business.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ek6oq\",\"data-framer-name\":\"Items\",name:\"Items\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q4lhdc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YJCkl_HvW:{arrowObject:{arrowFill:\"var(--token-b6e1e388-6693-4117-ba3d-6232bbbf978f, rgb(254, 214, 122))\",arrowPadding:0,arrowRadius:40,arrowSize:40,showMouseControls:false},gap:30,paddingLeft:0,paddingRight:0,sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"}},Zi4AEu2FJ:{arrowObject:{arrowFill:\"var(--token-b6e1e388-6693-4117-ba3d-6232bbbf978f, rgb(254, 214, 122))\",arrowPadding:40,arrowRadius:40,arrowSize:40,showMouseControls:true},paddingLeft:50,paddingRight:50}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-b6e1e388-6693-4117-ba3d-6232bbbf978f, rgb(254, 214, 122))\",arrowPadding:80,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:40,height:\"100%\",id:\"b2WB0StwO\",layoutId:\"b2WB0StwO\",padding:0,paddingBottom:0,paddingLeft:100,paddingPerSide:true,paddingRight:100,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dry6by-container\",\"data-framer-name\":\"Item 1\",name:\"Item 1\",children:/*#__PURE__*/_jsx(TestimonialV1,{DJ59zmyBc:\"Peter Shaw\",dmfgtGcpA:\"CEO of Rawboat Company\",g9HCAC9wx:\"DigiCraft has transformed our brand digital presence and brought significant growth to our business. Their team is creative, super responsive, and a pleasure to work with!\",height:\"100%\",id:\"jZuzpJsie\",l9XFp6GLH:addImageAlt({src:\"https://framerusercontent.com/images/tnPFEjObhH2AWarRE7cg2Ff2e4Y.png\"},\"\"),layoutId:\"jZuzpJsie\",name:\"Item 1\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gwtewc-container\",\"data-framer-name\":\"Item 2\",name:\"Item 2\",children:/*#__PURE__*/_jsx(TestimonialV1,{DJ59zmyBc:\"Jessica Winston\",dmfgtGcpA:\"CMO of ABC Corporation\",g9HCAC9wx:\"Working with DigiCraft has been nothing short of amazing. Their dedication to profits and excellence through commitment to our success shine through in every project.\",height:\"100%\",id:\"SwfxnjhTS\",l9XFp6GLH:addImageAlt({src:\"https://framerusercontent.com/images/XLDcExBynRzeyZWYCITRtvNSeA.png\"},\"\"),layoutId:\"SwfxnjhTS\",name:\"Item 2\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dsz8t3-container\",\"data-framer-name\":\"Item 3\",name:\"Item 3\",children:/*#__PURE__*/_jsx(TestimonialV1,{DJ59zmyBc:\"John Smith\",dmfgtGcpA:\"Director of Online Strategy of XYZ Solutions\",g9HCAC9wx:\"What sets Digicraft apart is not just their technical prowess but also making them a reliable and results-driven choice in the competitive digital marketing landscape. \",height:\"100%\",id:\"i082adn_h\",l9XFp6GLH:addImageAlt({src:\"https://framerusercontent.com/images/IXegcRtmAQfhF0bL2M7xwMZ7rwY.jpg\",srcSet:\"https://framerusercontent.com/images/IXegcRtmAQfhF0bL2M7xwMZ7rwY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IXegcRtmAQfhF0bL2M7xwMZ7rwY.jpg 554w\"},\"\"),layoutId:\"i082adn_h\",name:\"Item 3\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dx61lg-container\",\"data-framer-name\":\"Item 4\",name:\"Item 4\",children:/*#__PURE__*/_jsx(TestimonialV1,{DJ59zmyBc:\"Jone Doe\",dmfgtGcpA:\"Marketing Manager of ABC Industries\",g9HCAC9wx:\"Digicraft's strategic digital marketing initiatives, spanning SEO, social media, and content marketing, have driven substantial increases in both visibility and conversions.\",height:\"100%\",id:\"OIcFxOqQA\",l9XFp6GLH:addImageAlt({src:\"https://framerusercontent.com/images/yBJLGQYxVsGIax0d0xw7lCrU9Aw.jpg\",srcSet:\"https://framerusercontent.com/images/yBJLGQYxVsGIax0d0xw7lCrU9Aw.jpg 589w\"},\"\"),layoutId:\"OIcFxOqQA\",name:\"Item 4\",style:{width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sye1os\",\"data-framer-name\":\"Featured Works\",name:\"Featured Works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fd9yid\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-108tnqh\",\"data-framer-name\":\"Texts + Button\",name:\"Texts + Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ixcvkv\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-awqvyy\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMzAw\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"WORKS\"})}),className:\"framer-g6ey4t\",\"data-framer-name\":\"WORKS\",fonts:[\"GF;Helvetica Neue-300\"],name:\"WORKS\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"Featured Works\"})}),className:\"framer-1i4ig5u\",\"data-framer-name\":\"Featured Works\",fonts:[\"Inter\"],name:\"Featured Works\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",children:\"Witness the tangible results of our digital mastery. From captivating campaigns to data-driven success stories, our portfolio showcases all.\"})}),className:\"framer-mv3n5t\",\"data-framer-name\":\"Witness the tangible results of our digital mastery. From captivating campaigns to data-driven success stories, our portfolio showcases all.\",fonts:[\"Inter\"],name:\"Witness the tangible results of our digital mastery. From captivating campaigns to data-driven success stories, our portfolio showcases all.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XtIRYsvL5\"},implicitPathVariables:undefined},{href:{webPageId:\"XtIRYsvL5\"},implicitPathVariables:undefined},{href:{webPageId:\"XtIRYsvL5\"},implicitPathVariables:undefined},{href:{webPageId:\"XtIRYsvL5\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xfzysu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{G8hBdvW_C:resolvedLinks3[2]},YJCkl_HvW:{G8hBdvW_C:resolvedLinks3[1]},Zi4AEu2FJ:{G8hBdvW_C:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(SecondaryButton,{BIZjDzs3y:\"See More Works\",G8hBdvW_C:resolvedLinks3[0],height:\"100%\",id:\"ePjnno_tj\",layoutId:\"ePjnno_tj\",variant:\"eBv5VeVvL\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-trjz8q\",\"data-framer-name\":\"Items\",name:\"Items\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-oo6p1u\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"U5kC0KUEx\",data:Works,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"U5kC0KUEx\",name:\"p9bW775Jp\",type:\"Identifier\"},{collection:\"U5kC0KUEx\",name:\"PhubAzNvR\",type:\"Identifier\"},{collection:\"U5kC0KUEx\",name:\"bZ6pWFH_d\",type:\"Identifier\"},{collection:\"U5kC0KUEx\",name:\"WVYJ1S2ds\",type:\"Identifier\"},{collection:\"U5kC0KUEx\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({bZ6pWFH_d:bZ6pWFH_dU5kC0KUEx,id:idU5kC0KUEx,p9bW775Jp:p9bW775JpU5kC0KUEx,PhubAzNvR:PhubAzNvRU5kC0KUEx,WVYJ1S2ds:WVYJ1S2dsU5kC0KUEx},i)=>{PhubAzNvRU5kC0KUEx!==null&&PhubAzNvRU5kC0KUEx!==void 0?PhubAzNvRU5kC0KUEx:PhubAzNvRU5kC0KUEx=\"\";bZ6pWFH_dU5kC0KUEx!==null&&bZ6pWFH_dU5kC0KUEx!==void 0?bZ6pWFH_dU5kC0KUEx:bZ6pWFH_dU5kC0KUEx=\"\";WVYJ1S2dsU5kC0KUEx!==null&&WVYJ1S2dsU5kC0KUEx!==void 0?WVYJ1S2dsU5kC0KUEx:WVYJ1S2dsU5kC0KUEx=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`U5kC0KUEx-${idU5kC0KUEx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{WVYJ1S2ds:WVYJ1S2dsU5kC0KUEx},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{WVYJ1S2ds:WVYJ1S2dsU5kC0KUEx},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined},{href:{pathVariables:{WVYJ1S2ds:WVYJ1S2dsU5kC0KUEx},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined},{href:{pathVariables:{WVYJ1S2ds:WVYJ1S2dsU5kC0KUEx},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined},{href:{pathVariables:{WVYJ1S2ds:WVYJ1S2dsU5kC0KUEx},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-psn4oi-container\",\"data-framer-name\":\"Item 1\",name:\"Item 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{dTRe9ZpLd:resolvedLinks4[2]},YJCkl_HvW:{dTRe9ZpLd:resolvedLinks4[1]},Zi4AEu2FJ:{dTRe9ZpLd:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(FeaturedWorkV2,{dTRe9ZpLd:resolvedLinks4[0],height:\"100%\",id:\"ag1uMSkm2\",layoutId:\"ag1uMSkm2\",name:\"Item 1\",PV8f8iG0y:PhubAzNvRU5kC0KUEx,style:{width:\"100%\"},tauMfIi0S:toResponsiveImage(p9bW775JpU5kC0KUEx),width:\"100%\",YSnPBd5Pl:bZ6pWFH_dU5kC0KUEx})})})})})})},idU5kC0KUEx);})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k99y6c\",\"data-framer-name\":\"Best Work\",name:\"Best Work\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:684,intrinsicWidth:1440,pixelHeight:684,pixelWidth:1440,sizes:\"min(max(100vw, 1px), 1200px)\",src:\"https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg\",srcSet:\"https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg 1440w\"}},YJCkl_HvW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:684,intrinsicWidth:1440,pixelHeight:684,pixelWidth:1440,sizes:\"min(100vw, 1440px)\",src:\"https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg\",srcSet:\"https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg 1440w\"}}},children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:684,intrinsicWidth:1440,pixelHeight:684,pixelWidth:1440,sizes:\"min(max(100vw, 1px), 1440px)\",src:\"https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg\",srcSet:\"https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UgaJ33tZRjcD48PEhuqQwYe5vs.svg 1440w\"},className:\"framer-3fc8kd\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lkmym\",\"data-framer-name\":\"Best Work\",name:\"Best Work\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1at7k8k\",\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"Best Work\"})}),className:\"framer-ks84v1\",\"data-framer-name\":\"Best Work\",fonts:[\"Inter\"],name:\"Best Work\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l1ke7a\",\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},children:\"PayLink Finance Project\"})}),className:\"framer-1asej04\",\"data-framer-name\":\"PayLink Finance Project\",fonts:[\"Inter\"],name:\"PayLink Finance Project\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",children:\"A transformative website design for a financial digital solution that skyrocketed our client's revenue by 60% by the end of 2023.\"})}),className:\"framer-76jv7u\",\"data-framer-name\":\"A transformative website design for a financial digital solution that skyrocketed our client's revenue by 60% by the end of 2023.\",fonts:[\"Inter\"],name:\"A transformative website design for a financial digital solution that skyrocketed our client's revenue by 60% by the end of 2023.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1452,intrinsicWidth:3720,pixelHeight:1452,pixelWidth:3720,sizes:\"calc(min(max(100vw, 1px), 1200px) - 100px)\",src:\"https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png\",srcSet:\"https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=512 512w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png 3720w\"}},YJCkl_HvW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1452,intrinsicWidth:3720,pixelHeight:1452,pixelWidth:3720,sizes:\"calc(min(100vw, 1440px) - 40px)\",src:\"https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png\",srcSet:\"https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=512 512w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png 3720w\"}},Zi4AEu2FJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1452,intrinsicWidth:3720,pixelHeight:1452,pixelWidth:3720,sizes:\"calc(min(max(100vw, 1px), 1440px) - 100px)\",src:\"https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png\",srcSet:\"https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=512 512w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png 3720w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1452,intrinsicWidth:3720,pixelHeight:1452,pixelWidth:3720,sizes:\"calc(min(max(100vw, 1px), 1440px) - 200px)\",src:\"https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png\",srcSet:\"https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=512 512w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6GwcMBA1k6mXlX7PtSdIomlZaM.png 3720w\"},className:\"framer-14ebhd\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3pai9e\",\"data-framer-name\":\"Workflow\",name:\"Workflow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ft64f\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18l25fm\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"WORKFLOW\"})}),className:\"framer-1h86imw\",\"data-framer-name\":\"WORKFLOW\",fonts:[\"Inter\"],name:\"WORKFLOW\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Step by Step\",/*#__PURE__*/_jsx(\"br\",{}),\"of Works\"]})}),className:\"framer-11sjyw\",\"data-framer-name\":\"Step by Step of Works\",fonts:[\"Inter\"],name:\"Step by Step of Works\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1flfk0b\",\"data-framer-name\":\"Items\",name:\"Items\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mvdpyw\",\"data-framer-name\":\"Line\",name:\"Line\"}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d1vrc5 hidden-1k7zq2i hidden-1g0an4s hidden-1eulioy\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mqkbhw\",\"data-framer-name\":\"Top\",name:\"Top\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-2x54g4-container\",\"data-framer-appear-id\":\"2x54g4\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Workflow,{height:\"100%\",id:\"oy2RpYdbi\",layoutId:\"oy2RpYdbi\",mD6p7Bnpb:addImageAlt({src:\"https://framerusercontent.com/images/wNF79FeT7NWKxE127ubEe19woQ.svg\"},\"\"),SdZSiQwWm:\"Understanding your business needs and goals.\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xqhp_aO4U:\"Consultation\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1wk81nu-container\",\"data-framer-appear-id\":\"1wk81nu\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Workflow,{height:\"100%\",id:\"t_7JWODxm\",layoutId:\"t_7JWODxm\",mD6p7Bnpb:addImageAlt({src:\"https://framerusercontent.com/images/nlMkM2tr72PLuMHhVkcz5xS7kbE.svg\"},\"\"),SdZSiQwWm:\"Creating a customized digital marketing strategy.\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xqhp_aO4U:\"Planning\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-p8wu65 hidden-1k7zq2i\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a5vlxy\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-bs5a5a-container\",\"data-framer-appear-id\":\"bs5a5a\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Workflow,{height:\"100%\",id:\"oomMZqNBy\",layoutId:\"oomMZqNBy\",mD6p7Bnpb:addImageAlt({src:\"https://framerusercontent.com/images/0tJVpuyKGkpUdWLMEBIOK18GT8Q.svg\"},\"\"),SdZSiQwWm:\"Crafting your branding for the best digital masterpiece.\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xqhp_aO4U:\"Execution\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1pblxp-container\",\"data-framer-appear-id\":\"1pblxp\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Workflow,{height:\"100%\",id:\"tAMUm1OXg\",layoutId:\"tAMUm1OXg\",mD6p7Bnpb:addImageAlt({src:\"https://framerusercontent.com/images/7ez5sDxWlRUDBNIK77JSFeVumg.svg\"},\"\"),SdZSiQwWm:\"Making sure the digital release in line with business needs.\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xqhp_aO4U:\"Review\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-lylpzj hidden-1k7zq2i hidden-1g0an4s hidden-1eulioy\",\"data-framer-name\":\"Line\",name:\"Line\"})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19qkbts\",\"data-framer-name\":\"CTA Section\",name:\"CTA Section\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/DwOtWguJn8eXUC8KpxKWPRgoAl4.png\"},className:\"framer-fcohiw\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hk1kg1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{jmC9WFiAE:resolvedLinks5[2]},YJCkl_HvW:{jmC9WFiAE:resolvedLinks5[1]},Zi4AEu2FJ:{jmC9WFiAE:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"qVyadfXpE\",jmC9WFiAE:resolvedLinks5[0],layoutId:\"qVyadfXpE\",variant:\"MtvIeAkFW\",width:\"100%\",yudgrvSht:\"Get Free Consultation\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvopwm\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YJCkl_HvW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:[\"Want to See\",/*#__PURE__*/_jsx(\"br\",{}),\"How We\",/*#__PURE__*/_jsx(\"br\",{}),\"Make Your Business Big?\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:[\"Want to See How We\",/*#__PURE__*/_jsx(\"br\",{}),\"Make Your Business Big?\"]})}),className:\"framer-ad7t0\",\"data-framer-name\":\"Want to See How We Make Your Business Big?\",fonts:[\"Inter\"],name:\"Want to See How We Make Your Business Big?\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",children:\"Let us transform your digital business in just a month. Try our free trial and consultation now.\"})}),className:\"framer-vma1bl\",\"data-framer-name\":\"Let us transform your digital business in just a month. Try our free trial and consultation now.\",fonts:[\"Inter\"],name:\"Let us transform your digital business in just a month. Try our free trial and consultation now.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ef4o47-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"YeiffzWwD\",isMixedBorderRadius:false,layoutId:\"YeiffzWwD\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/DLr3GIis9m9Hl0Qs4Eu6tFhdVI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tejvgr\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u965nh\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hmqlw4\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1degxr\",\"data-framer-name\":\"Items\",name:\"Items\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3mtvlb-container\",children:/*#__PURE__*/_jsx(FAQV1,{height:\"100%\",id:\"XEhjh1aId\",layoutId:\"XEhjh1aId\",rj04C2RPx:\"We offer various flexible payment options tailored to suit your needs, including credit cards, PayPal, and direct bank transfers, we strive to make your purchasing experience convenient.\",style:{width:\"100%\"},variant:\"ZC7cB3M8T\",width:\"100%\",xJyB4_eI0:\"Do you offer flexible payment options?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-75p1qw-container\",children:/*#__PURE__*/_jsx(FAQV1,{height:\"100%\",id:\"jAlXmGLSR\",layoutId:\"jAlXmGLSR\",rj04C2RPx:\"We offer a wide range of digital services including digital marketing, web design, SEO, graphic design, content creation, and social media management.\",style:{width:\"100%\"},variant:\"tKY_f7wQ7\",width:\"100%\",xJyB4_eI0:\"What services do you offer?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j5iwlw-container\",children:/*#__PURE__*/_jsx(FAQV1,{height:\"100%\",id:\"L7tUSMJXx\",layoutId:\"L7tUSMJXx\",rj04C2RPx:\"Typically, you may begin to observe initial indicators of progress within a few months. However, significant and consistent outcomes often materialize over a more extended period. \",style:{width:\"100%\"},variant:\"ZC7cB3M8T\",width:\"100%\",xJyB4_eI0:\"How long does it take to see results?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jcvhkv-container\",children:/*#__PURE__*/_jsx(FAQV1,{height:\"100%\",id:\"HzTrP0UgN\",layoutId:\"HzTrP0UgN\",rj04C2RPx:\"Our team will promptly review your needs and provide a comprehensive quote tailored to meet your specific objectives. We look forward to the opportunity to discuss and cater to your requirements\",style:{width:\"100%\"},variant:\"ZC7cB3M8T\",width:\"100%\",xJyB4_eI0:\"How can I request a quote for your service?\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YJCkl_HvW:{style:{rotate:-90}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nbkuuf\",\"data-framer-name\":\"Element\",name:\"Element\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3qd0ov\",\"data-framer-name\":\"faq_element\",fill:\"black\",intrinsicHeight:340,intrinsicWidth:420,name:\"faq_element\",svg:'<svg width=\"420\" height=\"340\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"420\" height=\"340\"><path fill=\"#D9D9D9\" d=\"M0 0h420v340H0z\"/></mask><g mask=\"url(#a)\" fill=\"#FED67A\"><path d=\"M229 118c0 63.237-51.263 114.5-114.5 114.5H0V118C0 54.763 51.263 3.5 114.5 3.5S229 54.763 229 118Zm0 229c0-63.237 51.263-114.5 114.5-114.5H458V347c0 63.237-51.263 114.5-114.5 114.5S229 410.237 229 347ZM0 347c0 63.237 51.263 114.5 114.5 114.5H229V347c0-63.237-51.263-114.5-114.5-114.5S0 283.763 0 347Zm458-229C458 54.763 406.737 3.5 343.5 3.5H229V118c0 63.237 51.263 114.5 114.5 114.5S458 181.237 458 118Z\"/></g></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a9u3t0\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-color\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},children:\"F.A.Q\"})}),className:\"framer-1qj8n9m\",\"data-framer-name\":\"F.A.Q\",fonts:[\"Inter\"],name:\"F.A.Q\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zi4AEu2FJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-color\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},children:\"Answers to Your Questions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-color\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},children:[\"Answers to\",/*#__PURE__*/_jsx(\"br\",{}),\"Your Questions\"]})}),className:\"framer-1xecv5e\",\"data-framer-name\":\"Answers to Your Questions\",fonts:[\"Inter\"],name:\"Answers to Your Questions\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dt3wb4\",\"data-framer-name\":\"Blog\",name:\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aef9oz\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-34ge7s\",\"data-framer-name\":\"Title + Button\",name:\"Title + Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aerkwm\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMzAw\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"BLOG\"})}),className:\"framer-1a8gnfa\",\"data-framer-name\":\"BLOG\",fonts:[\"GF;Helvetica Neue-300\"],name:\"BLOG\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"Latest From Blog\"})}),className:\"framer-10bzbgj\",\"data-framer-name\":\"Latest From Blog\",fonts:[\"Inter\"],name:\"Latest From Blog\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"egrQ40uM6\"},implicitPathVariables:undefined},{href:{webPageId:\"egrQ40uM6\"},implicitPathVariables:undefined},{href:{webPageId:\"egrQ40uM6\"},implicitPathVariables:undefined},{href:{webPageId:\"egrQ40uM6\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eydkkc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{G8hBdvW_C:resolvedLinks6[2]},YJCkl_HvW:{G8hBdvW_C:resolvedLinks6[1]},Zi4AEu2FJ:{G8hBdvW_C:resolvedLinks6[3]}},children:/*#__PURE__*/_jsx(SecondaryButton,{BIZjDzs3y:\"See More Articles\",G8hBdvW_C:resolvedLinks6[0],height:\"100%\",id:\"JbeFAptzh\",layoutId:\"JbeFAptzh\",variant:\"eBv5VeVvL\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99k2o9\",\"data-framer-name\":\"Items\",name:\"Items\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jpmu1w\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vzNZkL4MB\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"vzNZkL4MB\",direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"vzNZkL4MB\",name:\"MI6eD4eWr\",type:\"Identifier\"},{collection:\"vzNZkL4MB\",name:\"zAJeq4UQ3\",type:\"Identifier\"},{collection:\"vzNZkL4MB\",name:\"lnYhhfWd8\",type:\"Identifier\"},{collection:\"vzNZkL4MB\",name:\"RfBOrzZ7V\",type:\"Identifier\"},{collection:\"vzNZkL4MB\",name:\"jPoSChfJL\",type:\"Identifier\"},{collection:\"vzNZkL4MB\",name:\"ZerSptMOi\",type:\"Identifier\"},{collection:\"vzNZkL4MB\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({id:idvzNZkL4MB,jPoSChfJL:jPoSChfJLvzNZkL4MB,lnYhhfWd8:lnYhhfWd8vzNZkL4MB,MI6eD4eWr:MI6eD4eWrvzNZkL4MB,RfBOrzZ7V:RfBOrzZ7VvzNZkL4MB,zAJeq4UQ3:zAJeq4UQ3vzNZkL4MB,ZerSptMOi:ZerSptMOivzNZkL4MB},i)=>{zAJeq4UQ3vzNZkL4MB!==null&&zAJeq4UQ3vzNZkL4MB!==void 0?zAJeq4UQ3vzNZkL4MB:zAJeq4UQ3vzNZkL4MB=\"\";lnYhhfWd8vzNZkL4MB!==null&&lnYhhfWd8vzNZkL4MB!==void 0?lnYhhfWd8vzNZkL4MB:lnYhhfWd8vzNZkL4MB=\"\";RfBOrzZ7VvzNZkL4MB!==null&&RfBOrzZ7VvzNZkL4MB!==void 0?RfBOrzZ7VvzNZkL4MB:RfBOrzZ7VvzNZkL4MB=\"\";ZerSptMOivzNZkL4MB!==null&&ZerSptMOivzNZkL4MB!==void 0?ZerSptMOivzNZkL4MB:ZerSptMOivzNZkL4MB=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vzNZkL4MB-${idvzNZkL4MB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ZerSptMOi:ZerSptMOivzNZkL4MB},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ZerSptMOi:\"be-the-ultimate-blogger-our-best-tips-for-seo-in-2023\"},unresolvedPathSlugs:{ZerSptMOi:{collectionId:\"wknzkw37V\",collectionItemId:\"CaJ5t_TGZ\"}},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined},{href:{pathVariables:{ZerSptMOi:\"be-the-ultimate-blogger-our-best-tips-for-seo-in-2023\"},unresolvedPathSlugs:{ZerSptMOi:{collectionId:\"wknzkw37V\",collectionItemId:\"CaJ5t_TGZ\"}},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined},{href:{pathVariables:{ZerSptMOi:\"be-the-ultimate-blogger-our-best-tips-for-seo-in-2023\"},unresolvedPathSlugs:{ZerSptMOi:{collectionId:\"wknzkw37V\",collectionItemId:\"CaJ5t_TGZ\"}},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined},{href:{pathVariables:{ZerSptMOi:\"be-the-ultimate-blogger-our-best-tips-for-seo-in-2023\"},unresolvedPathSlugs:{ZerSptMOi:{collectionId:\"wknzkw37V\",collectionItemId:\"CaJ5t_TGZ\"}},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b3iy6m-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{wyBste8L1:resolvedLinks7[2]},YJCkl_HvW:{wyBste8L1:resolvedLinks7[1]},Zi4AEu2FJ:{wyBste8L1:resolvedLinks7[3]}},children:/*#__PURE__*/_jsx(BlogV4,{Ca3e6HPNs:toResponsiveImage(MI6eD4eWrvzNZkL4MB),e6jPASAaG:zAJeq4UQ3vzNZkL4MB,height:\"100%\",id:\"nZ_4ABmii\",layoutId:\"nZ_4ABmii\",PAWCDq4iQ:RfBOrzZ7VvzNZkL4MB,PQMUkvutZ:lnYhhfWd8vzNZkL4MB,style:{width:\"100%\"},width:\"100%\",wyBste8L1:resolvedLinks7[0],XRIcqGT_o:toResponsiveImage(jPoSChfJLvzNZkL4MB)})})})})})})},idvzNZkL4MB);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ui61wh\",\"data-framer-name\":\"Item 2 + 3 + 4\",name:\"Item 2 + 3 + 4\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jy5g8u\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{query:{from:{alias:\"fPCMWE61K\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"fPCMWE61K\",name:\"MI6eD4eWr\",type:\"Identifier\"},{collection:\"fPCMWE61K\",name:\"zAJeq4UQ3\",type:\"Identifier\"},{collection:\"fPCMWE61K\",name:\"lnYhhfWd8\",type:\"Identifier\"},{collection:\"fPCMWE61K\",name:\"RfBOrzZ7V\",type:\"Identifier\"},{collection:\"fPCMWE61K\",name:\"ZerSptMOi\",type:\"Identifier\"},{collection:\"fPCMWE61K\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"fPCMWE61K\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"fPCMWE61K\",name:\"MI6eD4eWr\",type:\"Identifier\"},{collection:\"fPCMWE61K\",name:\"zAJeq4UQ3\",type:\"Identifier\"},{collection:\"fPCMWE61K\",name:\"lnYhhfWd8\",type:\"Identifier\"},{collection:\"fPCMWE61K\",name:\"RfBOrzZ7V\",type:\"Identifier\"},{collection:\"fPCMWE61K\",name:\"ZerSptMOi\",type:\"Identifier\"},{collection:\"fPCMWE61K\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({id:idfPCMWE61K,lnYhhfWd8:lnYhhfWd8fPCMWE61K,MI6eD4eWr:MI6eD4eWrfPCMWE61K,RfBOrzZ7V:RfBOrzZ7VfPCMWE61K,zAJeq4UQ3:zAJeq4UQ3fPCMWE61K,ZerSptMOi:ZerSptMOifPCMWE61K},i)=>{zAJeq4UQ3fPCMWE61K!==null&&zAJeq4UQ3fPCMWE61K!==void 0?zAJeq4UQ3fPCMWE61K:zAJeq4UQ3fPCMWE61K=\"\";lnYhhfWd8fPCMWE61K!==null&&lnYhhfWd8fPCMWE61K!==void 0?lnYhhfWd8fPCMWE61K:lnYhhfWd8fPCMWE61K=\"\";RfBOrzZ7VfPCMWE61K!==null&&RfBOrzZ7VfPCMWE61K!==void 0?RfBOrzZ7VfPCMWE61K:RfBOrzZ7VfPCMWE61K=\"\";ZerSptMOifPCMWE61K!==null&&ZerSptMOifPCMWE61K!==void 0?ZerSptMOifPCMWE61K:ZerSptMOifPCMWE61K=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`fPCMWE61K-${idfPCMWE61K}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ZerSptMOi:ZerSptMOifPCMWE61K},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ZerSptMOi:ZerSptMOifPCMWE61K},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined},{href:{pathVariables:{ZerSptMOi:ZerSptMOifPCMWE61K},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined},{href:{pathVariables:{ZerSptMOi:ZerSptMOifPCMWE61K},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined},{href:{pathVariables:{ZerSptMOi:ZerSptMOifPCMWE61K},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rfkzzy-container\",\"data-framer-name\":\"Item 2\",name:\"Item 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{aH8R6YReO:resolvedLinks8[2]},YJCkl_HvW:{aH8R6YReO:resolvedLinks8[1],variant:\"oCS8wDjg6\"},Zi4AEu2FJ:{aH8R6YReO:resolvedLinks8[3]}},children:/*#__PURE__*/_jsx(BlogV3,{aH8R6YReO:resolvedLinks8[0],deCQ0q_9M:zAJeq4UQ3fPCMWE61K,height:\"100%\",id:\"yblBtZqeJ\",layoutId:\"yblBtZqeJ\",name:\"Item 2\",qLIsgXnI7:toResponsiveImage(MI6eD4eWrfPCMWE61K),style:{width:\"100%\"},tjwf2tcDI:RfBOrzZ7VfPCMWE61K,variant:\"XK5voLp13\",width:\"100%\",yf73hutSQ:lnYhhfWd8fPCMWE61K})})})})})})},idfPCMWE61K);})})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19jrlju\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gpl6qy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qt088ATnj:{variant:\"wE6Y6KPx_\"},YJCkl_HvW:{variant:\"uMykreSIA\"},Zi4AEu2FJ:{variant:\"UGda6_IwW\"}},children:/*#__PURE__*/_jsx(FooterV2,{height:\"100%\",id:\"w6J5zHRJi\",layoutId:\"w6J5zHRJi\",style:{width:\"100%\"},variant:\"PRlEbDR0N\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-L6VYt { background: var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)); }`,\".framer-L6VYt.framer-d32ijn, .framer-L6VYt .framer-d32ijn { display: block; }\",\".framer-L6VYt.framer-1k7zq2i { align-content: center; align-items: center; background-color: var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-L6VYt .framer-13gbmbr-container { bottom: 65px; flex: none; height: auto; position: fixed; right: 20px; width: auto; z-index: 1; }\",\".framer-L6VYt .framer-ct6v5h { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 32px 100px 32px 100px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-L6VYt .framer-1828ovi-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-L6VYt .framer-fr6iy2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1ne1p6v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-m5xkq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-14vuu8p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1pa4nqg, .framer-L6VYt .framer-1db328a, .framer-L6VYt .framer-kvv0ok, .framer-L6VYt .framer-g6ey4t, .framer-L6VYt .framer-1i4ig5u, .framer-L6VYt .framer-1asej04, .framer-L6VYt .framer-76jv7u, .framer-L6VYt .framer-1h86imw, .framer-L6VYt .framer-11sjyw, .framer-L6VYt .framer-ad7t0, .framer-L6VYt .framer-1qj8n9m, .framer-L6VYt .framer-1xecv5e, .framer-L6VYt .framer-1a8gnfa, .framer-L6VYt .framer-10bzbgj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L6VYt .framer-zmstsj { flex: none; height: auto; opacity: 0.75; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-L6VYt .framer-1hp34y4 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L6VYt .framer-hgpyv9-container, .framer-L6VYt .framer-1lkp17k-container, .framer-L6VYt .framer-8j0cxf-container, .framer-L6VYt .framer-xfzysu-container, .framer-L6VYt .framer-eydkkc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-L6VYt .framer-a20ho7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 322px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-lmrnqd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1ebysbj, .framer-L6VYt .framer-129pl4j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L6VYt .framer-1jrih00, .framer-L6VYt .framer-6rabi0, .framer-L6VYt .framer-cai5k, .framer-L6VYt .framer-1r853jc, .framer-L6VYt .framer-16lpjvc, .framer-L6VYt .framer-78wdlg, .framer-L6VYt .framer-1k6gmxp, .framer-L6VYt .framer-b7quvx, .framer-L6VYt .framer-75tl3y, .framer-L6VYt .framer-1o9gkk, .framer-L6VYt .framer-drg26p, .framer-L6VYt .framer-1wtal95, .framer-L6VYt .framer-yujtzv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-L6VYt .framer-k4x2uc, .framer-L6VYt .framer-1wgmput, .framer-L6VYt .framer-1l00v2r { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-L6VYt .framer-1lgz1b6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 169px; }\",\".framer-L6VYt .framer-148azye { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 151px; }\",\".framer-L6VYt .framer-155e9ue { align-content: center; align-items: center; background-color: #f4f4f4; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-12z3ixp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-wl8div, .framer-L6VYt .framer-34ge7s { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-16zpps8, .framer-L6VYt .framer-a9u3t0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.8 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-L6VYt .framer-19yrqz4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1ppdsf0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1uehfhw-container, .framer-L6VYt .framer-3mtvlb-container, .framer-L6VYt .framer-75p1qw-container, .framer-L6VYt .framer-j5iwlw-container, .framer-L6VYt .framer-1jcvhkv-container, .framer-L6VYt .framer-1b3iy6m-container, .framer-L6VYt .framer-1rfkzzy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1m3l0o, .framer-L6VYt .framer-3pai9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-ys192i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-13asber { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1ojodd9, .framer-L6VYt .framer-vma1bl { flex: none; height: auto; opacity: 0.75; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L6VYt .framer-ojkict { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-vtds4t { align-content: center; align-items: center; background-color: var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, #766df1); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 126px; will-change: var(--framer-will-change-override, transform); }\",\".framer-L6VYt .framer-1r532xr, .framer-L6VYt .framer-1pjmrxq, .framer-L6VYt .framer-1gk7dcz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-L6VYt .framer-18rvla6 { align-content: center; align-items: center; background-color: var(--token-b6e1e388-6693-4117-ba3d-6232bbbf978f, #fed67a); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 323px; will-change: var(--framer-will-change-override, transform); }\",\".framer-L6VYt .framer-qbha7h { align-content: center; align-items: center; background-color: var(--token-18cef09e-c68f-469e-8bcb-7a7202717a9e, #6ad9c5); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 113px; will-change: var(--framer-will-change-override, transform); }\",\".framer-L6VYt .framer-1phrlx7 { 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 100px 0px 100px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1l69h6x { aspect-ratio: 3.9 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); opacity: 0.3; position: relative; width: 117px; }\",\".framer-L6VYt .framer-a0ge8q { aspect-ratio: 3.5294117647058822 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); opacity: 0.3; position: relative; width: 120px; }\",\".framer-L6VYt .framer-1m6976e { aspect-ratio: 4.382352941176471 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); opacity: 0.3; position: relative; width: 149px; }\",\".framer-L6VYt .framer-l7impc { aspect-ratio: 4.6923076923076925 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); opacity: 0.3; position: relative; width: 122px; }\",\".framer-L6VYt .framer-sw0qnx { aspect-ratio: 3.2941176470588234 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); opacity: 0.3; position: relative; width: 112px; }\",\".framer-L6VYt .framer-11hrusu { aspect-ratio: 4.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); opacity: 0.3; position: relative; width: 117px; }\",\".framer-L6VYt .framer-yf2vzi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-vul3n0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-nowtot { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-wrgswx, .framer-L6VYt .framer-l1ke7a { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.4 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-L6VYt .framer-1jvsxax { flex: 0.6 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-L6VYt .framer-19ek6oq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 320px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1q4lhdc-container, .framer-L6VYt .framer-psn4oi-container, .framer-L6VYt .framer-1gpl6qy-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-L6VYt .framer-1dry6by-container, .framer-L6VYt .framer-1gwtewc-container, .framer-L6VYt .framer-1dsz8t3-container, .framer-L6VYt .framer-dx61lg-container { height: auto; position: relative; width: 600px; }\",\".framer-L6VYt .framer-1sye1os { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-fd9yid { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-108tnqh { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.45 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 259px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-ixcvkv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-awqvyy { 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-L6VYt .framer-mv3n5t { flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L6VYt .framer-trjz8q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-oo6p1u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-1k99y6c { align-content: center; align-items: center; background-color: var(--token-9f26e582-0c11-4e19-8355-e28d8fcef4b1, #f4f4f4); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-3fc8kd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 100px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-lkmym { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1at7k8k { align-content: center; align-items: center; display: flex; flex: 0.6 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-ks84v1 { flex: 0.8 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-L6VYt .framer-14ebhd { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 485px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-L6VYt .framer-18ft64f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-18l25fm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1flfk0b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-L6VYt .framer-mvdpyw { background-color: rgba(33, 33, 33, 0.16); flex: none; height: 2px; left: -160px; overflow: hidden; position: absolute; right: -149px; top: 26px; z-index: 0; }\",\".framer-L6VYt .framer-1d1vrc5 { background-color: rgba(33, 33, 33, 0.16); flex: none; height: 1px; left: -160px; overflow: hidden; position: absolute; right: -149px; top: 226px; z-index: 0; }\",\".framer-L6VYt .framer-mqkbhw, .framer-L6VYt .framer-a5vlxy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 188px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-L6VYt .framer-2x54g4-container, .framer-L6VYt .framer-1wk81nu-container, .framer-L6VYt .framer-bs5a5a-container, .framer-L6VYt .framer-1pblxp-container { flex: none; height: 188px; position: relative; width: 280px; }\",\".framer-L6VYt .framer-p8wu65 { background-color: rgba(33, 33, 33, 0.16); bottom: 361px; flex: none; height: 1px; left: -160px; overflow: hidden; position: absolute; right: -149px; z-index: 0; }\",\".framer-L6VYt .framer-lylpzj { background-color: rgba(33, 33, 33, 0.16); bottom: 159px; flex: none; height: 1px; left: -80px; overflow: hidden; position: absolute; right: -650px; z-index: 0; }\",\".framer-L6VYt .framer-19qkbts { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-fcohiw { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 590px; justify-content: space-between; max-width: 1440px; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-L6VYt .framer-hk1kg1-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-L6VYt .framer-pvopwm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-L6VYt .framer-ef4o47-container { bottom: 0px; flex: none; left: 0px; max-width: 1440px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-L6VYt .framer-tejvgr { background: radial-gradient(35.5% 50% at 50% 50%, rgba(255, 255, 255, 0.87) 41.53522374833763%, rgba(255, 255, 255, 0) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; bottom: -283px; flex: none; height: 674px; left: -636px; overflow: hidden; position: absolute; right: -102px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-L6VYt .framer-1u965nh { align-content: center; align-items: center; background-color: var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, #766df1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1hmqlw4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 100px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-1degxr { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-1nbkuuf { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 340px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; width: 420px; z-index: 1; }\",\".framer-L6VYt .framer-3qd0ov { aspect-ratio: 1.2352941176470589 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 340px); position: relative; width: 420px; }\",\".framer-L6VYt .framer-dt3wb4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-aef9oz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-1aerkwm { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.7 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-L6VYt .framer-99k2o9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-1jpmu1w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-1ui61wh { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L6VYt .framer-1jy5g8u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-L6VYt .framer-19jrlju { align-content: center; align-items: center; background-color: var(--token-267c98c0-f3e5-410a-939d-4826c308573b, #222222); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-L6VYt.framer-1k7zq2i, .framer-L6VYt .framer-ct6v5h, .framer-L6VYt .framer-fr6iy2, .framer-L6VYt .framer-1ne1p6v, .framer-L6VYt .framer-m5xkq4, .framer-L6VYt .framer-14vuu8p, .framer-L6VYt .framer-1hp34y4, .framer-L6VYt .framer-a20ho7, .framer-L6VYt .framer-1ebysbj, .framer-L6VYt .framer-129pl4j, .framer-L6VYt .framer-1lgz1b6, .framer-L6VYt .framer-148azye, .framer-L6VYt .framer-155e9ue, .framer-L6VYt .framer-12z3ixp, .framer-L6VYt .framer-16zpps8, .framer-L6VYt .framer-19yrqz4, .framer-L6VYt .framer-1ppdsf0, .framer-L6VYt .framer-1m3l0o, .framer-L6VYt .framer-ys192i, .framer-L6VYt .framer-13asber, .framer-L6VYt .framer-ojkict, .framer-L6VYt .framer-vtds4t, .framer-L6VYt .framer-18rvla6, .framer-L6VYt .framer-qbha7h, .framer-L6VYt .framer-yf2vzi, .framer-L6VYt .framer-vul3n0, .framer-L6VYt .framer-nowtot, .framer-L6VYt .framer-wrgswx, .framer-L6VYt .framer-19ek6oq, .framer-L6VYt .framer-1sye1os, .framer-L6VYt .framer-fd9yid, .framer-L6VYt .framer-108tnqh, .framer-L6VYt .framer-ixcvkv, .framer-L6VYt .framer-awqvyy, .framer-L6VYt .framer-trjz8q, .framer-L6VYt .framer-oo6p1u, .framer-L6VYt .framer-1k99y6c, .framer-L6VYt .framer-3fc8kd, .framer-L6VYt .framer-1at7k8k, .framer-L6VYt .framer-l1ke7a, .framer-L6VYt .framer-14ebhd, .framer-L6VYt .framer-3pai9e, .framer-L6VYt .framer-18ft64f, .framer-L6VYt .framer-18l25fm, .framer-L6VYt .framer-1flfk0b, .framer-L6VYt .framer-mqkbhw, .framer-L6VYt .framer-a5vlxy, .framer-L6VYt .framer-19qkbts, .framer-L6VYt .framer-pvopwm, .framer-L6VYt .framer-1u965nh, .framer-L6VYt .framer-1hmqlw4, .framer-L6VYt .framer-1degxr, .framer-L6VYt .framer-1nbkuuf, .framer-L6VYt .framer-a9u3t0, .framer-L6VYt .framer-dt3wb4, .framer-L6VYt .framer-aef9oz, .framer-L6VYt .framer-1aerkwm, .framer-L6VYt .framer-99k2o9, .framer-L6VYt .framer-1jpmu1w, .framer-L6VYt .framer-1ui61wh, .framer-L6VYt .framer-1jy5g8u, .framer-L6VYt .framer-19jrlju { gap: 0px; } .framer-L6VYt.framer-1k7zq2i > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-L6VYt.framer-1k7zq2i > :first-child, .framer-L6VYt .framer-fr6iy2 > :first-child, .framer-L6VYt .framer-1ne1p6v > :first-child, .framer-L6VYt .framer-m5xkq4 > :first-child, .framer-L6VYt .framer-14vuu8p > :first-child, .framer-L6VYt .framer-a20ho7 > :first-child, .framer-L6VYt .framer-1ebysbj > :first-child, .framer-L6VYt .framer-129pl4j > :first-child, .framer-L6VYt .framer-1lgz1b6 > :first-child, .framer-L6VYt .framer-148azye > :first-child, .framer-L6VYt .framer-155e9ue > :first-child, .framer-L6VYt .framer-12z3ixp > :first-child, .framer-L6VYt .framer-16zpps8 > :first-child, .framer-L6VYt .framer-19yrqz4 > :first-child, .framer-L6VYt .framer-1ppdsf0 > :first-child, .framer-L6VYt .framer-ys192i > :first-child, .framer-L6VYt .framer-13asber > :first-child, .framer-L6VYt .framer-vtds4t > :first-child, .framer-L6VYt .framer-18rvla6 > :first-child, .framer-L6VYt .framer-qbha7h > :first-child, .framer-L6VYt .framer-yf2vzi > :first-child, .framer-L6VYt .framer-vul3n0 > :first-child, .framer-L6VYt .framer-wrgswx > :first-child, .framer-L6VYt .framer-108tnqh > :first-child, .framer-L6VYt .framer-ixcvkv > :first-child, .framer-L6VYt .framer-awqvyy > :first-child, .framer-L6VYt .framer-3fc8kd > :first-child, .framer-L6VYt .framer-l1ke7a > :first-child, .framer-L6VYt .framer-18ft64f > :first-child, .framer-L6VYt .framer-18l25fm > :first-child, .framer-L6VYt .framer-19qkbts > :first-child, .framer-L6VYt .framer-pvopwm > :first-child, .framer-L6VYt .framer-1degxr > :first-child, .framer-L6VYt .framer-a9u3t0 > :first-child, .framer-L6VYt .framer-aef9oz > :first-child, .framer-L6VYt .framer-1aerkwm > :first-child, .framer-L6VYt .framer-1jpmu1w > :first-child, .framer-L6VYt .framer-1ui61wh > :first-child, .framer-L6VYt .framer-1jy5g8u > :first-child { margin-top: 0px; } .framer-L6VYt.framer-1k7zq2i > :last-child, .framer-L6VYt .framer-fr6iy2 > :last-child, .framer-L6VYt .framer-1ne1p6v > :last-child, .framer-L6VYt .framer-m5xkq4 > :last-child, .framer-L6VYt .framer-14vuu8p > :last-child, .framer-L6VYt .framer-a20ho7 > :last-child, .framer-L6VYt .framer-1ebysbj > :last-child, .framer-L6VYt .framer-129pl4j > :last-child, .framer-L6VYt .framer-1lgz1b6 > :last-child, .framer-L6VYt .framer-148azye > :last-child, .framer-L6VYt .framer-155e9ue > :last-child, .framer-L6VYt .framer-12z3ixp > :last-child, .framer-L6VYt .framer-16zpps8 > :last-child, .framer-L6VYt .framer-19yrqz4 > :last-child, .framer-L6VYt .framer-1ppdsf0 > :last-child, .framer-L6VYt .framer-ys192i > :last-child, .framer-L6VYt .framer-13asber > :last-child, .framer-L6VYt .framer-vtds4t > :last-child, .framer-L6VYt .framer-18rvla6 > :last-child, .framer-L6VYt .framer-qbha7h > :last-child, .framer-L6VYt .framer-yf2vzi > :last-child, .framer-L6VYt .framer-vul3n0 > :last-child, .framer-L6VYt .framer-wrgswx > :last-child, .framer-L6VYt .framer-108tnqh > :last-child, .framer-L6VYt .framer-ixcvkv > :last-child, .framer-L6VYt .framer-awqvyy > :last-child, .framer-L6VYt .framer-3fc8kd > :last-child, .framer-L6VYt .framer-l1ke7a > :last-child, .framer-L6VYt .framer-18ft64f > :last-child, .framer-L6VYt .framer-18l25fm > :last-child, .framer-L6VYt .framer-19qkbts > :last-child, .framer-L6VYt .framer-pvopwm > :last-child, .framer-L6VYt .framer-1degxr > :last-child, .framer-L6VYt .framer-a9u3t0 > :last-child, .framer-L6VYt .framer-aef9oz > :last-child, .framer-L6VYt .framer-1aerkwm > :last-child, .framer-L6VYt .framer-1jpmu1w > :last-child, .framer-L6VYt .framer-1ui61wh > :last-child, .framer-L6VYt .framer-1jy5g8u > :last-child { margin-bottom: 0px; } .framer-L6VYt .framer-ct6v5h > *, .framer-L6VYt .framer-ojkict > *, .framer-L6VYt .framer-1at7k8k > *, .framer-L6VYt .framer-14ebhd > *, .framer-L6VYt .framer-mqkbhw > *, .framer-L6VYt .framer-a5vlxy > *, .framer-L6VYt .framer-1nbkuuf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-L6VYt .framer-ct6v5h > :first-child, .framer-L6VYt .framer-1hp34y4 > :first-child, .framer-L6VYt .framer-1m3l0o > :first-child, .framer-L6VYt .framer-ojkict > :first-child, .framer-L6VYt .framer-nowtot > :first-child, .framer-L6VYt .framer-19ek6oq > :first-child, .framer-L6VYt .framer-1sye1os > :first-child, .framer-L6VYt .framer-fd9yid > :first-child, .framer-L6VYt .framer-trjz8q > :first-child, .framer-L6VYt .framer-oo6p1u > :first-child, .framer-L6VYt .framer-1k99y6c > :first-child, .framer-L6VYt .framer-1at7k8k > :first-child, .framer-L6VYt .framer-14ebhd > :first-child, .framer-L6VYt .framer-3pai9e > :first-child, .framer-L6VYt .framer-1flfk0b > :first-child, .framer-L6VYt .framer-mqkbhw > :first-child, .framer-L6VYt .framer-a5vlxy > :first-child, .framer-L6VYt .framer-1u965nh > :first-child, .framer-L6VYt .framer-1hmqlw4 > :first-child, .framer-L6VYt .framer-1nbkuuf > :first-child, .framer-L6VYt .framer-dt3wb4 > :first-child, .framer-L6VYt .framer-99k2o9 > :first-child, .framer-L6VYt .framer-19jrlju > :first-child { margin-left: 0px; } .framer-L6VYt .framer-ct6v5h > :last-child, .framer-L6VYt .framer-1hp34y4 > :last-child, .framer-L6VYt .framer-1m3l0o > :last-child, .framer-L6VYt .framer-ojkict > :last-child, .framer-L6VYt .framer-nowtot > :last-child, .framer-L6VYt .framer-19ek6oq > :last-child, .framer-L6VYt .framer-1sye1os > :last-child, .framer-L6VYt .framer-fd9yid > :last-child, .framer-L6VYt .framer-trjz8q > :last-child, .framer-L6VYt .framer-oo6p1u > :last-child, .framer-L6VYt .framer-1k99y6c > :last-child, .framer-L6VYt .framer-1at7k8k > :last-child, .framer-L6VYt .framer-14ebhd > :last-child, .framer-L6VYt .framer-3pai9e > :last-child, .framer-L6VYt .framer-1flfk0b > :last-child, .framer-L6VYt .framer-mqkbhw > :last-child, .framer-L6VYt .framer-a5vlxy > :last-child, .framer-L6VYt .framer-1u965nh > :last-child, .framer-L6VYt .framer-1hmqlw4 > :last-child, .framer-L6VYt .framer-1nbkuuf > :last-child, .framer-L6VYt .framer-dt3wb4 > :last-child, .framer-L6VYt .framer-99k2o9 > :last-child, .framer-L6VYt .framer-19jrlju > :last-child { margin-right: 0px; } .framer-L6VYt .framer-fr6iy2 > *, .framer-L6VYt .framer-a20ho7 > *, .framer-L6VYt .framer-yf2vzi > *, .framer-L6VYt .framer-19qkbts > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-L6VYt .framer-1ne1p6v > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-L6VYt .framer-m5xkq4 > *, .framer-L6VYt .framer-1ui61wh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-L6VYt .framer-14vuu8p > *, .framer-L6VYt .framer-pvopwm > *, .framer-L6VYt .framer-1jy5g8u > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-L6VYt .framer-1hp34y4 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-L6VYt .framer-1ebysbj > *, .framer-L6VYt .framer-129pl4j > *, .framer-L6VYt .framer-1lgz1b6 > *, .framer-L6VYt .framer-148azye > *, .framer-L6VYt .framer-vtds4t > *, .framer-L6VYt .framer-18rvla6 > *, .framer-L6VYt .framer-qbha7h > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-L6VYt .framer-155e9ue > *, .framer-L6VYt .framer-12z3ixp > *, .framer-L6VYt .framer-13asber > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-L6VYt .framer-16zpps8 > *, .framer-L6VYt .framer-wrgswx > *, .framer-L6VYt .framer-awqvyy > *, .framer-L6VYt .framer-l1ke7a > *, .framer-L6VYt .framer-18l25fm > *, .framer-L6VYt .framer-a9u3t0 > *, .framer-L6VYt .framer-1aerkwm > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-L6VYt .framer-19yrqz4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-L6VYt .framer-1ppdsf0 > *, .framer-L6VYt .framer-1jpmu1w > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-L6VYt .framer-1m3l0o > *, .framer-L6VYt .framer-1sye1os > *, .framer-L6VYt .framer-1k99y6c > *, .framer-L6VYt .framer-3pai9e > *, .framer-L6VYt .framer-1u965nh > *, .framer-L6VYt .framer-dt3wb4 > *, .framer-L6VYt .framer-19jrlju > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-L6VYt .framer-ys192i > *, .framer-L6VYt .framer-vul3n0 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-L6VYt .framer-nowtot > * { margin: 0px; margin-left: calc(200px / 2); margin-right: calc(200px / 2); } .framer-L6VYt .framer-19ek6oq > *, .framer-L6VYt .framer-oo6p1u > *, .framer-L6VYt .framer-1flfk0b > *, .framer-L6VYt .framer-99k2o9 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-L6VYt .framer-fd9yid > *, .framer-L6VYt .framer-1hmqlw4 > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-L6VYt .framer-108tnqh > * { margin: 0px; margin-bottom: calc(259px / 2); margin-top: calc(259px / 2); } .framer-L6VYt .framer-ixcvkv > *, .framer-L6VYt .framer-1degxr > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-L6VYt .framer-trjz8q > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-L6VYt .framer-3fc8kd > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-L6VYt .framer-18ft64f > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-L6VYt .framer-aef9oz > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-L6VYt { background: var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)); } .framer-L6VYt.framer-1k7zq2i { gap: 80px; width: 390px; } .framer-L6VYt .framer-ct6v5h { padding: 32px 20px 32px 20px; } .framer-L6VYt .framer-1ne1p6v { gap: 40px; } .framer-L6VYt .framer-m5xkq4, .framer-L6VYt .framer-19qkbts { padding: 0px 20px 0px 20px; } .framer-L6VYt .framer-zmstsj { width: 100%; } .framer-L6VYt .framer-1hp34y4, .framer-L6VYt .framer-1m3l0o, .framer-L6VYt .framer-1sye1os, .framer-L6VYt .framer-1k99y6c, .framer-L6VYt .framer-3pai9e, .framer-L6VYt .framer-1flfk0b, .framer-L6VYt .framer-1u965nh, .framer-L6VYt .framer-99k2o9, .framer-L6VYt .framer-19jrlju { flex-direction: column; } .framer-L6VYt .framer-a20ho7 { height: 246px; width: 583px; } .framer-L6VYt .framer-lmrnqd { flex-direction: column; gap: 10px; justify-content: center; } .framer-L6VYt .framer-1ebysbj, .framer-L6VYt .framer-129pl4j, .framer-L6VYt .framer-1lgz1b6, .framer-L6VYt .framer-148azye { align-content: center; align-items: center; } .framer-L6VYt .framer-155e9ue { padding: 50px 20px 50px 20px; } .framer-L6VYt .framer-wl8div, .framer-L6VYt .framer-34ge7s { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; justify-content: flex-start; } .framer-L6VYt .framer-16zpps8 { flex: none; width: 80%; } .framer-L6VYt .framer-ys192i, .framer-L6VYt .framer-18ft64f { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-L6VYt .framer-18rvla6 { width: 118px; } .framer-L6VYt .framer-1phrlx7 { flex-wrap: wrap; gap: 24px; justify-content: center; padding: 0px; } .framer-L6VYt .framer-yf2vzi { padding: 50px 0px 0px 0px; } .framer-L6VYt .framer-vul3n0 { gap: 40px; padding: 0px 20px 0px 30px; } .framer-L6VYt .framer-nowtot { flex-direction: column; gap: 20px; justify-content: flex-start; padding: 0px; } .framer-L6VYt .framer-wrgswx, .framer-L6VYt .framer-1jvsxax, .framer-L6VYt .framer-psn4oi-container, .framer-L6VYt .framer-l1ke7a, .framer-L6VYt .framer-aef9oz, .framer-L6VYt .framer-1aerkwm, .framer-L6VYt .framer-1jpmu1w, .framer-L6VYt .framer-1gpl6qy-container { flex: none; width: 100%; } .framer-L6VYt .framer-19ek6oq { height: min-content; } .framer-L6VYt .framer-fd9yid { flex: none; flex-direction: column; padding: 0px 20px 0px 20px; width: 100%; } .framer-L6VYt .framer-108tnqh { flex: none; gap: 50px; width: 100%; } .framer-L6VYt .framer-trjz8q { flex: none; flex-direction: column; gap: 40px; width: 100%; } .framer-L6VYt .framer-oo6p1u { flex: none; flex-direction: column; width: 100%; } .framer-L6VYt .framer-3fc8kd { flex: none; gap: 31px; padding: 40px 20px 40px 20px; width: 100%; } .framer-L6VYt .framer-lkmym { flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-L6VYt .framer-1at7k8k { flex: none; width: 60%; } .framer-L6VYt .framer-14ebhd { height: 237px; } .framer-L6VYt .framer-mvdpyw { height: 1px; order: 0; } .framer-L6VYt .framer-1d1vrc5 { order: 2; } .framer-L6VYt .framer-mqkbhw { flex-direction: column; height: min-content; order: 1; width: 100%; } .framer-L6VYt .framer-p8wu65 { order: 3; } .framer-L6VYt .framer-a5vlxy { flex-direction: column; height: min-content; order: 4; width: 100%; z-index: 1; } .framer-L6VYt .framer-lylpzj { order: 5; right: -90px; } .framer-L6VYt .framer-fcohiw { padding: 20px; } .framer-L6VYt .framer-1hmqlw4 { flex: none; flex-direction: column; gap: 40px; padding: 50px 20px 50px 20px; width: 100%; } .framer-L6VYt .framer-1degxr { flex: none; order: 1; width: 100%; } .framer-L6VYt .framer-1nbkuuf { bottom: unset; height: min-content; order: 2; right: -24px; top: -32px; width: min-content; } .framer-L6VYt .framer-3qd0ov { height: var(--framer-aspect-ratio-supported, 130px); width: 161px; } .framer-L6VYt .framer-a9u3t0 { flex: none; order: 0; width: 100%; } .framer-L6VYt .framer-dt3wb4 { flex-direction: column; padding: 0px 20px 0px 30px; } .framer-L6VYt .framer-1ui61wh { flex: none; gap: 30px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-L6VYt.framer-1k7zq2i, .framer-L6VYt .framer-1ne1p6v, .framer-L6VYt .framer-1hp34y4, .framer-L6VYt .framer-lmrnqd, .framer-L6VYt .framer-wl8div, .framer-L6VYt .framer-1m3l0o, .framer-L6VYt .framer-1phrlx7, .framer-L6VYt .framer-vul3n0, .framer-L6VYt .framer-nowtot, .framer-L6VYt .framer-1sye1os, .framer-L6VYt .framer-fd9yid, .framer-L6VYt .framer-108tnqh, .framer-L6VYt .framer-trjz8q, .framer-L6VYt .framer-oo6p1u, .framer-L6VYt .framer-1k99y6c, .framer-L6VYt .framer-3fc8kd, .framer-L6VYt .framer-lkmym, .framer-L6VYt .framer-3pai9e, .framer-L6VYt .framer-1flfk0b, .framer-L6VYt .framer-mqkbhw, .framer-L6VYt .framer-a5vlxy, .framer-L6VYt .framer-1u965nh, .framer-L6VYt .framer-1hmqlw4, .framer-L6VYt .framer-dt3wb4, .framer-L6VYt .framer-34ge7s, .framer-L6VYt .framer-99k2o9, .framer-L6VYt .framer-1ui61wh, .framer-L6VYt .framer-19jrlju { gap: 0px; } .framer-L6VYt.framer-1k7zq2i > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-L6VYt.framer-1k7zq2i > :first-child, .framer-L6VYt .framer-1ne1p6v > :first-child, .framer-L6VYt .framer-1hp34y4 > :first-child, .framer-L6VYt .framer-lmrnqd > :first-child, .framer-L6VYt .framer-wl8div > :first-child, .framer-L6VYt .framer-1m3l0o > :first-child, .framer-L6VYt .framer-vul3n0 > :first-child, .framer-L6VYt .framer-nowtot > :first-child, .framer-L6VYt .framer-1sye1os > :first-child, .framer-L6VYt .framer-fd9yid > :first-child, .framer-L6VYt .framer-108tnqh > :first-child, .framer-L6VYt .framer-trjz8q > :first-child, .framer-L6VYt .framer-oo6p1u > :first-child, .framer-L6VYt .framer-1k99y6c > :first-child, .framer-L6VYt .framer-3fc8kd > :first-child, .framer-L6VYt .framer-lkmym > :first-child, .framer-L6VYt .framer-3pai9e > :first-child, .framer-L6VYt .framer-1flfk0b > :first-child, .framer-L6VYt .framer-mqkbhw > :first-child, .framer-L6VYt .framer-a5vlxy > :first-child, .framer-L6VYt .framer-1u965nh > :first-child, .framer-L6VYt .framer-1hmqlw4 > :first-child, .framer-L6VYt .framer-dt3wb4 > :first-child, .framer-L6VYt .framer-34ge7s > :first-child, .framer-L6VYt .framer-99k2o9 > :first-child, .framer-L6VYt .framer-1ui61wh > :first-child, .framer-L6VYt .framer-19jrlju > :first-child { margin-top: 0px; } .framer-L6VYt.framer-1k7zq2i > :last-child, .framer-L6VYt .framer-1ne1p6v > :last-child, .framer-L6VYt .framer-1hp34y4 > :last-child, .framer-L6VYt .framer-lmrnqd > :last-child, .framer-L6VYt .framer-wl8div > :last-child, .framer-L6VYt .framer-1m3l0o > :last-child, .framer-L6VYt .framer-vul3n0 > :last-child, .framer-L6VYt .framer-nowtot > :last-child, .framer-L6VYt .framer-1sye1os > :last-child, .framer-L6VYt .framer-fd9yid > :last-child, .framer-L6VYt .framer-108tnqh > :last-child, .framer-L6VYt .framer-trjz8q > :last-child, .framer-L6VYt .framer-oo6p1u > :last-child, .framer-L6VYt .framer-1k99y6c > :last-child, .framer-L6VYt .framer-3fc8kd > :last-child, .framer-L6VYt .framer-lkmym > :last-child, .framer-L6VYt .framer-3pai9e > :last-child, .framer-L6VYt .framer-1flfk0b > :last-child, .framer-L6VYt .framer-mqkbhw > :last-child, .framer-L6VYt .framer-a5vlxy > :last-child, .framer-L6VYt .framer-1u965nh > :last-child, .framer-L6VYt .framer-1hmqlw4 > :last-child, .framer-L6VYt .framer-dt3wb4 > :last-child, .framer-L6VYt .framer-34ge7s > :last-child, .framer-L6VYt .framer-99k2o9 > :last-child, .framer-L6VYt .framer-1ui61wh > :last-child, .framer-L6VYt .framer-19jrlju > :last-child { margin-bottom: 0px; } .framer-L6VYt .framer-1ne1p6v > *, .framer-L6VYt .framer-vul3n0 > *, .framer-L6VYt .framer-trjz8q > *, .framer-L6VYt .framer-oo6p1u > *, .framer-L6VYt .framer-lkmym > *, .framer-L6VYt .framer-1flfk0b > *, .framer-L6VYt .framer-1hmqlw4 > *, .framer-L6VYt .framer-99k2o9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-L6VYt .framer-1hp34y4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-L6VYt .framer-lmrnqd > *, .framer-L6VYt .framer-mqkbhw > *, .framer-L6VYt .framer-a5vlxy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-L6VYt .framer-wl8div > *, .framer-L6VYt .framer-34ge7s > *, .framer-L6VYt .framer-1ui61wh > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-L6VYt .framer-1m3l0o > *, .framer-L6VYt .framer-1sye1os > *, .framer-L6VYt .framer-1k99y6c > *, .framer-L6VYt .framer-3pai9e > *, .framer-L6VYt .framer-1u965nh > *, .framer-L6VYt .framer-dt3wb4 > *, .framer-L6VYt .framer-19jrlju > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-L6VYt .framer-1phrlx7 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-L6VYt .framer-1phrlx7 > :first-child { margin-left: 0px; } .framer-L6VYt .framer-1phrlx7 > :last-child { margin-right: 0px; } .framer-L6VYt .framer-nowtot > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-L6VYt .framer-fd9yid > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-L6VYt .framer-108tnqh > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-L6VYt .framer-3fc8kd > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }}`,`@media (min-width: 1200px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-L6VYt { background: var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)); } .framer-L6VYt.framer-1k7zq2i { width: 1200px; } .framer-L6VYt .framer-ct6v5h { padding: 32px 50px 32px 50px; } .framer-L6VYt .framer-1ne1p6v { max-width: 1200px; min-width: 1200px; } .framer-L6VYt .framer-m5xkq4, .framer-L6VYt .framer-lmrnqd, .framer-L6VYt .framer-vul3n0, .framer-L6VYt .framer-fd9yid, .framer-L6VYt .framer-18ft64f, .framer-L6VYt .framer-19qkbts, .framer-L6VYt .framer-dt3wb4 { padding: 0px 50px 0px 50px; } .framer-L6VYt .framer-a20ho7 { height: 293px; } .framer-L6VYt .framer-155e9ue, .framer-L6VYt .framer-1hmqlw4 { padding: 100px 50px 100px 50px; } .framer-L6VYt .framer-ys192i { max-width: 1200px; min-width: 1200px; padding: 0px 50px 0px 50px; } .framer-L6VYt .framer-vtds4t { width: 96px; } .framer-L6VYt .framer-wrgswx, .framer-L6VYt .framer-l1ke7a { flex: 0.5 0 0px; } .framer-L6VYt .framer-3fc8kd { gap: 40px; max-width: 1200px; padding: 100px 50px 100px 50px; } .framer-L6VYt .framer-14ebhd { height: 390px; } .framer-L6VYt .framer-1flfk0b, .framer-L6VYt .framer-99k2o9 { flex-direction: column; } .framer-L6VYt .framer-mqkbhw, .framer-L6VYt .framer-a5vlxy { gap: 200px; height: min-content; width: 100%; } .framer-L6VYt .framer-p8wu65 { bottom: 156px; left: -179px; right: -130px; } .framer-L6VYt .framer-a9u3t0 { flex: 0.7 0 0px; } .framer-L6VYt .framer-1jpmu1w { flex: none; width: 100%; } .framer-L6VYt .framer-1ui61wh { flex: none; flex-direction: row; width: 100%; } .framer-L6VYt .framer-1jy5g8u { align-content: unset; align-items: unset; display: grid; flex: 1 0 0px; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); justify-content: center; width: 1px; } .framer-L6VYt .framer-1rfkzzy-container { align-self: start; height: 100%; justify-self: start; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-L6VYt .framer-3fc8kd, .framer-L6VYt .framer-1flfk0b, .framer-L6VYt .framer-mqkbhw, .framer-L6VYt .framer-a5vlxy, .framer-L6VYt .framer-99k2o9, .framer-L6VYt .framer-1ui61wh, .framer-L6VYt .framer-1jy5g8u { gap: 0px; } .framer-L6VYt .framer-3fc8kd > *, .framer-L6VYt .framer-1flfk0b > *, .framer-L6VYt .framer-99k2o9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-L6VYt .framer-3fc8kd > :first-child, .framer-L6VYt .framer-1flfk0b > :first-child, .framer-L6VYt .framer-99k2o9 > :first-child { margin-top: 0px; } .framer-L6VYt .framer-3fc8kd > :last-child, .framer-L6VYt .framer-1flfk0b > :last-child, .framer-L6VYt .framer-99k2o9 > :last-child { margin-bottom: 0px; } .framer-L6VYt .framer-mqkbhw > *, .framer-L6VYt .framer-a5vlxy > * { margin: 0px; margin-left: calc(200px / 2); margin-right: calc(200px / 2); } .framer-L6VYt .framer-mqkbhw > :first-child, .framer-L6VYt .framer-a5vlxy > :first-child, .framer-L6VYt .framer-1ui61wh > :first-child { margin-left: 0px; } .framer-L6VYt .framer-mqkbhw > :last-child, .framer-L6VYt .framer-a5vlxy > :last-child, .framer-L6VYt .framer-1ui61wh > :last-child { margin-right: 0px; } .framer-L6VYt .framer-1ui61wh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-L6VYt .framer-1jy5g8u > *, .framer-L6VYt .framer-1jy5g8u > :first-child, .framer-L6VYt .framer-1jy5g8u > :last-child { margin: 0px; } }}`,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-L6VYt { background: var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)); } .framer-L6VYt.framer-1k7zq2i { gap: 100px; width: 810px; } .framer-L6VYt .framer-ct6v5h { padding: 32px 50px 32px 50px; } .framer-L6VYt .framer-m5xkq4, .framer-L6VYt .framer-lmrnqd, .framer-L6VYt .framer-ys192i, .framer-L6VYt .framer-vul3n0, .framer-L6VYt .framer-18ft64f, .framer-L6VYt .framer-19qkbts, .framer-L6VYt .framer-dt3wb4 { padding: 0px 50px 0px 50px; } .framer-L6VYt .framer-zmstsj { width: 70%; } .framer-L6VYt .framer-155e9ue, .framer-L6VYt .framer-3fc8kd { padding: 100px 50px 100px 50px; } .framer-L6VYt .framer-18rvla6 { width: 247px; } .framer-L6VYt .framer-1phrlx7 { flex-wrap: wrap; gap: 24px; justify-content: center; } .framer-L6VYt .framer-nowtot { justify-content: flex-start; padding: 0px; } .framer-L6VYt .framer-fd9yid { flex-direction: column; gap: 40px; padding: 0px 50px 0px 50px; } .framer-L6VYt .framer-108tnqh { flex: none; gap: 50px; width: 100%; } .framer-L6VYt .framer-trjz8q, .framer-L6VYt .framer-1jpmu1w, .framer-L6VYt .framer-1ui61wh { flex: none; width: 100%; } .framer-L6VYt .framer-l1ke7a { flex: 0.5 0 0px; } .framer-L6VYt .framer-1flfk0b { align-content: center; align-items: center; flex-direction: column; } .framer-L6VYt .framer-mqkbhw, .framer-L6VYt .framer-a5vlxy { gap: unset; height: min-content; justify-content: space-between; width: 100%; } .framer-L6VYt .framer-p8wu65 { bottom: 160px; } .framer-L6VYt .framer-1hmqlw4 { flex-direction: column; padding: 100px 50px 100px 50px; } .framer-L6VYt .framer-1degxr { flex: none; order: 1; width: 100%; z-index: 1; } .framer-L6VYt .framer-1nbkuuf { order: 2; z-index: 0; } .framer-L6VYt .framer-a9u3t0 { flex: none; order: 0; width: 100%; } .framer-L6VYt .framer-99k2o9 { flex-direction: column; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-L6VYt.framer-1k7zq2i, .framer-L6VYt .framer-1phrlx7, .framer-L6VYt .framer-fd9yid, .framer-L6VYt .framer-108tnqh, .framer-L6VYt .framer-1flfk0b, .framer-L6VYt .framer-mqkbhw, .framer-L6VYt .framer-a5vlxy, .framer-L6VYt .framer-1hmqlw4, .framer-L6VYt .framer-99k2o9 { gap: 0px; } .framer-L6VYt.framer-1k7zq2i > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-L6VYt.framer-1k7zq2i > :first-child, .framer-L6VYt .framer-fd9yid > :first-child, .framer-L6VYt .framer-108tnqh > :first-child, .framer-L6VYt .framer-1flfk0b > :first-child, .framer-L6VYt .framer-1hmqlw4 > :first-child, .framer-L6VYt .framer-99k2o9 > :first-child { margin-top: 0px; } .framer-L6VYt.framer-1k7zq2i > :last-child, .framer-L6VYt .framer-fd9yid > :last-child, .framer-L6VYt .framer-108tnqh > :last-child, .framer-L6VYt .framer-1flfk0b > :last-child, .framer-L6VYt .framer-1hmqlw4 > :last-child, .framer-L6VYt .framer-99k2o9 > :last-child { margin-bottom: 0px; } .framer-L6VYt .framer-1phrlx7 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-L6VYt .framer-1phrlx7 > :first-child { margin-left: 0px; } .framer-L6VYt .framer-1phrlx7 > :last-child { margin-right: 0px; } .framer-L6VYt .framer-fd9yid > *, .framer-L6VYt .framer-1flfk0b > *, .framer-L6VYt .framer-99k2o9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-L6VYt .framer-108tnqh > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-L6VYt .framer-mqkbhw > *, .framer-L6VYt .framer-mqkbhw > :first-child, .framer-L6VYt .framer-mqkbhw > :last-child, .framer-L6VYt .framer-a5vlxy > *, .framer-L6VYt .framer-a5vlxy > :first-child, .framer-L6VYt .framer-a5vlxy > :last-child { margin: 0px; } .framer-L6VYt .framer-1hmqlw4 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8744\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YJCkl_HvW\":{\"layout\":[\"fixed\",\"auto\"]},\"qt088ATnj\":{\"layout\":[\"fixed\",\"auto\"]},\"Zi4AEu2FJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerkMcLtxmLg=withCSS(Component,css,\"framer-L6VYt\");export default FramerkMcLtxmLg;FramerkMcLtxmLg.displayName=\"Homepage V2\";FramerkMcLtxmLg.defaultProps={height:8744,width:1440};addFonts(FramerkMcLtxmLg,[{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\"}]},...ButtonBuy2Fonts,...NavigationFonts,...PrimaryButtonFonts,...SecondaryButtonFonts,...ServicesV2Fonts,...TestimonialV1Fonts,...CarouselFonts,...FeaturedWorkV2Fonts,...WorkflowFonts,...VideoFonts,...FAQV1Fonts,...BlogV4Fonts,...BlogV3Fonts,...FooterV2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkMcLtxmLg\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"8744\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YJCkl_HvW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qt088ATnj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zi4AEu2FJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "author", "date", "height", "id", "link", "photo", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "qLIsgXnI7", "deCQ0q_9M", "yf73hutSQ", "tjwf2tcDI", "aH8R6YReO", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "u", "Image2", "RichText2", "x", "css", "FramerD5VaVALWd", "withCSS", "D5VaVALWd_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "cycleOrder", "variantClassNames", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "name1", "photo", "position", "testimonial", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "g9HCAC9wx", "l9XFp6GLH", "DJ59zmyBc", "dmfgtGcpA", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "SVG", "RichText2", "x", "Image2", "css", "FramerGNTvgCHJo", "withCSS", "GNTvgCHJo_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "author", "authorPhoto", "date", "height", "id", "link", "photo", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Ca3e6HPNs", "e6jPASAaG", "PQMUkvutZ", "PAWCDq4iQ", "XRIcqGT_o", "wyBste8L1", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "Link", "motion", "cx", "serializationHash", "u", "Image2", "RichText2", "x", "css", "FramerrvJ7i7T9u", "withCSS", "rvJ7i7T9u_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "PrimaryButtonFonts", "getFonts", "Kain7XeUB_default", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "description", "duration", "height", "id", "image", "number", "price", "serviceName", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "d4LIBXgMQ", "T0hRHHj7H", "oyM_sOM8y", "d4RoJoN7x", "twUgs5ERh", "MNYt422J9", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1razi2r", "args", "onTap1mfjem5", "onTap1gegqsk", "onTapa28jvb", "onTap7bgm4c", "onTap1di8bvk", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "Image2", "SVG", "Kain7XeUB_default", "css", "Framerv4OAlIwbo", "withCSS", "v4OAlIwbo_default", "addPropertyControls", "ControlType", "addFonts", "PrimaryButtonFonts", "fonts", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "description", "height", "id", "link", "photo", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "tauMfIi0S", "PV8f8iG0y", "YSnPBd5Pl", "dTRe9ZpLd", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "u", "Image2", "RichText2", "x", "css", "FramerzBrFJsR9J", "withCSS", "zBrFJsR9J_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "ButtonBuy2Fonts", "getFonts", "HncYmkhG3_default", "NavigationFonts", "SuP86C0Kg_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "PrimaryButtonFonts", "Kain7XeUB_default", "SecondaryButtonFonts", "PrJYCwVx9_default", "ServicesV2Fonts", "v4OAlIwbo_default", "TestimonialV1Fonts", "GNTvgCHJo_default", "CarouselFonts", "Carousel", "FeaturedWorkV2Fonts", "zBrFJsR9J_default", "WorkflowFonts", "lp4lS5cfa_default", "ContainerWithOptimizedAppearEffect", "Container", "VideoFonts", "Video", "FAQV1Fonts", "Ab3kVBjBv_default", "BlogV4Fonts", "rvJ7i7T9u_default", "BlogV3Fonts", "D5VaVALWd_default", "FooterV2Fonts", "tCfvt1FD4_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "addImageAlt", "image", "alt", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "sBKRkR_HEEZe6pHaKF", "P1GXH2DAPEZe6pHaKF", "hrGISsCpGEZe6pHaKF", "YwV0_yWdDEZe6pHaKF", "xHeoO2nUrEZe6pHaKF", "Ash6QsRCuEZe6pHaKF", "dXNW3d5czEZe6pHaKF", "idEZe6pHaKF", "p9bW775JpU5kC0KUEx", "PhubAzNvRU5kC0KUEx", "bZ6pWFH_dU5kC0KUEx", "WVYJ1S2dsU5kC0KUEx", "idU5kC0KUEx", "MI6eD4eWrvzNZkL4MB", "zAJeq4UQ3vzNZkL4MB", "lnYhhfWd8vzNZkL4MB", "RfBOrzZ7VvzNZkL4MB", "jPoSChfJLvzNZkL4MB", "ZerSptMOivzNZkL4MB", "idvzNZkL4MB", "MI6eD4eWrfPCMWE61K", "zAJeq4UQ3fPCMWE61K", "lnYhhfWd8fPCMWE61K", "RfBOrzZ7VfPCMWE61K", "ZerSptMOifPCMWE61K", "idfPCMWE61K", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "RichText2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Image2", "SVG", "resolvedLinks2", "ChildrenCanSuspend", "pi_t1SB7e_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks3", "yRPVVQ1dB_default", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "wknzkw37V_default", "collection2", "paginationInfo2", "loadMore2", "resolvedLinks7", "collection3", "paginationInfo3", "loadMore3", "resolvedLinks8", "css", "FramerkMcLtxmLg", "withCSS", "kMcLtxmLg_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
