{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/5oZG7Wb4Vi8FhV6zYn6l/loW2dvzrq4wOQjf111nD/RLyyMvyVq.js", "ssg:https://framerusercontent.com/modules/nq44zWsJozmEhi0oAzyV/IejndhfkZHOqtsRvfWL0/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={FDzuPZFQn:{hover:true},vOyuPiXCl:{hover:true},xBHCP6N1T:{hover:true}};const cycleOrder=[\"FDzuPZFQn\",\"xBHCP6N1T\",\"vOyuPiXCl\"];const serializationHash=\"framer-qJA8m\";const variantClassNames={FDzuPZFQn:\"framer-v-wskf5v\",vOyuPiXCl:\"framer-v-lnefzj\",xBHCP6N1T:\"framer-v-1pc95ie\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Discover more - features\":\"vOyuPiXCl\",\"Read more about our features\":\"xBHCP6N1T\",\"Variant 1\":\"FDzuPZFQn\"};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:\"FDzuPZFQn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FDzuPZFQn\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{hash:\":C6fcrIjkE\",webPageId:\"augiA20Il\"},nodeId:\"FDzuPZFQn\",openInNewTab:false,...addPropertyOverrides({vOyuPiXCl:{href:{webPageId:\"zZGgPyXGj\"}},xBHCP6N1T:{href:{webPageId:\"zZGgPyXGj\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-wskf5v\",className,classNames)} framer-17yk7v4`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"FDzuPZFQn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1.33px\",\"--border-color\":\"rgb(40, 73, 102)\",\"--border-left-width\":\"1.33px\",\"--border-right-width\":\"1.33px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.33px\",backgroundColor:\"rgb(40, 73, 102)\",borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27,boxShadow:\"0.39809593676181976px 0.39809593676181976px 0.5629926728941875px -0.9375px rgba(0, 0, 0, 0.18252), 1.207253071552259px 1.207253071552259px 1.7073136670057811px -1.875px rgba(0, 0, 0, 0.17241), 3.1913267607422307px 3.1913267607422307px 4.51321758700586px -2.8125px rgba(0, 0, 0, 0.14761), 10px 10px 14.142135623730951px -3.75px rgba(0, 0, 0, 0.0625)\",...style},variants:{\"FDzuPZFQn-hover\":{backgroundColor:\"rgb(255, 255, 255)\"},\"vOyuPiXCl-hover\":{backgroundColor:\"rgb(255, 255, 255)\"},\"xBHCP6N1T-hover\":{backgroundColor:\"var(--token-718bdfe8-6e72-40ed-b7a9-59fd4b2dc155, rgb(249, 249, 249))\"}},...addPropertyOverrides({\"FDzuPZFQn-hover\":{\"data-framer-name\":undefined},\"vOyuPiXCl-hover\":{\"data-framer-name\":undefined},\"xBHCP6N1T-hover\":{\"data-framer-name\":undefined},vOyuPiXCl:{\"data-framer-name\":\"Discover more - features\"},xBHCP6N1T:{\"data-framer-name\":\"Read more about our features\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Discover how it works\"})}),className:\"framer-m7x52y\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"V1hTEVJp3\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},variants:{\"FDzuPZFQn-hover\":{\"--extracted-r6o4lv\":\"var(--token-0604edf5-d679-486c-acd3-a792c0faafbb, rgb(40, 73, 102))\"},\"vOyuPiXCl-hover\":{\"--extracted-r6o4lv\":\"var(--token-0604edf5-d679-486c-acd3-a792c0faafbb, rgb(40, 73, 102))\"},\"xBHCP6N1T-hover\":{\"--extracted-r6o4lv\":\"var(--token-0604edf5-d679-486c-acd3-a792c0faafbb, rgb(40, 73, 102))\"},vOyuPiXCl:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\"},xBHCP6N1T:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"FDzuPZFQn-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0604edf5-d679-486c-acd3-a792c0faafbb, rgb(40, 73, 102)))\"},children:\"Discover how it works\"})})},\"vOyuPiXCl-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0604edf5-d679-486c-acd3-a792c0faafbb, rgb(40, 73, 102)))\"},children:\"Discover our features\"})})},\"xBHCP6N1T-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0604edf5-d679-486c-acd3-a792c0faafbb, rgb(40, 73, 102)))\"},children:\"Read more about our features\"})})},vOyuPiXCl:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Discover our features\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})},xBHCP6N1T:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Read more about our features\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"42px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qJA8m.framer-17yk7v4, .framer-qJA8m .framer-17yk7v4 { display: block; }\",\".framer-qJA8m.framer-wskf5v { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 42px; justify-content: center; padding: 0px 11.3px 0px 11.3px; position: relative; text-decoration: none; width: min-content; }\",\".framer-qJA8m .framer-m7x52y { -webkit-user-select: none; flex: none; height: 42px; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qJA8m.framer-wskf5v { gap: 0px; } .framer-qJA8m.framer-wskf5v > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qJA8m.framer-wskf5v > :first-child { margin-top: 0px; } .framer-qJA8m.framer-wskf5v > :last-child { margin-bottom: 0px; } }\",'.framer-qJA8m[data-border=\"true\"]::after, .framer-qJA8m [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 175.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"xBHCP6N1T\":{\"layout\":[\"auto\",\"fixed\"]},\"vOyuPiXCl\":{\"layout\":[\"auto\",\"fixed\"]},\"lgSlly2T4\":{\"layout\":[\"auto\",\"fixed\"]},\"ZZH1Quh13\":{\"layout\":[\"auto\",\"fixed\"]},\"p8GwoOOOz\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRLyyMvyVq=withCSS(Component,css,\"framer-qJA8m\");export default FramerRLyyMvyVq;FramerRLyyMvyVq.displayName=\"Discover more button\";FramerRLyyMvyVq.defaultProps={height:42,width:175.5};addPropertyControls(FramerRLyyMvyVq,{variant:{options:[\"FDzuPZFQn\",\"xBHCP6N1T\",\"vOyuPiXCl\"],optionTitles:[\"Variant 1\",\"Read more about our features\",\"Discover more - features\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRLyyMvyVq,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRLyyMvyVq\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"175.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"xBHCP6N1T\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"vOyuPiXCl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lgSlly2T4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ZZH1Quh13\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"p8GwoOOOz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"42\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RLyyMvyVq.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import ReviewBadges from\"#framer/local/canvasComponent/EkcjInutm/EkcjInutm.js\";import ContactUsButton from\"#framer/local/canvasComponent/GUS7ikA6H/GUS7ikA6H.js\";import BookADemoButton from\"#framer/local/canvasComponent/hSMYnvOuP/hSMYnvOuP.js\";import Footer from\"#framer/local/canvasComponent/QjsWpN52q/QjsWpN52q.js\";import Navigation from\"#framer/local/canvasComponent/qQWDmN02_/qQWDmN02_.js\";import DiscoverMoreButton from\"#framer/local/canvasComponent/RLyyMvyVq/RLyyMvyVq.js\";import*as sharedStyle2 from\"#framer/local/css/Gw8VMM289/Gw8VMM289.js\";import*as sharedStyle from\"#framer/local/css/huWbSRZDA/huWbSRZDA.js\";import*as sharedStyle3 from\"#framer/local/css/jvPX5nRQk/jvPX5nRQk.js\";import*as sharedStyle1 from\"#framer/local/css/ucaTvYocN/ucaTvYocN.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const DiscoverMoreButtonFonts=getFonts(DiscoverMoreButton);const ContactUsButtonFonts=getFonts(ContactUsButton);const SlideshowFonts=getFonts(Slideshow);const BookADemoButtonFonts=getFonts(BookADemoButton);const TickerFonts=getFonts(Ticker);const ReviewBadgesFonts=getFonts(ReviewBadges);const FooterFonts=getFonts(Footer);const breakpoints={CGO9xfT3B:\"(min-width: 810px) and (max-width: 1199px)\",ClHBXrm_2:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NLtI2\";const variantClassNames={CGO9xfT3B:\"framer-v-1mipu3l\",ClHBXrm_2:\"framer-v-1p9sdqz\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"ClHBXrm_2\",Tablet:\"CGO9xfT3B\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"kaPGnjbnh\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"C6fcrIjkE\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"CGO9xfT3B\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"CGO9xfT3B\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lryf8k-container\",nodeId:\"h2gMobxQw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{variant:\"g1s5J_v9U\"},ClHBXrm_2:{variant:\"bRezrqnIi\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"h2gMobxQw\",layoutId:\"h2gMobxQw\",style:{width:\"100%\"},variant:\"uJnyoztfp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12o6qa7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q2l9r8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ri6rcx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wk4wia\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-7v85sv\",\"data-styles-preset\":\"huWbSRZDA\",style:{\"--framer-text-alignment\":\"left\"},children:\"SMART TOOLS FOR OPTIMIZED DELIVERIES\"})}),className:\"framer-zdqegd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18sd67v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Organize your routes, monitor delivery operations and offer superior customer experience with Dropon\u2019s Delivery Management Platform.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:\"Organize your routes, monitor delivery operations and offer superior customer experience with Dropon\u2019s Delivery Management Platform.\"})}),className:\"framer-1mi9ari\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lc6w8h\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gl8pvp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2713\"}),\" Increase delivery efficiency with optimized routes\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2713\"}),\" Increase delivery efficiency with optimized routes\"]})}),className:\"framer-96vvfd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-biatm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2713\"}),\" Visualize delivery and driver route progress\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2713\"}),\" Visualize delivery and driver route progress\"]})}),className:\"framer-1vzs5h1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ukkrvk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2713\"}),\" Automate notifications for a smooth customer journey\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2713\"}),\" Automate notifications for a smooth customer journey\"]})}),className:\"framer-16ccx74\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f1zp3y\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{y:(componentViewport?.y||0)+0+64+0+30+0+0+710+30}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u4ji3a-container\",nodeId:\"mjtf3GJeP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DiscoverMoreButton,{height:\"100%\",id:\"mjtf3GJeP\",layoutId:\"mjtf3GJeP\",style:{height:\"100%\"},variant:\"FDzuPZFQn\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{y:(componentViewport?.y||0)+0+64+0+30+0+0+710+30}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h9ywrw-container\",nodeId:\"v3THwl_Gm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContactUsButton,{height:\"100%\",id:\"v3THwl_Gm\",layoutId:\"v3THwl_Gm\",style:{height:\"100%\"},variant:\"zsjDc_mia\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{background:{alt:\"Illustration of a logistics and delivery process. In the top left, trucks are being loaded in a warehouse. Another truck is driving on a road towards a residential area. In the top right, a laptop displays graphs and statistics for route optimization and monitoring. In the bottom right, a person is standing by a house to receive a package, with a heart icon symbolizing customer satisfaction.\",fit:\"fit\",intrinsicHeight:959,intrinsicWidth:966,pixelHeight:959,pixelWidth:966,positionX:\"center\",positionY:\"center\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1024px) - 100px, 320px)`,src:\"https://framerusercontent.com/images/dmowKESuEOEH3r1l3B35geXGVw.png\",srcSet:\"https://framerusercontent.com/images/dmowKESuEOEH3r1l3B35geXGVw.png?scale-down-to=512 512w,https://framerusercontent.com/images/dmowKESuEOEH3r1l3B35geXGVw.png 966w\"}},ClHBXrm_2:{background:{alt:\"Illustration of a logistics and delivery process. In the top left, trucks are being loaded in a warehouse. Another truck is driving on a road towards a residential area. In the top right, a laptop displays graphs and statistics for route optimization and monitoring. In the bottom right, a person is standing by a house to receive a package, with a heart icon symbolizing customer satisfaction.\",fit:\"fit\",intrinsicHeight:959,intrinsicWidth:966,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+0+30+792),pixelHeight:959,pixelWidth:966,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) * 0.95)`,src:\"https://framerusercontent.com/images/dmowKESuEOEH3r1l3B35geXGVw.png\",srcSet:\"https://framerusercontent.com/images/dmowKESuEOEH3r1l3B35geXGVw.png?scale-down-to=512 512w,https://framerusercontent.com/images/dmowKESuEOEH3r1l3B35geXGVw.png 966w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Illustration of a logistics and delivery process. In the top left, trucks are being loaded in a warehouse. Another truck is driving on a road towards a residential area. In the top right, a laptop displays graphs and statistics for route optimization and monitoring. In the bottom right, a person is standing by a house to receive a package, with a heart icon symbolizing customer satisfaction.\",fit:\"fit\",intrinsicHeight:959,intrinsicWidth:966,pixelHeight:959,pixelWidth:966,positionX:\"center\",positionY:\"center\",sizes:`max(min((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 100px) * 0.4955, (min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 100px) / 2), 320px)`,src:\"https://framerusercontent.com/images/dmowKESuEOEH3r1l3B35geXGVw.png\",srcSet:\"https://framerusercontent.com/images/dmowKESuEOEH3r1l3B35geXGVw.png?scale-down-to=512 512w,https://framerusercontent.com/images/dmowKESuEOEH3r1l3B35geXGVw.png 966w\"},className:\"framer-9t0iiw\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rfzzgc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gaho9c\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/\",motionChild:true,nodeId:\"XoIN_OzR6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"A badge-shaped emblem with the text 'Capterra BEST VALUE 2023', awarded to route planning software Dropon. The emblem is primarily dark blue with a light blue ribbon across the middle displaying the 'BEST VALUE' text in dark blue letters. Above the ribbon, the 'Capterra' logo is featured with an arrow in orange, blue, and white.\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1336+50+0+0),pixelHeight:1200,pixelWidth:1336,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/wZvJBBK5OEpWFsUidLYjXweUeRc.png\",srcSet:\"https://framerusercontent.com/images/wZvJBBK5OEpWFsUidLYjXweUeRc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wZvJBBK5OEpWFsUidLYjXweUeRc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wZvJBBK5OEpWFsUidLYjXweUeRc.png 1336w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"A badge-shaped emblem with the text 'Capterra BEST VALUE 2023', awarded to route planning software Dropon. The emblem is primarily dark blue with a light blue ribbon across the middle displaying the 'BEST VALUE' text in dark blue letters. Above the ribbon, the 'Capterra' logo is featured with an arrow in orange, blue, and white.\",fit:\"fit\",pixelHeight:1200,pixelWidth:1336,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/wZvJBBK5OEpWFsUidLYjXweUeRc.png\",srcSet:\"https://framerusercontent.com/images/wZvJBBK5OEpWFsUidLYjXweUeRc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wZvJBBK5OEpWFsUidLYjXweUeRc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wZvJBBK5OEpWFsUidLYjXweUeRc.png 1336w\"},className:\"framer-u92ui framer-lux5qc\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.softwareadvice.com/retail/dropon-profile/\",motionChild:true,nodeId:\"WYlSl2sf0\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"A badge-shaped emblem with the text 'Software Advice BEST CUSTOMER SUPPORT 2023' awarded to route optimization platform Dropon. The emblem is primarily dark purple with white text and an orange speech bubble icon next to 'Software Advice.'\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1336+50+0+220),pixelHeight:1240,pixelWidth:1180,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/Rak0bMFADDJZXiBff3XKQaQxfw.png\",srcSet:\"https://framerusercontent.com/images/Rak0bMFADDJZXiBff3XKQaQxfw.png?scale-down-to=1024 974w,https://framerusercontent.com/images/Rak0bMFADDJZXiBff3XKQaQxfw.png 1180w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"A badge-shaped emblem with the text 'Software Advice BEST CUSTOMER SUPPORT 2023' awarded to route optimization platform Dropon. The emblem is primarily dark purple with white text and an orange speech bubble icon next to 'Software Advice.'\",fit:\"fit\",pixelHeight:1240,pixelWidth:1180,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/Rak0bMFADDJZXiBff3XKQaQxfw.png\",srcSet:\"https://framerusercontent.com/images/Rak0bMFADDJZXiBff3XKQaQxfw.png?scale-down-to=1024 974w,https://framerusercontent.com/images/Rak0bMFADDJZXiBff3XKQaQxfw.png 1180w\"},className:\"framer-1c9jg78 framer-lux5qc\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kzbp2q\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pr9smq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yi25ci\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"center\"},children:\"YOU'RE IN GOOD COMPANY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",children:\"YOU'RE IN GOOD COMPANY\"})}),className:\"framer-1l0cigi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x8os70-container\",isModuleExternal:true,nodeId:\"Y6spLQu7P\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{itemAmount:2},ClHBXrm_2:{itemAmount:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:30,arrowShouldFadeIn:true,arrowShouldSpace:true,arrowSize:30,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:true},gap:50,height:\"100%\",id:\"Y6spLQu7P\",intervalControl:3,itemAmount:3,layoutId:\"Y6spLQu7P\",padding:0,paddingBottom:50,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:30,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ocirp5\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"mpsEkjK54\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Simon Mortier's review of Dropon\",fit:\"fit\",pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cObjNOe8QcOBq4jPrx7mY34IU.png\"},className:\"framer-n61zbo framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h61y8t\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Groceries\"})}),className:\"framer-xom8wq\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ejvd88\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022\"}),\" Optimize deliveries with client specific delivery slots and service times\"]})}),className:\"framer-iz4sd3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Offer worry-free home deliveries with real time updates\"]})}),className:\"framer-snxhas\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Guide your drivers with client specific requests\"]})}),className:\"framer-1ncxqk2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wa8em3\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"euhXcQwFm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Simon Mortier's review of Dropon\",fit:\"fit\",pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mJHDVa7siEC63AsRMaLkeTj2SE.png\"},className:\"framer-1b6m0bo framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n1fk9r\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Packages\"})}),className:\"framer-w81vwe\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s9xbcn\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022\"}),\" Dedicated client portal for order entry and delivery progress monitoring\"]})}),className:\"framer-1d7umrs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Deliver a transparent service to all parties involved\"]})}),className:\"framer-1eanh5s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Keep an eye on the costs per delivery\"]})}),className:\"framer-kkbrq0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-buuh1v\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"cY6UnOxQI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Simon Mortier's review of Dropon\",fit:\"fit\",pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PB7pJwRCslI6Ex87VGxsua31VI.png\"},className:\"framer-ozfjg framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zgq020\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Furniture\"})}),className:\"framer-xezduw\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y1i786\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022\"}),\" Optimize vehicle capacity while including delivery specific restrictions\"]})}),className:\"framer-1yscn61\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Notify your clients of the upcoming delivery\"]})}),className:\"framer-1ahorhd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Go paperless with digital Proof of Delivery (POD)\"]})}),className:\"framer-npu0we\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ianbj\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"oP2xnbjyj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Simon Mortier's review of Dropon\",fit:\"fit\",pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ih1AAEhbBqYYw5GXrbK9dKLko.png\"},className:\"framer-1knlaun framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1975i24\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Foodservice\"})}),className:\"framer-2xqajj\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-457san\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Visualize deliveries and delivery rounds\"]})}),className:\"framer-glgydo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Spot efficiency improvements with periodical fixed routes optimization\"]})}),className:\"framer-p7qq5u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Track delivery progress and conditions\"]})}),className:\"framer-1bbozib\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-js9dq2\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"SQQgHcef3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Simon Mortier's review of Dropon\",fit:\"fit\",pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/47tLjdL7es9aKgqKamwtbPJDY.png\"},className:\"framer-1jhxkbe framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ma232k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Pharma\"})}),className:\"framer-f1t12z\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-167t2x1\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Offer a reliable and consistent pickup and delivery service\"]})}),className:\"framer-9plszh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Ensure time-critical material is delivered on time\"]})}),className:\"framer-15uhkwg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Dispatch urgent tasks while your driver is on the road\"]})}),className:\"framer-1brv0pt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1th4vdl\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"dO1UitLqU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Simon Mortier's review of Dropon\",fit:\"fit\",pixelHeight:100,pixelWidth:100,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WmVBtj3exCnqvDXUNiIEOBCGXjs.png\"},className:\"framer-a8awe2 framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ajvk38\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Field services\"})}),className:\"framer-1xu3337\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ow0o5b\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Organize time critical pick-ups, deliveries or meetings\"]})}),className:\"framer-t8j6r1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Give your drivers client specific information to increase customer experience\"]})}),className:\"framer-1t9mrd8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-93dad5b5-52f9-46a5-81ff-457bf86b9086, rgb(249, 113, 127))\"},children:\"\u2022 \"}),\"Easily adjust to last minute changes\"]})}),className:\"framer-1wlrnnf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wbvdvx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sounds like something you would like?\"})}),className:\"framer-img3ua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{y:(componentViewport?.y||0)+0+1856+50+0+0+720+50+165}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nzhmif-container\",nodeId:\"VBP_iLUK7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BookADemoButton,{height:\"100%\",id:\"VBP_iLUK7\",layoutId:\"VBP_iLUK7\",style:{height:\"100%\"},variant:\"wrb3sMZ60\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14rh68d\",\"data-framer-name\":\"Blog\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ap79g\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5y2rdr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"center\"},children:\"PLAN IN JUST THREE STEPS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",children:\"PLAN IN JUST THREE STEPS\"})}),className:\"framer-1u860xh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:\"It is this simple.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:\"It is this simple.\"})}),className:\"framer-533sgd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uuoz3y\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15xbe5f\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hllio3\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t4zeco hidden-1mipu3l\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Automatically transfer your data via API or simply upload your spreadsheet.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),fonts:[\"Inter\"]},ClHBXrm_2:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Automatically transfer your data via API or simply upload your spreadsheet.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Automatically transfer your data via API or simply upload your spreadsheet.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-cktvk9\",fonts:[\"GF;Montserrat-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-505c3p\",\"data-styles-preset\":\"jvPX5nRQk\",style:{\"--framer-text-alignment\":\"center\"},children:\"IMPORT\"})}),className:\"framer-1t82wkd\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{transformTemplate:undefined},ClHBXrm_2:{background:{alt:\"Importation of data into route planning software\",fit:\"fill\",intrinsicHeight:179,intrinsicWidth:212,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2916+50+0+0+275+0+0+0+0+0),pixelHeight:179,pixelWidth:212,src:\"https://framerusercontent.com/images/WpjMtD5C5oHilEykBAWhYC6G3s.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Importation of data into route planning software\",fit:\"fill\",intrinsicHeight:179,intrinsicWidth:212,pixelHeight:179,pixelWidth:212,src:\"https://framerusercontent.com/images/WpjMtD5C5oHilEykBAWhYC6G3s.png\"},className:\"framer-1vqrw0a\",transformTemplate:transformTemplate1})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1spwbq4\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wirgxd\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"Overview of Dropon's planning application\",fit:\"fit\",intrinsicHeight:179,intrinsicWidth:202,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2916+50+0+0+275+0+420+0+0+-53),pixelHeight:824,pixelWidth:1338,positionX:\"center\",positionY:\"center\",sizes:\"322.7486px\",src:\"https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png 1338w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Overview of Dropon's planning application\",fit:\"fit\",intrinsicHeight:179,intrinsicWidth:202,pixelHeight:824,pixelWidth:1338,positionX:\"center\",positionY:\"center\",sizes:\"323px\",src:\"https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png 1338w\"},className:\"framer-qec842 hidden-1mipu3l\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-505c3p\",\"data-styles-preset\":\"jvPX5nRQk\",style:{\"--framer-text-alignment\":\"center\"},children:\"PLAN\"})}),className:\"framer-d4mflt\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Use automation tools or make manual adjustments to routes and deliveries.\"})}),className:\"framer-121zx89\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{background:{alt:\"Dropon Software\",fit:\"fit\",intrinsicHeight:179,intrinsicWidth:202,pixelHeight:824,pixelWidth:1338,positionX:\"center\",positionY:\"center\",sizes:\"226px\",src:\"https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png 1338w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Dropon Software\",fit:\"fit\",intrinsicHeight:179,intrinsicWidth:202,pixelHeight:824,pixelWidth:1338,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0aublJHKnqrNnldrMBSG9I3gPE.png 1338w\"},className:\"framer-wrqxx2 hidden-72rtr7 hidden-1p9sdqz\",transformTemplate:transformTemplate1})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-27oa2k\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-155ie78\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"Logistics operations: delivery by bike and van\",fit:\"fill\",intrinsicHeight:179,intrinsicWidth:197,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2916+50+0+0+275+0+840+0+0+0),pixelHeight:179,pixelWidth:197,src:\"https://framerusercontent.com/images/FGThJKYHt053Mfwg70qQ1EqrBA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Logistics operations: delivery by bike and van\",fit:\"fill\",intrinsicHeight:179,intrinsicWidth:197,pixelHeight:179,pixelWidth:197,src:\"https://framerusercontent.com/images/FGThJKYHt053Mfwg70qQ1EqrBA.png\"},className:\"framer-yl9u62\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-505c3p\",\"data-styles-preset\":\"jvPX5nRQk\",style:{\"--framer-text-alignment\":\"center\"},children:\"DELIVER\"})}),className:\"framer-1ssayoz\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dispatch your drivers and stay connected with real-time monitoring tools.\"})}),className:\"framer-fluukk\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tr7yhu\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11n0l4i\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"center\"},children:\"WHAT PEOPLE SAY ABOUT US\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",children:\"WHAT PEOPLE SAY ABOUT US\"})}),className:\"framer-1cgo1xi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3661lz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EdQnavGt6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0,speed:70}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",hoverFactor:.5,id:\"EdQnavGt6\",layoutId:\"EdQnavGt6\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dzkmgo\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"i_J7NJgDz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Simon Mortier's review of Dropon\",fit:\"fit\",pixelHeight:120,pixelWidth:120,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6hIXY1rYf7B3Rm0fUBvHHc18s.png\"},className:\"framer-1qpj7e0 framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17yc0q4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Simon M.\"})}),className:\"framer-k363o3\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ci8sfy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Director Operations & Product non-paint at Boss Paints\"})}),className:\"framer-k2lk6d\",fonts:[\"GF;Montserrat-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gw6ek0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1px2heg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-u3gtpm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-et2tlh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-12j8boe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-5jlc16\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17pux7c\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:'\"The licence cost is very good compared to other products.\"'})}),className:\"framer-ddflly\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e3nyms\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"dscF5hbEY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Ken Henrotte's review of Dropon\",fit:\"fit\",pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/6HDgsDDpJUeObbXP0LcfUD7w4XU.png\",srcSet:\"https://framerusercontent.com/images/6HDgsDDpJUeObbXP0LcfUD7w4XU.png?scale-down-to=512 512w,https://framerusercontent.com/images/6HDgsDDpJUeObbXP0LcfUD7w4XU.png 800w\"},className:\"framer-18idnek framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g0z2re\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Ken H.\"})}),className:\"framer-nxkv67\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ninde5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Teamlead Transport at Covetrus\"})}),className:\"framer-1qxl7rp\",fonts:[\"GF;Montserrat-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hexfqo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-xd6jp8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1j0b179\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1vw845y\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-uec49l\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1gzqdh9\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qoc3mg\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:'\"Dropon allows me to justify all costs to management.\"'})}),className:\"framer-ky2q7z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g525di\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"E64npjQWy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Dries Kinet's review of Dropon\",fit:\"fit\",pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/IVOFgzGLsaWPdpOQZlFaHA9b0lQ.png\",srcSet:\"https://framerusercontent.com/images/IVOFgzGLsaWPdpOQZlFaHA9b0lQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/IVOFgzGLsaWPdpOQZlFaHA9b0lQ.png 800w\"},className:\"framer-1h0dfkr framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hqe32l\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Dries K.\"})}),className:\"framer-105kb01\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ej8ins\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Planning transport Belgium at Piano's Maene\"})}),className:\"framer-ou49gf\",fonts:[\"GF;Montserrat-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lkxl3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-l0pk3s\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1vk6s3r\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-b9kozq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1rp0nzs\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1o263zf\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d3uxdl\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:'\"As a transport planner, the time I save with Dropon is more than significant!\"'})}),className:\"framer-61cab0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ysydny\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"RPfUUzrLF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Jonathan De Lange's review of Dropon\",fit:\"fit\",pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/JaLUp0Q7Vr3budb8OsqnAkjDsN8.png\",srcSet:\"https://framerusercontent.com/images/JaLUp0Q7Vr3budb8OsqnAkjDsN8.png?scale-down-to=512 512w,https://framerusercontent.com/images/JaLUp0Q7Vr3budb8OsqnAkjDsN8.png 800w\"},className:\"framer-q5lyke framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ln4ob5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Jonathan D.\"})}),className:\"framer-1hivqxf\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ruhc9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Head of Distribution at Smartmat\"})}),className:\"framer-csjoev\",fonts:[\"GF;Montserrat-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19fbud8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-gmnat1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-5f33be\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-r5imna\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-jninqi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-12mfp8d\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hoqh0k\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:'\"It still amazes me how easy it is for new people to learn the ins & outs of it!\"'})}),className:\"framer-1pyvlsk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fb1u11\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"AweKlMhBG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Stefaan Vanfleteren's review of Dropon\",fit:\"fit\",pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/EtO7VRkExN0RP05v7pa9M7CGD40.png\",srcSet:\"https://framerusercontent.com/images/EtO7VRkExN0RP05v7pa9M7CGD40.png?scale-down-to=512 512w,https://framerusercontent.com/images/EtO7VRkExN0RP05v7pa9M7CGD40.png 800w\"},className:\"framer-1ve7pjf framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p71l7b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Stefaan V.\"})}),className:\"framer-6y6sci\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i8ayzk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"CEO at Piano's Maene\"})}),className:\"framer-1c22m41\",fonts:[\"GF;Montserrat-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yc3o08\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-2kww9l\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-gavc9i\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1yu7bg6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1ww9iol\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1qygj38\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-evrslm\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:'\"Customer centricity at its best! For us, the track and trace the customer receives is one of the main reasons to work with Dropon.\"'})}),className:\"framer-jnc3x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-169isdm\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.capterra.com/p/194624/Dropon/reviews/\",motionChild:true,nodeId:\"YoZiyNx1n\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Sammy Timmerman's review of Dropon\",fit:\"fit\",pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"100px\",src:\"https://framerusercontent.com/images/TpbnMwr6AdwkZ02SnRijA92bxek.png\",srcSet:\"https://framerusercontent.com/images/TpbnMwr6AdwkZ02SnRijA92bxek.png?scale-down-to=512 512w,https://framerusercontent.com/images/TpbnMwr6AdwkZ02SnRijA92bxek.png 800w\"},className:\"framer-u3qv8r framer-lux5qc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-50t9ij\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Sammy T.\"})}),className:\"framer-1jbr1hy\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v2hcl4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(126, 126, 126)\"},children:\"Operations Manager at Van der Velde\"})}),className:\"framer-13yahlq\",fonts:[\"GF;Montserrat-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t0a34b\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1eec1og\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-sp3se6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-l9qpgg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/0zmMzFP9Rwkp9J6xzI0O27p5Zk.png\"},className:\"framer-1moxydd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/zJN8Bq9L95kY5PTBDoNc82ROM4g.png\"},className:\"framer-163exvj\"})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-svccs8\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:'\"If you have a problem, you will always be helped quickly and that is where Dropon makes the difference for me: their service!\"'})}),className:\"framer-qdsu08\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})],speed:90,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2i6hsa\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-rnnqpg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t6wwk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"center\"},children:\"FEATURES\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",children:\"FEATURES\"})}),className:\"framer-by892e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i0krro\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zZGgPyXGj\"},motionChild:true,nodeId:\"VVxxv0XCu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1vw6fww framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Accurate tracking and automated notifications\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:\"Accurate tracking and automated notifications\"})}),className:\"framer-k9lfz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"An isometric illustration showing two people standing on a large smartphone. The smartphone screen displays a 3D map with buildings, roads, and a red location pin. One person is pointing at the map while the other looks on, symbolizing delivery notifications and a real-time track and trace.\",fit:\"fill\",intrinsicHeight:145,intrinsicWidth:145,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5241+0+50+150+0+0+20+68.3334),pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/KHeufv8GznQjUEa7B684u9ApRg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"An isometric illustration showing two people standing on a large smartphone. The smartphone screen displays a 3D map with buildings, roads, and a red location pin. One person is pointing at the map while the other looks on, symbolizing delivery notifications and a real-time track and trace.\",fit:\"fill\",intrinsicHeight:145,intrinsicWidth:145,pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/KHeufv8GznQjUEa7B684u9ApRg.png\"},className:\"framer-1t154co\"})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zZGgPyXGj\"},motionChild:true,nodeId:\"I8EEHGreS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-antykb framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Flexible and smart planning tools\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:\"Flexible and smart planning tools\"})}),className:\"framer-my51gv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"An isometric illustration of a person standing on a laptop keyboard. The laptop screen shows a calendar with a checkmark on one of the dates, and some charts and text, representing delivery scheduling and route planning features. The person appears to be interacting with the calendar on the screen.\",fit:\"fill\",intrinsicHeight:145,intrinsicWidth:145,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5241+0+50+150+0+211+20+68.3334),pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/suEJkj1JpcHAb9dFhdCfC0VmEaQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"An isometric illustration of a person standing on a laptop keyboard. The laptop screen shows a calendar with a checkmark on one of the dates, and some charts and text, representing delivery scheduling and route planning features. The person appears to be interacting with the calendar on the screen.\",fit:\"fill\",intrinsicHeight:145,intrinsicWidth:145,pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/suEJkj1JpcHAb9dFhdCfC0VmEaQ.png\"},className:\"framer-bjjnv8\"})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zZGgPyXGj\"},motionChild:true,nodeId:\"yD2Zopdzk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-18xix0d framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Advanced routing algorithm\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:\"Advanced routing algorithm\"})}),className:\"framer-10qloqe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"An isometric illustration of a person wearing virtual reality (VR) goggles, standing and interacting with a transparent, floating digital interface. The interface displays various interconnected nodes and paths, representing advanced delivery data visualization and analysis. The person appears to be manipulating the interface with their hands.\",fit:\"fill\",intrinsicHeight:145,intrinsicWidth:145,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5241+0+50+150+0+422+20+68.3334),pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/IjL18wE8uL0HLPVyUtfEmRi7CY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"An isometric illustration of a person wearing virtual reality (VR) goggles, standing and interacting with a transparent, floating digital interface. The interface displays various interconnected nodes and paths, representing advanced delivery data visualization and analysis. The person appears to be manipulating the interface with their hands.\",fit:\"fill\",intrinsicHeight:145,intrinsicWidth:145,pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/IjL18wE8uL0HLPVyUtfEmRi7CY.png\"},className:\"framer-1er9pku\"})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zZGgPyXGj\"},motionChild:true,nodeId:\"XcYQjm2st\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-wqu46c framer-lux5qc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Always-connected app\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:\"Always-connected app\"})}),className:\"framer-uwq7zc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"An isometric illustration of a smartphone with a pink delivery truck driving along a marked path on the screen. The path on the smartphone screen is highlighted in pink, and there is a signal icon in the background, symbolizing real-time delivery tracking and notifications.\",fit:\"fill\",intrinsicHeight:145,intrinsicWidth:145,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5241+0+50+150+0+633+20+68.3334),pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/sxyMPdMjVkWnJyK8LKQiQnIJHBI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"An isometric illustration of a smartphone with a pink delivery truck driving along a marked path on the screen. The path on the smartphone screen is highlighted in pink, and there is a signal icon in the background, symbolizing real-time delivery tracking and notifications.\",fit:\"fill\",intrinsicHeight:145,intrinsicWidth:145,pixelHeight:145,pixelWidth:145,src:\"https://framerusercontent.com/images/sxyMPdMjVkWnJyK8LKQiQnIJHBI.png\"},className:\"framer-x1sq4w\"})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{y:(componentViewport?.y||0)+0+5241+0+50+1033}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pr6gyf-container\",nodeId:\"D3YuGRsEd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DiscoverMoreButton,{height:\"100%\",id:\"D3YuGRsEd\",layoutId:\"D3YuGRsEd\",variant:\"xBHCP6N1T\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-orefwq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1inek47\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"left\"},children:\"IMPROVE CUSTOMER EXPERIENCE\"})})},ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"left\"},children:\"IMPROVE CUSTOMER EXPERIENCE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",children:\"IMPROVE CUSTOMER EXPERIENCE\"})}),className:\"framer-1itp4oh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Inform your customers about scheduled deliveries with automatic notifications and live ETA\u2019s. Transparancy will reassure customers and build confidence.\"})})},ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Inform your customers about scheduled deliveries with automatic notifications and live ETA\u2019s. Transparancy will reassure customers and build confidence.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:\"Inform your customers about scheduled deliveries with automatic notifications and live ETA\u2019s. Transparancy will reassure customers and build confidence.\"})}),className:\"framer-1yl4nti\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"An isometric illustration of a delivery scene. A delivery driver is handing a package to a customer at the door of a house. The customer has their arms raised in excitement. A delivery truck is parked nearby. A notification icon with a heart symbol is displayed above the delivery driver, representing customer satisfaction and a positive delivery experience.\",fit:\"fill\",intrinsicHeight:409,intrinsicWidth:527,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6416+70+235),pixelHeight:409,pixelWidth:527,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 720px) - 60px)`,src:\"https://framerusercontent.com/images/5JTHJuPYfqpT4010SCEzHWwhmbU.png\",srcSet:\"https://framerusercontent.com/images/5JTHJuPYfqpT4010SCEzHWwhmbU.png?scale-down-to=512 512w,https://framerusercontent.com/images/5JTHJuPYfqpT4010SCEzHWwhmbU.png 527w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"An isometric illustration of a delivery scene. A delivery driver is handing a package to a customer at the door of a house. The customer has their arms raised in excitement. A delivery truck is parked nearby. A notification icon with a heart symbol is displayed above the delivery driver, representing customer satisfaction and a positive delivery experience.\",fit:\"fill\",intrinsicHeight:409,intrinsicWidth:527,pixelHeight:409,pixelWidth:527,sizes:\"527px\",src:\"https://framerusercontent.com/images/5JTHJuPYfqpT4010SCEzHWwhmbU.png\",srcSet:\"https://framerusercontent.com/images/5JTHJuPYfqpT4010SCEzHWwhmbU.png?scale-down-to=512 512w,https://framerusercontent.com/images/5JTHJuPYfqpT4010SCEzHWwhmbU.png 527w\"},className:\"framer-1q3i2ql\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5fjh07\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"An isometric illustration of a person standing next to a laptop. The laptop screen displays various charts, graphs, and icons related to route planning and logistics. The person is observing the screen with hands on hips, indicating focus and analysis. There are three pink bars beside the laptop, representing data metrics.\",fit:\"fill\",intrinsicHeight:407,intrinsicWidth:527,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7068+50+275),pixelHeight:407,pixelWidth:527,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 720px) - 60px)`,src:\"https://framerusercontent.com/images/ki0lvjAZ1skLbmu35BYdObiJwk.png\",srcSet:\"https://framerusercontent.com/images/ki0lvjAZ1skLbmu35BYdObiJwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ki0lvjAZ1skLbmu35BYdObiJwk.png 527w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"An isometric illustration of a person standing next to a laptop. The laptop screen displays various charts, graphs, and icons related to route planning and logistics. The person is observing the screen with hands on hips, indicating focus and analysis. There are three pink bars beside the laptop, representing data metrics.\",fit:\"fill\",intrinsicHeight:407,intrinsicWidth:527,pixelHeight:407,pixelWidth:527,sizes:\"527px\",src:\"https://framerusercontent.com/images/ki0lvjAZ1skLbmu35BYdObiJwk.png\",srcSet:\"https://framerusercontent.com/images/ki0lvjAZ1skLbmu35BYdObiJwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ki0lvjAZ1skLbmu35BYdObiJwk.png 527w\"},className:\"framer-9ycegm\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iwbda6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"left\"},children:\"FOCUS ON WHAT'S IMPORTANT\"})})},ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"left\"},children:\"FOCUS ON WHAT'S IMPORTANT\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",children:\"FOCUS ON WHAT'S IMPORTANT\"})}),className:\"framer-6mqgjx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Significantly reduce planning efforts with our advanced algorithm and simple planning tools. Use this extra time to focus on customer needs and ad hoc operational issues.\"})})},ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Significantly reduce planning efforts with our advanced algorithm and simple planning tools. Use this extra time to focus on customer needs and ad hoc operational issues.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:\"Significantly reduce planning efforts with our advanced algorithm and simple planning tools. Use this extra time to focus on customer needs and ad hoc operational issues.\"})}),className:\"framer-1925xa5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t02aqd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gr3vft\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"left\"},children:\"360\\xb0 VIEW OF DELIVERIES\"})})},ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"left\"},children:\"360\\xb0 VIEW OF DELIVERIES\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",children:\"360\\xb0 VIEW OF DELIVERIES\"})}),className:\"framer-1sm73us\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Supervise your delivery rounds in real time and adjust your schedule on the go. A flexible and hands-on service reduces operational flaws and improves the customer experience.\"})})},ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Supervise your delivery rounds in real time and adjust your schedule on the go. A flexible and hands-on service reduces operational flaws and improves the customer experience.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:\"Supervise your delivery rounds in real time and adjust your schedule on the go. A flexible and hands-on service reduces operational flaws and improves the customer experience.\"})}),className:\"framer-1dyivn7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"Overview of the interface of route planning software Dropon. It shows different routes, each having their own colour. It also shows the location of the drivers. On the right, there is an interface that makes it easy to follow up on the different delivery trips.\",fit:\"fit\",intrinsicHeight:407,intrinsicWidth:527,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7830+50+275),pixelHeight:990,pixelWidth:1581,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 720px) - 60px)`,src:\"https://framerusercontent.com/images/vjGEKlUGVMCmKWz9i1sdu1wfDk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vjGEKlUGVMCmKWz9i1sdu1wfDk.png?scale-down-to=512 512w,https://framerusercontent.com/images/vjGEKlUGVMCmKWz9i1sdu1wfDk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vjGEKlUGVMCmKWz9i1sdu1wfDk.png 1581w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Overview of the interface of route planning software Dropon. It shows different routes, each having their own colour. It also shows the location of the drivers. On the right, there is an interface that makes it easy to follow up on the different delivery trips.\",fit:\"fit\",intrinsicHeight:407,intrinsicWidth:527,pixelHeight:990,pixelWidth:1581,positionX:\"center\",positionY:\"center\",sizes:\"527px\",src:\"https://framerusercontent.com/images/vjGEKlUGVMCmKWz9i1sdu1wfDk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vjGEKlUGVMCmKWz9i1sdu1wfDk.png?scale-down-to=512 512w,https://framerusercontent.com/images/vjGEKlUGVMCmKWz9i1sdu1wfDk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vjGEKlUGVMCmKWz9i1sdu1wfDk.png 1581w\"},className:\"framer-beq6su\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v4j8de\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{background:{alt:\"An isometric illustration showing financial and analytical tools. A calculator with buttons for basic arithmetic and percentage calculations is placed next to a stack of cash and some coins. There is also a piece of paper with charts and graphs, representing financial analysis of delivery processes. A pen is positioned nearby, suggesting note-taking or calculations. \",fit:\"fill\",intrinsicHeight:406,intrinsicWidth:527,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8440+50+275),pixelHeight:406,pixelWidth:527,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 720px) - 60px)`,src:\"https://framerusercontent.com/images/A1NQ1gLNJ6DctEFckkCP6lCxbzc.png\",srcSet:\"https://framerusercontent.com/images/A1NQ1gLNJ6DctEFckkCP6lCxbzc.png?scale-down-to=512 512w,https://framerusercontent.com/images/A1NQ1gLNJ6DctEFckkCP6lCxbzc.png 527w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"An isometric illustration showing financial and analytical tools. A calculator with buttons for basic arithmetic and percentage calculations is placed next to a stack of cash and some coins. There is also a piece of paper with charts and graphs, representing financial analysis of delivery processes. A pen is positioned nearby, suggesting note-taking or calculations. \",fit:\"fill\",intrinsicHeight:406,intrinsicWidth:527,pixelHeight:406,pixelWidth:527,sizes:\"527px\",src:\"https://framerusercontent.com/images/A1NQ1gLNJ6DctEFckkCP6lCxbzc.png\",srcSet:\"https://framerusercontent.com/images/A1NQ1gLNJ6DctEFckkCP6lCxbzc.png?scale-down-to=512 512w,https://framerusercontent.com/images/A1NQ1gLNJ6DctEFckkCP6lCxbzc.png 527w\"},className:\"framer-f6jym3\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vqpdjz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"left\"},children:\"COST-EFFECTIVE OPTIMIZATION\"})})},ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",style:{\"--framer-text-alignment\":\"left\"},children:\"COST-EFFECTIVE OPTIMIZATION\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-65khz7\",\"data-styles-preset\":\"Gw8VMM289\",children:\"COST-EFFECTIVE OPTIMIZATION\"})}),className:\"framer-zt1mmd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Save time and money with shorter and more efficient delivery rounds. Reduce time spent on daily planning by up to 67%!\"})})},ClHBXrm_2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Save time and money with shorter and more efficient delivery rounds. Reduce time spent on daily planning by up to 67%!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1p22itx\",\"data-styles-preset\":\"ucaTvYocN\",children:\"Save time and money with shorter and more efficient delivery rounds. Reduce time spent on daily planning by up to 67%!\"})}),className:\"framer-h2g5kc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mjiomo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{y:(componentViewport?.y||0)+0+9201+30}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-emfnsr-container\",nodeId:\"RBYhFbh1L\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DiscoverMoreButton,{height:\"100%\",id:\"RBYhFbh1L\",layoutId:\"RBYhFbh1L\",variant:\"vOyuPiXCl\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{y:(componentViewport?.y||0)+0+9201+30}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gabs19-container\",nodeId:\"PsN3Zcvu_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ContactUsButton,{height:\"100%\",id:\"PsN3Zcvu_\",layoutId:\"PsN3Zcvu_\",variant:\"zsjDc_mia\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{width:\"818px\"},ClHBXrm_2:{height:141,y:(componentViewport?.y||0)+0+9323}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:261,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c6r60g-container\",nodeId:\"WrV7W3euw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{variant:\"hDLTXgzvP\"},ClHBXrm_2:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"YkBA3rYau\"}},children:/*#__PURE__*/_jsx(ReviewBadges,{height:\"100%\",id:\"WrV7W3euw\",layoutId:\"WrV7W3euw\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"GoAqrVJIN\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ClHBXrm_2:{y:(componentViewport?.y||0)+0+9464}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:373,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vm3ztt-container\",nodeId:\"XKhHORfMO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CGO9xfT3B:{variant:\"fmwJFwHdG\"},ClHBXrm_2:{variant:\"fmwJFwHdG\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"XKhHORfMO\",layoutId:\"XKhHORfMO\",style:{width:\"100%\"},variant:\"MlARlzlKK\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NLtI2.framer-lux5qc, .framer-NLtI2 .framer-lux5qc { display: block; }\",\".framer-NLtI2.framer-72rtr7 { 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: 1200px; }\",\".framer-NLtI2 .framer-lryf8k-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-NLtI2 .framer-12o6qa7 { align-content: center; align-items: center; background-color: var(--token-718bdfe8-6e72-40ed-b7a9-59fd4b2dc155, #f9f9f9); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-q2l9r8 { align-content: center; align-items: center; background-color: var(--token-718bdfe8-6e72-40ed-b7a9-59fd4b2dc155, #f9f9f9); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 100px 50px 90px 50px; position: relative; width: 1px; }\",\".framer-NLtI2 .framer-ri6rcx { align-content: center; align-items: center; background-color: var(--token-718bdfe8-6e72-40ed-b7a9-59fd4b2dc155, #f9f9f9); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 30px 50px 50px 0px; position: relative; width: 50%; }\",\".framer-NLtI2 .framer-wk4wia { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-zdqegd { -webkit-user-select: none; flex: none; height: auto; max-width: 100%; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-18sd67v, .framer-NLtI2 .framer-1gl8pvp, .framer-NLtI2 .framer-biatm, .framer-NLtI2 .framer-1ukkrvk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1mi9ari { -webkit-user-select: none; flex: 1 0 0px; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-1lc6w8h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-96vvfd, .framer-NLtI2 .framer-1vzs5h1, .framer-NLtI2 .framer-16ccx74, .framer-NLtI2 .framer-k2lk6d, .framer-NLtI2 .framer-1qxl7rp, .framer-NLtI2 .framer-ky2q7z, .framer-NLtI2 .framer-ou49gf, .framer-NLtI2 .framer-61cab0, .framer-NLtI2 .framer-csjoev, .framer-NLtI2 .framer-1pyvlsk, .framer-NLtI2 .framer-1c22m41, .framer-NLtI2 .framer-jnc3x, .framer-NLtI2 .framer-13yahlq, .framer-NLtI2 .framer-qdsu08 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-f1zp3y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; padding: 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1u4ji3a-container, .framer-NLtI2 .framer-h9ywrw-container, .framer-NLtI2 .framer-nzhmif-container { flex: none; height: 42px; position: relative; width: auto; }\",\".framer-NLtI2 .framer-9t0iiw { flex: none; height: 509px; max-width: 50%; min-width: 320px; position: relative; width: 50%; }\",\".framer-NLtI2 .framer-rfzzgc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 90px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-gaho9c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NLtI2 .framer-u92ui, .framer-NLtI2 .framer-1c9jg78 { flex: none; height: 300px; position: relative; text-decoration: none; width: 400px; }\",\".framer-NLtI2 .framer-1kzbp2q { 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; max-width: 1200px; overflow: visible; padding: 50px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1pr9smq, .framer-NLtI2 .framer-7ap79g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-yi25ci { 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: 70px 30px 60px 30px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1l0cigi, .framer-NLtI2 .framer-1u860xh, .framer-NLtI2 .framer-533sgd, .framer-NLtI2 .framer-1cgo1xi, .framer-NLtI2 .framer-by892e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NLtI2 .framer-x8os70-container { flex: none; height: 570px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1ocirp5, .framer-NLtI2 .framer-1wa8em3, .framer-NLtI2 .framer-buuh1v, .framer-NLtI2 .framer-8ianbj, .framer-NLtI2 .framer-js9dq2, .framer-NLtI2 .framer-1th4vdl { align-content: center; align-items: center; 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: 7px 7px 27px 0px rgba(0, 0, 0, 0.07); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 530px; justify-content: flex-start; overflow: visible; padding: 20px 10px 10px 10px; position: relative; width: 350px; }\",\".framer-NLtI2 .framer-n61zbo, .framer-NLtI2 .framer-1b6m0bo, .framer-NLtI2 .framer-ozfjg, .framer-NLtI2 .framer-1knlaun, .framer-NLtI2 .framer-1jhxkbe, .framer-NLtI2 .framer-a8awe2, .framer-NLtI2 .framer-1qpj7e0, .framer-NLtI2 .framer-18idnek, .framer-NLtI2 .framer-1h0dfkr, .framer-NLtI2 .framer-q5lyke, .framer-NLtI2 .framer-1ve7pjf, .framer-NLtI2 .framer-u3qv8r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); position: relative; text-decoration: none; width: 100px; }\",\".framer-NLtI2 .framer-h61y8t, .framer-NLtI2 .framer-1n1fk9r, .framer-NLtI2 .framer-zgq020, .framer-NLtI2 .framer-1975i24, .framer-NLtI2 .framer-1ma232k, .framer-NLtI2 .framer-1ajvk38, .framer-NLtI2 .framer-17yc0q4, .framer-NLtI2 .framer-g0z2re, .framer-NLtI2 .framer-hqe32l, .framer-NLtI2 .framer-1ln4ob5, .framer-NLtI2 .framer-1p71l7b, .framer-NLtI2 .framer-50t9ij { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-xom8wq, .framer-NLtI2 .framer-w81vwe, .framer-NLtI2 .framer-xezduw, .framer-NLtI2 .framer-2xqajj, .framer-NLtI2 .framer-f1t12z, .framer-NLtI2 .framer-1xu3337, .framer-NLtI2 .framer-k363o3, .framer-NLtI2 .framer-nxkv67, .framer-NLtI2 .framer-105kb01, .framer-NLtI2 .framer-1hivqxf, .framer-NLtI2 .framer-6y6sci, .framer-NLtI2 .framer-1jbr1hy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NLtI2 .framer-ejvd88, .framer-NLtI2 .framer-s9xbcn, .framer-NLtI2 .framer-1y1i786, .framer-NLtI2 .framer-457san, .framer-NLtI2 .framer-167t2x1, .framer-NLtI2 .framer-1ow0o5b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; padding: 20px 20px 0px 20px; position: absolute; top: 167px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-NLtI2 .framer-iz4sd3, .framer-NLtI2 .framer-snxhas, .framer-NLtI2 .framer-1ncxqk2, .framer-NLtI2 .framer-1d7umrs, .framer-NLtI2 .framer-1eanh5s, .framer-NLtI2 .framer-kkbrq0, .framer-NLtI2 .framer-1yscn61, .framer-NLtI2 .framer-1ahorhd, .framer-NLtI2 .framer-npu0we, .framer-NLtI2 .framer-glgydo, .framer-NLtI2 .framer-p7qq5u, .framer-NLtI2 .framer-1bbozib, .framer-NLtI2 .framer-9plszh, .framer-NLtI2 .framer-15uhkwg, .framer-NLtI2 .framer-1brv0pt, .framer-NLtI2 .framer-t8j6r1, .framer-NLtI2 .framer-1t9mrd8, .framer-NLtI2 .framer-1wlrnnf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-NLtI2 .framer-wbvdvx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-img3ua { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-14rh68d { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 70px 50px 70px 50px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-5y2rdr, .framer-NLtI2 .framer-1t6wwk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; padding: 70px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1uuoz3y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-15xbe5f { align-content: center; align-items: center; 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 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NLtI2 .framer-hllio3 { flex: none; height: 400px; overflow: hidden; position: relative; width: 320px; }\",\".framer-NLtI2 .framer-1t4zeco { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 0px; box-shadow: 4.6px 4.94px 10px 0px rgba(0, 0, 0, 0.07); flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-NLtI2 .framer-cktvk9 { -webkit-user-select: none; flex: none; height: auto; left: 49%; pointer-events: auto; position: absolute; top: 236px; transform: translateX(-50%); user-select: none; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-1t82wkd, .framer-NLtI2 .framer-d4mflt, .framer-NLtI2 .framer-1ssayoz { -webkit-user-select: none; flex: none; height: auto; left: 50%; pointer-events: auto; position: absolute; top: 198px; transform: translateX(-50%); user-select: none; white-space: pre-wrap; width: 224px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-1vqrw0a { aspect-ratio: 1.1843575418994414 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 179px); left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 212px; }\",\".framer-NLtI2 .framer-1spwbq4, .framer-NLtI2 .framer-27oa2k { align-content: center; align-items: center; 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 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NLtI2 .framer-1wirgxd, .framer-NLtI2 .framer-155ie78 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 4.6px 4.94px 10px 0px rgba(0, 0, 0, 0.07); flex: none; height: 400px; overflow: visible; position: relative; width: 320px; }\",\".framer-NLtI2 .framer-qec842 { aspect-ratio: 1.1284916201117319 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 286px); position: absolute; right: 0px; top: -53px; width: 323px; }\",\".framer-NLtI2 .framer-121zx89 { -webkit-user-select: none; flex: none; height: auto; left: 50%; pointer-events: auto; position: absolute; top: 236px; transform: translateX(-50%); user-select: none; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-wrqxx2 { aspect-ratio: 1.1284916201117319 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 49%; position: absolute; top: 0px; transform: translateX(-50%); width: 226px; }\",\".framer-NLtI2 .framer-yl9u62 { aspect-ratio: 1.100558659217877 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 179px); left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 197px; }\",\".framer-NLtI2 .framer-fluukk { -webkit-user-select: none; flex: none; height: auto; left: 50%; pointer-events: auto; position: absolute; top: 236px; transform: translateX(-50%); user-select: none; white-space: pre-wrap; width: 224px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-1tr7yhu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; padding: 70px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-11n0l4i, .framer-NLtI2 .framer-2i6hsa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-3661lz-container { flex: none; height: 630px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-dzkmgo, .framer-NLtI2 .framer-1e3nyms, .framer-NLtI2 .framer-g525di, .framer-NLtI2 .framer-ysydny, .framer-NLtI2 .framer-fb1u11, .framer-NLtI2 .framer-169isdm { align-content: center; align-items: center; 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: 7px 7px 27px 0px rgba(0, 0, 0, 0.07); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 450px; justify-content: flex-start; overflow: visible; padding: 20px 10px 10px 10px; position: relative; width: 350px; }\",\".framer-NLtI2 .framer-ci8sfy, .framer-NLtI2 .framer-ninde5, .framer-NLtI2 .framer-1ej8ins, .framer-NLtI2 .framer-14ruhc9, .framer-NLtI2 .framer-i8ayzk, .framer-NLtI2 .framer-v2hcl4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1gw6ek0, .framer-NLtI2 .framer-hexfqo, .framer-NLtI2 .framer-1lkxl3, .framer-NLtI2 .framer-19fbud8, .framer-NLtI2 .framer-1yc3o08, .framer-NLtI2 .framer-t0a34b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1px2heg, .framer-NLtI2 .framer-u3gtpm, .framer-NLtI2 .framer-xd6jp8, .framer-NLtI2 .framer-1j0b179, .framer-NLtI2 .framer-l0pk3s, .framer-NLtI2 .framer-1vk6s3r, .framer-NLtI2 .framer-gmnat1, .framer-NLtI2 .framer-5f33be, .framer-NLtI2 .framer-2kww9l, .framer-NLtI2 .framer-gavc9i, .framer-NLtI2 .framer-1eec1og, .framer-NLtI2 .framer-sp3se6 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-NLtI2 .framer-et2tlh, .framer-NLtI2 .framer-12j8boe, .framer-NLtI2 .framer-5jlc16, .framer-NLtI2 .framer-1vw845y, .framer-NLtI2 .framer-uec49l, .framer-NLtI2 .framer-1gzqdh9, .framer-NLtI2 .framer-b9kozq, .framer-NLtI2 .framer-1rp0nzs, .framer-NLtI2 .framer-1o263zf, .framer-NLtI2 .framer-r5imna, .framer-NLtI2 .framer-jninqi, .framer-NLtI2 .framer-12mfp8d, .framer-NLtI2 .framer-1yu7bg6, .framer-NLtI2 .framer-1ww9iol, .framer-NLtI2 .framer-1qygj38, .framer-NLtI2 .framer-l9qpgg, .framer-NLtI2 .framer-1moxydd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-NLtI2 .framer-17pux7c, .framer-NLtI2 .framer-qoc3mg, .framer-NLtI2 .framer-d3uxdl, .framer-NLtI2 .framer-1hoqh0k, .framer-NLtI2 .framer-evrslm, .framer-NLtI2 .framer-svccs8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 50%; padding: 20px 10px 0px 10px; position: absolute; top: 250px; transform: translateX(-50%); width: 310px; z-index: 1; }\",\".framer-NLtI2 .framer-ddflly { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-NLtI2 .framer-163exvj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); opacity: 0.1; position: relative; width: 20px; }\",\".framer-NLtI2 .framer-rnnqpg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 50px; position: relative; width: 1px; z-index: 10; }\",\".framer-NLtI2 .framer-i0krro { display: grid; flex: none; gap: 11px; grid-auto-rows: 200px; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, 200px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-NLtI2 .framer-1vw6fww { --border-bottom-width: 0.67px; --border-color: #e1e1e1; --border-left-width: 0.67px; --border-right-width: 0.67px; --border-style: solid; --border-top-width: 0.67px; align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-right-radius: 8px; border-top-left-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-evenly; justify-self: start; overflow: visible; padding: 0px 0px 0px 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-NLtI2 .framer-k9lfz { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 190px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-1t154co, .framer-NLtI2 .framer-bjjnv8, .framer-NLtI2 .framer-x1sq4w { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 145px); position: relative; width: 145px; }\",\".framer-NLtI2 .framer-antykb { --border-bottom-width: 0.67px; --border-color: #e1e1e1; --border-left-width: 0.67px; --border-right-width: 0.67px; --border-style: solid; --border-top-width: 0.67px; align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-evenly; justify-self: start; overflow: visible; padding: 0px 0px 0px 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-NLtI2 .framer-my51gv { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 176px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-18xix0d { --border-bottom-width: 0.67px; --border-color: #e1e1e1; --border-left-width: 0.67px; --border-right-width: 0.67px; --border-style: solid; --border-top-width: 0.67px; align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-evenly; justify-self: start; overflow: visible; padding: 0px 0px 0px 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-NLtI2 .framer-10qloqe { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 189px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-NLtI2 .framer-1er9pku { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 145px); position: relative; width: 145px; z-index: 1; }\",\".framer-NLtI2 .framer-wqu46c { --border-bottom-width: 0.67px; --border-color: #e1e1e1; --border-left-width: 0.67px; --border-right-width: 0.67px; --border-style: solid; --border-top-width: 0.67px; align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-evenly; justify-self: start; overflow: visible; padding: 0px 0px 0px 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-NLtI2 .framer-uwq7zc { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 156px; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-pr6gyf-container, .framer-NLtI2 .framer-emfnsr-container, .framer-NLtI2 .framer-gabs19-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NLtI2 .framer-orefwq, .framer-NLtI2 .framer-5fjh07, .framer-NLtI2 .framer-1t02aqd, .framer-NLtI2 .framer-v4j8de { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 70px 50px 30px 50px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1inek47, .framer-NLtI2 .framer-gr3vft { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 30px 30px 0px; position: relative; width: 50%; z-index: 1; }\",\".framer-NLtI2 .framer-1itp4oh, .framer-NLtI2 .framer-1yl4nti, .framer-NLtI2 .framer-6mqgjx, .framer-NLtI2 .framer-1925xa5, .framer-NLtI2 .framer-1sm73us, .framer-NLtI2 .framer-1dyivn7, .framer-NLtI2 .framer-zt1mmd { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-1q3i2ql { aspect-ratio: 1.2885085574572128 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 409px); position: relative; width: 527px; }\",\".framer-NLtI2 .framer-9ycegm, .framer-NLtI2 .framer-beq6su { aspect-ratio: 1.2948402948402948 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 407px); position: relative; width: 527px; }\",\".framer-NLtI2 .framer-iwbda6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 0px 30px 30px; position: relative; width: 50%; z-index: 1; }\",\".framer-NLtI2 .framer-f6jym3 { aspect-ratio: 1.2980295566502462 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 406px); position: relative; width: 527px; }\",\".framer-NLtI2 .framer-vqpdjz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 0px 30px 30px; position: relative; width: 46%; z-index: 1; }\",\".framer-NLtI2 .framer-h2g5kc { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 99%; word-break: break-word; word-wrap: break-word; }\",\".framer-NLtI2 .framer-mjiomo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1200px; padding: 30px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1c6r60g-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-NLtI2 .framer-1vm3ztt-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLtI2.framer-72rtr7, .framer-NLtI2 .framer-q2l9r8, .framer-NLtI2 .framer-ri6rcx, .framer-NLtI2 .framer-wk4wia, .framer-NLtI2 .framer-18sd67v, .framer-NLtI2 .framer-1lc6w8h, .framer-NLtI2 .framer-1gl8pvp, .framer-NLtI2 .framer-biatm, .framer-NLtI2 .framer-1ukkrvk, .framer-NLtI2 .framer-rfzzgc, .framer-NLtI2 .framer-gaho9c, .framer-NLtI2 .framer-1kzbp2q, .framer-NLtI2 .framer-1pr9smq, .framer-NLtI2 .framer-yi25ci, .framer-NLtI2 .framer-1ocirp5, .framer-NLtI2 .framer-h61y8t, .framer-NLtI2 .framer-ejvd88, .framer-NLtI2 .framer-1wa8em3, .framer-NLtI2 .framer-1n1fk9r, .framer-NLtI2 .framer-s9xbcn, .framer-NLtI2 .framer-buuh1v, .framer-NLtI2 .framer-zgq020, .framer-NLtI2 .framer-1y1i786, .framer-NLtI2 .framer-8ianbj, .framer-NLtI2 .framer-1975i24, .framer-NLtI2 .framer-457san, .framer-NLtI2 .framer-js9dq2, .framer-NLtI2 .framer-1ma232k, .framer-NLtI2 .framer-167t2x1, .framer-NLtI2 .framer-1th4vdl, .framer-NLtI2 .framer-1ajvk38, .framer-NLtI2 .framer-1ow0o5b, .framer-NLtI2 .framer-wbvdvx, .framer-NLtI2 .framer-14rh68d, .framer-NLtI2 .framer-7ap79g, .framer-NLtI2 .framer-5y2rdr, .framer-NLtI2 .framer-1uuoz3y, .framer-NLtI2 .framer-15xbe5f, .framer-NLtI2 .framer-1spwbq4, .framer-NLtI2 .framer-27oa2k, .framer-NLtI2 .framer-1tr7yhu, .framer-NLtI2 .framer-11n0l4i, .framer-NLtI2 .framer-dzkmgo, .framer-NLtI2 .framer-17yc0q4, .framer-NLtI2 .framer-ci8sfy, .framer-NLtI2 .framer-1gw6ek0, .framer-NLtI2 .framer-17pux7c, .framer-NLtI2 .framer-1e3nyms, .framer-NLtI2 .framer-g0z2re, .framer-NLtI2 .framer-ninde5, .framer-NLtI2 .framer-hexfqo, .framer-NLtI2 .framer-qoc3mg, .framer-NLtI2 .framer-g525di, .framer-NLtI2 .framer-hqe32l, .framer-NLtI2 .framer-1ej8ins, .framer-NLtI2 .framer-1lkxl3, .framer-NLtI2 .framer-d3uxdl, .framer-NLtI2 .framer-ysydny, .framer-NLtI2 .framer-1ln4ob5, .framer-NLtI2 .framer-14ruhc9, .framer-NLtI2 .framer-19fbud8, .framer-NLtI2 .framer-1hoqh0k, .framer-NLtI2 .framer-fb1u11, .framer-NLtI2 .framer-1p71l7b, .framer-NLtI2 .framer-i8ayzk, .framer-NLtI2 .framer-1yc3o08, .framer-NLtI2 .framer-evrslm, .framer-NLtI2 .framer-169isdm, .framer-NLtI2 .framer-50t9ij, .framer-NLtI2 .framer-v2hcl4, .framer-NLtI2 .framer-t0a34b, .framer-NLtI2 .framer-svccs8, .framer-NLtI2 .framer-2i6hsa, .framer-NLtI2 .framer-rnnqpg, .framer-NLtI2 .framer-1t6wwk, .framer-NLtI2 .framer-orefwq, .framer-NLtI2 .framer-1inek47, .framer-NLtI2 .framer-5fjh07, .framer-NLtI2 .framer-iwbda6, .framer-NLtI2 .framer-1t02aqd, .framer-NLtI2 .framer-gr3vft, .framer-NLtI2 .framer-v4j8de, .framer-NLtI2 .framer-vqpdjz, .framer-NLtI2 .framer-mjiomo { gap: 0px; } .framer-NLtI2.framer-72rtr7 > *, .framer-NLtI2 .framer-15xbe5f > *, .framer-NLtI2 .framer-1spwbq4 > *, .framer-NLtI2 .framer-27oa2k > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NLtI2.framer-72rtr7 > :first-child, .framer-NLtI2 .framer-ri6rcx > :first-child, .framer-NLtI2 .framer-1lc6w8h > :first-child, .framer-NLtI2 .framer-1kzbp2q > :first-child, .framer-NLtI2 .framer-1pr9smq > :first-child, .framer-NLtI2 .framer-yi25ci > :first-child, .framer-NLtI2 .framer-1ocirp5 > :first-child, .framer-NLtI2 .framer-ejvd88 > :first-child, .framer-NLtI2 .framer-1wa8em3 > :first-child, .framer-NLtI2 .framer-s9xbcn > :first-child, .framer-NLtI2 .framer-buuh1v > :first-child, .framer-NLtI2 .framer-1y1i786 > :first-child, .framer-NLtI2 .framer-8ianbj > :first-child, .framer-NLtI2 .framer-457san > :first-child, .framer-NLtI2 .framer-js9dq2 > :first-child, .framer-NLtI2 .framer-167t2x1 > :first-child, .framer-NLtI2 .framer-1th4vdl > :first-child, .framer-NLtI2 .framer-1ow0o5b > :first-child, .framer-NLtI2 .framer-wbvdvx > :first-child, .framer-NLtI2 .framer-14rh68d > :first-child, .framer-NLtI2 .framer-7ap79g > :first-child, .framer-NLtI2 .framer-5y2rdr > :first-child, .framer-NLtI2 .framer-15xbe5f > :first-child, .framer-NLtI2 .framer-1spwbq4 > :first-child, .framer-NLtI2 .framer-27oa2k > :first-child, .framer-NLtI2 .framer-1tr7yhu > :first-child, .framer-NLtI2 .framer-dzkmgo > :first-child, .framer-NLtI2 .framer-1e3nyms > :first-child, .framer-NLtI2 .framer-g525di > :first-child, .framer-NLtI2 .framer-ysydny > :first-child, .framer-NLtI2 .framer-fb1u11 > :first-child, .framer-NLtI2 .framer-169isdm > :first-child, .framer-NLtI2 .framer-rnnqpg > :first-child, .framer-NLtI2 .framer-1t6wwk > :first-child, .framer-NLtI2 .framer-1inek47 > :first-child, .framer-NLtI2 .framer-iwbda6 > :first-child, .framer-NLtI2 .framer-gr3vft > :first-child, .framer-NLtI2 .framer-vqpdjz > :first-child { margin-top: 0px; } .framer-NLtI2.framer-72rtr7 > :last-child, .framer-NLtI2 .framer-ri6rcx > :last-child, .framer-NLtI2 .framer-1lc6w8h > :last-child, .framer-NLtI2 .framer-1kzbp2q > :last-child, .framer-NLtI2 .framer-1pr9smq > :last-child, .framer-NLtI2 .framer-yi25ci > :last-child, .framer-NLtI2 .framer-1ocirp5 > :last-child, .framer-NLtI2 .framer-ejvd88 > :last-child, .framer-NLtI2 .framer-1wa8em3 > :last-child, .framer-NLtI2 .framer-s9xbcn > :last-child, .framer-NLtI2 .framer-buuh1v > :last-child, .framer-NLtI2 .framer-1y1i786 > :last-child, .framer-NLtI2 .framer-8ianbj > :last-child, .framer-NLtI2 .framer-457san > :last-child, .framer-NLtI2 .framer-js9dq2 > :last-child, .framer-NLtI2 .framer-167t2x1 > :last-child, .framer-NLtI2 .framer-1th4vdl > :last-child, .framer-NLtI2 .framer-1ow0o5b > :last-child, .framer-NLtI2 .framer-wbvdvx > :last-child, .framer-NLtI2 .framer-14rh68d > :last-child, .framer-NLtI2 .framer-7ap79g > :last-child, .framer-NLtI2 .framer-5y2rdr > :last-child, .framer-NLtI2 .framer-15xbe5f > :last-child, .framer-NLtI2 .framer-1spwbq4 > :last-child, .framer-NLtI2 .framer-27oa2k > :last-child, .framer-NLtI2 .framer-1tr7yhu > :last-child, .framer-NLtI2 .framer-dzkmgo > :last-child, .framer-NLtI2 .framer-1e3nyms > :last-child, .framer-NLtI2 .framer-g525di > :last-child, .framer-NLtI2 .framer-ysydny > :last-child, .framer-NLtI2 .framer-fb1u11 > :last-child, .framer-NLtI2 .framer-169isdm > :last-child, .framer-NLtI2 .framer-rnnqpg > :last-child, .framer-NLtI2 .framer-1t6wwk > :last-child, .framer-NLtI2 .framer-1inek47 > :last-child, .framer-NLtI2 .framer-iwbda6 > :last-child, .framer-NLtI2 .framer-gr3vft > :last-child, .framer-NLtI2 .framer-vqpdjz > :last-child { margin-bottom: 0px; } .framer-NLtI2 .framer-q2l9r8 > *, .framer-NLtI2 .framer-rfzzgc > *, .framer-NLtI2 .framer-gaho9c > *, .framer-NLtI2 .framer-h61y8t > *, .framer-NLtI2 .framer-1n1fk9r > *, .framer-NLtI2 .framer-zgq020 > *, .framer-NLtI2 .framer-1975i24 > *, .framer-NLtI2 .framer-1ma232k > *, .framer-NLtI2 .framer-1ajvk38 > *, .framer-NLtI2 .framer-17yc0q4 > *, .framer-NLtI2 .framer-1gw6ek0 > *, .framer-NLtI2 .framer-g0z2re > *, .framer-NLtI2 .framer-hexfqo > *, .framer-NLtI2 .framer-hqe32l > *, .framer-NLtI2 .framer-1lkxl3 > *, .framer-NLtI2 .framer-1ln4ob5 > *, .framer-NLtI2 .framer-19fbud8 > *, .framer-NLtI2 .framer-1p71l7b > *, .framer-NLtI2 .framer-1yc3o08 > *, .framer-NLtI2 .framer-50t9ij > *, .framer-NLtI2 .framer-t0a34b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NLtI2 .framer-q2l9r8 > :first-child, .framer-NLtI2 .framer-wk4wia > :first-child, .framer-NLtI2 .framer-18sd67v > :first-child, .framer-NLtI2 .framer-1gl8pvp > :first-child, .framer-NLtI2 .framer-biatm > :first-child, .framer-NLtI2 .framer-1ukkrvk > :first-child, .framer-NLtI2 .framer-rfzzgc > :first-child, .framer-NLtI2 .framer-gaho9c > :first-child, .framer-NLtI2 .framer-h61y8t > :first-child, .framer-NLtI2 .framer-1n1fk9r > :first-child, .framer-NLtI2 .framer-zgq020 > :first-child, .framer-NLtI2 .framer-1975i24 > :first-child, .framer-NLtI2 .framer-1ma232k > :first-child, .framer-NLtI2 .framer-1ajvk38 > :first-child, .framer-NLtI2 .framer-1uuoz3y > :first-child, .framer-NLtI2 .framer-11n0l4i > :first-child, .framer-NLtI2 .framer-17yc0q4 > :first-child, .framer-NLtI2 .framer-ci8sfy > :first-child, .framer-NLtI2 .framer-1gw6ek0 > :first-child, .framer-NLtI2 .framer-17pux7c > :first-child, .framer-NLtI2 .framer-g0z2re > :first-child, .framer-NLtI2 .framer-ninde5 > :first-child, .framer-NLtI2 .framer-hexfqo > :first-child, .framer-NLtI2 .framer-qoc3mg > :first-child, .framer-NLtI2 .framer-hqe32l > :first-child, .framer-NLtI2 .framer-1ej8ins > :first-child, .framer-NLtI2 .framer-1lkxl3 > :first-child, .framer-NLtI2 .framer-d3uxdl > :first-child, .framer-NLtI2 .framer-1ln4ob5 > :first-child, .framer-NLtI2 .framer-14ruhc9 > :first-child, .framer-NLtI2 .framer-19fbud8 > :first-child, .framer-NLtI2 .framer-1hoqh0k > :first-child, .framer-NLtI2 .framer-1p71l7b > :first-child, .framer-NLtI2 .framer-i8ayzk > :first-child, .framer-NLtI2 .framer-1yc3o08 > :first-child, .framer-NLtI2 .framer-evrslm > :first-child, .framer-NLtI2 .framer-50t9ij > :first-child, .framer-NLtI2 .framer-v2hcl4 > :first-child, .framer-NLtI2 .framer-t0a34b > :first-child, .framer-NLtI2 .framer-svccs8 > :first-child, .framer-NLtI2 .framer-2i6hsa > :first-child, .framer-NLtI2 .framer-orefwq > :first-child, .framer-NLtI2 .framer-5fjh07 > :first-child, .framer-NLtI2 .framer-1t02aqd > :first-child, .framer-NLtI2 .framer-v4j8de > :first-child, .framer-NLtI2 .framer-mjiomo > :first-child { margin-left: 0px; } .framer-NLtI2 .framer-q2l9r8 > :last-child, .framer-NLtI2 .framer-wk4wia > :last-child, .framer-NLtI2 .framer-18sd67v > :last-child, .framer-NLtI2 .framer-1gl8pvp > :last-child, .framer-NLtI2 .framer-biatm > :last-child, .framer-NLtI2 .framer-1ukkrvk > :last-child, .framer-NLtI2 .framer-rfzzgc > :last-child, .framer-NLtI2 .framer-gaho9c > :last-child, .framer-NLtI2 .framer-h61y8t > :last-child, .framer-NLtI2 .framer-1n1fk9r > :last-child, .framer-NLtI2 .framer-zgq020 > :last-child, .framer-NLtI2 .framer-1975i24 > :last-child, .framer-NLtI2 .framer-1ma232k > :last-child, .framer-NLtI2 .framer-1ajvk38 > :last-child, .framer-NLtI2 .framer-1uuoz3y > :last-child, .framer-NLtI2 .framer-11n0l4i > :last-child, .framer-NLtI2 .framer-17yc0q4 > :last-child, .framer-NLtI2 .framer-ci8sfy > :last-child, .framer-NLtI2 .framer-1gw6ek0 > :last-child, .framer-NLtI2 .framer-17pux7c > :last-child, .framer-NLtI2 .framer-g0z2re > :last-child, .framer-NLtI2 .framer-ninde5 > :last-child, .framer-NLtI2 .framer-hexfqo > :last-child, .framer-NLtI2 .framer-qoc3mg > :last-child, .framer-NLtI2 .framer-hqe32l > :last-child, .framer-NLtI2 .framer-1ej8ins > :last-child, .framer-NLtI2 .framer-1lkxl3 > :last-child, .framer-NLtI2 .framer-d3uxdl > :last-child, .framer-NLtI2 .framer-1ln4ob5 > :last-child, .framer-NLtI2 .framer-14ruhc9 > :last-child, .framer-NLtI2 .framer-19fbud8 > :last-child, .framer-NLtI2 .framer-1hoqh0k > :last-child, .framer-NLtI2 .framer-1p71l7b > :last-child, .framer-NLtI2 .framer-i8ayzk > :last-child, .framer-NLtI2 .framer-1yc3o08 > :last-child, .framer-NLtI2 .framer-evrslm > :last-child, .framer-NLtI2 .framer-50t9ij > :last-child, .framer-NLtI2 .framer-v2hcl4 > :last-child, .framer-NLtI2 .framer-t0a34b > :last-child, .framer-NLtI2 .framer-svccs8 > :last-child, .framer-NLtI2 .framer-2i6hsa > :last-child, .framer-NLtI2 .framer-orefwq > :last-child, .framer-NLtI2 .framer-5fjh07 > :last-child, .framer-NLtI2 .framer-1t02aqd > :last-child, .framer-NLtI2 .framer-v4j8de > :last-child, .framer-NLtI2 .framer-mjiomo > :last-child { margin-right: 0px; } .framer-NLtI2 .framer-ri6rcx > *, .framer-NLtI2 .framer-rnnqpg > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-NLtI2 .framer-wk4wia > *, .framer-NLtI2 .framer-18sd67v > *, .framer-NLtI2 .framer-1gl8pvp > *, .framer-NLtI2 .framer-biatm > *, .framer-NLtI2 .framer-1ukkrvk > *, .framer-NLtI2 .framer-11n0l4i > *, .framer-NLtI2 .framer-ci8sfy > *, .framer-NLtI2 .framer-ninde5 > *, .framer-NLtI2 .framer-1ej8ins > *, .framer-NLtI2 .framer-14ruhc9 > *, .framer-NLtI2 .framer-i8ayzk > *, .framer-NLtI2 .framer-v2hcl4 > *, .framer-NLtI2 .framer-2i6hsa > *, .framer-NLtI2 .framer-orefwq > *, .framer-NLtI2 .framer-5fjh07 > *, .framer-NLtI2 .framer-1t02aqd > *, .framer-NLtI2 .framer-v4j8de > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NLtI2 .framer-1lc6w8h > *, .framer-NLtI2 .framer-1kzbp2q > *, .framer-NLtI2 .framer-1pr9smq > *, .framer-NLtI2 .framer-yi25ci > *, .framer-NLtI2 .framer-ejvd88 > *, .framer-NLtI2 .framer-s9xbcn > *, .framer-NLtI2 .framer-1y1i786 > *, .framer-NLtI2 .framer-457san > *, .framer-NLtI2 .framer-167t2x1 > *, .framer-NLtI2 .framer-1ow0o5b > *, .framer-NLtI2 .framer-7ap79g > *, .framer-NLtI2 .framer-dzkmgo > *, .framer-NLtI2 .framer-1e3nyms > *, .framer-NLtI2 .framer-g525di > *, .framer-NLtI2 .framer-ysydny > *, .framer-NLtI2 .framer-fb1u11 > *, .framer-NLtI2 .framer-169isdm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NLtI2 .framer-1ocirp5 > *, .framer-NLtI2 .framer-1wa8em3 > *, .framer-NLtI2 .framer-buuh1v > *, .framer-NLtI2 .framer-8ianbj > *, .framer-NLtI2 .framer-js9dq2 > *, .framer-NLtI2 .framer-1th4vdl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NLtI2 .framer-wbvdvx > *, .framer-NLtI2 .framer-5y2rdr > *, .framer-NLtI2 .framer-1tr7yhu > *, .framer-NLtI2 .framer-1t6wwk > *, .framer-NLtI2 .framer-1inek47 > *, .framer-NLtI2 .framer-iwbda6 > *, .framer-NLtI2 .framer-gr3vft > *, .framer-NLtI2 .framer-vqpdjz > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-NLtI2 .framer-14rh68d > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NLtI2 .framer-1uuoz3y > *, .framer-NLtI2 .framer-17pux7c > *, .framer-NLtI2 .framer-qoc3mg > *, .framer-NLtI2 .framer-d3uxdl > *, .framer-NLtI2 .framer-1hoqh0k > *, .framer-NLtI2 .framer-evrslm > *, .framer-NLtI2 .framer-svccs8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-NLtI2 .framer-mjiomo > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-NLtI2[data-border=\"true\"]::after, .framer-NLtI2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-NLtI2.framer-72rtr7 { width: 810px; } .framer-NLtI2 .framer-lryf8k-container { order: 0; } .framer-NLtI2 .framer-12o6qa7, .framer-NLtI2 .framer-1q3i2ql, .framer-NLtI2 .framer-9ycegm, .framer-NLtI2 .framer-beq6su, .framer-NLtI2 .framer-f6jym3 { order: 1; } .framer-NLtI2 .framer-q2l9r8 { flex-direction: column; max-width: 1024px; padding: 40px 50px 90px 50px; } .framer-NLtI2 .framer-ri6rcx { max-width: 810px; padding: 30px 0px 50px 0px; width: 100%; } .framer-NLtI2 .framer-f1zp3y { gap: 50px; justify-content: flex-start; } .framer-NLtI2 .framer-9t0iiw { max-width: 100%; width: 100%; } .framer-NLtI2 .framer-rfzzgc { max-width: 1024px; order: 2; } .framer-NLtI2 .framer-gaho9c { background-color: #ffffff; padding: 0px 50px 0px 50px; } .framer-NLtI2 .framer-1kzbp2q { max-width: 1024px; order: 3; width: 812px; } .framer-NLtI2 .framer-yi25ci { padding: 70px 0px 60px 0px; } .framer-NLtI2 .framer-14rh68d { max-width: 1024px; order: 4; padding: 80px 50px 80px 50px; } .framer-NLtI2 .framer-5y2rdr, .framer-NLtI2 .framer-1t6wwk { padding: 70px 0px 30px 0px; } .framer-NLtI2 .framer-15xbe5f, .framer-NLtI2 .framer-1spwbq4, .framer-NLtI2 .framer-27oa2k, .framer-NLtI2 .framer-155ie78 { height: 390px; width: 223px; } .framer-NLtI2 .framer-hllio3, .framer-NLtI2 .framer-1wirgxd { height: 390px; width: 100%; } .framer-NLtI2 .framer-cktvk9 { bottom: 0px; left: 50%; top: unset; width: 85%; } .framer-NLtI2 .framer-1t82wkd { left: 0px; right: -1px; transform: unset; width: unset; } .framer-NLtI2 .framer-1vqrw0a { left: 6px; transform: unset; } .framer-NLtI2 .framer-121zx89, .framer-NLtI2 .framer-fluukk { width: 85%; } .framer-NLtI2 .framer-1tr7yhu { max-width: 1024px; order: 5; } .framer-NLtI2 .framer-3661lz-container { height: 576px; max-width: 1024px; order: 6; } .framer-NLtI2 .framer-2i6hsa { order: 10; } .framer-NLtI2 .framer-rnnqpg { max-width: 1024px; } .framer-NLtI2 .framer-i0krro, .framer-NLtI2 .framer-h2g5kc { width: 100%; } .framer-NLtI2 .framer-1vw6fww, .framer-NLtI2 .framer-antykb, .framer-NLtI2 .framer-wqu46c { padding: 0px 0px 0px 30px; } .framer-NLtI2 .framer-18xix0d { gap: 0px; justify-content: center; padding: 0px 0px 0px 30px; } .framer-NLtI2 .framer-orefwq { flex-direction: column; max-width: 1024px; order: 11; } .framer-NLtI2 .framer-1inek47, .framer-NLtI2 .framer-iwbda6, .framer-NLtI2 .framer-gr3vft, .framer-NLtI2 .framer-vqpdjz { align-content: center; align-items: center; order: 0; padding: 30px 0px 30px 0px; width: 100%; } .framer-NLtI2 .framer-5fjh07 { flex-direction: column; max-width: 1024px; order: 12; } .framer-NLtI2 .framer-1t02aqd { flex-direction: column; max-width: 1024px; order: 13; } .framer-NLtI2 .framer-v4j8de { flex-direction: column; max-width: 1024px; order: 14; } .framer-NLtI2 .framer-mjiomo { max-width: 1024px; order: 15; } .framer-NLtI2 .framer-1c6r60g-container { order: 16; width: 818px; } .framer-NLtI2 .framer-1vm3ztt-container { order: 17; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLtI2 .framer-q2l9r8, .framer-NLtI2 .framer-f1zp3y, .framer-NLtI2 .framer-18xix0d, .framer-NLtI2 .framer-orefwq, .framer-NLtI2 .framer-5fjh07, .framer-NLtI2 .framer-1t02aqd, .framer-NLtI2 .framer-v4j8de { gap: 0px; } .framer-NLtI2 .framer-q2l9r8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NLtI2 .framer-q2l9r8 > :first-child, .framer-NLtI2 .framer-orefwq > :first-child, .framer-NLtI2 .framer-5fjh07 > :first-child, .framer-NLtI2 .framer-1t02aqd > :first-child, .framer-NLtI2 .framer-v4j8de > :first-child { margin-top: 0px; } .framer-NLtI2 .framer-q2l9r8 > :last-child, .framer-NLtI2 .framer-orefwq > :last-child, .framer-NLtI2 .framer-5fjh07 > :last-child, .framer-NLtI2 .framer-1t02aqd > :last-child, .framer-NLtI2 .framer-v4j8de > :last-child { margin-bottom: 0px; } .framer-NLtI2 .framer-f1zp3y > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-NLtI2 .framer-f1zp3y > :first-child, .framer-NLtI2 .framer-18xix0d > :first-child { margin-left: 0px; } .framer-NLtI2 .framer-f1zp3y > :last-child, .framer-NLtI2 .framer-18xix0d > :last-child { margin-right: 0px; } .framer-NLtI2 .framer-18xix0d > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NLtI2 .framer-orefwq > *, .framer-NLtI2 .framer-5fjh07 > *, .framer-NLtI2 .framer-1t02aqd > *, .framer-NLtI2 .framer-v4j8de > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-NLtI2.framer-72rtr7 { width: 390px; } .framer-NLtI2 .framer-q2l9r8 { flex-direction: column; max-width: 720px; padding: 30px 0px 50px 0px; } .framer-NLtI2 .framer-ri6rcx { gap: 30px; max-width: unset; order: 0; padding: 0px 30px 0px 30px; width: 100%; } .framer-NLtI2 .framer-f1zp3y { gap: 10px; justify-content: center; padding: 30px 0px 10px 0px; } .framer-NLtI2 .framer-9t0iiw { height: 400px; max-width: unset; min-width: unset; order: 1; width: 95%; } .framer-NLtI2 .framer-rfzzgc, .framer-NLtI2 .framer-rnnqpg { max-width: 720px; padding: 50px 30px 50px 30px; } .framer-NLtI2 .framer-gaho9c { flex-direction: column; gap: 20px; } .framer-NLtI2 .framer-u92ui, .framer-NLtI2 .framer-1c9jg78 { height: 200px; width: 200px; } .framer-NLtI2 .framer-1kzbp2q { max-width: 720px; padding: 50px 30px 33px 30px; } .framer-NLtI2 .framer-yi25ci { padding: 30px 10px 60px 10px; } .framer-NLtI2 .framer-1l0cigi, .framer-NLtI2 .framer-1u860xh, .framer-NLtI2 .framer-533sgd, .framer-NLtI2 .framer-1cgo1xi, .framer-NLtI2 .framer-by892e { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-NLtI2 .framer-14rh68d { gap: 40px; max-width: 720px; padding: 50px 30px 60px 30px; } .framer-NLtI2 .framer-5y2rdr, .framer-NLtI2 .framer-1t6wwk { padding: 30px 0px 30px 0px; } .framer-NLtI2 .framer-1uuoz3y { flex-direction: column; } .framer-NLtI2 .framer-15xbe5f, .framer-NLtI2 .framer-hllio3, .framer-NLtI2 .framer-1spwbq4, .framer-NLtI2 .framer-1wirgxd, .framer-NLtI2 .framer-27oa2k, .framer-NLtI2 .framer-155ie78 { width: 330px; } .framer-NLtI2 .framer-qec842 { right: -1px; top: -53px; width: 323px; } .framer-NLtI2 .framer-1tr7yhu { max-width: 720px; padding: 30px 30px 0px 30px; } .framer-NLtI2 .framer-3661lz-container { max-width: 720px; } .framer-NLtI2 .framer-i0krro { grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(4, 200px); height: 833px; width: 90%; } .framer-NLtI2 .framer-1vw6fww { border-bottom-left-radius: 8px; border-top-right-radius: 8px; flex-direction: column; padding: 20px 10px 0px 10px; } .framer-NLtI2 .framer-k9lfz, .framer-NLtI2 .framer-my51gv, .framer-NLtI2 .framer-10qloqe, .framer-NLtI2 .framer-uwq7zc { width: 100%; } .framer-NLtI2 .framer-antykb { border-bottom-right-radius: 8px; border-top-left-radius: 8px; flex-direction: column; padding: 20px 10px 0px 10px; } .framer-NLtI2 .framer-18xix0d { border-bottom-left-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex-direction: column; padding: 20px 10px 0px 10px; } .framer-NLtI2 .framer-wqu46c { border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex-direction: column; padding: 20px 10px 0px 10px; } .framer-NLtI2 .framer-orefwq { align-content: flex-start; align-items: flex-start; flex-direction: column; max-width: 720px; padding: 70px 30px 30px 30px; } .framer-NLtI2 .framer-1inek47 { order: 0; padding: 10px; width: 100%; } .framer-NLtI2 .framer-1q3i2ql { height: var(--framer-aspect-ratio-supported, 155px); order: 1; width: 100%; } .framer-NLtI2 .framer-5fjh07, .framer-NLtI2 .framer-1t02aqd, .framer-NLtI2 .framer-v4j8de { align-content: flex-start; align-items: flex-start; flex-direction: column; max-width: 720px; padding: 50px 30px 30px 30px; } .framer-NLtI2 .framer-9ycegm, .framer-NLtI2 .framer-beq6su, .framer-NLtI2 .framer-f6jym3 { height: var(--framer-aspect-ratio-supported, 154px); order: 1; width: 100%; } .framer-NLtI2 .framer-iwbda6, .framer-NLtI2 .framer-gr3vft { order: 0; padding: 30px 0px 30px 0px; width: 100%; } .framer-NLtI2 .framer-vqpdjz { order: 0; padding: 30px 0px 30px 0px; width: 85%; } .framer-NLtI2 .framer-mjiomo { max-width: 720px; padding: 30px 30px 50px 30px; } .framer-NLtI2 .framer-1c6r60g-container { height: 141px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NLtI2 .framer-q2l9r8, .framer-NLtI2 .framer-ri6rcx, .framer-NLtI2 .framer-f1zp3y, .framer-NLtI2 .framer-gaho9c, .framer-NLtI2 .framer-14rh68d, .framer-NLtI2 .framer-1uuoz3y, .framer-NLtI2 .framer-1vw6fww, .framer-NLtI2 .framer-antykb, .framer-NLtI2 .framer-18xix0d, .framer-NLtI2 .framer-wqu46c, .framer-NLtI2 .framer-orefwq, .framer-NLtI2 .framer-5fjh07, .framer-NLtI2 .framer-1t02aqd, .framer-NLtI2 .framer-v4j8de { gap: 0px; } .framer-NLtI2 .framer-q2l9r8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NLtI2 .framer-q2l9r8 > :first-child, .framer-NLtI2 .framer-ri6rcx > :first-child, .framer-NLtI2 .framer-gaho9c > :first-child, .framer-NLtI2 .framer-14rh68d > :first-child, .framer-NLtI2 .framer-1uuoz3y > :first-child, .framer-NLtI2 .framer-orefwq > :first-child, .framer-NLtI2 .framer-5fjh07 > :first-child, .framer-NLtI2 .framer-1t02aqd > :first-child, .framer-NLtI2 .framer-v4j8de > :first-child { margin-top: 0px; } .framer-NLtI2 .framer-q2l9r8 > :last-child, .framer-NLtI2 .framer-ri6rcx > :last-child, .framer-NLtI2 .framer-gaho9c > :last-child, .framer-NLtI2 .framer-14rh68d > :last-child, .framer-NLtI2 .framer-1uuoz3y > :last-child, .framer-NLtI2 .framer-orefwq > :last-child, .framer-NLtI2 .framer-5fjh07 > :last-child, .framer-NLtI2 .framer-1t02aqd > :last-child, .framer-NLtI2 .framer-v4j8de > :last-child { margin-bottom: 0px; } .framer-NLtI2 .framer-ri6rcx > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-NLtI2 .framer-f1zp3y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NLtI2 .framer-f1zp3y > :first-child { margin-left: 0px; } .framer-NLtI2 .framer-f1zp3y > :last-child { margin-right: 0px; } .framer-NLtI2 .framer-gaho9c > *, .framer-NLtI2 .framer-1uuoz3y > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NLtI2 .framer-14rh68d > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NLtI2 .framer-1vw6fww > *, .framer-NLtI2 .framer-1vw6fww > :first-child, .framer-NLtI2 .framer-1vw6fww > :last-child, .framer-NLtI2 .framer-antykb > *, .framer-NLtI2 .framer-antykb > :first-child, .framer-NLtI2 .framer-antykb > :last-child, .framer-NLtI2 .framer-18xix0d > *, .framer-NLtI2 .framer-18xix0d > :first-child, .framer-NLtI2 .framer-18xix0d > :last-child, .framer-NLtI2 .framer-wqu46c > *, .framer-NLtI2 .framer-wqu46c > :first-child, .framer-NLtI2 .framer-wqu46c > :last-child { margin: 0px; } .framer-NLtI2 .framer-orefwq > *, .framer-NLtI2 .framer-5fjh07 > *, .framer-NLtI2 .framer-1t02aqd > *, .framer-NLtI2 .framer-v4j8de > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7319\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CGO9xfT3B\":{\"layout\":[\"fixed\",\"auto\"]},\"ClHBXrm_2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"kaPGnjbnh\":{\"pattern\":\":kaPGnjbnh\",\"name\":\"industries\"},\"C6fcrIjkE\":{\"pattern\":\":C6fcrIjkE\",\"name\":\"planin3steps\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-NLtI2\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7319,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew7Y3tcoqK5.woff2\",weight:\"300\"}]},...NavigationFonts,...DiscoverMoreButtonFonts,...ContactUsButtonFonts,...SlideshowFonts,...BookADemoButtonFonts,...TickerFonts,...ReviewBadgesFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"kaPGnjbnh\\\":{\\\"pattern\\\":\\\":kaPGnjbnh\\\",\\\"name\\\":\\\"industries\\\"},\\\"C6fcrIjkE\\\":{\\\"pattern\\\":\\\":C6fcrIjkE\\\",\\\"name\\\":\\\"planin3steps\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CGO9xfT3B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ClHBXrm_2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7319\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "u", "css", "FramerRLyyMvyVq", "withCSS", "RLyyMvyVq_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "qQWDmN02_default", "DiscoverMoreButtonFonts", "RLyyMvyVq_default", "ContactUsButtonFonts", "GUS7ikA6H_default", "SlideshowFonts", "Slideshow", "BookADemoButtonFonts", "hSMYnvOuP_default", "TickerFonts", "Ticker", "ReviewBadgesFonts", "EkcjInutm_default", "FooterFonts", "QjsWpN52q_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
