{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/f45qpUyhNgOZnVe9kbMA/vxGaOc6O9QwQk2JCW6Ku/FVXaO_ADa.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===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==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=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>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:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime: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=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},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\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (a2fb474)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import Navigation from\"#framer/local/canvasComponent/cnWGcTdPB/cnWGcTdPB.js\";import*as sharedStyle from\"#framer/local/css/c5pNE_5CD/c5pNE_5CD.js\";import metadataProvider from\"#framer/local/webPageMetadata/FVXaO_ADa/FVXaO_ADa.js\";const NavigationFonts=getFonts(Navigation);const VideoFonts=getFonts(Video);const FormSparkFonts=getFonts(FormSpark);const breakpoints={dOFeA0PWY:\"(max-width: 809px)\",PV5kSEits:\"(min-width: 1280px)\",SjyvT7EeP:\"(min-width: 810px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-z0LJF\";const variantClassNames={dOFeA0PWY:\"framer-v-3xpq3x\",PV5kSEits:\"framer-v-147kzex\",SjyvT7EeP:\"framer-v-d0zq48\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"PV5kSEits\",Phone:\"dOFeA0PWY\",Tablet:\"SjyvT7EeP\"};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:\"PV5kSEits\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...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-z0LJF`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-z0LJF`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"PV5kSEits\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-147kzex\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-198hsgk-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOFeA0PWY:{variant:\"YIcalvO5I\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"syc1PSrtx\",layoutId:\"syc1PSrtx\",style:{width:\"100%\"},variant:\"U9m27B5Yc\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xddnlz\",\"data-framer-name\":\"Frame 62\",name:\"Frame 62\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5f9yk3\",\"data-framer-name\":\"Ellipse 8\",name:\"Ellipse 8\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1im0k6x\",\"data-framer-name\":\"Ellipse 7\",name:\"Ellipse 7\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q045rb\",\"data-framer-name\":\"Ellipse 9\",name:\"Ellipse 9\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ixsvgx\",\"data-framer-name\":\"Ellipse 10\",name:\"Ellipse 10\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xkpoyw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-je7i3r\",\"data-framer-name\":\"Frame 2\",name:\"Frame 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bg986t\",\"data-framer-name\":\"Frame 63\",name:\"Frame 63\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Digital City Advantages\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Digital City Advantages\"})}),className:\"framer-xc9t6v\",\"data-framer-name\":\"EvoMall\",fonts:[\"GF;Inter Tight-700\"],name:\"EvoMall\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"A solution for new generation of shoppers!\"})}),className:\"framer-1v3yqbl\",\"data-framer-name\":\"A mall for new generation of shoppers!\",fonts:[\"GF;Inter Tight-500\"],name:\"A mall for new generation of shoppers!\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PUjb6JFzk\"},nodeId:\"Y887x2scJ\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1x2n2sj framer-r2ejpl\",\"data-framer-name\":\"Frame 1\",name:\"Frame 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"122%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(246, 246, 246, 1)\"},children:\"Request a Demo\"})})}),className:\"framer-n9aabc\",\"data-framer-name\":\"Request a Demo\",fonts:[\"GF;Inter Tight-600\"],name:\"Request a Demo\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOFeA0PWY:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1548,intrinsicWidth:1521,loading:getLoadingLazyAtYPosition(-54.248945022288126),pixelHeight:1548,pixelWidth:1521,positionX:\"center\",positionY:\"center\",sizes:\"350px\",src:\"https://framerusercontent.com/images/3zSp7ijzxBLcvXgkpa9TNoKWd2g.png\",srcSet:\"https://framerusercontent.com/images/3zSp7ijzxBLcvXgkpa9TNoKWd2g.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/3zSp7ijzxBLcvXgkpa9TNoKWd2g.png 1521w\"}},SjyvT7EeP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1548,intrinsicWidth:1521,loading:getLoadingLazyAtYPosition(-53.97999999999979),pixelHeight:1548,pixelWidth:1521,positionX:\"center\",positionY:\"center\",sizes:\"500px\",src:\"https://framerusercontent.com/images/3zSp7ijzxBLcvXgkpa9TNoKWd2g.png\",srcSet:\"https://framerusercontent.com/images/3zSp7ijzxBLcvXgkpa9TNoKWd2g.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/3zSp7ijzxBLcvXgkpa9TNoKWd2g.png 1521w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1548,intrinsicWidth:1521,loading:getLoadingLazyAtYPosition(106.00000000000017),pixelHeight:1548,pixelWidth:1521,positionX:\"center\",positionY:\"center\",sizes:\"500px\",src:\"https://framerusercontent.com/images/3zSp7ijzxBLcvXgkpa9TNoKWd2g.png\",srcSet:\"https://framerusercontent.com/images/3zSp7ijzxBLcvXgkpa9TNoKWd2g.png?scale-down-to=1024 1006w,https://framerusercontent.com/images/3zSp7ijzxBLcvXgkpa9TNoKWd2g.png 1521w\"},className:\"framer-1f4y7fl\",\"data-framer-name\":\"Frame 10921\",name:\"Frame 10921\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pnlae1\",\"data-framer-name\":\"Frame 2\",name:\"Frame 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ehe5xi\",\"data-framer-name\":\"Frame 3\",name:\"Frame 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6m8ke\",\"data-framer-name\":\"Frame 4\",name:\"Frame 4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOFeA0PWY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Digital City Advantages\"})})},SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Digital City Advantages\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Digital City Advantages\"})}),className:\"framer-hwiuge\",\"data-framer-name\":\"Digital City Advantages\",fonts:[\"GF;Inter Tight-700\"],name:\"Digital City Advantages\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"With a minor 1-2% of total CAPEX investment, Evomall concept can amplify your ROI by +1.5% while setting your mall distinctly ahead of competitors.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"With a minor 1-2% of total CAPEX investment, Evomall concept can amplify your ROI by +1.5% while setting your mall distinctly ahead of competitors.\"})})}),className:\"framer-1qjoge4\",\"data-framer-name\":\"With a minor 1-2% of total CAPEX investment, Evomall concept can amplify your ROI by +1.5% while setting your mall distinctly ahead of competitors.\",fonts:[\"GF;Inter Tight-regular\"],name:\"With a minor 1-2% of total CAPEX investment, Evomall concept can amplify your ROI by +1.5% while setting your mall distinctly ahead of competitors.\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2ufbi\",\"data-framer-name\":\"Frame 71\",name:\"Frame 71\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g0l0cv\",\"data-framer-name\":\"Frame 69\",name:\"Frame 69\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a2xy8e\",\"data-border\":true,\"data-framer-name\":\"Frame 36\",name:\"Frame 36\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tl2mmw\",\"data-framer-name\":\"Frame 37\",layout:\"position\",name:\"Frame 37\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 56 56\"><path d=\"M 10 56 C 4.477 56 0 56 0 56 L 0 0 C 0 0 4.477 0 10 0 L 46 0 C 51.523 0 56 0 56 0 L 56 56 C 56 56 51.523 56 46 56 Z\" fill=\"rgb(245, 250, 255)\"></path><path d=\"M 19 25 L 28 18 L 37 25 L 37 36 C 37 36.53 36.789 37.039 36.414 37.414 C 36.039 37.789 35.53 38 35 38 L 21 38 C 20.47 38 19.961 37.789 19.586 37.414 C 19.211 37.039 19 36.53 19 36 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 25 38 L 25 28 L 31 28 L 31 38\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11762954203,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rqpbdi\",\"data-framer-name\":\"Frame 41\",name:\"Frame 41\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Rent pay\"})})}),className:\"framer-oxi1f4\",\"data-framer-name\":\"Rent pay\",fonts:[\"GF;Inter Tight-600\"],name:\"Rent pay\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Make rent payment and manage receipts\"})})}),className:\"framer-1geiawh\",\"data-framer-name\":\"Make rent payment and manage receipts\",fonts:[\"GF;Inter Tight-regular\"],name:\"Make rent payment and manage receipts\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13aiq2u\",\"data-border\":true,\"data-framer-name\":\"Frame 67\",name:\"Frame 67\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dmgf9s\",\"data-framer-name\":\"Frame 42\",layout:\"position\",name:\"Frame 42\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57 56\"><path d=\"M 10.666 56 C 5.143 56 0.666 56 0.666 56 L 0.666 0 C 0.666 0 5.143 0 10.666 0 L 46.666 0 C 52.189 0 56.666 0 56.666 0 L 56.666 56 C 56.666 56 52.189 56 46.666 56 Z\" fill=\"rgb(245, 250, 255)\"></path><path d=\"M 29.166 38 L 29.166 33\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 26.166 24 L 26.166 18\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 32.166 24 L 32.166 18\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 35.166 24 L 35.166 29 C 35.166 30.061 34.745 31.078 33.994 31.828 C 33.244 32.579 32.227 33 31.166 33 L 27.166 33 C 26.105 33 25.088 32.579 24.338 31.828 C 23.587 31.078 23.166 30.061 23.166 29 L 23.166 24 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11917693483,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7hdyod\",\"data-framer-name\":\"Frame 41\",name:\"Frame 41\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Electricity\"})})}),className:\"framer-838cwc\",\"data-framer-name\":\"Electricity\",fonts:[\"GF;Inter Tight-600\"],name:\"Electricity\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Pay for electricity and manage receipts\"})})}),className:\"framer-t5toza\",\"data-framer-name\":\"Pay for electricity and manage receipts\",fonts:[\"GF;Inter Tight-regular\"],name:\"Pay for electricity and manage receipts\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l2ntzv\",\"data-border\":true,\"data-framer-name\":\"Frame 68\",name:\"Frame 68\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11sdjm1\",\"data-framer-name\":\"Frame 37\",layout:\"position\",name:\"Frame 37\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57 56\"><path d=\"M 10.334 56 C 4.811 56 0.334 56 0.334 56 L 0.334 0 C 0.334 0 4.811 0 10.334 0 L 46.334 0 C 51.857 0 56.334 0 56.334 0 L 56.334 56 C 56.334 56 51.857 56 46.334 56 Z\" fill=\"rgb(245, 250, 255)\"></path><path d=\"M 24.834 30.5 C 25.497 30.5 26.133 30.237 26.602 29.768 C 27.071 29.299 27.334 28.663 27.334 28 C 27.334 26.62 26.834 26 26.334 25 C 25.262 22.857 26.11 20.946 28.334 19 C 28.834 21.5 30.334 23.9 32.334 25.5 C 34.334 27.1 35.334 29 35.334 31 C 35.334 31.919 35.153 32.83 34.801 33.679 C 34.449 34.528 33.934 35.3 33.284 35.95 C 32.634 36.6 31.862 37.115 31.013 37.467 C 30.163 37.819 29.253 38 28.334 38 C 27.415 38 26.505 37.819 25.655 37.467 C 24.806 37.115 24.034 36.6 23.384 35.95 C 22.734 35.3 22.219 34.528 21.867 33.679 C 21.515 32.83 21.334 31.919 21.334 31 C 21.334 29.847 21.767 28.706 22.334 28 C 22.334 28.663 22.597 29.299 23.066 29.768 C 23.535 30.237 24.171 30.5 24.834 30.5 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9490521243,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m9dh6n\",\"data-framer-name\":\"Frame 41\",name:\"Frame 41\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Gas\"})})}),className:\"framer-8kvebn\",\"data-framer-name\":\"Gas\",fonts:[\"GF;Inter Tight-600\"],name:\"Gas\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Pay for gas and manage receipts\"})})}),className:\"framer-fjsqpb\",\"data-framer-name\":\"Pay for gas and manage receipts\",fonts:[\"GF;Inter Tight-regular\"],name:\"Pay for gas and manage receipts\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hskqd1\",\"data-framer-name\":\"Frame 71\",name:\"Frame 71\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nd77ui\",\"data-border\":true,\"data-framer-name\":\"Frame 67\",name:\"Frame 67\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-aoeva0\",\"data-framer-name\":\"Frame 37\",layout:\"position\",name:\"Frame 37\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 56 56\"><path d=\"M 10 56 C 4.477 56 0 56 0 56 L 0 0 C 0 0 4.477 0 10 0 L 46 0 C 51.523 0 56 0 56 0 L 56 56 C 56 56 51.523 56 46 56 Z\" fill=\"rgb(245, 250, 255)\"></path><path d=\"M 28 38 C 29.857 38 31.637 37.263 32.95 35.95 C 34.263 34.637 35 32.856 35 31 C 35 29 34 27.1 32 25.5 C 30 23.9 28.5 21.5 28 19 C 27.5 21.5 26 23.9 24 25.5 C 22 27.1 21 29 21 31 C 21 32.856 21.738 34.637 23.05 35.95 C 24.363 37.263 26.143 38 28 38 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10289991965,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dderzt\",\"data-framer-name\":\"Frame 41\",name:\"Frame 41\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Water\"})})}),className:\"framer-5hay3s\",\"data-framer-name\":\"Water\",fonts:[\"GF;Inter Tight-600\"],name:\"Water\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Pay for water and manage receipts\"})})}),className:\"framer-1xzhyyv\",\"data-framer-name\":\"Pay for water and manage receipts\",fonts:[\"GF;Inter Tight-regular\"],name:\"Pay for water and manage receipts\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yidqhf\",\"data-border\":true,\"data-framer-name\":\"Frame 36\",name:\"Frame 36\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rjsluk\",\"data-framer-name\":\"Frame 37\",layout:\"position\",name:\"Frame 37\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57 56\"><path d=\"M 10.666 56 C 5.143 56 0.666 56 0.666 56 L 0.666 0 C 0.666 0 5.143 0 10.666 0 L 46.666 0 C 52.189 0 56.666 0 56.666 0 L 56.666 56 C 56.666 56 52.189 56 46.666 56 Z\" fill=\"rgb(245, 250, 255)\"></path><path d=\"M 29 38 C 34.523 38 39 33.523 39 28 C 39 22.477 34.523 18 29 18 C 23.477 18 19 22.477 19 28 C 19 33.523 23.477 38 29 38 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 29 18 C 26.432 20.696 25 24.277 25 28 C 25 31.723 26.432 35.304 29 38 C 31.568 35.304 33 31.723 33 28 C 33 24.277 31.568 20.696 29 18 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 19 28 L 39 28\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12417849783,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r8e2ol\",\"data-framer-name\":\"Frame 41\",name:\"Frame 41\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Internet\"})})}),className:\"framer-1mrqo7t\",\"data-framer-name\":\"Internet\",fonts:[\"GF;Inter Tight-600\"],name:\"Internet\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Pay for internet and manage receipts\"})})}),className:\"framer-15p7lgp\",\"data-framer-name\":\"Pay for internet and manage receipts\",fonts:[\"GF;Inter Tight-regular\"],name:\"Pay for internet and manage receipts\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oub5az\",\"data-border\":true,\"data-framer-name\":\"Frame 68\",name:\"Frame 68\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-yworvg\",\"data-framer-name\":\"Frame 37\",layout:\"position\",name:\"Frame 37\",opacity:1,radius:10,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57 56\"><path d=\"M 10.334 56 C 4.811 56 0.334 56 0.334 56 L 0.334 0 C 0.334 0 4.811 0 10.334 0 L 46.334 0 C 51.857 0 56.334 0 56.334 0 L 56.334 56 C 56.334 56 51.857 56 46.334 56 Z\" fill=\"rgb(245, 250, 255)\"></path><path d=\"M 28 38 C 33.523 38 38 33.523 38 28 C 38 22.477 33.523 18 28 18 C 22.477 18 18 22.477 18 28 C 18 33.523 22.477 38 28 38 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 25 33 L 25 23 L 29 23 C 29.796 23 30.559 23.316 31.121 23.879 C 31.684 24.441 32 25.204 32 26 C 32 26.796 31.684 27.559 31.121 28.121 C 30.559 28.684 29.796 29 29 29 L 25 29\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(19, 170, 161)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12618933205,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d03p0n\",\"data-framer-name\":\"Frame 41\",name:\"Frame 41\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Parking\"})})}),className:\"framer-12btaqd\",\"data-framer-name\":\"Parking\",fonts:[\"GF;Inter Tight-600\"],name:\"Parking\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgba(43, 46, 97, 1)\"},children:\"Pay for parking and manage receipts\"})})}),className:\"framer-15g3q3w\",\"data-framer-name\":\"Pay for parking and manage receipts\",fonts:[\"GF;Inter Tight-regular\"],name:\"Pay for parking and manage receipts\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h19937\",\"data-framer-name\":\"Frame 26\",name:\"Frame 26\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n8o660\",\"data-framer-name\":\"Frame 30\",name:\"Frame 30\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOFeA0PWY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Features\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(31, 33, 72, 1)\"},children:\"Features\"})})}),className:\"framer-1uwck99\",\"data-framer-name\":\"Features\",fonts:[\"GF;Inter Tight-700\"],name:\"Features\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7gfme0\",\"data-framer-name\":\"Frame 90\",name:\"Frame 90\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8l2l04\",\"data-framer-name\":\"Frame 3\",name:\"Frame 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hgn15z\",\"data-framer-name\":\"Frame 4\",name:\"Frame 4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"New block on top\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"New block on top\"})}),className:\"framer-1yuhzv8\",\"data-framer-name\":\"Improve your logistics efficiency\",fonts:[\"GF;Inter Tight-700\"],name:\"Improve your logistics efficiency\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y90v7c\",\"data-framer-name\":\"Frame 83\",name:\"Frame 83\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10y3puq\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u5gvrh\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8en0gp\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Residential districts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Residential districts\"})}),className:\"framer-8dcgrv\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"GF;Inter Tight-regular\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-53jytm\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mnuvgp\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Commercial/Business districts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Commercial/Business districts\"})}),className:\"framer-jbdvfv\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"GF;Inter Tight-regular\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbqstp\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-hqxor4\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"University campuses/cities\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"University campuses/cities\\xa0\"})}),className:\"framer-9wmxm7\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"GF;Inter Tight-regular\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hrxlq5\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-162tw4p\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Local Marketplace for the city or area\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Local Marketplace for the city or area\"})}),className:\"framer-1m4fu9y\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"GF;Inter Tight-regular\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mmke0s\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kkzu3b-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"DxIhBROeX\",isMixedBorderRadius:false,layoutId:\"DxIhBROeX\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/J3WoS1WD9WyqpwFHVSsL8PTK8.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOFeA0PWY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(3498.5),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"}},SjyvT7EeP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(2619.5),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(2042.25),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"},className:\"framer-8fy0gm\",\"data-framer-name\":\"image 398\",name:\"image 398\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obissb\",\"data-framer-name\":\"Frame 90\",name:\"Frame 90\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u077v9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y8hmga-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"zQrJTK4gC\",isMixedBorderRadius:false,layoutId:\"zQrJTK4gC\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/u2RuzaskyxgKx84XUNCckf86g.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:6.1,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOFeA0PWY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(5357.5),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"}},SjyvT7EeP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(4021.7000000000003),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(2798.5),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"},className:\"framer-afpxsr\",\"data-framer-name\":\"image 398\",name:\"image 398\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u3mmro\",\"data-framer-name\":\"Frame 3\",name:\"Frame 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16hcm10\",\"data-framer-name\":\"Frame 4\",name:\"Frame 4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Benefits for developers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Benefits for developers\"})}),className:\"framer-1yav03n\",\"data-framer-name\":\"Improve your logistics efficiency\",fonts:[\"GF;Inter Tight-700\"],name:\"Improve your logistics efficiency\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bzb725\",\"data-framer-name\":\"Frame 83\",name:\"Frame 83\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jtrvz4\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18c7aer\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1b0y4dk\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Be more attractive to customers: increase property value\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Be more attractive to customers: increase property value\"})}),className:\"framer-1az7zj8\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"GF;Inter Tight-regular\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wzo5gs\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1juhir\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Be more sustainable and eco-friendly: digital twin for daily usage\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Be more sustainable and eco-friendly: digital twin for daily usage\"})}),className:\"framer-80wtuf\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"GF;Inter Tight-regular\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bszn97\",\"data-framer-name\":\"Frame 90\",name:\"Frame 90\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1607yqb\",\"data-framer-name\":\"Frame 3\",name:\"Frame 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17rimea\",\"data-framer-name\":\"Frame 4\",name:\"Frame 4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Benefits for customers:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Benefits for customers:\"})}),className:\"framer-zgc7f6\",\"data-framer-name\":\"Improve your logistics efficiency\",fonts:[\"GF;Inter Tight-700\"],name:\"Improve your logistics efficiency\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aebk15\",\"data-framer-name\":\"Frame 83\",name:\"Frame 83\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vz6i4g\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13qw9ya\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lfopeu\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Quick ordering and service delivery\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Quick ordering and service delivery\"})}),className:\"framer-v3499p\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"GF;Inter Tight-regular\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-whtx2k\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1g5o4wx\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Online payments and booking\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Online payments and booking\"})}),className:\"framer-jtmbmk\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"GF;Inter Tight-regular\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uxbw3u\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13c8xz4\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oafw9n\",\"data-styles-preset\":\"c5pNE_5CD\",style:{\"--framer-text-alignment\":\"left\"},children:\"All in one check-out\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oafw9n\",\"data-styles-preset\":\"c5pNE_5CD\",children:\"All in one check-out\"})}),className:\"framer-f0hil4\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"Inter\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kqd3ib\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8c9smd\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oafw9n\",\"data-styles-preset\":\"c5pNE_5CD\",style:{\"--framer-text-alignment\":\"left\"},children:\"AI-based smart search.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oafw9n\",\"data-styles-preset\":\"c5pNE_5CD\",children:\"AI-based smart search.\"})}),className:\"framer-svt3wh\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"Inter\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvjvt9\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kdnljs\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oafw9n\",\"data-styles-preset\":\"c5pNE_5CD\",style:{\"--framer-text-alignment\":\"left\"},children:\"Personalization promos and discounts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oafw9n\",\"data-styles-preset\":\"c5pNE_5CD\",children:\"Personalization promos and discounts\"})}),className:\"framer-1diran8\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"Inter\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17g92ke\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rhwx3p-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tIgjT1OmB\",isMixedBorderRadius:false,layoutId:\"tIgjT1OmB\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/5aBCwvSkCn3CUtKS2KD5FJ1PAs.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:6.1,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOFeA0PWY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(6954),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"}},SjyvT7EeP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(5168.599999999999),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(3660.75),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"},className:\"framer-agz549\",\"data-framer-name\":\"image 398\",name:\"image 398\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zyovqk\",\"data-framer-name\":\"Frame 90\",name:\"Frame 90\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-szffmo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oxedch-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"OEiSyJAha\",isMixedBorderRadius:false,layoutId:\"OEiSyJAha\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/21wq9qtKT3wGMVhdx9VZwqbx80.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOFeA0PWY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(8103.5),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"}},SjyvT7EeP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(6192.5),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1608,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(4523),pixelHeight:1608,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png\",srcSet:\"https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png?scale-down-to=1024 955w,https://framerusercontent.com/images/lAJSowodTsuQbHoapkZmwqWtjb4.png 1500w\"},className:\"framer-lxlhtv\",\"data-framer-name\":\"image 398\",name:\"image 398\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ettqg\",\"data-framer-name\":\"Frame 3\",name:\"Frame 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9j8xhu\",\"data-framer-name\":\"Frame 4\",name:\"Frame 4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Benefits for merchants and service providers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Benefits for merchants and service providers\"})}),className:\"framer-1wdicjj\",\"data-framer-name\":\"Improve your logistics efficiency\",fonts:[\"GF;Inter Tight-700\"],name:\"Improve your logistics efficiency\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iccb5u\",\"data-framer-name\":\"Frame 83\",name:\"Frame 83\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-157z2li\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-owwhwc\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-115kr3h\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Increase sales and become omnichannel\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Increase sales and become omnichannel\"})}),className:\"framer-jh9tvp\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"GF;Inter Tight-regular\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1etxri2\",\"data-framer-name\":\"Frame 84\",name:\"Frame 84\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11t2wc\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,name:\"Frame\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.403 12.652C16.8853 12.397 17.2888 12.0153 17.5703 11.548C17.8518 11.0807 18.0006 10.5455 18.0006 10C18.0006 9.4545 17.8518 8.91931 17.5703 8.45202C17.2888 7.98473 16.8853 7.60304 16.403 7.34802C16.5638 6.82672 16.5793 6.27145 16.448 5.74197C16.3167 5.21249 16.0435 4.72883 15.6578 4.34303C15.2721 3.95724 14.7885 3.68392 14.2591 3.55247C13.7296 3.42102 13.1744 3.43642 12.653 3.59702C12.3981 3.11453 12.0164 2.71071 11.549 2.42905C11.0816 2.14738 10.5462 1.99854 10.0005 1.99854C9.45482 1.99854 8.91945 2.14738 8.45206 2.42905C7.98467 2.71071 7.60296 3.11453 7.34802 3.59702C6.82672 3.43628 6.27145 3.42073 5.74197 3.55204C5.21249 3.68335 4.72883 3.95654 4.34303 4.34223C3.95724 4.72792 3.68392 5.21151 3.55247 5.74096C3.42102 6.27041 3.43642 6.82567 3.59702 7.34702C3.11453 7.60196 2.71071 7.98367 2.42905 8.45106C2.14738 8.91845 1.99854 9.45382 1.99854 9.99952C1.99854 10.5452 2.14738 11.0806 2.42905 11.548C2.71071 12.0154 3.11453 12.3971 3.59702 12.652C3.43628 13.1733 3.42073 13.7286 3.55204 14.2581C3.68335 14.7876 3.95654 15.2712 4.34223 15.657C4.72792 16.0428 5.21151 16.3161 5.74096 16.4476C6.27041 16.579 6.82567 16.5636 7.34702 16.403C7.60196 16.8855 7.98367 17.2893 8.45106 17.571C8.91845 17.8527 9.45382 18.0015 9.99952 18.0015C10.5452 18.0015 11.0806 17.8527 11.548 17.571C12.0154 17.2893 12.3971 16.8855 12.652 16.403C13.1733 16.5638 13.7286 16.5793 14.2581 16.448C14.7876 16.3167 15.2712 16.0435 15.657 15.6578C16.0428 15.2721 16.3161 14.7885 16.4476 14.2591C16.579 13.7296 16.5636 13.1734 16.403 12.652ZM13.857 8.19202C13.915 8.11231 13.9567 8.02196 13.9798 7.92612C14.0028 7.83029 14.0068 7.73086 13.9914 7.63349C13.9761 7.53613 13.9417 7.44275 13.8902 7.35868C13.8387 7.27461 13.7712 7.2015 13.6915 7.14352C13.6118 7.08554 13.5215 7.04383 13.4256 7.02077C13.3298 6.99771 13.2304 6.99375 13.133 7.00912C13.0356 7.02449 12.9423 7.05888 12.8582 7.11034C12.7741 7.1618 12.701 7.22931 12.643 7.30902L9.16002 12.099L7.28002 10.219C7.2108 10.1474 7.12802 10.0903 7.03649 10.0511C6.94497 10.0118 6.84655 9.99116 6.74696 9.99034C6.64738 9.98952 6.54863 10.0085 6.45648 10.0463C6.36432 10.0841 6.28061 10.1398 6.21022 10.2102C6.13984 10.2807 6.08419 10.3644 6.04652 10.4566C6.00885 10.5488 5.98992 10.6476 5.99083 10.7472C5.99175 10.8468 6.01248 10.9452 6.05183 11.0367C6.09118 11.1281 6.14836 11.2109 6.22002 11.28L8.72002 13.78C8.79665 13.8567 8.88898 13.9158 8.99067 13.9534C9.09235 13.9909 9.20097 14.006 9.30903 13.9976C9.4171 13.9891 9.52205 13.9573 9.61665 13.9044C9.71125 13.8515 9.79326 13.7787 9.85702 13.691L13.857 8.19102V8.19202Z\" fill=\"#13AAA1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SjyvT7EeP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Increase the frequency of orders\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Increase the frequency of orders\"})}),className:\"framer-15pobc8\",\"data-framer-name\":\"It will show all merchants products with smart search among products, categories and shops.\",fonts:[\"GF;Inter Tight-regular\"],name:\"It will show all merchants products with smart search among products, categories and shops.\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7xpf8y\",\"data-framer-name\":\"Frame 6\",name:\"Frame 6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rf1woi\",\"data-framer-name\":\"Frame 17\",name:\"Frame 17\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s45djj\",\"data-framer-name\":\"Frame 3\",name:\"Frame 3\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dje4ay\",\"data-framer-name\":\"Frame 4\",name:\"Frame 4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\"',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(31, 33, 72, 1)\"},children:\"Our Partners\"})})}),className:\"framer-ziu7qn\",\"data-framer-name\":\"Our Partners\",fonts:[\"GF;Inter Tight-700\"],name:\"Our Partners\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dOFeA0PWY:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1035,intrinsicWidth:690,loading:getLoadingLazyAtYPosition(9018.5),pixelHeight:1035,pixelWidth:690,positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 40px)\",src:\"https://framerusercontent.com/images/tJ5GkdTzBmxU2QHVjuc3AuVn78.png\",srcSet:\"https://framerusercontent.com/images/tJ5GkdTzBmxU2QHVjuc3AuVn78.png?scale-down-to=1024 682w,https://framerusercontent.com/images/tJ5GkdTzBmxU2QHVjuc3AuVn78.png 690w\"}},SjyvT7EeP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7143.5),positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 200px)\",src:\"https://framerusercontent.com/images/ZUxqLH02tqXxYv2eFfemh22gyKo.png\",srcSet:\"https://framerusercontent.com/images/ZUxqLH02tqXxYv2eFfemh22gyKo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZUxqLH02tqXxYv2eFfemh22gyKo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZUxqLH02tqXxYv2eFfemh22gyKo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZUxqLH02tqXxYv2eFfemh22gyKo.png 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(5496),positionX:\"center\",positionY:\"center\",sizes:\"1000px\",src:\"https://framerusercontent.com/images/ZUxqLH02tqXxYv2eFfemh22gyKo.png\",srcSet:\"https://framerusercontent.com/images/ZUxqLH02tqXxYv2eFfemh22gyKo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZUxqLH02tqXxYv2eFfemh22gyKo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZUxqLH02tqXxYv2eFfemh22gyKo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZUxqLH02tqXxYv2eFfemh22gyKo.png 4000w\"},className:\"framer-to79mv\",\"data-framer-name\":\"Frame 43015\",name:\"Frame 43015\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cbfkk1\",\"data-framer-name\":\"Frame 25\",name:\"Frame 25\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bng58i\",\"data-framer-name\":\"Frame 24\",name:\"Frame 24\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4h2f4v-container\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-2a297eed-1583-466f-829e-a593ccbcaeb2, rgb(19, 170, 161))\",fontWeight:600,label:\"Send\"},email:{placeholder:\"Email\",value:\"\"},font:true,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"6pnPtscB\",gap:15,height:\"100%\",id:\"TZ_YuRmb_\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(248, 248, 248)\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"TZ_YuRmb_\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17wseob\",\"data-framer-name\":\"Frame 3\",name:\"Frame 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ncfjk\",\"data-framer-name\":\"Frame 4\",name:\"Frame 4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"126%\",\"--framer-text-color\":\"rgb(31, 33, 72)\"},children:\"Do you need any help scaling your retail business?\"})}),className:\"framer-1vma7ga\",\"data-framer-name\":\"Do you need any help scaling your retail business?\",fonts:[\"GF;Inter Tight-700\"],name:\"Do you need any help scaling your retail business?\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"Contact us! We are ready to demonstrate you full \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"rgb(43, 46, 97)\"},children:\"system functionality and discuss customization for you!\"})]}),className:\"framer-8htk7q\",\"data-framer-name\":\"Contact us! We are ready to demonstrate you full system functionality and discuss customization for you!\",fonts:[\"GF;Inter Tight-regular\"],name:\"Contact us! We are ready to demonstrate you full system functionality and discuss customization for you!\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7kqz6a\",\"data-framer-name\":\"Frame 20\",name:\"Frame 20\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We implement innovations in retail and logistics!\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our main goal is to increase the client's income with the most relevant tools. We select only those tools that will allow us to achieve the best results in the optimal timeframe and at the lowest cost.\"})]}),className:\"framer-1fjz52p\",\"data-framer-name\":\"We implement innovations in retail and logistics! Our main goal is to increase the client's income with the most relevant tools. We select only those tools that will allow us to achieve the best results in the optimal timeframe and at the lowest cost.\",fonts:[\"GF;Inter Tight-500\"],name:\"We implement innovations in retail and logistics! Our main goal is to increase the client's income with the most relevant tools. We select only those tools that will allow us to achieve the best results in the optimal timeframe and at the lowest cost.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hmmyr3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12vdrb6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"info@evomall.io\"})}),className:\"framer-ufpgi6\",\"data-framer-name\":\"info@evomall.io\",fonts:[\"GF;Inter Tight-500\"],name:\"info@evomall.io\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtcmVndWxhcg==\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+33643883419\"})}),className:\"framer-yvr75c\",\"data-framer-name\":\"+966568314956\",fonts:[\"GF;Inter Tight-regular\"],name:\"+966568314956\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kh5r94\",\"data-framer-name\":\"Frame 38\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:144,name:\"Frame 38\",svg:'<svg width=\"144\" height=\"24\" viewBox=\"0 0 144 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.0014 3.27271C9.63126 3.27271 9.3338 3.28307 8.40289 3.32543C7.4738 3.36798 6.83962 3.51507 6.28471 3.73089C5.71071 3.9538 5.2238 4.25198 4.73871 4.73725C4.25326 5.22234 3.95507 5.70925 3.73144 6.28307C3.51507 6.83816 3.3678 7.47252 3.32598 8.40125C3.28435 9.33216 3.27344 9.6298 3.27344 12C3.27344 14.3702 3.28398 14.6667 3.32616 15.5976C3.36889 16.5267 3.51598 17.1609 3.73162 17.7158C3.95471 18.2898 4.25289 18.7767 4.73816 19.2618C5.22307 19.7473 5.70998 20.0462 6.28362 20.2691C6.83889 20.4849 7.47326 20.632 8.40216 20.6745C9.33307 20.7169 9.63035 20.7273 12.0003 20.7273C14.3707 20.7273 14.6673 20.7169 15.5982 20.6745C16.5273 20.632 17.1622 20.4849 17.7174 20.2691C18.2913 20.0462 18.7774 19.7473 19.2623 19.2618C19.7478 18.7767 20.046 18.2898 20.2696 17.716C20.4842 17.1609 20.6314 16.5265 20.6751 15.5978C20.7169 14.6669 20.7278 14.3702 20.7278 12C20.7278 9.6298 20.7169 9.33234 20.6751 8.40143C20.6314 7.47234 20.4842 6.83816 20.2696 6.28325C20.046 5.70925 19.7478 5.22234 19.2623 4.73725C18.7769 4.2518 18.2914 3.95361 17.7169 3.73089C17.1605 3.51507 16.526 3.36798 15.5969 3.32543C14.666 3.28307 14.3696 3.27271 11.9987 3.27271H12.0014ZM11.2185 4.84543C11.4509 4.84507 11.7102 4.84543 12.0014 4.84543C14.3316 4.84543 14.6078 4.8538 15.528 4.89561C16.3789 4.93452 16.8407 5.07671 17.1483 5.19616C17.5556 5.35434 17.846 5.54343 18.1513 5.84889C18.4567 6.15434 18.6458 6.44525 18.8043 6.85252C18.9238 7.1598 19.0662 7.62161 19.1049 8.47252C19.1467 9.39252 19.1558 9.66889 19.1558 11.998C19.1558 14.3271 19.1467 14.6034 19.1049 15.5234C19.066 16.3743 18.9238 16.8362 18.8043 17.1434C18.6462 17.5507 18.4567 17.8407 18.1513 18.146C17.8458 18.4514 17.5558 18.6405 17.1483 18.7987C16.8411 18.9187 16.3789 19.0605 15.528 19.0994C14.608 19.1413 14.3316 19.1503 12.0014 19.1503C9.67107 19.1503 9.39489 19.1413 8.47489 19.0994C7.62398 19.0602 7.16216 18.918 6.85435 18.7985C6.44707 18.6403 6.15616 18.4513 5.85071 18.1458C5.54526 17.8403 5.35616 17.5502 5.19762 17.1427C5.07816 16.8354 4.9358 16.3736 4.89707 15.5227C4.85526 14.6027 4.84689 14.3263 4.84689 11.9958C4.84689 9.66525 4.85526 9.39034 4.89707 8.47034C4.93598 7.61943 5.07816 7.15761 5.19762 6.84998C5.3558 6.44271 5.54526 6.1518 5.85071 5.84634C6.15616 5.54089 6.44707 5.3518 6.85435 5.19325C7.16198 5.07325 7.62398 4.93143 8.47489 4.89234C9.27998 4.85598 9.59198 4.84507 11.2185 4.84325V4.84543ZM16.66 6.29452C16.0818 6.29452 15.6127 6.76307 15.6127 7.34143C15.6127 7.91961 16.0818 8.38871 16.66 8.38871C17.2382 8.38871 17.7073 7.91961 17.7073 7.34143C17.7073 6.76325 17.2382 6.29416 16.66 6.29416V6.29452ZM12.0014 7.51816C9.52635 7.51816 7.51962 9.52489 7.51962 12C7.51962 14.4751 9.52635 16.4809 12.0014 16.4809C14.4765 16.4809 16.4825 14.4751 16.4825 12C16.4825 9.52489 14.4765 7.51816 12.0014 7.51816ZM12.0014 9.09089C13.608 9.09089 14.9105 10.3933 14.9105 12C14.9105 13.6065 13.608 14.9091 12.0014 14.9091C10.3947 14.9091 9.09235 13.6065 9.09235 12C9.09235 10.3933 10.3947 9.09089 12.0014 9.09089Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.6911 5.56134C60.545 5.78974 61.2112 6.45842 61.4421 7.31236C62.0461 9.74855 62.0068 14.3545 61.4548 16.8287C61.2264 17.6827 60.5577 18.3488 59.7038 18.5798C57.293 19.1761 46.495 19.1025 44.2238 18.5798C43.3699 18.3514 42.7037 17.6827 42.4728 16.8287C41.9031 14.5067 41.9424 9.59629 42.4601 7.32505C42.6885 6.47111 43.3572 5.80496 44.2111 5.57403C47.434 4.90154 58.5441 5.11851 59.6911 5.56134ZM50.0478 9.10146L55.2247 12.0706L50.0478 15.0397V9.10146Z\" fill=\"white\"/>\\n<path d=\"M96.4098 13.9332L96.8757 11.0589H93.9586V9.19397C93.9586 8.4083 94.3654 7.6408 95.6731 7.6408H97V5.19432C97 5.19432 95.7959 5 94.645 5C92.2426 5 90.6716 6.37562 90.6716 8.86824V11.0589H88V13.9332H90.6716V20.8798C91.2071 20.9595 91.7559 21 92.3151 21C92.8743 21 93.4231 20.9581 93.9586 20.8798V13.9332H96.4098Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M140.667 20.6666H137.106V14.6006C137.106 12.9375 136.474 12.0081 135.158 12.0081C133.726 12.0081 132.977 12.9753 132.977 14.6006V20.6666H129.545V9.11103H132.977V10.6676C132.977 10.6676 134.009 8.75799 136.462 8.75799C138.913 8.75799 140.667 10.2547 140.667 13.3503V20.6666ZM125.45 7.59792C124.281 7.59792 123.334 6.64314 123.334 5.46559C123.334 4.28804 124.281 3.33325 125.45 3.33325C126.62 3.33325 127.566 4.28804 127.566 5.46559C127.566 6.64314 126.62 7.59792 125.45 7.59792ZM123.678 20.6666H127.257V9.11103H123.678V20.6666Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-z0LJF { background: white; }`,\".framer-z0LJF.framer-r2ejpl, .framer-z0LJF .framer-r2ejpl { display: block; }\",\".framer-z0LJF.framer-147kzex { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-z0LJF .framer-198hsgk-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-z0LJF .framer-xddnlz { flex: none; height: 673px; overflow: hidden; position: relative; width: 100%; }\",\".framer-z0LJF .framer-5f9yk3 { -webkit-filter: blur(50px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(177, 131, 250, 0.6) 0%, rgba(182, 136, 252, 0) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(50px); flex: none; height: var(--framer-aspect-ratio-supported, 626px); left: -139px; position: absolute; top: -239px; width: 626px; }\",\".framer-z0LJF .framer-1im0k6x { -webkit-filter: blur(50px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(19, 170, 161, 0.75) 0%, rgba(19, 170, 161, 0.05) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(50px); flex: none; height: var(--framer-aspect-ratio-supported, 666px); left: -324px; position: absolute; top: 91px; width: 666px; }\",\".framer-z0LJF .framer-q045rb { -webkit-filter: blur(50px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(19, 170, 161, 0.83) 0%, rgba(19, 170, 161, 0.05015696585178375) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(50px); flex: none; height: var(--framer-aspect-ratio-supported, 723px); left: 576px; position: absolute; right: -19px; top: 41px; }\",\".framer-z0LJF .framer-1ixsvgx { -webkit-filter: blur(50px); aspect-ratio: 1 / 1; background: radial-gradient(50% 49.99999999999999% at 50% 49.99999999999999%, rgba(177, 131, 250, 0.6) 0%, rgba(182, 136, 252, 0) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -91px; filter: blur(50px); flex: none; height: var(--framer-aspect-ratio-supported, 557px); position: absolute; right: -180px; width: 557px; }\",\".framer-z0LJF .framer-1xkpoyw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; left: calc(50.00000000000002% - 1000px / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(52.89747399702826% - 500px / 2); width: 1000px; }\",\".framer-z0LJF .framer-je7i3r { 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: center; overflow: visible; padding: 0px; position: relative; width: 460px; }\",\".framer-z0LJF .framer-bg986t { 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: min-content; }\",\".framer-z0LJF .framer-xc9t6v, .framer-z0LJF .framer-1v3yqbl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 406px; word-break: break-word; word-wrap: break-word; }\",\".framer-z0LJF .framer-1x2n2sj { align-content: center; align-items: center; background-color: #13aaa1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 14px 24px 14px 24px; position: relative; text-decoration: none; width: min-content; }\",\".framer-z0LJF .framer-n9aabc, .framer-z0LJF .framer-ufpgi6, .framer-z0LJF .framer-yvr75c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-z0LJF .framer-1f4y7fl { flex: none; height: 500px; position: relative; width: 500px; }\",\".framer-z0LJF .framer-pnlae1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 100px 140px 100px 140px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-1ehe5xi { 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: 440px; }\",\".framer-z0LJF .framer-h6m8ke, .framer-z0LJF .framer-hgn15z, .framer-z0LJF .framer-16hcm10, .framer-z0LJF .framer-17rimea, .framer-z0LJF .framer-9j8xhu, .framer-z0LJF .framer-14ncfjk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-hwiuge { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 411px; word-break: break-word; word-wrap: break-word; }\",\".framer-z0LJF .framer-1qjoge4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 409px; word-break: break-word; word-wrap: break-word; }\",\".framer-z0LJF .framer-1f2ufbi { 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: 519px; }\",\".framer-z0LJF .framer-1g0l0cv, .framer-z0LJF .framer-1hskqd1, .framer-z0LJF .framer-1u5gvrh, .framer-z0LJF .framer-53jytm, .framer-z0LJF .framer-1sbqstp, .framer-z0LJF .framer-1hrxlq5, .framer-z0LJF .framer-18c7aer, .framer-z0LJF .framer-1wzo5gs, .framer-z0LJF .framer-13qw9ya, .framer-z0LJF .framer-whtx2k, .framer-z0LJF .framer-owwhwc, .framer-z0LJF .framer-1etxri2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-1a2xy8e, .framer-z0LJF .framer-13aiq2u, .framer-z0LJF .framer-1nd77ui, .framer-z0LJF .framer-yidqhf, .framer-z0LJF .framer-1oub5az { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-z0LJF .framer-1tl2mmw, .framer-z0LJF .framer-aoeva0 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 56px; position: relative; width: 56px; }\",\".framer-z0LJF .framer-rqpbdi, .framer-z0LJF .framer-7hdyod, .framer-z0LJF .framer-m9dh6n, .framer-z0LJF .framer-dderzt, .framer-z0LJF .framer-r8e2ol, .framer-z0LJF .framer-1d03p0n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-oxi1f4, .framer-z0LJF .framer-1geiawh, .framer-z0LJF .framer-838cwc, .framer-z0LJF .framer-t5toza, .framer-z0LJF .framer-8kvebn, .framer-z0LJF .framer-fjsqpb, .framer-z0LJF .framer-5hay3s, .framer-z0LJF .framer-1xzhyyv, .framer-z0LJF .framer-1mrqo7t, .framer-z0LJF .framer-15p7lgp, .framer-z0LJF .framer-12btaqd, .framer-z0LJF .framer-15g3q3w { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 132px; word-break: break-word; word-wrap: break-word; }\",\".framer-z0LJF .framer-dmgf9s, .framer-z0LJF .framer-11sdjm1, .framer-z0LJF .framer-1rjsluk, .framer-z0LJF .framer-yworvg { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 56px; position: relative; width: 57px; }\",\".framer-z0LJF .framer-1l2ntzv { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: auto; justify-content: flex-start; overflow: hidden; padding: 18px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-z0LJF .framer-h19937 { align-content: center; align-items: center; background-color: #f5faff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-1n8o660 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-z0LJF .framer-1uwck99 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 193px; word-break: break-word; word-wrap: break-word; }\",\".framer-z0LJF .framer-7gfme0, .framer-z0LJF .framer-1obissb, .framer-z0LJF .framer-bszn97, .framer-z0LJF .framer-zyovqk { align-content: center; align-items: center; background-color: #f5faff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 82px 140px 82px 140px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-8l2l04, .framer-z0LJF .framer-1u3mmro, .framer-z0LJF .framer-1607yqb, .framer-z0LJF .framer-16ettqg { 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: 460px; }\",\".framer-z0LJF .framer-1yuhzv8, .framer-z0LJF .framer-1yav03n, .framer-z0LJF .framer-zgc7f6, .framer-z0LJF .framer-1wdicjj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\",\".framer-z0LJF .framer-1y90v7c, .framer-z0LJF .framer-bzb725, .framer-z0LJF .framer-aebk15, .framer-z0LJF .framer-1iccb5u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-10y3puq, .framer-z0LJF .framer-1jtrvz4, .framer-z0LJF .framer-1vz6i4g, .framer-z0LJF .framer-157z2li { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-8en0gp, .framer-z0LJF .framer-mnuvgp, .framer-z0LJF .framer-hqxor4, .framer-z0LJF .framer-162tw4p, .framer-z0LJF .framer-1b0y4dk, .framer-z0LJF .framer-1juhir, .framer-z0LJF .framer-lfopeu, .framer-z0LJF .framer-1g5o4wx, .framer-z0LJF .framer-13c8xz4, .framer-z0LJF .framer-8c9smd, .framer-z0LJF .framer-1kdnljs, .framer-z0LJF .framer-115kr3h, .framer-z0LJF .framer-11t2wc { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-z0LJF .framer-8dcgrv, .framer-z0LJF .framer-jbdvfv, .framer-z0LJF .framer-9wmxm7, .framer-z0LJF .framer-1m4fu9y, .framer-z0LJF .framer-1az7zj8, .framer-z0LJF .framer-80wtuf, .framer-z0LJF .framer-v3499p, .framer-z0LJF .framer-jtmbmk, .framer-z0LJF .framer-f0hil4, .framer-z0LJF .framer-svt3wh, .framer-z0LJF .framer-1diran8, .framer-z0LJF .framer-jh9tvp, .framer-z0LJF .framer-15pobc8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 432px; word-break: break-word; word-wrap: break-word; }\",\".framer-z0LJF .framer-mmke0s, .framer-z0LJF .framer-1u077v9, .framer-z0LJF .framer-17g92ke, .framer-z0LJF .framer-szffmo { flex: none; height: 515px; overflow: hidden; position: relative; width: 500px; }\",\".framer-z0LJF .framer-1kkzu3b-container, .framer-z0LJF .framer-y8hmga-container, .framer-z0LJF .framer-rhwx3p-container, .framer-z0LJF .framer-1oxedch-container { flex: none; height: 470px; left: calc(50.00000000000002% - 216px / 2); position: absolute; top: calc(50.679611650485455% - 470px / 2); width: 216px; }\",\".framer-z0LJF .framer-8fy0gm, .framer-z0LJF .framer-afpxsr, .framer-z0LJF .framer-agz549, .framer-z0LJF .framer-lxlhtv { aspect-ratio: 0.970873786407767 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 515px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-z0LJF .framer-1uxbw3u, .framer-z0LJF .framer-1kqd3ib, .framer-z0LJF .framer-pvjvt9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-7xpf8y { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 140px 80px 140px; position: relative; width: 1280px; }\",\".framer-z0LJF .framer-rf1woi { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-s45djj { align-content: center; align-items: center; 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: 628px; }\",\".framer-z0LJF .framer-dje4ay { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 674px; }\",\".framer-z0LJF .framer-ziu7qn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 674px; word-break: break-word; word-wrap: break-word; }\",\".framer-z0LJF .framer-to79mv { flex: none; height: 67px; position: relative; width: 1000px; }\",\".framer-z0LJF .framer-1cbfkk1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 80px 140px 80px 140px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-bng58i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-4h2f4v-container { flex: 1 0 0px; height: 290px; position: relative; width: 1px; }\",\".framer-z0LJF .framer-17wseob { 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: 410px; }\",\".framer-z0LJF .framer-1vma7ga, .framer-z0LJF .framer-8htk7q { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 410px; word-break: break-word; word-wrap: break-word; }\",\".framer-z0LJF .framer-7kqz6a { align-content: flex-start; align-items: flex-start; background-color: #111111; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: 241px; justify-content: center; overflow: hidden; padding: 60px 100px 60px 100px; position: relative; width: 100%; }\",\".framer-z0LJF .framer-1fjz52p { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-z0LJF .framer-1hmmyr3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 371px; }\",\".framer-z0LJF .framer-12vdrb6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 227px; }\",\".framer-z0LJF .framer-kh5r94 { flex: none; height: 24px; position: relative; width: 144px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-z0LJF.framer-147kzex, .framer-z0LJF .framer-1xkpoyw, .framer-z0LJF .framer-je7i3r, .framer-z0LJF .framer-bg986t, .framer-z0LJF .framer-1x2n2sj, .framer-z0LJF .framer-pnlae1, .framer-z0LJF .framer-1ehe5xi, .framer-z0LJF .framer-h6m8ke, .framer-z0LJF .framer-1f2ufbi, .framer-z0LJF .framer-1g0l0cv, .framer-z0LJF .framer-1a2xy8e, .framer-z0LJF .framer-rqpbdi, .framer-z0LJF .framer-13aiq2u, .framer-z0LJF .framer-7hdyod, .framer-z0LJF .framer-1l2ntzv, .framer-z0LJF .framer-m9dh6n, .framer-z0LJF .framer-1hskqd1, .framer-z0LJF .framer-1nd77ui, .framer-z0LJF .framer-dderzt, .framer-z0LJF .framer-yidqhf, .framer-z0LJF .framer-r8e2ol, .framer-z0LJF .framer-1oub5az, .framer-z0LJF .framer-1d03p0n, .framer-z0LJF .framer-h19937, .framer-z0LJF .framer-1n8o660, .framer-z0LJF .framer-7gfme0, .framer-z0LJF .framer-8l2l04, .framer-z0LJF .framer-hgn15z, .framer-z0LJF .framer-1y90v7c, .framer-z0LJF .framer-10y3puq, .framer-z0LJF .framer-1u5gvrh, .framer-z0LJF .framer-53jytm, .framer-z0LJF .framer-1sbqstp, .framer-z0LJF .framer-1hrxlq5, .framer-z0LJF .framer-1obissb, .framer-z0LJF .framer-1u3mmro, .framer-z0LJF .framer-16hcm10, .framer-z0LJF .framer-bzb725, .framer-z0LJF .framer-1jtrvz4, .framer-z0LJF .framer-18c7aer, .framer-z0LJF .framer-1wzo5gs, .framer-z0LJF .framer-bszn97, .framer-z0LJF .framer-1607yqb, .framer-z0LJF .framer-17rimea, .framer-z0LJF .framer-aebk15, .framer-z0LJF .framer-1vz6i4g, .framer-z0LJF .framer-13qw9ya, .framer-z0LJF .framer-whtx2k, .framer-z0LJF .framer-1uxbw3u, .framer-z0LJF .framer-1kqd3ib, .framer-z0LJF .framer-pvjvt9, .framer-z0LJF .framer-zyovqk, .framer-z0LJF .framer-16ettqg, .framer-z0LJF .framer-9j8xhu, .framer-z0LJF .framer-1iccb5u, .framer-z0LJF .framer-157z2li, .framer-z0LJF .framer-owwhwc, .framer-z0LJF .framer-1etxri2, .framer-z0LJF .framer-7xpf8y, .framer-z0LJF .framer-rf1woi, .framer-z0LJF .framer-s45djj, .framer-z0LJF .framer-dje4ay, .framer-z0LJF .framer-1cbfkk1, .framer-z0LJF .framer-bng58i, .framer-z0LJF .framer-17wseob, .framer-z0LJF .framer-14ncfjk, .framer-z0LJF .framer-7kqz6a, .framer-z0LJF .framer-1hmmyr3, .framer-z0LJF .framer-12vdrb6 { gap: 0px; } .framer-z0LJF.framer-147kzex > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-z0LJF.framer-147kzex > :first-child, .framer-z0LJF .framer-je7i3r > :first-child, .framer-z0LJF .framer-bg986t > :first-child, .framer-z0LJF .framer-1ehe5xi > :first-child, .framer-z0LJF .framer-h6m8ke > :first-child, .framer-z0LJF .framer-1f2ufbi > :first-child, .framer-z0LJF .framer-1a2xy8e > :first-child, .framer-z0LJF .framer-rqpbdi > :first-child, .framer-z0LJF .framer-13aiq2u > :first-child, .framer-z0LJF .framer-7hdyod > :first-child, .framer-z0LJF .framer-1l2ntzv > :first-child, .framer-z0LJF .framer-m9dh6n > :first-child, .framer-z0LJF .framer-1nd77ui > :first-child, .framer-z0LJF .framer-dderzt > :first-child, .framer-z0LJF .framer-yidqhf > :first-child, .framer-z0LJF .framer-r8e2ol > :first-child, .framer-z0LJF .framer-1oub5az > :first-child, .framer-z0LJF .framer-1d03p0n > :first-child, .framer-z0LJF .framer-h19937 > :first-child, .framer-z0LJF .framer-1n8o660 > :first-child, .framer-z0LJF .framer-8l2l04 > :first-child, .framer-z0LJF .framer-hgn15z > :first-child, .framer-z0LJF .framer-1y90v7c > :first-child, .framer-z0LJF .framer-10y3puq > :first-child, .framer-z0LJF .framer-1u3mmro > :first-child, .framer-z0LJF .framer-16hcm10 > :first-child, .framer-z0LJF .framer-bzb725 > :first-child, .framer-z0LJF .framer-1jtrvz4 > :first-child, .framer-z0LJF .framer-1607yqb > :first-child, .framer-z0LJF .framer-17rimea > :first-child, .framer-z0LJF .framer-aebk15 > :first-child, .framer-z0LJF .framer-1vz6i4g > :first-child, .framer-z0LJF .framer-16ettqg > :first-child, .framer-z0LJF .framer-9j8xhu > :first-child, .framer-z0LJF .framer-1iccb5u > :first-child, .framer-z0LJF .framer-157z2li > :first-child, .framer-z0LJF .framer-7xpf8y > :first-child, .framer-z0LJF .framer-rf1woi > :first-child, .framer-z0LJF .framer-s45djj > :first-child, .framer-z0LJF .framer-dje4ay > :first-child, .framer-z0LJF .framer-1cbfkk1 > :first-child, .framer-z0LJF .framer-17wseob > :first-child, .framer-z0LJF .framer-14ncfjk > :first-child, .framer-z0LJF .framer-1hmmyr3 > :first-child, .framer-z0LJF .framer-12vdrb6 > :first-child { margin-top: 0px; } .framer-z0LJF.framer-147kzex > :last-child, .framer-z0LJF .framer-je7i3r > :last-child, .framer-z0LJF .framer-bg986t > :last-child, .framer-z0LJF .framer-1ehe5xi > :last-child, .framer-z0LJF .framer-h6m8ke > :last-child, .framer-z0LJF .framer-1f2ufbi > :last-child, .framer-z0LJF .framer-1a2xy8e > :last-child, .framer-z0LJF .framer-rqpbdi > :last-child, .framer-z0LJF .framer-13aiq2u > :last-child, .framer-z0LJF .framer-7hdyod > :last-child, .framer-z0LJF .framer-1l2ntzv > :last-child, .framer-z0LJF .framer-m9dh6n > :last-child, .framer-z0LJF .framer-1nd77ui > :last-child, .framer-z0LJF .framer-dderzt > :last-child, .framer-z0LJF .framer-yidqhf > :last-child, .framer-z0LJF .framer-r8e2ol > :last-child, .framer-z0LJF .framer-1oub5az > :last-child, .framer-z0LJF .framer-1d03p0n > :last-child, .framer-z0LJF .framer-h19937 > :last-child, .framer-z0LJF .framer-1n8o660 > :last-child, .framer-z0LJF .framer-8l2l04 > :last-child, .framer-z0LJF .framer-hgn15z > :last-child, .framer-z0LJF .framer-1y90v7c > :last-child, .framer-z0LJF .framer-10y3puq > :last-child, .framer-z0LJF .framer-1u3mmro > :last-child, .framer-z0LJF .framer-16hcm10 > :last-child, .framer-z0LJF .framer-bzb725 > :last-child, .framer-z0LJF .framer-1jtrvz4 > :last-child, .framer-z0LJF .framer-1607yqb > :last-child, .framer-z0LJF .framer-17rimea > :last-child, .framer-z0LJF .framer-aebk15 > :last-child, .framer-z0LJF .framer-1vz6i4g > :last-child, .framer-z0LJF .framer-16ettqg > :last-child, .framer-z0LJF .framer-9j8xhu > :last-child, .framer-z0LJF .framer-1iccb5u > :last-child, .framer-z0LJF .framer-157z2li > :last-child, .framer-z0LJF .framer-7xpf8y > :last-child, .framer-z0LJF .framer-rf1woi > :last-child, .framer-z0LJF .framer-s45djj > :last-child, .framer-z0LJF .framer-dje4ay > :last-child, .framer-z0LJF .framer-1cbfkk1 > :last-child, .framer-z0LJF .framer-17wseob > :last-child, .framer-z0LJF .framer-14ncfjk > :last-child, .framer-z0LJF .framer-1hmmyr3 > :last-child, .framer-z0LJF .framer-12vdrb6 > :last-child { margin-bottom: 0px; } .framer-z0LJF .framer-1xkpoyw > *, .framer-z0LJF .framer-1x2n2sj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-z0LJF .framer-1xkpoyw > :first-child, .framer-z0LJF .framer-1x2n2sj > :first-child, .framer-z0LJF .framer-pnlae1 > :first-child, .framer-z0LJF .framer-1g0l0cv > :first-child, .framer-z0LJF .framer-1hskqd1 > :first-child, .framer-z0LJF .framer-7gfme0 > :first-child, .framer-z0LJF .framer-1u5gvrh > :first-child, .framer-z0LJF .framer-53jytm > :first-child, .framer-z0LJF .framer-1sbqstp > :first-child, .framer-z0LJF .framer-1hrxlq5 > :first-child, .framer-z0LJF .framer-1obissb > :first-child, .framer-z0LJF .framer-18c7aer > :first-child, .framer-z0LJF .framer-1wzo5gs > :first-child, .framer-z0LJF .framer-bszn97 > :first-child, .framer-z0LJF .framer-13qw9ya > :first-child, .framer-z0LJF .framer-whtx2k > :first-child, .framer-z0LJF .framer-1uxbw3u > :first-child, .framer-z0LJF .framer-1kqd3ib > :first-child, .framer-z0LJF .framer-pvjvt9 > :first-child, .framer-z0LJF .framer-zyovqk > :first-child, .framer-z0LJF .framer-owwhwc > :first-child, .framer-z0LJF .framer-1etxri2 > :first-child, .framer-z0LJF .framer-bng58i > :first-child, .framer-z0LJF .framer-7kqz6a > :first-child { margin-left: 0px; } .framer-z0LJF .framer-1xkpoyw > :last-child, .framer-z0LJF .framer-1x2n2sj > :last-child, .framer-z0LJF .framer-pnlae1 > :last-child, .framer-z0LJF .framer-1g0l0cv > :last-child, .framer-z0LJF .framer-1hskqd1 > :last-child, .framer-z0LJF .framer-7gfme0 > :last-child, .framer-z0LJF .framer-1u5gvrh > :last-child, .framer-z0LJF .framer-53jytm > :last-child, .framer-z0LJF .framer-1sbqstp > :last-child, .framer-z0LJF .framer-1hrxlq5 > :last-child, .framer-z0LJF .framer-1obissb > :last-child, .framer-z0LJF .framer-18c7aer > :last-child, .framer-z0LJF .framer-1wzo5gs > :last-child, .framer-z0LJF .framer-bszn97 > :last-child, .framer-z0LJF .framer-13qw9ya > :last-child, .framer-z0LJF .framer-whtx2k > :last-child, .framer-z0LJF .framer-1uxbw3u > :last-child, .framer-z0LJF .framer-1kqd3ib > :last-child, .framer-z0LJF .framer-pvjvt9 > :last-child, .framer-z0LJF .framer-zyovqk > :last-child, .framer-z0LJF .framer-owwhwc > :last-child, .framer-z0LJF .framer-1etxri2 > :last-child, .framer-z0LJF .framer-bng58i > :last-child, .framer-z0LJF .framer-7kqz6a > :last-child { margin-right: 0px; } .framer-z0LJF .framer-je7i3r > *, .framer-z0LJF .framer-1ehe5xi > *, .framer-z0LJF .framer-8l2l04 > *, .framer-z0LJF .framer-1u3mmro > *, .framer-z0LJF .framer-1607yqb > *, .framer-z0LJF .framer-16ettqg > *, .framer-z0LJF .framer-s45djj > *, .framer-z0LJF .framer-17wseob > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-z0LJF .framer-bg986t > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-z0LJF .framer-pnlae1 > *, .framer-z0LJF .framer-bng58i > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-z0LJF .framer-h6m8ke > *, .framer-z0LJF .framer-1a2xy8e > *, .framer-z0LJF .framer-13aiq2u > *, .framer-z0LJF .framer-1l2ntzv > *, .framer-z0LJF .framer-1nd77ui > *, .framer-z0LJF .framer-yidqhf > *, .framer-z0LJF .framer-1oub5az > *, .framer-z0LJF .framer-1n8o660 > *, .framer-z0LJF .framer-hgn15z > *, .framer-z0LJF .framer-16hcm10 > *, .framer-z0LJF .framer-17rimea > *, .framer-z0LJF .framer-9j8xhu > *, .framer-z0LJF .framer-dje4ay > *, .framer-z0LJF .framer-14ncfjk > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-z0LJF .framer-1f2ufbi > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-z0LJF .framer-1g0l0cv > *, .framer-z0LJF .framer-1hskqd1 > *, .framer-z0LJF .framer-1u5gvrh > *, .framer-z0LJF .framer-53jytm > *, .framer-z0LJF .framer-1sbqstp > *, .framer-z0LJF .framer-1hrxlq5 > *, .framer-z0LJF .framer-18c7aer > *, .framer-z0LJF .framer-1wzo5gs > *, .framer-z0LJF .framer-13qw9ya > *, .framer-z0LJF .framer-whtx2k > *, .framer-z0LJF .framer-1uxbw3u > *, .framer-z0LJF .framer-1kqd3ib > *, .framer-z0LJF .framer-pvjvt9 > *, .framer-z0LJF .framer-owwhwc > *, .framer-z0LJF .framer-1etxri2 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-z0LJF .framer-rqpbdi > *, .framer-z0LJF .framer-7hdyod > *, .framer-z0LJF .framer-m9dh6n > *, .framer-z0LJF .framer-dderzt > *, .framer-z0LJF .framer-r8e2ol > *, .framer-z0LJF .framer-1d03p0n > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-z0LJF .framer-h19937 > *, .framer-z0LJF .framer-rf1woi > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-z0LJF .framer-7gfme0 > *, .framer-z0LJF .framer-1obissb > *, .framer-z0LJF .framer-bszn97 > *, .framer-z0LJF .framer-zyovqk > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-z0LJF .framer-1y90v7c > *, .framer-z0LJF .framer-bzb725 > *, .framer-z0LJF .framer-aebk15 > *, .framer-z0LJF .framer-1iccb5u > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-z0LJF .framer-10y3puq > *, .framer-z0LJF .framer-1jtrvz4 > *, .framer-z0LJF .framer-1vz6i4g > *, .framer-z0LJF .framer-157z2li > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-z0LJF .framer-7xpf8y > *, .framer-z0LJF .framer-1cbfkk1 > *, .framer-z0LJF .framer-1hmmyr3 > *, .framer-z0LJF .framer-12vdrb6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-z0LJF .framer-7kqz6a > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } }\",...sharedStyle.css,'.framer-z0LJF[data-border=\"true\"]::after, .framer-z0LJF [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',`@media (min-width: 810px) and (max-width: 1279px) { .${metadata.bodyClassName}-framer-z0LJF { background: white; } .framer-z0LJF.framer-147kzex { width: 810px; } .framer-z0LJF .framer-xddnlz { height: 908px; } .framer-z0LJF .framer-q045rb { height: var(--framer-aspect-ratio-supported, 253px); } .framer-z0LJF .framer-1xkpoyw { flex-direction: column; gap: 40px; height: min-content; left: 50%; top: 52%; transform: translate(-50%, -50%); width: 792px; } .framer-z0LJF .framer-je7i3r { align-content: center; align-items: center; order: 1; } .framer-z0LJF .framer-bg986t, .framer-z0LJF .framer-hgn15z, .framer-z0LJF .framer-16hcm10, .framer-z0LJF .framer-17rimea, .framer-z0LJF .framer-9j8xhu { align-content: center; align-items: center; justify-content: center; } .framer-z0LJF .framer-1f4y7fl, .framer-z0LJF .framer-mmke0s { order: 0; } .framer-z0LJF .framer-pnlae1 { flex-direction: column; justify-content: flex-start; padding: 80px 100px 80px 100px; } .framer-z0LJF .framer-1ehe5xi, .framer-z0LJF .framer-hwiuge, .framer-z0LJF .framer-1qjoge4, .framer-z0LJF .framer-1f2ufbi, .framer-z0LJF .framer-1n8o660, .framer-z0LJF .framer-1uwck99, .framer-z0LJF .framer-1yuhzv8, .framer-z0LJF .framer-1yav03n, .framer-z0LJF .framer-zgc7f6, .framer-z0LJF .framer-1wdicjj, .framer-z0LJF .framer-to79mv, .framer-z0LJF .framer-1vma7ga, .framer-z0LJF .framer-8htk7q { width: 100%; } .framer-z0LJF .framer-h19937 { justify-content: center; padding: 100px 100px 0px 100px; } .framer-z0LJF .framer-7gfme0, .framer-z0LJF .framer-1obissb, .framer-z0LJF .framer-bszn97, .framer-z0LJF .framer-zyovqk { flex-direction: column; padding: 100px; } .framer-z0LJF .framer-8l2l04 { justify-content: center; order: 1; width: 100%; } .framer-z0LJF .framer-1y90v7c, .framer-z0LJF .framer-1u5gvrh, .framer-z0LJF .framer-53jytm, .framer-z0LJF .framer-1sbqstp, .framer-z0LJF .framer-1hrxlq5, .framer-z0LJF .framer-1jtrvz4, .framer-z0LJF .framer-18c7aer, .framer-z0LJF .framer-1wzo5gs, .framer-z0LJF .framer-aebk15, .framer-z0LJF .framer-1vz6i4g, .framer-z0LJF .framer-13qw9ya, .framer-z0LJF .framer-whtx2k, .framer-z0LJF .framer-1iccb5u, .framer-z0LJF .framer-157z2li, .framer-z0LJF .framer-owwhwc, .framer-z0LJF .framer-1etxri2, .framer-z0LJF .framer-1hmmyr3 { width: min-content; } .framer-z0LJF .framer-10y3puq, .framer-z0LJF .framer-bzb725 { justify-content: center; width: min-content; } .framer-z0LJF .framer-8dcgrv, .framer-z0LJF .framer-jbdvfv, .framer-z0LJF .framer-9wmxm7, .framer-z0LJF .framer-1m4fu9y, .framer-z0LJF .framer-1az7zj8, .framer-z0LJF .framer-80wtuf, .framer-z0LJF .framer-v3499p, .framer-z0LJF .framer-jtmbmk, .framer-z0LJF .framer-f0hil4, .framer-z0LJF .framer-svt3wh, .framer-z0LJF .framer-1diran8, .framer-z0LJF .framer-jh9tvp, .framer-z0LJF .framer-15pobc8 { white-space: pre; width: auto; } .framer-z0LJF .framer-1u077v9, .framer-z0LJF .framer-17g92ke, .framer-z0LJF .framer-szffmo { order: 1; } .framer-z0LJF .framer-1u3mmro, .framer-z0LJF .framer-1607yqb, .framer-z0LJF .framer-16ettqg { justify-content: center; order: 0; width: 100%; } .framer-z0LJF .framer-1uxbw3u, .framer-z0LJF .framer-1kqd3ib, .framer-z0LJF .framer-pvjvt9 { align-content: flex-start; align-items: flex-start; width: min-content; } .framer-z0LJF .framer-7xpf8y { padding: 80px 100px 80px 100px; width: 100%; } .framer-z0LJF .framer-1cbfkk1 { padding: 40px 100px 80px 100px; width: 812px; } .framer-z0LJF .framer-bng58i { flex-direction: column; } .framer-z0LJF .framer-4h2f4v-container { flex: none; order: 1; width: 100%; } .framer-z0LJF .framer-17wseob { order: 0; width: 100%; } .framer-z0LJF .framer-7kqz6a { height: min-content; padding: 40px 100px 40px 100px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-z0LJF .framer-1xkpoyw, .framer-z0LJF .framer-pnlae1, .framer-z0LJF .framer-7gfme0, .framer-z0LJF .framer-1obissb, .framer-z0LJF .framer-bszn97, .framer-z0LJF .framer-zyovqk, .framer-z0LJF .framer-bng58i { gap: 0px; } .framer-z0LJF .framer-1xkpoyw > *, .framer-z0LJF .framer-7gfme0 > *, .framer-z0LJF .framer-1obissb > *, .framer-z0LJF .framer-bszn97 > *, .framer-z0LJF .framer-zyovqk > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-z0LJF .framer-1xkpoyw > :first-child, .framer-z0LJF .framer-pnlae1 > :first-child, .framer-z0LJF .framer-7gfme0 > :first-child, .framer-z0LJF .framer-1obissb > :first-child, .framer-z0LJF .framer-bszn97 > :first-child, .framer-z0LJF .framer-zyovqk > :first-child, .framer-z0LJF .framer-bng58i > :first-child { margin-top: 0px; } .framer-z0LJF .framer-1xkpoyw > :last-child, .framer-z0LJF .framer-pnlae1 > :last-child, .framer-z0LJF .framer-7gfme0 > :last-child, .framer-z0LJF .framer-1obissb > :last-child, .framer-z0LJF .framer-bszn97 > :last-child, .framer-z0LJF .framer-zyovqk > :last-child, .framer-z0LJF .framer-bng58i > :last-child { margin-bottom: 0px; } .framer-z0LJF .framer-pnlae1 > *, .framer-z0LJF .framer-bng58i > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-z0LJF { background: white; } .framer-z0LJF.framer-147kzex { width: 390px; } .framer-z0LJF .framer-xddnlz { height: 750px; } .framer-z0LJF .framer-1xkpoyw { flex-direction: column; gap: 40px; height: min-content; left: 0px; padding: 20px; right: 0px; top: 53%; transform: translateY(-50%); width: unset; } .framer-z0LJF .framer-je7i3r, .framer-z0LJF .framer-8l2l04 { order: 1; width: 100%; } .framer-z0LJF .framer-bg986t, .framer-z0LJF .framer-xc9t6v, .framer-z0LJF .framer-1v3yqbl, .framer-z0LJF .framer-1ehe5xi, .framer-z0LJF .framer-1qjoge4, .framer-z0LJF .framer-1f2ufbi, .framer-z0LJF .framer-1geiawh, .framer-z0LJF .framer-t5toza, .framer-z0LJF .framer-fjsqpb, .framer-z0LJF .framer-1xzhyyv, .framer-z0LJF .framer-15p7lgp, .framer-z0LJF .framer-15g3q3w, .framer-z0LJF .framer-1uwck99, .framer-z0LJF .framer-1yuhzv8, .framer-z0LJF .framer-1yav03n, .framer-z0LJF .framer-zgc7f6, .framer-z0LJF .framer-1wdicjj, .framer-z0LJF .framer-s45djj, .framer-z0LJF .framer-1vma7ga, .framer-z0LJF .framer-8htk7q { width: 100%; } .framer-z0LJF .framer-1f4y7fl { aspect-ratio: 1 / 1; height: 350px; order: 0; width: var(--framer-aspect-ratio-supported, 350px); } .framer-z0LJF .framer-pnlae1 { flex-direction: column; padding: 80px 20px 70px 20px; } .framer-z0LJF .framer-1g0l0cv, .framer-z0LJF .framer-1hskqd1, .framer-z0LJF .framer-bng58i { flex-direction: column; } .framer-z0LJF .framer-1a2xy8e, .framer-z0LJF .framer-13aiq2u, .framer-z0LJF .framer-1nd77ui, .framer-z0LJF .framer-yidqhf, .framer-z0LJF .framer-1oub5az, .framer-z0LJF .framer-1fjz52p { flex: none; width: 100%; } .framer-z0LJF .framer-1l2ntzv { align-self: unset; flex: none; height: 178px; width: 100%; } .framer-z0LJF .framer-h19937 { gap: 40px; padding: 80px 20px 0px 20px; } .framer-z0LJF .framer-1n8o660 { align-content: flex-start; align-items: flex-start; width: 100%; } .framer-z0LJF .framer-7gfme0, .framer-z0LJF .framer-1obissb, .framer-z0LJF .framer-bszn97, .framer-z0LJF .framer-zyovqk { flex-direction: column; padding: 80px 20px 80px 20px; } .framer-z0LJF .framer-8dcgrv, .framer-z0LJF .framer-jbdvfv, .framer-z0LJF .framer-9wmxm7, .framer-z0LJF .framer-1m4fu9y, .framer-z0LJF .framer-1az7zj8, .framer-z0LJF .framer-80wtuf, .framer-z0LJF .framer-v3499p, .framer-z0LJF .framer-jtmbmk, .framer-z0LJF .framer-f0hil4, .framer-z0LJF .framer-svt3wh, .framer-z0LJF .framer-1diran8, .framer-z0LJF .framer-jh9tvp, .framer-z0LJF .framer-15pobc8 { flex: 1 0 0px; width: 1px; } .framer-z0LJF .framer-mmke0s { order: 0; } .framer-z0LJF .framer-8fy0gm, .framer-z0LJF .framer-afpxsr, .framer-z0LJF .framer-agz549, .framer-z0LJF .framer-lxlhtv { height: var(--framer-aspect-ratio-supported, 361px); } .framer-z0LJF .framer-1u077v9, .framer-z0LJF .framer-17g92ke, .framer-z0LJF .framer-szffmo { order: 1; } .framer-z0LJF .framer-1u3mmro, .framer-z0LJF .framer-1607yqb, .framer-z0LJF .framer-16ettqg, .framer-z0LJF .framer-17wseob { order: 0; width: 100%; } .framer-z0LJF .framer-7xpf8y { padding: 80px 20px 40px 20px; width: 100%; } .framer-z0LJF .framer-rf1woi { gap: 56px; } .framer-z0LJF .framer-to79mv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 261px; justify-content: center; padding: 0px; width: 100%; } .framer-z0LJF .framer-1cbfkk1 { padding: 80px 20px 80px 20px; } .framer-z0LJF .framer-4h2f4v-container { flex: none; order: 1; width: 100%; } .framer-z0LJF .framer-7kqz6a { flex-direction: column; height: min-content; padding: 60px 20px 60px 20px; } .framer-z0LJF .framer-1hmmyr3, .framer-z0LJF .framer-12vdrb6 { align-content: flex-start; align-items: flex-start; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-z0LJF .framer-1xkpoyw, .framer-z0LJF .framer-pnlae1, .framer-z0LJF .framer-1g0l0cv, .framer-z0LJF .framer-1hskqd1, .framer-z0LJF .framer-h19937, .framer-z0LJF .framer-7gfme0, .framer-z0LJF .framer-1obissb, .framer-z0LJF .framer-bszn97, .framer-z0LJF .framer-zyovqk, .framer-z0LJF .framer-rf1woi, .framer-z0LJF .framer-to79mv, .framer-z0LJF .framer-bng58i, .framer-z0LJF .framer-7kqz6a { gap: 0px; } .framer-z0LJF .framer-1xkpoyw > *, .framer-z0LJF .framer-h19937 > *, .framer-z0LJF .framer-7gfme0 > *, .framer-z0LJF .framer-1obissb > *, .framer-z0LJF .framer-bszn97 > *, .framer-z0LJF .framer-zyovqk > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-z0LJF .framer-1xkpoyw > :first-child, .framer-z0LJF .framer-pnlae1 > :first-child, .framer-z0LJF .framer-1g0l0cv > :first-child, .framer-z0LJF .framer-1hskqd1 > :first-child, .framer-z0LJF .framer-h19937 > :first-child, .framer-z0LJF .framer-7gfme0 > :first-child, .framer-z0LJF .framer-1obissb > :first-child, .framer-z0LJF .framer-bszn97 > :first-child, .framer-z0LJF .framer-zyovqk > :first-child, .framer-z0LJF .framer-rf1woi > :first-child, .framer-z0LJF .framer-to79mv > :first-child, .framer-z0LJF .framer-bng58i > :first-child, .framer-z0LJF .framer-7kqz6a > :first-child { margin-top: 0px; } .framer-z0LJF .framer-1xkpoyw > :last-child, .framer-z0LJF .framer-pnlae1 > :last-child, .framer-z0LJF .framer-1g0l0cv > :last-child, .framer-z0LJF .framer-1hskqd1 > :last-child, .framer-z0LJF .framer-h19937 > :last-child, .framer-z0LJF .framer-7gfme0 > :last-child, .framer-z0LJF .framer-1obissb > :last-child, .framer-z0LJF .framer-bszn97 > :last-child, .framer-z0LJF .framer-zyovqk > :last-child, .framer-z0LJF .framer-rf1woi > :last-child, .framer-z0LJF .framer-to79mv > :last-child, .framer-z0LJF .framer-bng58i > :last-child, .framer-z0LJF .framer-7kqz6a > :last-child { margin-bottom: 0px; } .framer-z0LJF .framer-pnlae1 > *, .framer-z0LJF .framer-bng58i > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-z0LJF .framer-1g0l0cv > *, .framer-z0LJF .framer-1hskqd1 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-z0LJF .framer-rf1woi > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-z0LJF .framer-to79mv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-z0LJF .framer-7kqz6a > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5196.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SjyvT7EeP\":{\"layout\":[\"fixed\",\"auto\"]},\"dOFeA0PWY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerFVXaO_ADa=withCSS(Component,css,\"framer-z0LJF\");export default FramerFVXaO_ADa;FramerFVXaO_ADa.displayName=\"Product Evomall\";FramerFVXaO_ADa.defaultProps={height:5196.5,width:1280};addFonts(FramerFVXaO_ADa,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qWSRToK8EPg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...NavigationFonts,...VideoFonts,...FormSparkFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFVXaO_ADa\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5196.5\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SjyvT7EeP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dOFeA0PWY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\"}},\"__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", "NavigationFonts", "getFonts", "cnWGcTdPB_default", "VideoFonts", "Video", "FormSparkFonts", "FormSpark_default", "breakpoints", "serializationHash", "variantClassNames", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "cnWGcTdPB_default", "x", "RichText2", "Link", "getLoadingLazyAtYPosition", "Image2", "SVG", "Video", "FormSpark_default", "css", "FramerFVXaO_ADa", "withCSS", "FVXaO_ADa_default", "addFonts", "NavigationFonts", "VideoFonts", "FormSparkFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
