{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/YQG9iXvyPCyraHS7bHpE/lXa8lmMR0mb4zSDghYad/GUNITw4XO.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import Button from\"#framer/local/canvasComponent/ce10nUxAY/ce10nUxAY.js\";import SectionFooter from\"#framer/local/canvasComponent/GaF_e60Ln/GaF_e60Ln.js\";import Arrow from\"#framer/local/canvasComponent/IefBmGevO/IefBmGevO.js\";import Anno from\"#framer/local/canvasComponent/ql25XiHI8/ql25XiHI8.js\";import NavigationBar from\"#framer/local/canvasComponent/Z8oF7QjKV/Z8oF7QjKV.js\";import ThemeToggle from\"#framer/local/codeFile/Q6hv2cs/ThemeToggle_2.js\";import*as sharedStyle4 from\"#framer/local/css/kuEemeD9d/kuEemeD9d.js\";import*as sharedStyle7 from\"#framer/local/css/m1dCGMeKL/m1dCGMeKL.js\";import*as sharedStyle6 from\"#framer/local/css/p0R6TNF2y/p0R6TNF2y.js\";import*as sharedStyle from\"#framer/local/css/rzbPvVOV7/rzbPvVOV7.js\";import*as sharedStyle5 from\"#framer/local/css/SDCgT3u2H/SDCgT3u2H.js\";import*as sharedStyle2 from\"#framer/local/css/SedE6bL0_/SedE6bL0_.js\";import*as sharedStyle1 from\"#framer/local/css/THax8Ioar/THax8Ioar.js\";import*as sharedStyle8 from\"#framer/local/css/x1wNxbh2x/x1wNxbh2x.js\";import*as sharedStyle3 from\"#framer/local/css/xjEsfn0hk/xjEsfn0hk.js\";import metadataProvider from\"#framer/local/webPageMetadata/GUNITw4XO/GUNITw4XO.js\";const NavigationBarFonts=getFonts(NavigationBar);const MotionDivWithFX=withFX(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const CarouselFonts=getFonts(Carousel);const ArrowFonts=getFonts(Arrow);const AnnoFonts=getFonts(Anno);const ButtonFonts=getFonts(Button);const SectionFooterFonts=getFonts(SectionFooter);const ContainerWithFX=withFX(Container);const ThemeToggleFonts=getFonts(ThemeToggle);const breakpoints={adk8diGR8:\"(min-width: 1080px) and (max-width: 1199px)\",GYHy8nnxg:\"(min-width: 1400px) and (max-width: 1919px)\",QNpzm71qa:\"(min-width: 1920px)\",Rsa11L5j4:\"(min-width: 810px) and (max-width: 1079px)\",thLFW00W6:\"(min-width: 1200px) and (max-width: 1399px)\",Zl_29rSRR:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-vNSHW\";const variantClassNames={adk8diGR8:\"framer-v-zpxpm\",GYHy8nnxg:\"framer-v-b6s96s\",QNpzm71qa:\"framer-v-1higqnt\",Rsa11L5j4:\"framer-v-rsldly\",thLFW00W6:\"framer-v-1dza536\",Zl_29rSRR:\"framer-v-1bf6469\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-110};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:100,y:0};const transition2={damping:120,delay:0,mass:1,stiffness:300,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={\" Desktop M\":\"thLFW00W6\",\"Desktop 1400 - P\":\"GYHy8nnxg\",\"Desktop XXL\":\"QNpzm71qa\",\"Tablet Landscape\":\"adk8diGR8\",\"Tablet Portrait\":\"Rsa11L5j4\",Mobile:\"Zl_29rSRR\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GYHy8nnxg\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();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,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"TR04zkQBh\");const ref3=React.useRef(null);const elementId1=useRouteElementId(\"cqoecNYsj\");const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Zl_29rSRR\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Zl_29rSRR\")return false;return true;};const elementId2=useRouteElementId(\"sYxhwpTc6\");const ref4=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"Rsa11L5j4\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"Rsa11L5j4\",\"Zl_29rSRR\"].includes(baseVariant))return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GYHy8nnxg\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-b6s96s\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-109gn5e\",\"data-framer-name\":\"Floating\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19fltgz-container\",children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"yV_AVG4uQ\",layoutId:\"yV_AVG4uQ\",variant:\"m2mv6nJ9Z\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ztwfz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{variant:\"QbS1tOEIG\"},Rsa11L5j4:{variant:\"QbS1tOEIG\"},Zl_29rSRR:{variant:\"JATMgMpsF\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"rkAB8TVG6\",layoutId:\"rkAB8TVG6\",style:{width:\"100%\"},variant:\"DNLo_VkM9\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bwrm70\",\"data-framer-name\":\"Hero-Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-791f7y\",\"data-framer-name\":\"Space\"}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1444,intrinsicWidth:2148,positionX:\"center\",positionY:\"top\"},className:\"framer-1hk1bik\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a1z74k\",\"data-framer-name\":\"Block A\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8b8j3z\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2917fq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9uYSBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Mona Sans\", \"Mona Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, rgb(250, 250, 250))\"},children:[\"Designed \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e29c154d-3b59-46ca-97ca-96fcbe69df7c, rgb(245, 245, 245))\"},children:\"delivery driver experience\"}),\" for FimiMall's fashion delivery app\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9uYSBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Mona Sans\", \"Mona Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, rgb(250, 250, 250))\"},children:[\"Designed \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e29c154d-3b59-46ca-97ca-96fcbe69df7c, rgb(245, 245, 245))\"},children:\"delivery driver experience\"}),\" for FimiMall's fashion delivery app\"]})}),className:\"framer-1l8hhf9\",fonts:[\"GF;Mona Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-el12ew\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14v2qm\",\"data-styles-preset\":\"rzbPvVOV7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f782bd47-242a-4d8a-8b5a-e54b96d8bf03, rgb(250, 250, 250))\"},children:\"Increased user satisfaction by enhancing usability, providing appropriate flexibility, and introducing user-requested features.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9uYSBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Mona Sans\", \"Mona Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f782bd47-242a-4d8a-8b5a-e54b96d8bf03, rgb(250, 250, 250))\"},children:\"Increased user satisfaction by enhancing usability, providing appropriate flexibility, and introducing user-requested features.\"})}),className:\"framer-zsv1iu\",\"data-framer-appear-id\":\"zsv1iu\",fonts:[\"GF;Mona Sans-500\"],initial:animation2,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jp8dki\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14v2qm\",\"data-styles-preset\":\"rzbPvVOV7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f782bd47-242a-4d8a-8b5a-e54b96d8bf03, rgb(250, 250, 250))\"},children:\"Jul - Sep 2023\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9uYSBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Mona Sans\", \"Mona Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f782bd47-242a-4d8a-8b5a-e54b96d8bf03, rgb(250, 250, 250))\"},children:\"Jul - Sep 2023\"})}),className:\"framer-1wjprch\",fonts:[\"GF;Mona Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jxe7zm\",\"data-framer-name\":\"Hero Image Container\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-160d0ae\",\"data-framer-appear-id\":\"160d0ae\",\"data-framer-name\":\"Hero Image\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2372,intrinsicWidth:2380,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+115.98343685300205+.2318409247757245+0+0+0+0),pixelHeight:2372,pixelWidth:2380,sizes:\"700px\",src:\"https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png\",srcSet:\"https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png 2380w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2372,intrinsicWidth:2380,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+115.98343685300205+50+287.571424258109+0+0+0+0),pixelHeight:2372,pixelWidth:2380,sizes:\"550px\",src:\"https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png\",srcSet:\"https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png 2380w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2372,intrinsicWidth:2380,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+115.98343685300205+124.79781314699795+0+0+0+0),pixelHeight:2372,pixelWidth:2380,sizes:\"450px\",src:\"https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png\",srcSet:\"https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png 2380w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2372,intrinsicWidth:2380,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+114.8925949881617+50+270.20497712039185+0+0+0+0),pixelHeight:2372,pixelWidth:2380,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png\",srcSet:\"https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png 2380w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2372,intrinsicWidth:2380,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20+115.98343685300205+74.97142425810904+0+0+0+0),pixelHeight:2372,pixelWidth:2380,sizes:\"550px\",src:\"https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png\",srcSet:\"https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MEOMKCakAn49gxY29Tjarsb79oA.png 2380w\"},className:\"framer-1qnnami\",\"data-framer-name\":\"Visual\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g1rc94\",\"data-framer-name\":\"Section - Details\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fyaxj\",\"data-framer-name\":\"Details ALL\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eieani\",\"data-border\":true,\"data-framer-name\":\"Details\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l4694y\",\"data-border\":true,\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-weight\":\"700\"},children:\"Sector: \"}),\"Consumer, fashion delivery app\"]})}),className:\"framer-sui0m2\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rfn1gs\",\"data-border\":true,\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-weight\":\"700\"},children:\"Team: \"}),\"Company CEO, 3 UX Researchers\"]})}),className:\"framer-jbrus7\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g8ttrf\",\"data-border\":true,\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-weight\":\"700\"},children:\"Client: \"}),\"FimiMall, stealth startup, Toronto-CAN\"]})}),className:\"framer-12vphgs\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-177y3a8\",\"data-border\":true,\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-weight\":\"700\"},children:\"My Role: \"}),\"UX/UI Designer and researcher, 7 weeks\"]})}),className:\"framer-1iszydt\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j0qxfr\",\"data-border\":true,\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-weight\":\"700\"},children:\"User group: \"}),\"Delivery drivers - People looking for a driving-based side-hustle\"]})}),className:\"framer-vnnmpf\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tmnxx9\",\"data-border\":true,\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-weight\":\"700\"},children:\"Impact: \"}),\"We expect more drivers to join the platform within the first 6 months.\"]})}),className:\"framer-gof5v6\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-121m70z\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w95xsj\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"Hello reader!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"Hello reader!\"})}),className:\"framer-1c6nlt1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:\"This is my final solution\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:\"This is my final solution\"})}),className:\"framer-16dyadj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"You are more than welcome to scroll down to see my process and how it made this app a unique experience for delivery drivers. ;)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"You are more than welcome to scroll down to see my process and how it made this app a unique experience for delivery drivers. ;)\"})}),className:\"framer-kdevs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1908+50+470),pixelHeight:1500,pixelWidth:1500,sizes:\"900px\",src:\"https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png\",srcSet:\"https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png 1500w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2060.685421994885+0+407),pixelHeight:1500,pixelWidth:1500,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png\",srcSet:\"https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1908+50+470),pixelHeight:1500,pixelWidth:1500,sizes:\"800px\",src:\"https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png\",srcSet:\"https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BtidDLYwC4PkZN8eeL4MPx4SY5E.png 1500w\"},className:\"framer-2razpo\",\"data-framer-name\":\"Hero_2\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gb4lmb\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1en5e4e\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"Background & Problem\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"Background & Problem\"})}),className:\"framer-1ocnwlu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:\"FimiMall needed to build their driver's delivery experience from the ground up\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:\"FimiMall needed to build their driver's delivery experience from the ground up\"})}),className:\"framer-1fkdukv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:['FimiMall is a pioneer in the fashion delivery industry. They are the first Toronto-based company to approach wardrobe delivery in the same way people know meal delivery. Think of it as \"',/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:'the Instacart for fashion\", '})}),\"but with a longer timeframe (5-72hrs). For this, they've developed an MVP mobile app and are now ready to develop a V2 based on their current drivers feedback.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"I was hired to design the full driver experience, from searching and accepting to picking up and delivering a multi-day order.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:[\"So what's the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4091bfc7-0471-493a-be21-2fa5134831f4, rgb(65, 113, 158))\"},children:\"problem\"}),\"?\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"FimiMall drivers had very little control over their delivery journey and were reporting needing further assistance and order information while running deliveries.\"})]}),fonts:[\"GF;Poppins-600\",\"GF;Poppins-900\",\"GF;Poppins-900italic\",\"GF;Poppins-600italic\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:['FimiMall is a pioneer in the fashion delivery industry. They are the first Toronto-based company to approach wardrobe delivery in the same way people know meal delivery. Think of it as \"',/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:'the Instacart for fashion\", '})}),\"but with a longer timeframe (5-72hrs). For this, they've developed an MVP mobile app and are now ready to develop a V2 based on their current drivers feedback.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"I was hired to design the full driver experience, from searching and accepting to picking up and delivering a multi-day order.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:[\"So what's the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4091bfc7-0471-493a-be21-2fa5134831f4, rgb(65, 113, 158))\"},children:\"problem\"}),\"?\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(117, 117, 117))\"},children:\"FimiMall drivers had very little control over their delivery journey and were reporting needing further assistance and order information while running deliveries.\"})]}),className:\"framer-1fzkd47\",fonts:[\"GF;Poppins-600\",\"GF;Poppins-900\",\"GF;Poppins-900italic\",\"GF;Poppins-600italic\",\"GF;Poppins-regular\",\"GF;Poppins-700\",\"GF;Poppins-700italic\",\"GF;Poppins-italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16hlwg1 hidden-b6s96s hidden-1dza536 hidden-1higqnt hidden-rsldly hidden-zpxpm\",\"data-framer-name\":\"Visual Container PP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-141ccao\",\"data-styles-preset\":\"m1dCGMeKL\",children:\"The app lacked essential features\"})}),className:\"framer-1x22f00\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qmwfdq-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"P6Bc3szMn\",layoutId:\"P6Bc3szMn\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ekn31i\",\"data-border\":true,\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14h2adg\",\"data-border\":true,\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby01MDA=\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\"},children:\"1\"})}),className:\"framer-q0hneq\",fonts:[\"GF;Murecho-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-170a896d-5584-4301-8e52-d9ed1f409572, rgb(0, 105, 98))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Order decline feature\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-170a896d-5584-4301-8e52-d9ed1f409572, rgb(0, 105, 98))\"},children:\"Orders were automatically assigned via email. There was no way to reject an order in the app.\"})]}),className:\"framer-epa14a\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-osgpxo\",\"data-border\":true,\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4c7g45\",\"data-border\":true,\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby01MDA=\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\"},children:\"2\"})}),className:\"framer-14j63qc\",fonts:[\"GF;Murecho-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-170a896d-5584-4301-8e52-d9ed1f409572, rgb(0, 105, 98))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Order history\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-170a896d-5584-4301-8e52-d9ed1f409572, rgb(0, 105, 98))\"},children:\"The only way to see their previously assigned orders would be to check their email history.\"})]}),className:\"framer-xfbft\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yl25rq\",\"data-framer-name\":\"Visual\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-92l6y1\",\"data-border\":true,\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a8qrhy\",\"data-border\":true,\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby01MDA=\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-x9w64k\",fonts:[\"GF;Murecho-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-170a896d-5584-4301-8e52-d9ed1f409572, rgb(0, 105, 98))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Chat feature\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-170a896d-5584-4301-8e52-d9ed1f409572, rgb(0, 105, 98))\"},children:\"When issues or inquiries came up, drivers needed to find the support team's number and call.\"})]}),className:\"framer-1sobxd9\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17518vm hidden-1bf6469\",\"data-framer-name\":\"Visual Container PP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-141ccao\",\"data-styles-preset\":\"m1dCGMeKL\",children:\"The app lacked essential features\"})}),className:\"framer-q8v0j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1knvmtq\",\"data-framer-name\":\"Visual\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-voomu2\",\"data-border\":true,\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1usxfox\",\"data-border\":true,\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby01MDA=\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\"},children:\"1\"})}),className:\"framer-m6oc1i\",fonts:[\"GF;Murecho-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Order decline feature\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:\"Orders were automatically assigned via email. There was no way to reject an order in the app.\"})]}),className:\"framer-1ivu5xs\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k08rqa\",\"data-border\":true,\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-61sss1\",\"data-border\":true,\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby01MDA=\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\"},children:\"2\"})}),className:\"framer-1n0to8c\",fonts:[\"GF;Murecho-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Order history\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:\"The only way to see their previously assigned orders would be to check their email history.\"})]}),className:\"framer-czm1xw\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bhml8f\",\"data-border\":true,\"data-framer-name\":\"Point\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u3opl7\",\"data-border\":true,\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby01MDA=\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-1t6fh3h\",fonts:[\"GF;Murecho-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Chat feature\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:\"When issues or inquiries came up, drivers needed to find the support team's number and call.\"})]}),className:\"framer-1pa2sgb\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3wu2na\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ztlbhl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10moj43\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"Qualitative research: User interviews\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"Qualitative research: User interviews\"})}),className:\"framer-1rzia8t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:\"Both competitor and FimiMall drivers share the same values and pain points. However\u2026\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:\"Both competitor and FimiMall drivers share the same values and pain points. However\u2026\"})}),className:\"framer-r9ylo1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsa11L5j4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"My co-researchers and I conducted user interviews and usability testing of the existing app with 10 participants.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:[\"I learned that delivery drivers in general share the same type of values and pain points regardless of the type of item they deliver. \",/*#__PURE__*/_jsx(\"strong\",{children:\"However\"}),\", FimiMalll drivers face the unique challenge of multi-day orders (5 - 72hrs), making their pain points stronger when taking several orders at once.\"]}),/*#__PURE__*/_jsx(\"ul\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Communication with customers, stores, and company becomes imperative.\"})})})]}),fonts:[\"GF;Murecho-regular\",\"GF;Murecho-700\"]},Zl_29rSRR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"My co-researchers and I conducted user interviews and usability testing of the existing app with 10 participants.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:[\"I learned that delivery drivers in general share the same type of values and pain points regardless of the type of item they deliver. \",/*#__PURE__*/_jsx(\"strong\",{children:\"However\"}),\", FimiMalll drivers face the unique challenge of multi-day orders (5 - 72hrs), making their pain points stronger when taking several orders at once.\"]}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Communication with customers, stores, and company becomes imperative.\"})})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"My co-researchers and I conducted user interviews and usability testing of the existing app with 10 participants.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:[\"I learned that delivery drivers in general share the same type of values and pain points regardless of the type of item they deliver. \",/*#__PURE__*/_jsx(\"strong\",{children:\"However\"}),\", FimiMalll drivers face the unique challenge of multi-day orders (5 - 72hrs), making their pain points stronger when taking several orders at once.\"]}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Communication with customers, stores, and company becomes imperative.\"})})})]}),className:\"framer-1rb3qew\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f70o6j\",\"data-framer-name\":\"Visual\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f4hjht-container hidden-b6s96s hidden-1dza536 hidden-1higqnt hidden-rsldly hidden-zpxpm\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"VJ80IYd7J\",layoutId:\"VJ80IYd7J\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15y4959\",\"data-framer-name\":\"Zoom 1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,pixelHeight:740,pixelWidth:1308,sizes:\"350px\",src:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png\",srcSet:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png 1308w\"},className:\"framer-1srsvef\",\"data-framer-name\":\"Screenshot_2024_01_14_215746\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"I love the flexibility of choosing when to work.\"'})})}),className:\"framer-lcxt59\",fonts:[\"GF;Murecho-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-374wq4\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-56u0ci\",\"data-framer-name\":\"Zoom 2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1043.2,pixelHeight:740,pixelWidth:1304,sizes:\"350px\",src:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png\",srcSet:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png 1304w\"},className:\"framer-1ykz1ac\",\"data-framer-name\":\"Screenshot_2024_01_14_215707\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"I want my time and effort to be valued.\"'})})}),className:\"framer-154a5jv\",fonts:[\"GF;Murecho-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zukkni\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-69ntd7\",\"data-framer-name\":\"Zoom 3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,pixelHeight:740,pixelWidth:1308,sizes:\"350px\",src:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png\",srcSet:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png 1308w\"},className:\"framer-k6ol8r\",\"data-framer-name\":\"Screenshot_2024_01_14_215411_1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"I want to see the tips I am getting.\"'})})}),className:\"framer-62tof2\",fonts:[\"GF;Murecho-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rkiyb2\"})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u2lixk hidden-1bf6469\",\"data-framer-name\":\"Zooms\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1043.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+0+20+780+0+0+0),pixelHeight:740,pixelWidth:1304,sizes:\"350px\",src:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png\",srcSet:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png 1304w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1043.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+0+20+780+0+0+0),pixelHeight:740,pixelWidth:1304,sizes:\"380px\",src:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png\",srcSet:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png 1304w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1043.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+0+20+715+0+0+0),pixelHeight:740,pixelWidth:1304,sizes:\"250px\",src:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png\",srcSet:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png 1304w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1043.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+0+20+780+0+0+0),pixelHeight:740,pixelWidth:1304,sizes:\"350px\",src:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png\",srcSet:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png 1304w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1043.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+0+20+780+0+0+0),pixelHeight:740,pixelWidth:1304,sizes:\"380px\",src:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png\",srcSet:\"https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wDFFJmY5Ku5ZMtjKBJDmiFi2guc.png 1304w\"},className:\"framer-vt3oty\",\"data-framer-name\":\"Screenshot_2024_01_14_215707\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+0+20+780+0+0+.20120405576679445),pixelHeight:740,pixelWidth:1308,sizes:\"350px\",src:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png\",srcSet:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png 1308w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+0+20+780+0+0+.21845011768967026),pixelHeight:740,pixelWidth:1308,sizes:\"380px\",src:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png\",srcSet:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png 1308w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+0+20+715+0+0+.14371718269056544),pixelHeight:740,pixelWidth:1308,sizes:\"250px\",src:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png\",srcSet:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png 1308w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+0+20+780+0+0+.20120405576679445),pixelHeight:740,pixelWidth:1308,sizes:\"350px\",src:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png\",srcSet:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png 1308w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+0+20+780+0+0+.21845011768967026),pixelHeight:740,pixelWidth:1308,sizes:\"380px\",src:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png\",srcSet:\"https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9oV9IitxLQ5WFvVYqMuQxNyMmBg.png 1308w\"},className:\"framer-ngnf5z\",\"data-framer-name\":\"Screenshot_2024_01_14_215411_1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+0+20+780+0+0+.428476783039514),pixelHeight:740,pixelWidth:1308,sizes:\"350px\",src:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png\",srcSet:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png 1308w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+0+20+780+0+0+.4652033644429139),pixelHeight:740,pixelWidth:1308,sizes:\"380px\",src:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png\",srcSet:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png 1308w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+0+20+715+0+0+.30605484502822833),pixelHeight:740,pixelWidth:1308,sizes:\"250px\",src:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png\",srcSet:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png 1308w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+0+20+780+0+0+.428476783039514),pixelHeight:740,pixelWidth:1308,sizes:\"350px\",src:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png\",srcSet:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png 1308w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:592,intrinsicWidth:1046.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+0+20+780+0+0+.4652033644429139),pixelHeight:740,pixelWidth:1308,sizes:\"380px\",src:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png\",srcSet:\"https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ui0KErBYkgX3f0JYHf2aW29hh5A.png 1308w\"},className:\"framer-i4l54b\",\"data-framer-name\":\"Screenshot_2024_01_14_215746\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15n5ci8\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"Key Insights\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"Key Insights\"})}),className:\"framer-dy3loy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:[\"I learned that drivers want to feel \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4091bfc7-0471-493a-be21-2fa5134831f4, rgb(65, 113, 158))\"},children:\"valued, connected, and efficient\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:[\"I learned that drivers want to feel \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-4091bfc7-0471-493a-be21-2fa5134831f4, rgb(65, 113, 158))\"},children:\"valued, connected, and efficient\"})]})}),className:\"framer-n3lhze\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsa11L5j4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"This affinity map allowed me to fully grasp what drivers' experience is like on a work day. I gained some valuable insights into their frustrations, which brought me to arriving at these conclusions:\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Drivers feel more motivated when they have \",/*#__PURE__*/_jsx(\"strong\",{children:\"freedom of choice\"}),\".\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Drivers want \",/*#__PURE__*/_jsx(\"strong\",{children:\"clear and effective\"}),\" paths for delivery.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Drivers want \",/*#__PURE__*/_jsx(\"strong\",{children:\"more support\"}),\"; they feel a disconnect with the companies they work with.\"]})})]})]}),fonts:[\"GF;Murecho-regular\",\"GF;Murecho-700\"]},Zl_29rSRR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"This affinity map allowed me to fully grasp what drivers' experience is like on a work day. I gained some valuable insights into their frustrations, which brought me to arriving at these conclusions:\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Drivers feel more motivated when they have \",/*#__PURE__*/_jsx(\"strong\",{children:\"freedom of choice\"}),\".\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Drivers want \",/*#__PURE__*/_jsx(\"strong\",{children:\"clear and effective\"}),\" paths for delivery.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Drivers want \",/*#__PURE__*/_jsx(\"strong\",{children:\"more support\"}),\"; they feel a disconnect with the companies they work with.\"]})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"This affinity map allowed me to fully grasp what drivers' experience is like on a work day. I gained some valuable insights into their frustrations, which brought me to arriving at these conclusions:\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Drivers feel more motivated when they have \",/*#__PURE__*/_jsx(\"strong\",{children:\"freedom of choice\"}),\".\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Drivers want \",/*#__PURE__*/_jsx(\"strong\",{children:\"clear and effective\"}),\" paths for delivery.\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Drivers want \",/*#__PURE__*/_jsx(\"strong\",{children:\"more support\"}),\"; they feel a disconnect with the companies they work with.\"]})})]})]}),className:\"framer-p9zcj9\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ypvtg2\",\"data-framer-name\":\"Affinity Map\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5w65hs\",\"data-framer-name\":\"Pics\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5987.2,intrinsicWidth:6838.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+490.5000000000002),pixelHeight:7484,pixelWidth:8548,sizes:\"375px\",src:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png\",srcSet:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png 8548w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5987.2,intrinsicWidth:6838.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+2040.6273764258556+0+491.0000000000002),pixelHeight:7484,pixelWidth:8548,sizes:\"411px\",src:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png\",srcSet:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png 8548w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5987.2,intrinsicWidth:6838.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+1801.596958174905+0+482.04772710035945),pixelHeight:7484,pixelWidth:8548,sizes:\"254px\",src:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png\",srcSet:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png 8548w\"},transformTemplate:transformTemplate1},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5987.2,intrinsicWidth:6838.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+416.5000000000002),pixelHeight:7484,pixelWidth:8548,sizes:\"362px\",src:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png\",srcSet:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png 8548w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5987.2,intrinsicWidth:6838.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4472.885421994885+20+4095.6+0+336.0000000000001),pixelHeight:7484,pixelWidth:8548,sizes:\"200px\",src:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png\",srcSet:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png 8548w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5987.2,intrinsicWidth:6838.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2040.6273764258556+0+491.0000000000002),pixelHeight:7484,pixelWidth:8548,sizes:\"411px\",src:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png\",srcSet:\"https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=512 512w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YSaSRFH1GO9T7Q6toOeMTKlnSI.png 8548w\"},className:\"framer-6aiffu\",\"data-framer-name\":\"$5\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6051.2,intrinsicWidth:4771.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+140.50000000000023),pixelHeight:7564,pixelWidth:5964,sizes:\"293px\",src:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png\",srcSet:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=1024 807w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=2048 1614w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=4096 3229w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png 5964w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6051.2,intrinsicWidth:4771.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+2040.6273764258556+0+106.50000000000023),pixelHeight:7564,pixelWidth:5964,sizes:\"320px\",src:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png\",srcSet:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=1024 807w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=2048 1614w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=4096 3229w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png 5964w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6051.2,intrinsicWidth:4771.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+1801.596958174905+0+233.50000000000023),pixelHeight:7564,pixelWidth:5964,sizes:\"210px\",src:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png\",srcSet:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=1024 807w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=2048 1614w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=4096 3229w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png 5964w\"},transformTemplate:transformTemplate1},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6051.2,intrinsicWidth:4771.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+746.5000000000003),pixelHeight:7564,pixelWidth:5964,sizes:\"320px\",src:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png\",srcSet:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=1024 807w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=2048 1614w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=4096 3229w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png 5964w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6051.2,intrinsicWidth:4771.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4472.885421994885+20+4095.6+0+39.50000000000014),pixelHeight:7564,pixelWidth:5964,sizes:\"124px\",src:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png\",srcSet:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=1024 807w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=2048 1614w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=4096 3229w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png 5964w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6051.2,intrinsicWidth:4771.2,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2040.6273764258556+0+106.50000000000023),pixelHeight:7564,pixelWidth:5964,sizes:\"320px\",src:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png\",srcSet:\"https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=1024 807w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=2048 1614w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png?scale-down-to=4096 3229w,https://framerusercontent.com/images/mV7MQ3Thh3jAnVvp0AeT4s8U.png 5964w\"},className:\"framer-1jrx89e\",\"data-framer-name\":\"$3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7308.8,intrinsicWidth:5600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+769.5000000000003),pixelHeight:9136,pixelWidth:7e3,sizes:\"320px\",src:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png\",srcSet:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=1024 784w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=2048 1569w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=4096 3138w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png 7000w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7308.8,intrinsicWidth:5600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+2040.6273764258556+0+769.5000000000003),pixelHeight:9136,pixelWidth:7e3,sizes:\"320px\",src:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png\",srcSet:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=1024 784w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=2048 1569w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=4096 3138w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png 7000w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7308.8,intrinsicWidth:5600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+1801.596958174905+0+653.6238416175235),pixelHeight:9136,pixelWidth:7e3,sizes:\"254px\",src:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png\",srcSet:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=1024 784w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=2048 1569w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=4096 3138w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png 7000w\"},transformTemplate:transformTemplate1},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7308.8,intrinsicWidth:5600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+-.4999999999997442),pixelHeight:9136,pixelWidth:7e3,sizes:\"320px\",src:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png\",srcSet:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=1024 784w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=2048 1569w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=4096 3138w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png 7000w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7308.8,intrinsicWidth:5600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4472.885421994885+20+4095.6+0+316.50000000000017),pixelHeight:9136,pixelWidth:7e3,sizes:\"115px\",src:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png\",srcSet:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=1024 784w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=2048 1569w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=4096 3138w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png 7000w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7308.8,intrinsicWidth:5600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2040.6273764258556+0+769.5000000000003),pixelHeight:9136,pixelWidth:7e3,sizes:\"320px\",src:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png\",srcSet:\"https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=1024 784w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=2048 1569w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png?scale-down-to=4096 3138w,https://framerusercontent.com/images/5jQGcVeOQgtUlD6H5Ea1rEctuGM.png 7000w\"},className:\"framer-1mftgc3\",\"data-framer-name\":\"$7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3514.4,intrinsicWidth:5670.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+465.87822014051545),pixelHeight:4393,pixelWidth:7088,sizes:\"400px\",src:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png\",srcSet:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png 7088w\"},transformTemplate:transformTemplate1},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3514.4,intrinsicWidth:5670.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+2040.6273764258556+0+457.5000000000002),pixelHeight:4393,pixelWidth:7088,sizes:\"427px\",src:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png\",srcSet:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png 7088w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3514.4,intrinsicWidth:5670.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+1801.596958174905+0+431.693959561921),pixelHeight:4393,pixelWidth:7088,sizes:\"291px\",src:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png\",srcSet:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png 7088w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3514.4,intrinsicWidth:5670.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+385.0000000000002),pixelHeight:4393,pixelWidth:7088,sizes:\"374px\",src:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png\",srcSet:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png 7088w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3514.4,intrinsicWidth:5670.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4472.885421994885+20+4095.6+0+224.00000000000017),pixelHeight:4393,pixelWidth:7088,sizes:\"200px\",src:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png\",srcSet:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png 7088w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3514.4,intrinsicWidth:5670.4,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2040.6273764258556+0+457.5000000000002),pixelHeight:4393,pixelWidth:7088,sizes:\"427px\",src:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png\",srcSet:\"https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=512 512w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/KIlpmUTsMwueLcs7PxkDzUydF0o.png 7088w\"},className:\"framer-1i87ggc\",\"data-framer-name\":\"Panas_\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6595.2,intrinsicWidth:6204.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+.5000000000002558),pixelHeight:8244,pixelWidth:7756,sizes:\"399px\",src:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png\",srcSet:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=1024 963w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=2048 1926w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=4096 3853w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png 7756w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6595.2,intrinsicWidth:6204.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+2040.6273764258556+0+.5000000000002558),pixelHeight:8244,pixelWidth:7756,sizes:\"399px\",src:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png\",srcSet:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=1024 963w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=2048 1926w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=4096 3853w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png 7756w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6595.2,intrinsicWidth:6204.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+1801.596958174905+0+13.500000000000256),pixelHeight:8244,pixelWidth:7756,sizes:\"323px\",src:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png\",srcSet:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=1024 963w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=2048 1926w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=4096 3853w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png 7756w\"},transformTemplate:transformTemplate1},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6595.2,intrinsicWidth:6204.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+-.4999999999997442),pixelHeight:8244,pixelWidth:7756,sizes:\"399px\",src:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png\",srcSet:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=1024 963w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=2048 1926w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=4096 3853w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png 7756w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6595.2,intrinsicWidth:6204.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4472.885421994885+20+4095.6+0+11.000000000000156),pixelHeight:8244,pixelWidth:7756,sizes:\"200px\",src:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png\",srcSet:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=1024 963w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=2048 1926w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=4096 3853w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png 7756w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6595.2,intrinsicWidth:6204.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2040.6273764258556+0+.5000000000002558),pixelHeight:8244,pixelWidth:7756,sizes:\"399px\",src:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png\",srcSet:\"https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=1024 963w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=2048 1926w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png?scale-down-to=4096 3853w,https://framerusercontent.com/images/Ts3ukK4KcNDw27MyeJScuJVcfJo.png 7756w\"},className:\"framer-48mqzc\",\"data-framer-name\":\"$6\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5478.4,intrinsicWidth:5292.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+796.0000000000003),pixelHeight:6848,pixelWidth:6616,sizes:\"320px\",src:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png\",srcSet:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=1024 989w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=2048 1978w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=4096 3957w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png 6616w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5478.4,intrinsicWidth:5292.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+2040.6273764258556+0+796.0000000000003),pixelHeight:6848,pixelWidth:6616,sizes:\"320px\",src:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png\",srcSet:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=1024 989w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=2048 1978w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=4096 3957w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png 6616w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5478.4,intrinsicWidth:5292.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+1801.596958174905+0+621.780117944398),pixelHeight:6848,pixelWidth:6616,sizes:\"254px\",src:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png\",srcSet:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=1024 989w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=2048 1978w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=4096 3957w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png 6616w\"},transformTemplate:transformTemplate1},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5478.4,intrinsicWidth:5292.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+640.0000000000002),pixelHeight:6848,pixelWidth:6616,sizes:\"320px\",src:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png\",srcSet:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=1024 989w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=2048 1978w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=4096 3957w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png 6616w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5478.4,intrinsicWidth:5292.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4472.885421994885+20+4095.6+0+510.5000000000002),pixelHeight:6848,pixelWidth:6616,sizes:\"155px\",src:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png\",srcSet:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=1024 989w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=2048 1978w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=4096 3957w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png 6616w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5478.4,intrinsicWidth:5292.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2040.6273764258556+0+796.0000000000003),pixelHeight:6848,pixelWidth:6616,sizes:\"320px\",src:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png\",srcSet:\"https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=1024 989w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=2048 1978w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png?scale-down-to=4096 3957w,https://framerusercontent.com/images/cnqbaBIcaFM4RC7rtZcvgboeTZY.png 6616w\"},className:\"framer-1ltb7hc\",\"data-framer-name\":\"$2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:4444.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+181.00000000000028),pixelHeight:4560,pixelWidth:5556,sizes:\"273px\",src:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png\",srcSet:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png 5556w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:4444.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+2040.6273764258556+0+181.00000000000028),pixelHeight:4560,pixelWidth:5556,sizes:\"273px\",src:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png\",srcSet:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png 5556w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:4444.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+1801.596958174905+0+154.97768561121578),pixelHeight:4560,pixelWidth:5556,sizes:\"254px\",src:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png\",srcSet:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png 5556w\"},transformTemplate:transformTemplate1},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:4444.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+838.0000000000003),pixelHeight:4560,pixelWidth:5556,sizes:\"273px\",src:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png\",srcSet:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png 5556w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:4444.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4472.885421994885+20+4095.6+0+196.4428571428573),pixelHeight:4560,pixelWidth:5556,sizes:\"110px\",src:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png\",srcSet:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png 5556w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:4444.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2040.6273764258556+0+181.00000000000028),pixelHeight:4560,pixelWidth:5556,sizes:\"273px\",src:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png\",srcSet:\"https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/huJnNPJvtUnQCpv1CwdZnoSSg.png 5556w\"},className:\"framer-6cwi93\",\"data-framer-name\":\"$4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6758.4,intrinsicWidth:6057.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+402.0000000000002),pixelHeight:8448,pixelWidth:7572,sizes:\"357px\",src:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png\",srcSet:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=1024 917w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=2048 1835w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=4096 3671w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png 7572w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6758.4,intrinsicWidth:6057.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+2040.6273764258556+0+384.5000000000002),pixelHeight:8448,pixelWidth:7572,sizes:\"388px\",src:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png\",srcSet:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=1024 917w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=2048 1835w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=4096 3671w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png 7572w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6758.4,intrinsicWidth:6057.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+1801.596958174905+0+352.9818871103625),pixelHeight:8448,pixelWidth:7572,sizes:\"254px\",src:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png\",srcSet:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=1024 917w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=2048 1835w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=4096 3671w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png 7572w\"},transformTemplate:transformTemplate1},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6758.4,intrinsicWidth:6057.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2021.235741444867+0+370.5000000000002),pixelHeight:8448,pixelWidth:7572,sizes:\"388px\",src:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png\",srcSet:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=1024 917w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=2048 1835w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=4096 3671w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png 7572w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6758.4,intrinsicWidth:6057.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4472.885421994885+20+4095.6+0+487.0000000000001),pixelHeight:8448,pixelWidth:7572,sizes:\"187px\",src:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png\",srcSet:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=1024 917w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=2048 1835w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=4096 3671w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png 7572w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6758.4,intrinsicWidth:6057.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+2040.6273764258556+0+384.5000000000002),pixelHeight:8448,pixelWidth:7572,sizes:\"388px\",src:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png\",srcSet:\"https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=1024 917w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=2048 1835w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png?scale-down-to=4096 3671w,https://framerusercontent.com/images/g0NXfEVJBekETahYE8FF79WBuY.png 7572w\"},className:\"framer-1ckldrq\",\"data-framer-name\":\"$1\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jg26by\",\"data-border\":true,\"data-framer-name\":\"Visual\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10yk6ym\",\"data-styles-preset\":\"x1wNxbh2x\",children:\"All this research gave birth to Max, the user persona for this project\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-141ccao\",\"data-styles-preset\":\"m1dCGMeKL\",children:\"All this research gave birth to Max, the user persona for this project\"})}),className:\"framer-1yenqm9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2520,intrinsicWidth:2520,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4472.885421994885+20+1779+20+49.599999999999994),pixelHeight:2520,pixelWidth:2520,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N7P6l3gnMV5tGbSB2Lz8Stxlxbc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2520,intrinsicWidth:2520,pixelHeight:2520,pixelWidth:2520,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N7P6l3gnMV5tGbSB2Lz8Stxlxbc.png\"},className:\"framer-qwz8a2 hidden-b6s96s hidden-1dza536 hidden-1higqnt hidden-rsldly hidden-zpxpm\",\"data-border\":true,\"data-framer-name\":\"Max_Driver_png\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-es7kuf\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2520,intrinsicWidth:2520,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+3258.235741444867+20+55.2+0+0),pixelHeight:2520,pixelWidth:2520,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N7P6l3gnMV5tGbSB2Lz8Stxlxbc.png\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2520,intrinsicWidth:2520,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4778.2+50+3277.627376425856+20+55.2+0+0),pixelHeight:2520,pixelWidth:2520,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N7P6l3gnMV5tGbSB2Lz8Stxlxbc.png\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2520,intrinsicWidth:2520,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6459.3128205128205+50+2901.596958174905+20+55.2+0+0),pixelHeight:2520,pixelWidth:2520,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N7P6l3gnMV5tGbSB2Lz8Stxlxbc.png\"}},thLFW00W6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2520,intrinsicWidth:2520,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+3258.235741444867+20+55.2+0+0),pixelHeight:2520,pixelWidth:2520,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N7P6l3gnMV5tGbSB2Lz8Stxlxbc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2520,intrinsicWidth:2520,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+3277.627376425856+20+55.2+0+0),pixelHeight:2520,pixelWidth:2520,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N7P6l3gnMV5tGbSB2Lz8Stxlxbc.png\"},className:\"framer-99y2a6 hidden-1bf6469\",\"data-border\":true,\"data-framer-name\":\"Max_Driver_png\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lo3lus\",\"data-framer-name\":\"Persona\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sh6g45\",\"data-border\":true,\"data-framer-name\":\"Point\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"Uber Eats, Doordash, & Spark delivery driver\"})}),className:\"framer-1jbg84b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-juqfz7\",\"data-border\":true,\"data-framer-name\":\"Point\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:[\"Max is a \",/*#__PURE__*/_jsx(\"strong\",{children:\"young college student\"}),\" delivering for multiple companies.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:[\"He is looking for new opportunities to \",/*#__PURE__*/_jsx(\"strong\",{children:\"make extra cash\"}),\".\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"But he is a bit frustrated\u2026\"})]}),className:\"framer-1lxs2lc\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b408gr\",\"data-border\":true,\"data-framer-name\":\"Point\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Frustrations\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"No say in which orders to take\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"Can't access past orders\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"No pay history\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"Not knowing how much tip I will get\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"Reaching support takes too long\"})})]})]}),className:\"framer-1tsz7cg\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-190es8c\",\"data-border\":true,\"data-framer-name\":\"Point\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"The goal:\"}),\" Making sure MAX feels:\"]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Valued\"}),\" by the company\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Connected\"}),\" to he community\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Efficient\"}),\" in his work.\"]})})]})]}),className:\"framer-103mbwc\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mrr3bz\",\"data-framer-name\":\"Container\",id:elementId2,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iruer6\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"Solution - Feature 1\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"Solution - Feature 1\"})}),className:\"framer-o5ps71\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:\"Freedom of choice: New order pop-up cards now allow drivers to make choices\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:\"Freedom of choice: New order pop-up cards now allow drivers to make choices\"})}),className:\"framer-9l7379\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsa11L5j4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"One of the main reasons drivers decide to work with delivery apps is the freedom of choice. They value being able to make their own schedules and choosing which orders are most convenient to them.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"'New order pop-up cards' allow drivers to make decisions based on data: \"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Approximate travel time and distance\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Tips included\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Gas expense\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Earnings/distance ratio\"})})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:[\"User interviews revealed these are the \",/*#__PURE__*/_jsx(\"strong\",{children:\"top elements\"}),\" to consider when deciding which orders to take on competitor apps.\"]})]}),fonts:[\"GF;Murecho-regular\",\"GF;Murecho-700\"]},Zl_29rSRR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"One of the main reasons drivers decide to work with delivery apps is the freedom of choice. They value being able to make their own schedules and choosing which orders are most convenient to them.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"'New order pop-up cards' allow drivers to make decisions based on data: \"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Approximate travel time and distance\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Tips included\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Gas expense\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Earnings/distance ratio\"})})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:[\"User interviews revealed these are the \",/*#__PURE__*/_jsx(\"strong\",{children:\"top elements\"}),\" to consider when deciding which orders to take on competitor apps.\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"One of the main reasons drivers decide to work with delivery apps is the freedom of choice. They value being able to make their own schedules and choosing which orders are most convenient to them.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"'New order pop-up cards' allow drivers to make decisions based on data: \"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Approximate travel time and distance\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Tips included\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Gas expense\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Earnings/distance ratio\"})})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:[\"User interviews revealed these are the \",/*#__PURE__*/_jsx(\"strong\",{children:\"top elements\"}),\" to consider when deciding which orders to take on competitor apps.\"]})]}),className:\"framer-1v2mjed\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cjdv0x\",\"data-framer-name\":\"Visual\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n8zv48\",\"data-framer-name\":\"Phone 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:[\"Order pop-up\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),fonts:[\"GF;Poppins-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\"},children:\"Order pop-up\"})}),className:\"framer-127k25q\",\"data-framer-name\":\"Title\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10p8cya\",\"data-framer-name\":\"Phone\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10296.635741444867+50+1360+0+0+52.4+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png\",srcSet:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png?scale-down-to=2048 946w,https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png 1560w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10566.027376425856+50+1360+0+0+52.4+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png\",srcSet:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png?scale-down-to=2048 946w,https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png 1560w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+1195+0+0+52.4+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png\",srcSet:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png?scale-down-to=2048 946w,https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png 1560w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10296.635741444867+50+1360+0+0+52.4+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png\",srcSet:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png?scale-down-to=2048 946w,https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png 1560w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9304.485421994887+20+1267+20+0+34.599999999999994+4+0),pixelHeight:3376,pixelWidth:1560,sizes:\"150px\",src:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png\",srcSet:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png?scale-down-to=2048 946w,https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10316.027376425856+50+1360+0+0+52.4+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png\",srcSet:\"https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png?scale-down-to=2048 946w,https://framerusercontent.com/images/aFg8wZsHa7NvwgNwPBebycHC0M.png 1560w\"},className:\"framer-olwxgl\",\"data-framer-name\":\"Order_Pop_Up\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-j9vuqa\",\"data-framer-name\":\"Knook\"})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-whpk4x hidden-rsldly\",\"data-framer-name\":\"Annos & Arrows\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qmbr3o-container\",style:{rotate:180},children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"BX3hC7K7D\",layoutId:\"BX3hC7K7D\",style:{height:\"100%\",width:\"100%\"},variant:\"aqRSGx7jE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gpdny6-container\",children:/*#__PURE__*/_jsx(Anno,{AMwpR8uxU:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\",bMJZftdOm:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",height:\"100%\",iCOwuZQCP:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",id:\"U5QM6UdXX\",layoutId:\"U5QM6UdXX\",nTzmMMgrv:\"Offline button\",variant:\"RfpXBRj4l\",w067zdTsO:\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\",W3lt7xSUj:\"Stop at any point\",width:\"100%\",zBb79ReIk:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cy4xoq-container\",style:{rotate:180},children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"qLuKVc3oF\",layoutId:\"qLuKVc3oF\",style:{height:\"100%\",width:\"100%\"},variant:\"aqRSGx7jE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ezwuqq-container\",children:/*#__PURE__*/_jsx(Anno,{AMwpR8uxU:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\",bMJZftdOm:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",height:\"100%\",iCOwuZQCP:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",id:\"cXv2H66UD\",layoutId:\"cXv2H66UD\",nTzmMMgrv:\"Pay & status bar\",variant:\"RfpXBRj4l\",w067zdTsO:\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\",W3lt7xSUj:\"Clear and contrasting\",width:\"100%\",zBb79ReIk:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-glhuc-container\",style:{rotate:180},children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"odCnKyXFU\",layoutId:\"odCnKyXFU\",style:{height:\"100%\",width:\"100%\"},variant:\"aqRSGx7jE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lexnq5-container\",children:/*#__PURE__*/_jsx(Anno,{AMwpR8uxU:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\",bMJZftdOm:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",height:\"100%\",iCOwuZQCP:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",id:\"fiygorylG\",layoutId:\"fiygorylG\",nTzmMMgrv:\"Special info!\",variant:\"RfpXBRj4l\",w067zdTsO:\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\",W3lt7xSUj:\"Auto-calculations to save time\",width:\"100%\",zBb79ReIk:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-176acqf\",\"data-framer-name\":\"Phone 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"Order pop-up: Extended\"})}),fonts:[\"GF;Poppins-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\"},children:\"Order pop-up: Extended\"})}),className:\"framer-1ja5rvw\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yamzx0\",\"data-framer-name\":\"Phone\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1552,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10296.635741444867+50+1360+0+0+52.4+5),pixelHeight:3376,pixelWidth:1552,sizes:\"242px\",src:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png\",srcSet:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png?scale-down-to=2048 941w,https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png 1552w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1552,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10566.027376425856+50+1360+0+0+52.4+5),pixelHeight:3376,pixelWidth:1552,sizes:\"242px\",src:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png\",srcSet:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png?scale-down-to=2048 941w,https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png 1552w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1552,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4528.2+50+1195+0+0+52.4+5),pixelHeight:3376,pixelWidth:1552,sizes:\"242px\",src:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png\",srcSet:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png?scale-down-to=2048 941w,https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png 1552w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1552,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10296.635741444867+50+1360+0+0+52.4+5),pixelHeight:3376,pixelWidth:1552,sizes:\"242px\",src:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png\",srcSet:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png?scale-down-to=2048 941w,https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png 1552w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1552,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9304.485421994887+20+1267+20+0+34.599999999999994+4),pixelHeight:3376,pixelWidth:1552,sizes:\"150px\",src:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png\",srcSet:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png?scale-down-to=2048 941w,https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png 1552w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1552,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10316.027376425856+50+1360+0+0+52.4+5),pixelHeight:3376,pixelWidth:1552,sizes:\"242px\",src:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png\",srcSet:\"https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png?scale-down-to=2048 941w,https://framerusercontent.com/images/ob8ec0jrgZOFe3ZgZ7YohS1Ih1A.png 1552w\"},className:\"framer-hxcga5\",\"data-framer-name\":\"Order_Pop_Up\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iujtod\",\"data-framer-name\":\"Knook\"})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sizjbq hidden-rsldly hidden-1bf6469\",\"data-framer-name\":\"Annos & Arrows\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ititwp-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"rsIYB0rZB\",layoutId:\"rsIYB0rZB\",style:{height:\"100%\",width:\"100%\"},variant:\"aqRSGx7jE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j3jcuq-container\",children:/*#__PURE__*/_jsx(Anno,{AMwpR8uxU:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\",bMJZftdOm:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",height:\"100%\",iCOwuZQCP:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",id:\"no22kMJi4\",layoutId:\"no22kMJi4\",nTzmMMgrv:\"Useful tools\",variant:\"NlwpW1Htu\",w067zdTsO:\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\",W3lt7xSUj:\"One order at a time only\",width:\"100%\",zBb79ReIk:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lssb92-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"q5iPm4BGb\",layoutId:\"q5iPm4BGb\",style:{height:\"100%\",width:\"100%\"},variant:\"aqRSGx7jE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m6n5ny-container\",children:/*#__PURE__*/_jsx(Anno,{AMwpR8uxU:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\",bMJZftdOm:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",height:\"100%\",iCOwuZQCP:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",id:\"xpXcaIwgt\",layoutId:\"xpXcaIwgt\",nTzmMMgrv:\"Pick a store\",variant:\"NlwpW1Htu\",w067zdTsO:\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\",W3lt7xSUj:\"Granular info level\",width:\"100%\",zBb79ReIk:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"})})})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yz8o5e\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15w7c3t\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"Solution - Feature 2\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"Solution - Feature 2\"})}),className:\"framer-1lkaofz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:\"Clear path to follow: Info-cards that support drivers at every step of the journey\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:\"Clear path to follow: Info-cards that support drivers at every step of the journey\"})}),className:\"framer-yc78cw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsa11L5j4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Delivery drivers often struggle with locating stores in a timely manner due to the lack of instructions given by retailers.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"I designed informative, encouraging cards that drivers can access at any point, providing them with enough information and instructions to confidently move through the journey stages.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Spot info:\"}),\" Parking information, instructions, mall map (if relevant)\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Order info:\"}),\" Number of items, QR code\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Pick up confirmed:\"}),\" Rate the retailer's method, add notes, and continue to location #2.\"]})})]})]}),fonts:[\"GF;Murecho-regular\",\"GF;Murecho-700\"]},Zl_29rSRR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"Delivery drivers often struggle with locating stores in a timely manner due to the lack of instructions given by retailers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"I designed informative, encouraging cards that drivers can access at any point, providing them with enough information and instructions to confidently move through the journey stages.\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Spot info:\"}),\" Parking information, instructions, mall map (if relevant)\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Order info:\"}),\" Number of items, QR code\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Pick up confirmed:\"}),\" Rate the retailer's method, add notes, and continue to location #2.\"]})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"Delivery drivers often struggle with locating stores in a timely manner due to the lack of instructions given by retailers.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"I designed informative, encouraging cards that drivers can access at any point, providing them with enough information and instructions to confidently move through the journey stages.\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Spot info:\"}),\" Parking information, instructions, mall map (if relevant)\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Order info:\"}),\" Number of items, QR code\"]})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Pick up confirmed:\"}),\" Rate the retailer's method, add notes, and continue to location #2.\"]})})]})]}),className:\"framer-6hsa5b\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wukqwe\",\"data-framer-name\":\"Visual\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l23wg6\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10yk6ym\",\"data-styles-preset\":\"x1wNxbh2x\",children:\"User flow: Arrived at store #1 \u2014> check order \u2014> confirm pick up.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-141ccao\",\"data-styles-preset\":\"m1dCGMeKL\",children:\"User flow: Arrived at store #1 \u2014> check order \u2014> confirm pick up.\"})}),className:\"framer-g93a2i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nckruj\",\"data-framer-name\":\"Phone 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12392.748561957687+50+1070+0+45.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png\",srcSet:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png?scale-down-to=2048 946w,https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png 1560w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12662.140196938677+50+1070+0+45.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png\",srcSet:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png?scale-down-to=2048 946w,https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png 1560w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11895.109778687725+0+955+0+45.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png\",srcSet:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png?scale-down-to=2048 946w,https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png 1560w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12392.748561957687+50+1070+0+45.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png\",srcSet:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png?scale-down-to=2048 946w,https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png 1560w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11078.700806610272+20+987+0+49.599999999999994+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"250px\",src:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png\",srcSet:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png?scale-down-to=2048 946w,https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12412.140196938677+50+1070+0+45.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png\",srcSet:\"https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png?scale-down-to=2048 946w,https://framerusercontent.com/images/Jec6pKBRcLz410oT9E7eEjNIwM.png 1560w\"},className:\"framer-4aa09k\",\"data-border\":true,\"data-framer-name\":\"Order_Pop_Up\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mi5ua8\",\"data-framer-name\":\"Knook\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pz4bww\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-usmwqw\",\"data-framer-name\":\"Card 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10yk6ym\",\"data-styles-preset\":\"x1wNxbh2x\",children:\"Store #1: Checking order\"})}),className:\"framer-1vmmcei\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12392.748561957687+50+1070+0+45.2+122.55641025641029+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png\",srcSet:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png?scale-down-to=1024 890w,https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png 1412w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12662.140196938677+50+1070+0+45.2+122.55641025641029+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png\",srcSet:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png?scale-down-to=1024 890w,https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png 1412w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11895.109778687725+0+955+0+45.2+122.55641025641029+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png\",srcSet:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png?scale-down-to=1024 890w,https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png 1412w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12392.748561957687+50+1070+0+45.2+122.55641025641029+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png\",srcSet:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png?scale-down-to=1024 890w,https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png 1412w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11078.700806610272+20+987+0+49.599999999999994+5+571.0256410256411+0+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png\",srcSet:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png?scale-down-to=1024 890w,https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png 1412w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12412.140196938677+50+1070+0+45.2+122.55641025641029+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png\",srcSet:\"https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png?scale-down-to=1024 890w,https://framerusercontent.com/images/qKfgJ4b3yf47gzckBVlVivlac.png 1412w\"},className:\"framer-l6blp5\",\"data-framer-name\":\"Frame_85\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oeqn23\",\"data-framer-name\":\"Card 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10yk6ym\",\"data-styles-preset\":\"x1wNxbh2x\",children:\"Pick-up confirmed\"})}),className:\"framer-156x3n6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12392.748561957687+50+1070+0+45.2+122.55641025641029+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png\",srcSet:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png?scale-down-to=1024 890w,https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png 1412w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12662.140196938677+50+1070+0+45.2+122.55641025641029+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png\",srcSet:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png?scale-down-to=1024 890w,https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png 1412w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11895.109778687725+0+955+0+45.2+122.55641025641029+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png\",srcSet:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png?scale-down-to=1024 890w,https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png 1412w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12392.748561957687+50+1070+0+45.2+122.55641025641029+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png\",srcSet:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png?scale-down-to=1024 890w,https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png 1412w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11078.700806610272+20+987+0+49.599999999999994+5+571.0256410256411+0+318.6+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png\",srcSet:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png?scale-down-to=1024 890w,https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png 1412w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1624,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12412.140196938677+50+1070+0+45.2+122.55641025641029+0+0+29.599999999999998),pixelHeight:1624,pixelWidth:1412,sizes:\"220px\",src:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png\",srcSet:\"https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png?scale-down-to=1024 890w,https://framerusercontent.com/images/nn6FHHKBFN4Snt80ybeX6JdjDAE.png 1412w\"},className:\"framer-a0whfk\",\"data-framer-name\":\"Frame_85\"})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yd91p6 hidden-1bf6469\",\"data-framer-name\":\"Annos & Arrows\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3qpjfc-container hidden-rsldly\",style:{rotate:180},children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"lUZVz3KiO\",layoutId:\"lUZVz3KiO\",style:{height:\"100%\",width:\"100%\"},variant:\"EUTnUuVzg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-irv6g3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsa11L5j4:{variant:\"NlwpW1Htu\"}},children:/*#__PURE__*/_jsx(Anno,{AMwpR8uxU:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\",bMJZftdOm:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",height:\"100%\",iCOwuZQCP:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",id:\"UHNOzcgeK\",layoutId:\"UHNOzcgeK\",nTzmMMgrv:\"Spot info card\",variant:\"RfpXBRj4l\",w067zdTsO:\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\",W3lt7xSUj:\"Mall map, personal notes, store instructions\",width:\"100%\",zBb79ReIk:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vqni0a-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsa11L5j4:{variant:\"NlwpW1Htu\"}},children:/*#__PURE__*/_jsx(Anno,{AMwpR8uxU:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\",bMJZftdOm:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",height:\"100%\",iCOwuZQCP:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",id:\"SajzCEWto\",layoutId:\"SajzCEWto\",nTzmMMgrv:\"Parking vs Order\",variant:\"RfpXBRj4l\",w067zdTsO:\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\",W3lt7xSUj:\"Tap on each accordingly\",width:\"100%\",zBb79ReIk:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ags4x-container hidden-rsldly\",style:{rotate:180},children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"fzi45j06U\",layoutId:\"fzi45j06U\",style:{height:\"100%\",width:\"100%\"},variant:\"EUTnUuVzg\",width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8rhvsu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10h6jya\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"Solution - Feature 3\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"Solution - Feature 3\"})}),className:\"framer-3g7mvy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:\"More support: A personalized experience with better communication \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:\"More support: A personalized experience with better communication \"})}),className:\"framer-epbzcn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsa11L5j4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:[\"Issues with communicating with the support team as well as the customer were the reported \",/*#__PURE__*/_jsx(\"strong\",{children:\"#1\"}),\" reason for late deliveries, according to our interviewed users.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:['Adding an accessible chat feature made their experience feel increasingly \"',/*#__PURE__*/_jsx(\"em\",{children:\"safer\"}),',\" as they could express and defend their concerns, issues with orders, and occasional inconveniences without the fear of losing their pay.']})]}),fonts:[\"GF;Murecho-regular\",\"GF;Murecho-700\"]},Zl_29rSRR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:[\"Issues with communicating with the support team as well as the customer were the reported \",/*#__PURE__*/_jsx(\"strong\",{children:\"#1\"}),\" reason for late deliveries, according to our interviewed users.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:['Adding an accessible chat feature made their experience feel increasingly \"',/*#__PURE__*/_jsx(\"em\",{children:\"safer\"}),',\" as they could express and defend their concerns, issues with orders, and occasional inconveniences without the fear of losing their pay.']})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:[\"Issues with communicating with the support team as well as the customer were the reported \",/*#__PURE__*/_jsx(\"strong\",{children:\"#1\"}),\" reason for late deliveries, according to our interviewed users.\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:['Adding an accessible chat feature made their experience feel increasingly \"',/*#__PURE__*/_jsx(\"em\",{children:\"safer\"}),',\" as they could express and defend their concerns, issues with orders, and occasional inconveniences without the fear of losing their pay.']})]}),className:\"framer-aoqfyh\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-psmh86\",\"data-framer-name\":\"Visual\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xk5jd\",\"data-framer-name\":\"Phone 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10yk6ym\",\"data-styles-preset\":\"x1wNxbh2x\",children:\"Personalized loading screen\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\"},children:\"Personalized loading screen\"})}),className:\"framer-1sm4a4j\",\"data-framer-name\":\"Title\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18uy7re\",\"data-framer-name\":\"Phone\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14141.661382470507+50+635+0+0+52.4+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png\",srcSet:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png 1560w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14411.053017451497+50+635+0+0+52.4+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png\",srcSet:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png 1560w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13479.022599200545+50+595+0+0+52.4+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png\",srcSet:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png 1560w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14141.661382470507+50+635+0+0+52.4+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png\",srcSet:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png 1560w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13373.526447635912+20+567+0+0+49.599999999999994+4+0),pixelHeight:3376,pixelWidth:1560,sizes:\"150px\",src:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png\",srcSet:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14161.053017451497+50+635+0+0+52.4+5+0),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png\",srcSet:\"https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/ClEMWuYBm4FfcGqW86PlJzjTZU.png 1560w\"},className:\"framer-b93jy0\",\"data-framer-name\":\"Order_Pop_Up\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-712uax\",\"data-framer-name\":\"Knook\"})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-svg5cd hidden-rsldly hidden-1bf6469\",\"data-framer-name\":\"Annos & Arrows\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qk814y-container\",style:{rotate:180},children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"oDXuasgI0\",layoutId:\"oDXuasgI0\",style:{height:\"100%\",width:\"100%\"},variant:\"aqRSGx7jE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3py5td-container\",children:/*#__PURE__*/_jsx(Anno,{AMwpR8uxU:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\",bMJZftdOm:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",height:\"100%\",iCOwuZQCP:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",id:\"k8t9beYUP\",layoutId:\"k8t9beYUP\",nTzmMMgrv:\"User-specific\",variant:\"VUjbP6Bkf\",w067zdTsO:\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\",W3lt7xSUj:\"Stop at any point\",width:\"100%\",zBb79ReIk:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qxk4d8-container\",style:{rotate:180},children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"NNnLxX2wl\",layoutId:\"NNnLxX2wl\",style:{height:\"100%\",width:\"100%\"},variant:\"aqRSGx7jE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xvygqx-container\",children:/*#__PURE__*/_jsx(Anno,{AMwpR8uxU:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\",bMJZftdOm:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",height:\"100%\",iCOwuZQCP:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",id:\"l7FbomnTy\",layoutId:\"l7FbomnTy\",nTzmMMgrv:\"Logo with app name\",variant:\"RfpXBRj4l\",w067zdTsO:\"var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255))\",W3lt7xSUj:\"Customer vs driver app\",width:\"100%\",zBb79ReIk:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(37, 37, 38))\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2876,intrinsicWidth:2480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14141.661382470507+50+635+0+0+52.4+37.8639393066361+430-256.99777097292645),pixelHeight:2876,pixelWidth:2480,sizes:\"128px\",src:\"https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png\",srcSet:\"https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png?scale-down-to=1024 883w,https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png?scale-down-to=2048 1766w,https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png 2480w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2876,intrinsicWidth:2480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14411.053017451497+50+635+0+0+52.4+37.8639393066361+430-256.99777097292645),pixelHeight:2876,pixelWidth:2480,sizes:\"128px\",src:\"https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png\",srcSet:\"https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png?scale-down-to=1024 883w,https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png?scale-down-to=2048 1766w,https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png 2480w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2876,intrinsicWidth:2480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14141.661382470507+50+635+0+0+52.4+37.8639393066361+430-256.99777097292645),pixelHeight:2876,pixelWidth:2480,sizes:\"128px\",src:\"https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png\",srcSet:\"https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png?scale-down-to=1024 883w,https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png?scale-down-to=2048 1766w,https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png 2480w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2876,intrinsicWidth:2480,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14161.053017451497+50+635+0+0+52.4+37.8639393066361+430-256.99777097292645),pixelHeight:2876,pixelWidth:2480,sizes:\"128px\",src:\"https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png\",srcSet:\"https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png?scale-down-to=1024 883w,https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png?scale-down-to=2048 1766w,https://framerusercontent.com/images/bDfBYkSeN70dRs5VJ4SF8VjrE.png 2480w\"},className:\"framer-xwfkf3\",\"data-framer-name\":\"Max_2\",style:{rotate:-28}})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h3xiwv\",\"data-framer-name\":\"Phone 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10yk6ym\",\"data-styles-preset\":\"x1wNxbh2x\",children:\"Customer chat & support\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\"},children:\"Customer chat & support\"})}),className:\"framer-1ndizn6\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nhlttr\",\"data-framer-name\":\"Phone\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14141.661382470507+50+635+0+0+52.4+5),pixelHeight:844,pixelWidth:390,sizes:\"242px\",src:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png\",srcSet:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png 390w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14411.053017451497+50+635+0+0+52.4+5),pixelHeight:844,pixelWidth:390,sizes:\"242px\",src:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png\",srcSet:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png 390w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13479.022599200545+50+595+0+0+52.4+5),pixelHeight:844,pixelWidth:390,sizes:\"242px\",src:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png\",srcSet:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png 390w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14141.661382470507+50+635+0+0+52.4+5),pixelHeight:844,pixelWidth:390,sizes:\"242px\",src:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png\",srcSet:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png 390w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13373.526447635912+20+567+0+0+49.599999999999994+4),pixelHeight:844,pixelWidth:390,sizes:\"150px\",src:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png\",srcSet:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png 390w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14161.053017451497+50+635+0+0+52.4+5),pixelHeight:844,pixelWidth:390,sizes:\"242px\",src:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png\",srcSet:\"https://framerusercontent.com/images/ZKikB531alwtbjghRp4lfTNhCXM.png 390w\"},className:\"framer-1mm26en\",\"data-framer-name\":\"Order_Pop_Up\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s363uv\",\"data-framer-name\":\"Knook\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jf0pfn\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t084kc\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"User feedback\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"User feedback\"})}),className:\"framer-lwdt6f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:\"Users loved the concepts, but claimed the UI felt slightly too crowded.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:\"Users loved the concepts, but claimed the UI felt slightly too crowded.\"})}),className:\"framer-t8nn5e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QNpzm71qa:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(117, 117, 117))\"},children:\"I tested all three new features with all 10 participants. The positive feedback was impressive; however, 6/10 users shared that the aesthetic was a little dense.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:'\"I understand the screen very well, but could it have a bit more breathing room?\"'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(117, 117, 117))\"},children:\"\\\"I really love how it's looking, though it's a little heavy.\\\"\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(117, 117, 117))\"},children:[\"Recognizing my design needed another iteration phase, I identified \",/*#__PURE__*/_jsx(\"strong\",{children:\"two key elements to rework\"}),\":\"]}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(117, 117, 117))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Leverage of negative space\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Emphasize CTAs\"})})]})]}),fonts:[\"GF;Murecho-regular\",\"GF;Murecho-700\"]},Rsa11L5j4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"I tested all three new features with all 10 participants. The positive feedback was impressive; however, 6/10 users shared that the aesthetic was a little dense.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:'\"I understand the screen very well, but could it have a bit more breathing room?\"'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\"},children:\"\\\"I really love how it's looking, though it's a little heavy.\\\"\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:[\"Recognizing my design needed another iteration phase, I identified \",/*#__PURE__*/_jsx(\"strong\",{children:\"two key elements to rework\"}),\":\"]}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Leverage of negative space\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Emphasize CTAs\"})})]})]}),fonts:[\"GF;Murecho-regular\",\"GF;Murecho-700\"]},thLFW00W6:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(117, 117, 117))\"},children:\"I tested all three new features with all 10 participants. The positive feedback was impressive; however, 6/10 users shared that the aesthetic was a little dense.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:'\"I understand the screen very well, but could it have a bit more breathing room?\"'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(117, 117, 117))\"},children:\"\\\"I really love how it's looking, though it's a little heavy.\\\"\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(117, 117, 117))\"},children:[\"Recognizing my design needed another iteration phase, I identified \",/*#__PURE__*/_jsx(\"strong\",{children:\"two key elements to rework\"}),\":\"]}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(117, 117, 117))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Leverage of negative space\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Emphasize CTAs\"})})]})]}),fonts:[\"GF;Murecho-regular\",\"GF;Murecho-700\"]},Zl_29rSRR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"I tested all three new features with all 10 participants. The positive feedback was impressive, however, 6/10 users shared the aesthetic was a little dense.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",style:{\"--framer-text-alignment\":\"left\"},children:'\"I understand the screen very well, but could it have a bit more breathing room?\"'}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",style:{\"--framer-text-alignment\":\"left\"},children:\"\\\"I really love how it's looking, though it's a little heavy.\\\"\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:[\"Recognizing my design needed another iteration phase, I identified \",/*#__PURE__*/_jsx(\"strong\",{children:\"two key elements to rework\"}),\":\"]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Leverage of negative space\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Emphasize CTAs\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"I tested all three new features with all 10 participants. The positive feedback was impressive; however, 6/10 users shared that the aesthetic was a little dense.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:'\"I understand the screen very well, but could it have a bit more breathing room?\"'}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"\\\"I really love how it's looking, though it's a little heavy.\\\"\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:[\"Recognizing my design needed another iteration phase, I identified \",/*#__PURE__*/_jsx(\"strong\",{children:\"two key elements to rework\"}),\":\"]}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Leverage of negative space\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Emphasize CTAs\"})})]})]}),className:\"framer-sujurx\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nbqda7\",\"data-framer-name\":\"Visual\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1388.8,intrinsicWidth:2393.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15462.774202983328+50+1215+0),pixelHeight:1736,pixelWidth:2992,sizes:\"800px\",src:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png\",srcSet:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png 2992w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1388.8,intrinsicWidth:2393.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15732.165837964318+50+1175+0),pixelHeight:1736,pixelWidth:2992,sizes:\"800px\",src:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png\",srcSet:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png 2992w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1388.8,intrinsicWidth:2393.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14760.135419713366+50+1100+0),pixelHeight:1736,pixelWidth:2992,sizes:\"800px\",src:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png\",srcSet:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png 2992w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1388.8,intrinsicWidth:2393.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15462.774202983328+50+1175+0),pixelHeight:1736,pixelWidth:2992,sizes:\"800px\",src:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png\",srcSet:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png 2992w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1388.8,intrinsicWidth:2393.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14392.741832251297+20+1127+0),pixelHeight:1736,pixelWidth:2992,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png\",srcSet:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png 2992w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1388.8,intrinsicWidth:2393.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15482.165837964318+50+1215+0),pixelHeight:1736,pixelWidth:2992,sizes:\"800px\",src:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png\",srcSet:\"https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=512 512w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yitTeCMLvdJS7RR13EWHUgv3V7k.png 2992w\"},className:\"framer-1c28gu7\",\"data-framer-name\":\"Rating\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13x107x\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wptmx0\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"Final design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"Final design\"})}),className:\"framer-mrwj6t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:\"After further iteration and testing, a cleaner UI succeeded\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:\"After further iteration and testing, a cleaner UI succeeded\"})}),className:\"framer-1q7omu0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsa11L5j4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"This project consisted of a total of 2 rounds of interviews, 2 testing phases, and 3 rounds of iteration.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"The final product proved to be successful by increasing the user rating by 0.3 points. \"})]}),fonts:[\"GF;Murecho-regular\"]},Zl_29rSRR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"This project consisted of a total of 2 rounds of interviews, 2 testing phases, and 3 rounds of iteration.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"The final product proved to be successful by increasing the user rating by 0.3 points. \"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"This project consisted of a total of 2 rounds of interviews, 2 testing phases, and 3 rounds of iteration.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"The final product proved to be successful by increasing the user rating by 0.3 points. \"})]}),className:\"framer-odmoxj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ulgsob\",\"data-framer-name\":\"Visual\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3n1a8\",\"data-framer-name\":\"Phone 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10yk6ym\",\"data-styles-preset\":\"x1wNxbh2x\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"Homepage\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-141ccao\",\"data-styles-preset\":\"m1dCGMeKL\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"Homepage\"})}),className:\"framer-1t4ohlh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cfmga0\",\"data-framer-name\":\"Phone\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17241.94532597798+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png\",srcSet:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png 1560w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17471.33696095897+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png\",srcSet:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png 1560w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16424.30654270802+50+595+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"230px\",src:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png\",srcSet:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png 1560w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17201.94532597798+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png\",srcSet:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png 1560w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16003.912955245949+20+567+20+0+0+49.599999999999994+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png\",srcSet:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17261.33696095897+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png\",srcSet:\"https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/cfLsoH2p9SD87vriDVZatWwozwU.png 1560w\"},className:\"framer-h55c22\",\"data-framer-name\":\"Order_Pop_Up\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t5b13m\",\"data-framer-name\":\"Knook\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r80pzx\",\"data-framer-name\":\"Phone 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10yk6ym\",\"data-styles-preset\":\"x1wNxbh2x\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"New order pop-up\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-141ccao\",\"data-styles-preset\":\"m1dCGMeKL\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"New order pop-up\"})}),className:\"framer-1xc0ag\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cofcad\",\"data-framer-name\":\"Phone\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17241.94532597798+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png\",srcSet:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png 1560w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17471.33696095897+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png\",srcSet:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png 1560w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16424.30654270802+50+595+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"230px\",src:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png\",srcSet:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png 1560w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17201.94532597798+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png\",srcSet:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png 1560w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16003.912955245949+20+567+20+633.3128205128206+0+49.599999999999994+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png\",srcSet:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17261.33696095897+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png\",srcSet:\"https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png?scale-down-to=2048 946w,https://framerusercontent.com/images/v1FsCA2LacYr7KueZ973UZ5bDU.png 1560w\"},className:\"framer-1r93t7c\",\"data-framer-name\":\"Order_Pop_Up\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i2z6x9\",\"data-framer-name\":\"Knook\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oykx5s\",\"data-framer-name\":\"Phone 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10yk6ym\",\"data-styles-preset\":\"x1wNxbh2x\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"Extended order pop-up\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-141ccao\",\"data-styles-preset\":\"m1dCGMeKL\",style:{\"--framer-text-color\":\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\"},children:\"Extended order pop-up\"})}),className:\"framer-7t3lai\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-157jikg\",\"data-framer-name\":\"Phone\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17241.94532597798+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png\",srcSet:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png?scale-down-to=2048 946w,https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png 1560w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17471.33696095897+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png\",srcSet:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png?scale-down-to=2048 946w,https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png 1560w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16424.30654270802+50+595+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"230px\",src:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png\",srcSet:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png?scale-down-to=2048 946w,https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png 1560w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17201.94532597798+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png\",srcSet:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png?scale-down-to=2048 946w,https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png 1560w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16003.912955245949+20+567+20+1266.6256410256412+0+49.599999999999994+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png\",srcSet:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png?scale-down-to=2048 946w,https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3376,intrinsicWidth:1560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17261.33696095897+50+635+20+0+55.2+5),pixelHeight:3376,pixelWidth:1560,sizes:\"242px\",src:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png\",srcSet:\"https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png?scale-down-to=2048 946w,https://framerusercontent.com/images/vgDuB2fu9YLkFiDfJBkBKVK3HQ.png 1560w\"},className:\"framer-v5wtpm\",\"data-framer-name\":\"Order_Pop_Up\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fo5gr4\",\"data-framer-name\":\"Knook\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9r86si\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14a3at1\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"Client feedback\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"Client feedback\"})}),className:\"framer-1heqm1q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:\"Stakeholders welcomed a new approach to order assigns\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:\"Stakeholders welcomed a new approach to order assigns\"})}),className:\"framer-12c8sje\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsa11L5j4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"The current model assigns multiple drivers to deliver to the same customer, which causes potential confusion between drivers and customers.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TXVyZWNoby1yZWd1bGFy\",\"--framer-font-family\":'\"Murecho\", \"Murecho Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:[\"In my pitch, I explained to my client how this new feature assigns one driver to complete one customer's order at a time, \",/*#__PURE__*/_jsx(\"strong\",{children:\"preventing confusion and allowing for greater tips\"}),\" for the drivers.\"]})]}),fonts:[\"GF;Murecho-regular\",\"GF;Murecho-700\"]},Zl_29rSRR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"The current model assigns multiple drivers to deliver to the same customer, which causes potential confusion between drivers and customers.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:[\"In my pitch, I explained to my client how this new feature assigns one driver to complete one customer's order at a time, \",/*#__PURE__*/_jsx(\"strong\",{children:\"preventing confusion and allowing for greater tips\"}),\" for the drivers.\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"The current model assigns multiple drivers to deliver to the same customer, which causes potential confusion between drivers and customers.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:[\"In my pitch, I explained to my client how this new feature assigns one driver to complete one customer's order at a time, \",/*#__PURE__*/_jsx(\"strong\",{children:\"preventing confusion and allowing for greater tips\"}),\" for the drivers.\"]})]}),className:\"framer-1s7soix\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-111a025\",\"data-framer-name\":\"Visual\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18605.858146490802+50+635+117),pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/G16jXwlwzjzln0jl8Gs7NaYRrvQ.jpeg\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18835.249781471794+50+635+117),pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/G16jXwlwzjzln0jl8Gs7NaYRrvQ.jpeg\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+17722.25013245161+50+595+117),pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/G16jXwlwzjzln0jl8Gs7NaYRrvQ.jpeg\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18565.858146490802+50+635+117),pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/G16jXwlwzjzln0jl8Gs7NaYRrvQ.jpeg\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18530.85141678441+20+567+0+0),pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/G16jXwlwzjzln0jl8Gs7NaYRrvQ.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:360,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18625.249781471794+50+635+117),pixelHeight:450,pixelWidth:450,src:\"https://framerusercontent.com/images/G16jXwlwzjzln0jl8Gs7NaYRrvQ.jpeg\"},className:\"framer-18xu92e\",\"data-framer-name\":\"MD\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:'\"The design is cohesive and intuitive. I was impressed to learn new things about my users and see new ways for FimiMall to help drivers organize one full order at a time.'}),/*#__PURE__*/_jsxs(\"em\",{children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"em\",{children:'Great results!\"'})]}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:\"Michaela Dennis\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, rgb(77, 77, 77))\"},children:\"CEO of FimiMall\"})]}),className:\"framer-1yvafhv\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qu9k1b\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kjm0gc\",\"data-border\":true,\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3a7gsj\",\"data-styles-preset\":\"SedE6bL0_\",children:\"Expected Impact\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bdqimk\",\"data-styles-preset\":\"THax8Ioar\",children:\"Expected Impact\"})}),className:\"framer-1u0rime\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5ru6js\",\"data-styles-preset\":\"kuEemeD9d\",children:\"We expect more drivers to join the platform within the first 6 months of public release\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14mi7mz\",\"data-styles-preset\":\"xjEsfn0hk\",children:\"We expect more drivers to join the platform within the first 6 months of public release\"})}),className:\"framer-10uy9u8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"FimiMall is on their way to developing their new features.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"To help FimiMall advance in their business growth, I was able to prepare a comprehensive user feedback loop that actively collects input from working drivers to continue refining the user flow.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:\"We expect:\"}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1kk9kvb\",\"data-styles-preset\":\"p0R6TNF2y\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"50% driver satisfaction increase\"}),\", measured by this feedback loop system.\"]})})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"FimiMall is on their way to developing their new features.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"To help FimiMall advance in their business growth, I was able to prepare a comprehensive user feedback loop that actively collects input from working drivers to continue refining the user flow.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:\"We expect:\"}),/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-1hl1zrz\",\"data-styles-preset\":\"SDCgT3u2H\",children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"50% driver satisfaction increase\"}),\", measured by this feedback loop system.\"]})})})]}),className:\"framer-3rz3vb\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7970,intrinsicWidth:3403,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19724.858146490802+50+0+281.1610169491528),pixelHeight:7970,pixelWidth:3403,sizes:\"74px\",src:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png\",srcSet:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=2048 874w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=4096 1748w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png 3403w\"}},QNpzm71qa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7970,intrinsicWidth:3403,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19954.249781471794+50+0+281.1610169491528),pixelHeight:7970,pixelWidth:3403,sizes:\"74px\",src:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png\",srcSet:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=2048 874w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=4096 1748w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png 3403w\"}},Rsa11L5j4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7970,intrinsicWidth:3403,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+18801.25013245161+50+0+961.6528662420385),pixelHeight:7970,pixelWidth:3403,sizes:\"74px\",src:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png\",srcSet:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=2048 874w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=4096 1748w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png 3403w\"}},thLFW00W6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7970,intrinsicWidth:3403,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19684.858146490802+50+0+281.1610169491528),pixelHeight:7970,pixelWidth:3403,sizes:\"74px\",src:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png\",srcSet:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=2048 874w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=4096 1748w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png 3403w\"}},Zl_29rSRR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7970,intrinsicWidth:3403,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19731.85141678441+20+0+75.85469107551506),pixelHeight:7970,pixelWidth:3403,sizes:\"49px\",src:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png\",srcSet:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=2048 874w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=4096 1748w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png 3403w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:7970,intrinsicWidth:3403,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+19744.249781471794+50+0+281.1610169491528),pixelHeight:7970,pixelWidth:3403,sizes:\"74px\",src:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png\",srcSet:\"https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=2048 874w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png?scale-down-to=4096 1748w,https://framerusercontent.com/images/sGzYE9b1zjxeEmuqqFmH4fl84ZU.png 3403w\"},className:\"framer-1j9omfj\",\"data-framer-name\":\"Max\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ctshka\",\"data-framer-name\":\"Bottom Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"N57RA8aEL\"},implicitPathVariables:undefined},{href:{webPageId:\"N57RA8aEL\"},implicitPathVariables:undefined},{href:{webPageId:\"N57RA8aEL\"},implicitPathVariables:undefined},{href:{webPageId:\"N57RA8aEL\"},implicitPathVariables:undefined},{href:{webPageId:\"N57RA8aEL\"},implicitPathVariables:undefined},{href:{webPageId:\"N57RA8aEL\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{y:(componentViewport?.y||0)+0+20759.858146490802+50},QNpzm71qa:{y:(componentViewport?.y||0)+0+20989.249781471794+50},Rsa11L5j4:{y:(componentViewport?.y||0)+0+19964.25013245161+50},thLFW00W6:{y:(componentViewport?.y||0)+0+20719.858146490802+50},Zl_29rSRR:{y:(componentViewport?.y||0)+0+20658.85141678441+2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+20779.249781471794+50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mnrw9p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{nJ9kfea9j:resolvedLinks[4]},QNpzm71qa:{nJ9kfea9j:resolvedLinks[2]},Rsa11L5j4:{nJ9kfea9j:resolvedLinks[3]},thLFW00W6:{nJ9kfea9j:resolvedLinks[1]},Zl_29rSRR:{nJ9kfea9j:resolvedLinks[5]}},children:/*#__PURE__*/_jsx(Button,{g1DuzKX8N:18,height:\"100%\",id:\"iqEJLzvw4\",l2tQR0kAp:\"var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, rgb(250, 250, 250))\",layoutId:\"iqEJLzvw4\",nJ9kfea9j:resolvedLinks[0],NrDBMU3xw:\"Button\",raOgQAVE0:\"var(--token-5c31d57e-f19d-46de-a124-4a7674dada01, rgb(133, 133, 133))\",SB8ghv82B:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",style:{height:\"100%\"},TuqcCFFjr:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\",variant:\"po8PZ0Uaq\",width:\"100%\",x4w8tsOAZ:\"Back to homepage\",z303jlQHM:\"var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, rgb(250, 250, 250))\",ZkdMUwz55:\"var(--token-5c31d57e-f19d-46de-a124-4a7674dada01, rgb(133, 133, 133))\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"w33TOBPzB\"},implicitPathVariables:undefined},{href:{webPageId:\"w33TOBPzB\"},implicitPathVariables:undefined},{href:{webPageId:\"w33TOBPzB\"},implicitPathVariables:undefined},{href:{webPageId:\"w33TOBPzB\"},implicitPathVariables:undefined},{href:{webPageId:\"w33TOBPzB\"},implicitPathVariables:undefined},{href:{webPageId:\"w33TOBPzB\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{y:(componentViewport?.y||0)+0+20759.858146490802+50},QNpzm71qa:{y:(componentViewport?.y||0)+0+20989.249781471794+50},Rsa11L5j4:{y:(componentViewport?.y||0)+0+19964.25013245161+50},thLFW00W6:{y:(componentViewport?.y||0)+0+20719.858146490802+50},Zl_29rSRR:{y:(componentViewport?.y||0)+0+20658.85141678441+2+57}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+20779.249781471794+50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lfu2a8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{nJ9kfea9j:resolvedLinks1[4]},QNpzm71qa:{nJ9kfea9j:resolvedLinks1[2]},Rsa11L5j4:{nJ9kfea9j:resolvedLinks1[3]},thLFW00W6:{nJ9kfea9j:resolvedLinks1[1]},Zl_29rSRR:{nJ9kfea9j:resolvedLinks1[5]}},children:/*#__PURE__*/_jsx(Button,{g1DuzKX8N:18,height:\"100%\",id:\"EINRfb0_r\",l2tQR0kAp:\"var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, rgb(250, 250, 250))\",layoutId:\"EINRfb0_r\",nJ9kfea9j:resolvedLinks1[0],NrDBMU3xw:\"7dish!\",raOgQAVE0:\"var(--token-5c31d57e-f19d-46de-a124-4a7674dada01, rgb(133, 133, 133))\",SB8ghv82B:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",style:{height:\"100%\"},TuqcCFFjr:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\",variant:\"VwVO5Llj_\",width:\"100%\",x4w8tsOAZ:\"Check out what I did at\",z303jlQHM:\"var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, rgb(250, 250, 250))\",ZkdMUwz55:\"var(--token-5c31d57e-f19d-46de-a124-4a7674dada01, rgb(133, 133, 133))\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{y:(componentViewport?.y||0)+0+20891.858146490802},QNpzm71qa:{y:(componentViewport?.y||0)+0+21121.249781471794},Rsa11L5j4:{y:(componentViewport?.y||0)+0+19836.25013245161},thLFW00W6:{y:(componentViewport?.y||0)+0+20851.858146490802},Zl_29rSRR:{y:(componentViewport?.y||0)+0+20799.85141678441}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+20911.249781471794,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h4khyg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{variant:\"bd4qOBWRF\"},Rsa11L5j4:{variant:\"bd4qOBWRF\"},Zl_29rSRR:{variant:\"xmayPvo6y\"}},children:/*#__PURE__*/_jsx(SectionFooter,{fL22qS24e:\"Designed and built in Framer\",height:\"100%\",id:\"bnaiSAJPj\",layoutId:\"bnaiSAJPj\",style:{width:\"100%\"},variant:\"q32SB_QEM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":TR04zkQBh\",webPageId:\"GUNITw4XO\"},implicitPathVariables:undefined},{href:{hash:\":TR04zkQBh\",webPageId:\"GUNITw4XO\"},implicitPathVariables:undefined},{href:{hash:\":TR04zkQBh\",webPageId:\"GUNITw4XO\"},implicitPathVariables:undefined},{href:{hash:\":TR04zkQBh\",webPageId:\"GUNITw4XO\"},implicitPathVariables:undefined},{href:{hash:\":TR04zkQBh\",webPageId:\"GUNITw4XO\"},implicitPathVariables:undefined},{href:{hash:\":TR04zkQBh\",webPageId:\"GUNITw4XO\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"70px\",y:850,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Zl_29rSRR:{__framer__targets:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:90,ref:ref3,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wt1wdx-container\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{adk8diGR8:{nJ9kfea9j:resolvedLinks2[4]},QNpzm71qa:{nJ9kfea9j:resolvedLinks2[2]},Rsa11L5j4:{nJ9kfea9j:resolvedLinks2[3]},thLFW00W6:{nJ9kfea9j:resolvedLinks2[1]},Zl_29rSRR:{nJ9kfea9j:resolvedLinks2[5]}},children:/*#__PURE__*/_jsx(Button,{g1DuzKX8N:18,height:\"100%\",id:\"remKrp9Vs\",l2tQR0kAp:\"var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, rgb(250, 250, 250))\",layoutId:\"remKrp9Vs\",nJ9kfea9j:resolvedLinks2[0],NrDBMU3xw:\"Button\",raOgQAVE0:\"var(--token-5c31d57e-f19d-46de-a124-4a7674dada01, rgb(133, 133, 133))\",SB8ghv82B:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(43, 43, 43))\",style:{height:\"100%\",width:\"100%\"},TuqcCFFjr:\"var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, rgb(47, 46, 49))\",variant:\"xhBoU2SrD\",width:\"100%\",x4w8tsOAZ:\"Button\",z303jlQHM:\"var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, rgb(250, 250, 250))\",ZkdMUwz55:\"var(--token-5c31d57e-f19d-46de-a124-4a7674dada01, rgb(133, 133, 133))\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v0p1r6-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(ThemeToggle,{border:{color:\"var(--token-a5608f1c-7dd9-4870-a5a1-9a3db39e433c, rgb(212, 212, 212))\",style:\"solid\",width:1,widthBottom:1,widthIsMixed:false,widthLeft:1,widthRight:1,widthTop:1},componentStyle:\"toggle\",customDark:[],customLight:[],defaultTheme:\"light\",dropdown:{arrow:\"var(--token-5d3602b5-29e5-4e80-9ac0-301c89bdec7f, rgba(0, 0, 0, 0.5))\",fill:\"var(--token-bb9b7e38-b139-46e0-aff9-c4d659ae26cb, rgb(242, 242, 242))\",font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},fontColor:\"var(--token-553feb38-2637-4ec9-835b-4a57fbd49b50, rgb(0, 0, 0))\",gap:10,padding:8,paddingBottomLeft:8,paddingBottomRight:8,paddingIsMixed:false,paddingTopLeft:8,paddingTopRight:8,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusIsMixed:false,radiusTopLeft:10,radiusTopRight:10},dropdownOptions:{darkText:\"Dark\",deviceThemeText:\"Device Theme\",lightText:\"Light\",showDeviceTheme:true},height:\"100%\",icons:{color:\"var(--token-b088dde8-cf8d-41e4-871d-8708c05884b3, rgb(77, 77, 77))\",darkSvg:\"\",hoverColor:\"var(--token-f60276f5-f32b-4061-a41a-ccfa6f029504, rgb(33, 33, 33))\",lightSvg:\"\",opacity:1,size:22,sizing:\"fill\",type:\"default\"},id:\"juk6CxGdy\",layoutId:\"juk6CxGdy\",resetToDeviceTheme:false,saveTheme:true,setColorScheme:true,toggle:{fill:\"var(--token-e29c154d-3b59-46ca-97ca-96fcbe69df7c, rgb(245, 245, 245))\",height:40,padding:5,radius:20,shadow:{blur:6,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:3},switch:\"var(--token-52905f65-8ce8-46e4-b4f3-ebb634d221c0, rgb(255, 255, 255))\"},transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vNSHW.framer-u946nz, .framer-vNSHW .framer-u946nz { display: block; }\",\".framer-vNSHW.framer-b6s96s { align-content: center; align-items: center; background-color: var(--token-45640309-7d29-4456-b8c0-5f6ad27c5ec2, #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: 1400px; }\",\".framer-vNSHW .framer-109gn5e { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: fixed; right: 0px; top: 20px; z-index: 1; }\",\".framer-vNSHW .framer-19fltgz-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-vNSHW .framer-19ztwfz-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-vNSHW .framer-1bwrm70 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 80vh; justify-content: center; overflow: visible; padding: 20px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-791f7y { flex: none; height: 150px; overflow: hidden; position: relative; width: 100%; }\",\".framer-vNSHW .framer-1hk1bik { align-content: center; align-items: center; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 64.80331262939958vh; justify-content: center; overflow: visible; padding: 50px 50px 0px 0px; position: relative; scroll-margin-top: 90px; width: 100%; }\",\".framer-vNSHW .framer-1a1z74k { align-content: center; align-items: center; background-color: var(--token-170a896d-5584-4301-8e52-d9ed1f409572, #006962); border-bottom-right-radius: 60px; border-top-right-radius: 60px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 50px 20px 50px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-8b8j3z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-vNSHW .framer-2917fq, .framer-vNSHW .framer-el12ew, .framer-vNSHW .framer-ypvtg2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-1l8hhf9, .framer-vNSHW .framer-zsv1iu, .framer-vNSHW .framer-sui0m2, .framer-vNSHW .framer-jbrus7, .framer-vNSHW .framer-12vphgs, .framer-vNSHW .framer-1iszydt, .framer-vNSHW .framer-vnnmpf, .framer-vNSHW .framer-gof5v6, .framer-vNSHW .framer-1c6nlt1, .framer-vNSHW .framer-16dyadj, .framer-vNSHW .framer-kdevs, .framer-vNSHW .framer-1ocnwlu, .framer-vNSHW .framer-1fkdukv, .framer-vNSHW .framer-1fzkd47, .framer-vNSHW .framer-1x22f00, .framer-vNSHW .framer-1rzia8t, .framer-vNSHW .framer-r9ylo1, .framer-vNSHW .framer-1rb3qew, .framer-vNSHW .framer-dy3loy, .framer-vNSHW .framer-n3lhze, .framer-vNSHW .framer-p9zcj9, .framer-vNSHW .framer-1jbg84b, .framer-vNSHW .framer-1lxs2lc, .framer-vNSHW .framer-1tsz7cg, .framer-vNSHW .framer-103mbwc, .framer-vNSHW .framer-o5ps71, .framer-vNSHW .framer-9l7379, .framer-vNSHW .framer-1v2mjed, .framer-vNSHW .framer-1lkaofz, .framer-vNSHW .framer-yc78cw, .framer-vNSHW .framer-6hsa5b, .framer-vNSHW .framer-3g7mvy, .framer-vNSHW .framer-epbzcn, .framer-vNSHW .framer-aoqfyh, .framer-vNSHW .framer-lwdt6f, .framer-vNSHW .framer-t8nn5e, .framer-vNSHW .framer-sujurx, .framer-vNSHW .framer-mrwj6t, .framer-vNSHW .framer-1q7omu0, .framer-vNSHW .framer-odmoxj, .framer-vNSHW .framer-1heqm1q, .framer-vNSHW .framer-12c8sje, .framer-vNSHW .framer-1s7soix, .framer-vNSHW .framer-1u0rime, .framer-vNSHW .framer-10uy9u8, .framer-vNSHW .framer-3rz3vb { --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-vNSHW .framer-1jp8dki { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-1wjprch { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vNSHW .framer-1jxe7zm { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vNSHW .framer-160d0ae, .framer-vNSHW .framer-usmwqw, .framer-vNSHW .framer-1oeqn23 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vNSHW .framer-1qnnami { aspect-ratio: 1.0034843205574913 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 548px); overflow: visible; position: relative; width: 550px; }\",\".framer-vNSHW .framer-1g1rc94 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-fyaxj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 800px; }\",\".framer-vNSHW .framer-1eieani, .framer-vNSHW .framer-1l4694y, .framer-vNSHW .framer-1rfn1gs, .framer-vNSHW .framer-g8ttrf, .framer-vNSHW .framer-177y3a8, .framer-vNSHW .framer-1j0qxfr, .framer-vNSHW .framer-tmnxx9 { --border-bottom-width: 0.2px; --border-color: var(--token-1dff0e95-c3b2-453b-904d-4ef55fae8a25, #dbdbdb); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-121m70z, .framer-vNSHW .framer-16hlwg1 { 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-vNSHW .framer-1w95xsj, .framer-vNSHW .framer-1en5e4e, .framer-vNSHW .framer-10moj43, .framer-vNSHW .framer-15n5ci8, .framer-vNSHW .framer-1iruer6, .framer-vNSHW .framer-15w7c3t, .framer-vNSHW .framer-10h6jya, .framer-vNSHW .framer-1t084kc, .framer-vNSHW .framer-wptmx0, .framer-vNSHW .framer-14a3at1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 800px; }\",\".framer-vNSHW .framer-2razpo { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: 650px; overflow: visible; position: relative; width: 800px; }\",\".framer-vNSHW .framer-1gb4lmb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-1qmwfdq-container { flex: none; height: 260px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-1ekn31i, .framer-vNSHW .framer-osgpxo { --border-bottom-width: 1px; --border-color: var(--token-4091bfc7-0471-493a-be21-2fa5134831f4, #3c3c75); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, #fafafa); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 256px; justify-content: flex-start; overflow: hidden; padding: 20px 15px 20px 15px; position: relative; width: 260px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-14h2adg, .framer-vNSHW .framer-4c7g45, .framer-vNSHW .framer-1a8qrhy, .framer-vNSHW .framer-1usxfox, .framer-vNSHW .framer-61sss1, .framer-vNSHW .framer-u3opl7 { --border-bottom-width: 1px; --border-color: var(--token-a5608f1c-7dd9-4870-a5a1-9a3db39e433c, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, #2f2e31); border-bottom-left-radius: 360px; border-bottom-right-radius: 360px; border-top-left-radius: 360px; border-top-right-radius: 360px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 30px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 30px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-vNSHW .framer-q0hneq, .framer-vNSHW .framer-14j63qc, .framer-vNSHW .framer-x9w64k, .framer-vNSHW .framer-m6oc1i, .framer-vNSHW .framer-1n0to8c, .framer-vNSHW .framer-1t6fh3h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: -1px; flex: none; left: -5px; position: absolute; right: -6px; top: -1px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-vNSHW .framer-epa14a, .framer-vNSHW .framer-xfbft, .framer-vNSHW .framer-1sobxd9, .framer-vNSHW .framer-1ivu5xs, .framer-vNSHW .framer-czm1xw, .framer-vNSHW .framer-1pa2sgb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 230px; word-break: break-word; word-wrap: break-word; }\",\".framer-vNSHW .framer-1yl25rq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 260px; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: 260px; }\",\".framer-vNSHW .framer-92l6y1, .framer-vNSHW .framer-voomu2, .framer-vNSHW .framer-k08rqa, .framer-vNSHW .framer-1bhml8f { --border-bottom-width: 1px; --border-color: var(--token-4091bfc7-0471-493a-be21-2fa5134831f4, #3c3c75); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, #fafafa); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 20px 15px 20px 15px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-17518vm { 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 20px 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-q8v0j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1400px; word-break: break-word; word-wrap: break-word; }\",\".framer-vNSHW .framer-1knvmtq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 260px; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: 800px; }\",\".framer-vNSHW .framer-3wu2na { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-ztlbhl { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-f70o6j { 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: 0px; position: relative; width: min-content; }\",\".framer-vNSHW .framer-f4hjht-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-vNSHW .framer-15y4959, .framer-vNSHW .framer-56u0ci, .framer-vNSHW .framer-69ntd7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vNSHW .framer-1srsvef, .framer-vNSHW .framer-1ykz1ac, .framer-vNSHW .framer-k6ol8r { aspect-ratio: 1.5555555555555556 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: var(--framer-aspect-ratio-supported, 225px); overflow: visible; position: relative; width: 350px; }\",\".framer-vNSHW .framer-lcxt59, .framer-vNSHW .framer-154a5jv, .framer-vNSHW .framer-62tof2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 196px; word-break: break-word; word-wrap: break-word; }\",\".framer-vNSHW .framer-374wq4, .framer-vNSHW .framer-zukkni, .framer-vNSHW .framer-rkiyb2 { flex: none; height: 40px; overflow: hidden; position: relative; width: 189px; }\",\".framer-vNSHW .framer-u2lixk, .framer-vNSHW .framer-1nbqda7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vNSHW .framer-vt3oty { aspect-ratio: 1.5470588235294118 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 246px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 380px); }\",\".framer-vNSHW .framer-ngnf5z { aspect-ratio: 1.5498154981549817 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 245px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 380px); }\",\".framer-vNSHW .framer-i4l54b { aspect-ratio: 1.5529411764705883 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 245px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 380px); }\",\".framer-vNSHW .framer-5w65hs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1187px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1290px; }\",\".framer-vNSHW .framer-6aiffu { flex: none; height: 358px; left: calc(15.993788819875798% - 411px / 2); overflow: visible; position: absolute; top: calc(56.44481887110364% - 358px / 2); width: 411px; z-index: 1; }\",\".framer-vNSHW .framer-1jrx89e { flex: none; height: 405px; left: calc(19.565217391304373% - 320px / 2); overflow: visible; position: absolute; top: calc(26.03201347935975% - 405px / 2); width: 320px; z-index: 1; }\",\".framer-vNSHW .framer-1mftgc3 { flex: none; height: 417px; left: calc(38.04347826086959% - 320px / 2); overflow: visible; position: absolute; top: calc(82.3925863521483% - 417px / 2); width: 320px; z-index: 1; }\",\".framer-vNSHW .framer-1i87ggc { flex: none; height: 265px; left: calc(50.46511627906979% - 427px / 2); overflow: visible; position: absolute; top: calc(49.705139005897244% - 265px / 2); width: 427px; z-index: 1; }\",\".framer-vNSHW .framer-48mqzc { flex: none; height: 423px; left: calc(50.4658385093168% - 399px / 2); overflow: visible; position: absolute; top: calc(17.86015164279699% - 423px / 2); width: 399px; z-index: 1; }\",\".framer-vNSHW .framer-1ltb7hc { flex: none; height: 330px; left: calc(65.9937888198758% - 320px / 2); overflow: visible; position: absolute; top: calc(80.96040438079194% - 330px / 2); width: 320px; z-index: 1; }\",\".framer-vNSHW .framer-6cwi93 { flex: none; height: 224px; left: calc(79.19254658385096% - 273px / 2); overflow: visible; position: absolute; top: calc(24.684077506318474% - 224px / 2); width: 273px; z-index: 1; }\",\".framer-vNSHW .framer-1ckldrq { flex: none; height: 433px; left: calc(84.93788819875778% - 388px / 2); overflow: visible; position: absolute; top: calc(50.63184498736312% - 433px / 2); width: 388px; z-index: 1; }\",\".framer-vNSHW .framer-1jg26by { --border-bottom-width: 1px; --border-color: var(--token-a5608f1c-7dd9-4870-a5a1-9a3db39e433c, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-1yenqm9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 960px; word-break: break-word; word-wrap: break-word; }\",\".framer-vNSHW .framer-qwz8a2 { --border-bottom-width: 1px; --border-color: var(--token-a5608f1c-7dd9-4870-a5a1-9a3db39e433c, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 360px; border-bottom-right-radius: 360px; border-top-left-radius: 360px; border-top-right-radius: 360px; flex: none; height: 137px; overflow: visible; position: relative; width: 137px; }\",\".framer-vNSHW .framer-es7kuf { 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: 0px; position: relative; width: 960px; }\",\".framer-vNSHW .framer-99y2a6 { --border-bottom-width: 1px; --border-color: var(--token-a5608f1c-7dd9-4870-a5a1-9a3db39e433c, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 360px; border-bottom-right-radius: 360px; border-top-left-radius: 360px; border-top-right-radius: 360px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 200px; }\",\".framer-vNSHW .framer-1lo3lus { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 656px; }\",\".framer-vNSHW .framer-sh6g45 { --border-bottom-width: 1px; --border-color: var(--token-a5608f1c-7dd9-4870-a5a1-9a3db39e433c, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f0ece8; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-juqfz7 { --border-bottom-width: 1px; --border-color: var(--token-a5608f1c-7dd9-4870-a5a1-9a3db39e433c, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fffced; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-b408gr { --border-bottom-width: 1px; --border-color: var(--token-a5608f1c-7dd9-4870-a5a1-9a3db39e433c, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f5dcdc; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-190es8c { --border-bottom-width: 1px; --border-color: var(--token-a5608f1c-7dd9-4870-a5a1-9a3db39e433c, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #e1edf0; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-1mrr3bz, .framer-vNSHW .framer-13x107x { align-content: center; align-items: center; background-color: var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, #fafafa); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-1cjdv0x { align-content: center; align-items: center; background-color: var(--token-f782bd47-242a-4d8a-8b5a-e54b96d8bf03, #fafafa); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-1n8zv48, .framer-vNSHW .framer-1xk5jd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; width: min-content; will-change: transform; }\",\".framer-vNSHW .framer-127k25q, .framer-vNSHW .framer-1ja5rvw, .framer-vNSHW .framer-1vmmcei, .framer-vNSHW .framer-156x3n6, .framer-vNSHW .framer-1sm4a4j, .framer-vNSHW .framer-1ndizn6, .framer-vNSHW .framer-1t4ohlh, .framer-vNSHW .framer-1xc0ag, .framer-vNSHW .framer-7t3lai { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-vNSHW .framer-10p8cya { align-content: center; align-items: center; background-color: var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, #fafafa); border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: sticky; top: 0px; width: min-content; will-change: transform; z-index: 1; }\",\".framer-vNSHW .framer-olwxgl, .framer-vNSHW .framer-hxcga5, .framer-vNSHW .framer-b93jy0, .framer-vNSHW .framer-1mm26en, .framer-vNSHW .framer-h55c22, .framer-vNSHW .framer-1r93t7c, .framer-vNSHW .framer-v5wtpm { aspect-ratio: 0.462085308056872 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 524px); overflow: visible; position: relative; width: 242px; }\",\".framer-vNSHW .framer-j9vuqa, .framer-vNSHW .framer-1iujtod, .framer-vNSHW .framer-1s363uv { aspect-ratio: 3.3333333333333335 / 1; background-color: var(--token-5c31d57e-f19d-46de-a124-4a7674dada01, #858585); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 50%; overflow: hidden; position: absolute; top: 4px; transform: translateX(-50%); width: 65px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-whpk4x { flex: none; height: 430px; left: -204px; overflow: hidden; position: absolute; right: 225px; top: calc(47.378277153558074% - 430px / 2); z-index: 1; }\",\".framer-vNSHW .framer-1qmbr3o-container { flex: none; height: 32px; left: 152px; position: absolute; top: calc(53.2558139534884% - 32px / 2); width: 75px; z-index: 1; }\",\".framer-vNSHW .framer-gpdny6-container { bottom: 148px; flex: none; height: auto; left: 0px; position: absolute; width: auto; z-index: 1; }\",\".framer-vNSHW .framer-cy4xoq-container { flex: none; height: 32px; left: 171px; position: absolute; top: 10px; width: 56px; z-index: 1; }\",\".framer-vNSHW .framer-ezwuqq-container { flex: none; height: auto; left: 0px; position: absolute; top: 0px; width: auto; z-index: 1; }\",\".framer-vNSHW .framer-glhuc-container { bottom: 54px; flex: none; height: 32px; left: 141px; position: absolute; right: -6px; z-index: 1; }\",\".framer-vNSHW .framer-lexnq5-container { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; width: auto; z-index: 1; }\",\".framer-vNSHW .framer-176acqf, .framer-vNSHW .framer-h3xiwv, .framer-vNSHW .framer-o3n1a8, .framer-vNSHW .framer-r80pzx, .framer-vNSHW .framer-oykx5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vNSHW .framer-1yamzx0 { align-content: center; align-items: center; background-color: var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, #fafafa); border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: relative; width: min-content; }\",\".framer-vNSHW .framer-sizjbq { flex: none; height: 399px; overflow: hidden; position: absolute; right: -206px; top: calc(49.250936329588036% - 399px / 2); width: 272px; z-index: 1; }\",\".framer-vNSHW .framer-ititwp-container { flex: none; height: 19px; left: 42px; position: absolute; right: 174px; top: 9px; z-index: 1; }\",\".framer-vNSHW .framer-j3jcuq-container { flex: none; height: auto; position: absolute; right: 0px; top: 0px; width: auto; z-index: 1; }\",\".framer-vNSHW .framer-lssb92-container { bottom: 35px; flex: none; height: 19px; left: 0px; position: absolute; right: 174px; z-index: 1; }\",\".framer-vNSHW .framer-1m6n5ny-container { bottom: 0px; flex: none; height: auto; position: absolute; right: 0px; width: auto; z-index: 1; }\",\".framer-vNSHW .framer-yz8o5e, .framer-vNSHW .framer-8rhvsu, .framer-vNSHW .framer-1jf0pfn, .framer-vNSHW .framer-1qu9k1b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-wukqwe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 100px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-l23wg6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; width: 100%; will-change: transform; }\",\".framer-vNSHW .framer-g93a2i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-vNSHW .framer-nckruj { align-content: center; align-items: center; background-color: var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, #fafafa); border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px; position: sticky; top: 0px; width: 777px; will-change: transform; z-index: 1; }\",\".framer-vNSHW .framer-4aa09k { --border-bottom-width: 1px; --border-color: var(--token-5c31d57e-f19d-46de-a124-4a7674dada01, #858585); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 0.462085308056872 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 524px); overflow: visible; position: relative; width: 242px; }\",\".framer-vNSHW .framer-1mi5ua8 { aspect-ratio: 3.3333333333333335 / 1; background-color: var(--token-cc08b893-0fda-4573-b119-682c9bfe6e36, #4d4d4d); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 50%; overflow: hidden; position: absolute; top: 4px; transform: translateX(-50%); width: 65px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-1pz4bww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-vNSHW .framer-l6blp5, .framer-vNSHW .framer-a0whfk { aspect-ratio: 0.8503401360544217 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 259px); overflow: visible; position: relative; width: 220px; }\",\".framer-vNSHW .framer-1yd91p6 { flex: none; height: 430px; left: -204px; overflow: hidden; position: absolute; right: 590px; top: calc(47.378277153558074% - 430px / 2); z-index: 1; }\",\".framer-vNSHW .framer-3qpjfc-container { flex: none; height: 18px; left: calc(54.47570332480821% - 97px / 2); position: absolute; top: 157px; width: 97px; z-index: 1; }\",\".framer-vNSHW .framer-irv6g3-container { flex: none; height: auto; left: 24px; position: absolute; top: 47%; transform: translateY(-50%); width: auto; z-index: 1; }\",\".framer-vNSHW .framer-vqni0a-container { flex: none; height: auto; left: 24px; position: absolute; top: 0px; width: auto; z-index: 1; }\",\".framer-vNSHW .framer-2ags4x-container { flex: none; height: 19px; left: 181px; position: absolute; top: 9px; width: 83px; z-index: 1; }\",\".framer-vNSHW .framer-psmh86 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-18uy7re { align-content: center; align-items: center; background-color: var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, #fafafa); border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: sticky; top: 0px; width: min-content; will-change: transform; z-index: 1; }\",\".framer-vNSHW .framer-712uax { aspect-ratio: 3.3333333333333335 / 1; background-color: var(--token-e29c154d-3b59-46ca-97ca-96fcbe69df7c, #f5f5f5); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 50%; overflow: hidden; position: absolute; top: 4px; transform: translateX(-50%); width: 65px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-svg5cd { flex: none; height: 430px; left: -205px; overflow: hidden; position: absolute; right: 140px; top: calc(47.378277153558074% - 430px / 2); z-index: 1; }\",\".framer-vNSHW .framer-qk814y-container { flex: none; height: 32px; left: 147px; position: absolute; top: 137px; width: 152px; z-index: 1; }\",\".framer-vNSHW .framer-3py5td-container { flex: none; height: auto; left: 11px; position: absolute; top: 128px; width: auto; z-index: 1; }\",\".framer-vNSHW .framer-qxk4d8-container { flex: none; height: 32px; left: 192px; position: absolute; top: 48px; width: 66px; z-index: 1; }\",\".framer-vNSHW .framer-xvygqx-container { flex: none; height: auto; left: 11px; position: absolute; top: 39px; width: auto; z-index: 1; }\",\".framer-vNSHW .framer-xwfkf3 { aspect-ratio: 0.9477993858751279 / 1; bottom: 122px; flex: none; height: var(--framer-aspect-ratio-supported, 135px); left: 118px; overflow: visible; position: absolute; width: 128px; z-index: 1; }\",\".framer-vNSHW .framer-1nhlttr, .framer-vNSHW .framer-cfmga0, .framer-vNSHW .framer-cofcad, .framer-vNSHW .framer-157jikg { align-content: center; align-items: center; background-color: var(--token-15ed7f29-71b3-47aa-84d7-356d1d09f1d8, #fafafa); border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: relative; width: min-content; }\",\".framer-vNSHW .framer-1c28gu7 { aspect-ratio: 1.7235023041474655 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 464px); overflow: visible; position: relative; width: 800px; }\",\".framer-vNSHW .framer-1ulgsob { align-content: center; align-items: center; background-color: var(--token-f782bd47-242a-4d8a-8b5a-e54b96d8bf03, #fafafa); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-t5b13m, .framer-vNSHW .framer-i2z6x9, .framer-vNSHW .framer-1fo5gr4 { aspect-ratio: 3.3333333333333335 / 1; background-color: var(--token-3b2fd454-8f02-40b2-a552-e2645889b399, #252526); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 50%; overflow: hidden; position: absolute; top: 4px; transform: translateX(-50%); width: 65px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-9r86si { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vNSHW .framer-111a025 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-18xu92e { aspect-ratio: 1 / 1; border-bottom-left-radius: 360px; border-bottom-right-radius: 360px; border-top-left-radius: 360px; border-top-right-radius: 360px; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: visible; position: relative; width: 150px; }\",\".framer-vNSHW .framer-1yvafhv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 443px; word-break: break-word; word-wrap: break-word; }\",\".framer-vNSHW .framer-1kjm0gc { --border-bottom-width: 1px; --border-color: var(--token-a5608f1c-7dd9-4870-a5a1-9a3db39e433c, #d4d4d4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 900px; }\",\".framer-vNSHW .framer-1j9omfj { flex: none; height: 173px; overflow: visible; position: absolute; right: -59px; top: calc(39.32203389830511% - 173px / 2); width: 74px; z-index: 1; }\",\".framer-vNSHW .framer-ctshka { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: 132px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vNSHW .framer-mnrw9p-container, .framer-vNSHW .framer-1lfu2a8-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-vNSHW .framer-1h4khyg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-vNSHW .framer-wt1wdx-container { bottom: 80px; flex: none; height: 70px; position: fixed; right: 24px; width: 70px; z-index: 1; }\",\".framer-vNSHW .framer-1v0p1r6-container { bottom: 24px; flex: none; height: auto; position: fixed; right: 24px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vNSHW.framer-b6s96s, .framer-vNSHW .framer-109gn5e, .framer-vNSHW .framer-1bwrm70, .framer-vNSHW .framer-1hk1bik, .framer-vNSHW .framer-1a1z74k, .framer-vNSHW .framer-8b8j3z, .framer-vNSHW .framer-2917fq, .framer-vNSHW .framer-el12ew, .framer-vNSHW .framer-1jp8dki, .framer-vNSHW .framer-1jxe7zm, .framer-vNSHW .framer-160d0ae, .framer-vNSHW .framer-1g1rc94, .framer-vNSHW .framer-fyaxj, .framer-vNSHW .framer-1eieani, .framer-vNSHW .framer-1l4694y, .framer-vNSHW .framer-1rfn1gs, .framer-vNSHW .framer-g8ttrf, .framer-vNSHW .framer-177y3a8, .framer-vNSHW .framer-1j0qxfr, .framer-vNSHW .framer-tmnxx9, .framer-vNSHW .framer-121m70z, .framer-vNSHW .framer-1w95xsj, .framer-vNSHW .framer-1gb4lmb, .framer-vNSHW .framer-1en5e4e, .framer-vNSHW .framer-16hlwg1, .framer-vNSHW .framer-1ekn31i, .framer-vNSHW .framer-14h2adg, .framer-vNSHW .framer-osgpxo, .framer-vNSHW .framer-4c7g45, .framer-vNSHW .framer-1yl25rq, .framer-vNSHW .framer-92l6y1, .framer-vNSHW .framer-1a8qrhy, .framer-vNSHW .framer-17518vm, .framer-vNSHW .framer-1knvmtq, .framer-vNSHW .framer-voomu2, .framer-vNSHW .framer-1usxfox, .framer-vNSHW .framer-k08rqa, .framer-vNSHW .framer-61sss1, .framer-vNSHW .framer-1bhml8f, .framer-vNSHW .framer-u3opl7, .framer-vNSHW .framer-3wu2na, .framer-vNSHW .framer-ztlbhl, .framer-vNSHW .framer-10moj43, .framer-vNSHW .framer-f70o6j, .framer-vNSHW .framer-15y4959, .framer-vNSHW .framer-56u0ci, .framer-vNSHW .framer-69ntd7, .framer-vNSHW .framer-u2lixk, .framer-vNSHW .framer-15n5ci8, .framer-vNSHW .framer-ypvtg2, .framer-vNSHW .framer-5w65hs, .framer-vNSHW .framer-1jg26by, .framer-vNSHW .framer-es7kuf, .framer-vNSHW .framer-1lo3lus, .framer-vNSHW .framer-sh6g45, .framer-vNSHW .framer-juqfz7, .framer-vNSHW .framer-b408gr, .framer-vNSHW .framer-190es8c, .framer-vNSHW .framer-1mrr3bz, .framer-vNSHW .framer-1iruer6, .framer-vNSHW .framer-1cjdv0x, .framer-vNSHW .framer-1n8zv48, .framer-vNSHW .framer-10p8cya, .framer-vNSHW .framer-176acqf, .framer-vNSHW .framer-1yamzx0, .framer-vNSHW .framer-yz8o5e, .framer-vNSHW .framer-15w7c3t, .framer-vNSHW .framer-wukqwe, .framer-vNSHW .framer-l23wg6, .framer-vNSHW .framer-nckruj, .framer-vNSHW .framer-1pz4bww, .framer-vNSHW .framer-usmwqw, .framer-vNSHW .framer-1oeqn23, .framer-vNSHW .framer-8rhvsu, .framer-vNSHW .framer-10h6jya, .framer-vNSHW .framer-psmh86, .framer-vNSHW .framer-1xk5jd, .framer-vNSHW .framer-18uy7re, .framer-vNSHW .framer-h3xiwv, .framer-vNSHW .framer-1nhlttr, .framer-vNSHW .framer-1jf0pfn, .framer-vNSHW .framer-1t084kc, .framer-vNSHW .framer-1nbqda7, .framer-vNSHW .framer-13x107x, .framer-vNSHW .framer-wptmx0, .framer-vNSHW .framer-1ulgsob, .framer-vNSHW .framer-o3n1a8, .framer-vNSHW .framer-cfmga0, .framer-vNSHW .framer-r80pzx, .framer-vNSHW .framer-cofcad, .framer-vNSHW .framer-oykx5s, .framer-vNSHW .framer-157jikg, .framer-vNSHW .framer-9r86si, .framer-vNSHW .framer-14a3at1, .framer-vNSHW .framer-111a025, .framer-vNSHW .framer-1qu9k1b, .framer-vNSHW .framer-1kjm0gc, .framer-vNSHW .framer-ctshka { gap: 0px; } .framer-vNSHW.framer-b6s96s > *, .framer-vNSHW .framer-1bwrm70 > *, .framer-vNSHW .framer-1gb4lmb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vNSHW.framer-b6s96s > :first-child, .framer-vNSHW .framer-1bwrm70 > :first-child, .framer-vNSHW .framer-8b8j3z > :first-child, .framer-vNSHW .framer-160d0ae > :first-child, .framer-vNSHW .framer-1g1rc94 > :first-child, .framer-vNSHW .framer-fyaxj > :first-child, .framer-vNSHW .framer-1eieani > :first-child, .framer-vNSHW .framer-1l4694y > :first-child, .framer-vNSHW .framer-1rfn1gs > :first-child, .framer-vNSHW .framer-g8ttrf > :first-child, .framer-vNSHW .framer-177y3a8 > :first-child, .framer-vNSHW .framer-1j0qxfr > :first-child, .framer-vNSHW .framer-tmnxx9 > :first-child, .framer-vNSHW .framer-121m70z > :first-child, .framer-vNSHW .framer-1w95xsj > :first-child, .framer-vNSHW .framer-1gb4lmb > :first-child, .framer-vNSHW .framer-1en5e4e > :first-child, .framer-vNSHW .framer-16hlwg1 > :first-child, .framer-vNSHW .framer-1ekn31i > :first-child, .framer-vNSHW .framer-14h2adg > :first-child, .framer-vNSHW .framer-osgpxo > :first-child, .framer-vNSHW .framer-4c7g45 > :first-child, .framer-vNSHW .framer-92l6y1 > :first-child, .framer-vNSHW .framer-1a8qrhy > :first-child, .framer-vNSHW .framer-17518vm > :first-child, .framer-vNSHW .framer-voomu2 > :first-child, .framer-vNSHW .framer-1usxfox > :first-child, .framer-vNSHW .framer-k08rqa > :first-child, .framer-vNSHW .framer-61sss1 > :first-child, .framer-vNSHW .framer-1bhml8f > :first-child, .framer-vNSHW .framer-u3opl7 > :first-child, .framer-vNSHW .framer-3wu2na > :first-child, .framer-vNSHW .framer-ztlbhl > :first-child, .framer-vNSHW .framer-10moj43 > :first-child, .framer-vNSHW .framer-f70o6j > :first-child, .framer-vNSHW .framer-15y4959 > :first-child, .framer-vNSHW .framer-56u0ci > :first-child, .framer-vNSHW .framer-69ntd7 > :first-child, .framer-vNSHW .framer-15n5ci8 > :first-child, .framer-vNSHW .framer-5w65hs > :first-child, .framer-vNSHW .framer-1jg26by > :first-child, .framer-vNSHW .framer-es7kuf > :first-child, .framer-vNSHW .framer-1lo3lus > :first-child, .framer-vNSHW .framer-sh6g45 > :first-child, .framer-vNSHW .framer-juqfz7 > :first-child, .framer-vNSHW .framer-b408gr > :first-child, .framer-vNSHW .framer-190es8c > :first-child, .framer-vNSHW .framer-1mrr3bz > :first-child, .framer-vNSHW .framer-1iruer6 > :first-child, .framer-vNSHW .framer-1n8zv48 > :first-child, .framer-vNSHW .framer-10p8cya > :first-child, .framer-vNSHW .framer-176acqf > :first-child, .framer-vNSHW .framer-yz8o5e > :first-child, .framer-vNSHW .framer-15w7c3t > :first-child, .framer-vNSHW .framer-wukqwe > :first-child, .framer-vNSHW .framer-usmwqw > :first-child, .framer-vNSHW .framer-1oeqn23 > :first-child, .framer-vNSHW .framer-8rhvsu > :first-child, .framer-vNSHW .framer-10h6jya > :first-child, .framer-vNSHW .framer-1xk5jd > :first-child, .framer-vNSHW .framer-18uy7re > :first-child, .framer-vNSHW .framer-h3xiwv > :first-child, .framer-vNSHW .framer-1jf0pfn > :first-child, .framer-vNSHW .framer-1t084kc > :first-child, .framer-vNSHW .framer-13x107x > :first-child, .framer-vNSHW .framer-wptmx0 > :first-child, .framer-vNSHW .framer-o3n1a8 > :first-child, .framer-vNSHW .framer-r80pzx > :first-child, .framer-vNSHW .framer-oykx5s > :first-child, .framer-vNSHW .framer-9r86si > :first-child, .framer-vNSHW .framer-14a3at1 > :first-child, .framer-vNSHW .framer-1qu9k1b > :first-child, .framer-vNSHW .framer-1kjm0gc > :first-child { margin-top: 0px; } .framer-vNSHW.framer-b6s96s > :last-child, .framer-vNSHW .framer-1bwrm70 > :last-child, .framer-vNSHW .framer-8b8j3z > :last-child, .framer-vNSHW .framer-160d0ae > :last-child, .framer-vNSHW .framer-1g1rc94 > :last-child, .framer-vNSHW .framer-fyaxj > :last-child, .framer-vNSHW .framer-1eieani > :last-child, .framer-vNSHW .framer-1l4694y > :last-child, .framer-vNSHW .framer-1rfn1gs > :last-child, .framer-vNSHW .framer-g8ttrf > :last-child, .framer-vNSHW .framer-177y3a8 > :last-child, .framer-vNSHW .framer-1j0qxfr > :last-child, .framer-vNSHW .framer-tmnxx9 > :last-child, .framer-vNSHW .framer-121m70z > :last-child, .framer-vNSHW .framer-1w95xsj > :last-child, .framer-vNSHW .framer-1gb4lmb > :last-child, .framer-vNSHW .framer-1en5e4e > :last-child, .framer-vNSHW .framer-16hlwg1 > :last-child, .framer-vNSHW .framer-1ekn31i > :last-child, .framer-vNSHW .framer-14h2adg > :last-child, .framer-vNSHW .framer-osgpxo > :last-child, .framer-vNSHW .framer-4c7g45 > :last-child, .framer-vNSHW .framer-92l6y1 > :last-child, .framer-vNSHW .framer-1a8qrhy > :last-child, .framer-vNSHW .framer-17518vm > :last-child, .framer-vNSHW .framer-voomu2 > :last-child, .framer-vNSHW .framer-1usxfox > :last-child, .framer-vNSHW .framer-k08rqa > :last-child, .framer-vNSHW .framer-61sss1 > :last-child, .framer-vNSHW .framer-1bhml8f > :last-child, .framer-vNSHW .framer-u3opl7 > :last-child, .framer-vNSHW .framer-3wu2na > :last-child, .framer-vNSHW .framer-ztlbhl > :last-child, .framer-vNSHW .framer-10moj43 > :last-child, .framer-vNSHW .framer-f70o6j > :last-child, .framer-vNSHW .framer-15y4959 > :last-child, .framer-vNSHW .framer-56u0ci > :last-child, .framer-vNSHW .framer-69ntd7 > :last-child, .framer-vNSHW .framer-15n5ci8 > :last-child, .framer-vNSHW .framer-5w65hs > :last-child, .framer-vNSHW .framer-1jg26by > :last-child, .framer-vNSHW .framer-es7kuf > :last-child, .framer-vNSHW .framer-1lo3lus > :last-child, .framer-vNSHW .framer-sh6g45 > :last-child, .framer-vNSHW .framer-juqfz7 > :last-child, .framer-vNSHW .framer-b408gr > :last-child, .framer-vNSHW .framer-190es8c > :last-child, .framer-vNSHW .framer-1mrr3bz > :last-child, .framer-vNSHW .framer-1iruer6 > :last-child, .framer-vNSHW .framer-1n8zv48 > :last-child, .framer-vNSHW .framer-10p8cya > :last-child, .framer-vNSHW .framer-176acqf > :last-child, .framer-vNSHW .framer-yz8o5e > :last-child, .framer-vNSHW .framer-15w7c3t > :last-child, .framer-vNSHW .framer-wukqwe > :last-child, .framer-vNSHW .framer-usmwqw > :last-child, .framer-vNSHW .framer-1oeqn23 > :last-child, .framer-vNSHW .framer-8rhvsu > :last-child, .framer-vNSHW .framer-10h6jya > :last-child, .framer-vNSHW .framer-1xk5jd > :last-child, .framer-vNSHW .framer-18uy7re > :last-child, .framer-vNSHW .framer-h3xiwv > :last-child, .framer-vNSHW .framer-1jf0pfn > :last-child, .framer-vNSHW .framer-1t084kc > :last-child, .framer-vNSHW .framer-13x107x > :last-child, .framer-vNSHW .framer-wptmx0 > :last-child, .framer-vNSHW .framer-o3n1a8 > :last-child, .framer-vNSHW .framer-r80pzx > :last-child, .framer-vNSHW .framer-oykx5s > :last-child, .framer-vNSHW .framer-9r86si > :last-child, .framer-vNSHW .framer-14a3at1 > :last-child, .framer-vNSHW .framer-1qu9k1b > :last-child, .framer-vNSHW .framer-1kjm0gc > :last-child { margin-bottom: 0px; } .framer-vNSHW .framer-109gn5e > *, .framer-vNSHW .framer-2917fq > *, .framer-vNSHW .framer-el12ew > *, .framer-vNSHW .framer-1jp8dki > *, .framer-vNSHW .framer-1jxe7zm > *, .framer-vNSHW .framer-1yl25rq > *, .framer-vNSHW .framer-1knvmtq > *, .framer-vNSHW .framer-u2lixk > *, .framer-vNSHW .framer-ypvtg2 > *, .framer-vNSHW .framer-1yamzx0 > *, .framer-vNSHW .framer-l23wg6 > *, .framer-vNSHW .framer-1nhlttr > *, .framer-vNSHW .framer-1nbqda7 > *, .framer-vNSHW .framer-cfmga0 > *, .framer-vNSHW .framer-cofcad > *, .framer-vNSHW .framer-157jikg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vNSHW .framer-109gn5e > :first-child, .framer-vNSHW .framer-1hk1bik > :first-child, .framer-vNSHW .framer-1a1z74k > :first-child, .framer-vNSHW .framer-2917fq > :first-child, .framer-vNSHW .framer-el12ew > :first-child, .framer-vNSHW .framer-1jp8dki > :first-child, .framer-vNSHW .framer-1jxe7zm > :first-child, .framer-vNSHW .framer-1yl25rq > :first-child, .framer-vNSHW .framer-1knvmtq > :first-child, .framer-vNSHW .framer-u2lixk > :first-child, .framer-vNSHW .framer-ypvtg2 > :first-child, .framer-vNSHW .framer-1cjdv0x > :first-child, .framer-vNSHW .framer-1yamzx0 > :first-child, .framer-vNSHW .framer-l23wg6 > :first-child, .framer-vNSHW .framer-nckruj > :first-child, .framer-vNSHW .framer-1pz4bww > :first-child, .framer-vNSHW .framer-psmh86 > :first-child, .framer-vNSHW .framer-1nhlttr > :first-child, .framer-vNSHW .framer-1nbqda7 > :first-child, .framer-vNSHW .framer-1ulgsob > :first-child, .framer-vNSHW .framer-cfmga0 > :first-child, .framer-vNSHW .framer-cofcad > :first-child, .framer-vNSHW .framer-157jikg > :first-child, .framer-vNSHW .framer-111a025 > :first-child, .framer-vNSHW .framer-ctshka > :first-child { margin-left: 0px; } .framer-vNSHW .framer-109gn5e > :last-child, .framer-vNSHW .framer-1hk1bik > :last-child, .framer-vNSHW .framer-1a1z74k > :last-child, .framer-vNSHW .framer-2917fq > :last-child, .framer-vNSHW .framer-el12ew > :last-child, .framer-vNSHW .framer-1jp8dki > :last-child, .framer-vNSHW .framer-1jxe7zm > :last-child, .framer-vNSHW .framer-1yl25rq > :last-child, .framer-vNSHW .framer-1knvmtq > :last-child, .framer-vNSHW .framer-u2lixk > :last-child, .framer-vNSHW .framer-ypvtg2 > :last-child, .framer-vNSHW .framer-1cjdv0x > :last-child, .framer-vNSHW .framer-1yamzx0 > :last-child, .framer-vNSHW .framer-l23wg6 > :last-child, .framer-vNSHW .framer-nckruj > :last-child, .framer-vNSHW .framer-1pz4bww > :last-child, .framer-vNSHW .framer-psmh86 > :last-child, .framer-vNSHW .framer-1nhlttr > :last-child, .framer-vNSHW .framer-1nbqda7 > :last-child, .framer-vNSHW .framer-1ulgsob > :last-child, .framer-vNSHW .framer-cfmga0 > :last-child, .framer-vNSHW .framer-cofcad > :last-child, .framer-vNSHW .framer-157jikg > :last-child, .framer-vNSHW .framer-111a025 > :last-child, .framer-vNSHW .framer-ctshka > :last-child { margin-right: 0px; } .framer-vNSHW .framer-1hk1bik > *, .framer-vNSHW .framer-1cjdv0x > *, .framer-vNSHW .framer-psmh86 > *, .framer-vNSHW .framer-1ulgsob > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-vNSHW .framer-1a1z74k > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-vNSHW .framer-8b8j3z > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vNSHW .framer-160d0ae > *, .framer-vNSHW .framer-1eieani > *, .framer-vNSHW .framer-1l4694y > *, .framer-vNSHW .framer-1rfn1gs > *, .framer-vNSHW .framer-g8ttrf > *, .framer-vNSHW .framer-177y3a8 > *, .framer-vNSHW .framer-1j0qxfr > *, .framer-vNSHW .framer-tmnxx9 > *, .framer-vNSHW .framer-1w95xsj > *, .framer-vNSHW .framer-1en5e4e > *, .framer-vNSHW .framer-14h2adg > *, .framer-vNSHW .framer-4c7g45 > *, .framer-vNSHW .framer-1a8qrhy > *, .framer-vNSHW .framer-1usxfox > *, .framer-vNSHW .framer-61sss1 > *, .framer-vNSHW .framer-u3opl7 > *, .framer-vNSHW .framer-10moj43 > *, .framer-vNSHW .framer-15n5ci8 > *, .framer-vNSHW .framer-5w65hs > *, .framer-vNSHW .framer-1iruer6 > *, .framer-vNSHW .framer-10p8cya > *, .framer-vNSHW .framer-15w7c3t > *, .framer-vNSHW .framer-usmwqw > *, .framer-vNSHW .framer-1oeqn23 > *, .framer-vNSHW .framer-10h6jya > *, .framer-vNSHW .framer-18uy7re > *, .framer-vNSHW .framer-1t084kc > *, .framer-vNSHW .framer-wptmx0 > *, .framer-vNSHW .framer-14a3at1 > *, .framer-vNSHW .framer-1kjm0gc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vNSHW .framer-1g1rc94 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-vNSHW .framer-fyaxj > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-vNSHW .framer-121m70z > *, .framer-vNSHW .framer-16hlwg1 > *, .framer-vNSHW .framer-17518vm > *, .framer-vNSHW .framer-f70o6j > *, .framer-vNSHW .framer-1jg26by > *, .framer-vNSHW .framer-es7kuf > *, .framer-vNSHW .framer-1n8zv48 > *, .framer-vNSHW .framer-176acqf > *, .framer-vNSHW .framer-1xk5jd > *, .framer-vNSHW .framer-h3xiwv > *, .framer-vNSHW .framer-o3n1a8 > *, .framer-vNSHW .framer-r80pzx > *, .framer-vNSHW .framer-oykx5s > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-vNSHW .framer-1ekn31i > *, .framer-vNSHW .framer-osgpxo > *, .framer-vNSHW .framer-92l6y1 > *, .framer-vNSHW .framer-voomu2 > *, .framer-vNSHW .framer-k08rqa > *, .framer-vNSHW .framer-1bhml8f > *, .framer-vNSHW .framer-15y4959 > *, .framer-vNSHW .framer-56u0ci > *, .framer-vNSHW .framer-69ntd7 > *, .framer-vNSHW .framer-sh6g45 > *, .framer-vNSHW .framer-juqfz7 > *, .framer-vNSHW .framer-b408gr > *, .framer-vNSHW .framer-190es8c > *, .framer-vNSHW .framer-wukqwe > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-vNSHW .framer-3wu2na > *, .framer-vNSHW .framer-ztlbhl > *, .framer-vNSHW .framer-1mrr3bz > *, .framer-vNSHW .framer-yz8o5e > *, .framer-vNSHW .framer-8rhvsu > *, .framer-vNSHW .framer-1jf0pfn > *, .framer-vNSHW .framer-13x107x > *, .framer-vNSHW .framer-9r86si > *, .framer-vNSHW .framer-1qu9k1b > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-vNSHW .framer-1lo3lus > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-vNSHW .framer-nckruj > *, .framer-vNSHW .framer-1pz4bww > *, .framer-vNSHW .framer-111a025 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-vNSHW .framer-ctshka > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-vNSHW[data-border=\"true\"]::after, .framer-vNSHW [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: 1200px) and (max-width: 1399px) { .framer-vNSHW.framer-b6s96s { width: 1200px; } .framer-vNSHW .framer-1qnnami { height: var(--framer-aspect-ratio-supported, 448px); width: 450px; } .framer-vNSHW .framer-vt3oty, .framer-vNSHW .framer-ngnf5z { height: 226px; width: var(--framer-aspect-ratio-supported, 350px); } .framer-vNSHW .framer-i4l54b { height: 225px; width: var(--framer-aspect-ratio-supported, 350px); } .framer-vNSHW .framer-6aiffu { height: 315px; left: calc(18.333333333333353% - 362px / 2); top: calc(48.35720303285596% - 315px / 2); width: 362px; } .framer-vNSHW .framer-1jrx89e { left: calc(26.083333333333353% - 320px / 2); top: calc(79.94945240101097% - 405px / 2); } .framer-vNSHW .framer-1mftgc3 { left: calc(64.41666666666669% - 320px / 2); top: calc(17.52316764953667% - 417px / 2); } .framer-vNSHW .framer-1i87ggc { height: 232px; left: calc(50.00000000000002% - 374px / 2); top: calc(42.20724515585512% - 232px / 2); width: 374px; } .framer-vNSHW .framer-48mqzc { left: calc(28.16666666666669% - 399px / 2); top: calc(17.77590564448191% - 423px / 2); } .framer-vNSHW .framer-1ltb7hc { left: calc(50.00000000000002% - 320px / 2); top: calc(67.81802864363945% - 330px / 2); } .framer-vNSHW .framer-6cwi93 { left: calc(74.66666666666669% - 273px / 2); top: calc(80.03369839932606% - 224px / 2); } .framer-vNSHW .framer-1ckldrq { left: calc(81.75000000000003% - 388px / 2); top: calc(49.452401010952% - 433px / 2); } .framer-vNSHW .framer-1mi5ua8 { height: var(--framer-aspect-ratio-supported, 19px); }}\",\"@media (min-width: 1920px) { .framer-vNSHW.framer-b6s96s { width: 1920px; } .framer-vNSHW .framer-1a1z74k { padding: 30px 50px 20px 100px; } .framer-vNSHW .framer-1qnnami { height: var(--framer-aspect-ratio-supported, 698px); width: 700px; } .framer-vNSHW .framer-fyaxj, .framer-vNSHW .framer-1w95xsj, .framer-vNSHW .framer-1en5e4e, .framer-vNSHW .framer-1knvmtq, .framer-vNSHW .framer-10moj43, .framer-vNSHW .framer-15n5ci8, .framer-vNSHW .framer-1iruer6, .framer-vNSHW .framer-15w7c3t, .framer-vNSHW .framer-10h6jya, .framer-vNSHW .framer-1t084kc, .framer-vNSHW .framer-wptmx0, .framer-vNSHW .framer-14a3at1 { width: 900px; } .framer-vNSHW .framer-2razpo { height: 900px; width: 900px; } .framer-vNSHW .framer-j9vuqa, .framer-vNSHW .framer-1iujtod, .framer-vNSHW .framer-1mi5ua8, .framer-vNSHW .framer-712uax, .framer-vNSHW .framer-1s363uv, .framer-vNSHW .framer-t5b13m, .framer-vNSHW .framer-i2z6x9, .framer-vNSHW .framer-1fo5gr4 { height: var(--framer-aspect-ratio-supported, 19px); } .framer-vNSHW .framer-4aa09k { height: var(--framer-aspect-ratio-supported, 523px); }}\",\"@media (min-width: 810px) and (max-width: 1079px) { .framer-vNSHW.framer-b6s96s { width: 810px; } .framer-vNSHW .framer-109gn5e { order: 0; } .framer-vNSHW .framer-19ztwfz-container { order: 3; } .framer-vNSHW .framer-1bwrm70 { order: 1; } .framer-vNSHW .framer-1hk1bik { flex-direction: column; padding: 50px 0px 0px 0px; } .framer-vNSHW .framer-1a1z74k { flex: none; width: 100%; } .framer-vNSHW .framer-1g1rc94 { order: 4; } .framer-vNSHW .framer-fyaxj, .framer-vNSHW .framer-1w95xsj, .framer-vNSHW .framer-1en5e4e, .framer-vNSHW .framer-1jg26by, .framer-vNSHW .framer-1iruer6, .framer-vNSHW .framer-15w7c3t, .framer-vNSHW .framer-10h6jya, .framer-vNSHW .framer-1t084kc, .framer-vNSHW .framer-wptmx0, .framer-vNSHW .framer-14a3at1, .framer-vNSHW .framer-1kjm0gc { width: 90%; } .framer-vNSHW .framer-121m70z { order: 5; } .framer-vNSHW .framer-1gb4lmb { order: 6; } .framer-vNSHW .framer-3wu2na { order: 8; } .framer-vNSHW .framer-10moj43, .framer-vNSHW .framer-15n5ci8 { width: 693px; } .framer-vNSHW .framer-f70o6j, .framer-vNSHW .framer-u2lixk { width: 100%; } .framer-vNSHW .framer-vt3oty { height: 162px; width: var(--framer-aspect-ratio-supported, 250px); } .framer-vNSHW .framer-ngnf5z, .framer-vNSHW .framer-i4l54b { height: 161px; width: var(--framer-aspect-ratio-supported, 250px); } .framer-vNSHW .framer-5w65hs { flex: 1 0 0px; height: 1050px; width: 1px; } .framer-vNSHW .framer-6aiffu { aspect-ratio: 1.1480446927374302 / 1; height: var(--framer-aspect-ratio-supported, 221px); left: 16%; top: 56%; transform: translate(-50%, -50%); width: 254px; } .framer-vNSHW .framer-1jrx89e { aspect-ratio: 0.7901234567901234 / 1; height: var(--framer-aspect-ratio-supported, 266px); left: 20%; top: 35%; transform: translate(-50%, -50%); width: 210px; } .framer-vNSHW .framer-1mftgc3 { aspect-ratio: 0.7673860911270983 / 1; height: var(--framer-aspect-ratio-supported, 331px); left: 38%; top: 78%; transform: translate(-50%, -50%); width: 254px; } .framer-vNSHW .framer-1i87ggc { height: 180px; left: calc(50.46511627906979% - 291px / 2); top: calc(49.705139005897244% - 180.42000000000002px / 2); width: 291px; } .framer-vNSHW .framer-48mqzc { aspect-ratio: 0.9432624113475178 / 1; height: var(--framer-aspect-ratio-supported, 343px); left: 42%; top: 18%; transform: translate(-50%, -50%); width: 323px; } .framer-vNSHW .framer-1ltb7hc { aspect-ratio: 0.9696969696969697 / 1; height: var(--framer-aspect-ratio-supported, 262px); left: 69%; top: 72%; transform: translate(-50%, -50%); width: 254px; } .framer-vNSHW .framer-6cwi93 { aspect-ratio: 1.21875 / 1; height: var(--framer-aspect-ratio-supported, 209px); left: 79%; top: 25%; transform: translate(-50%, -50%); width: 254px; } .framer-vNSHW .framer-1ckldrq { aspect-ratio: 0.8960739030023095 / 1; height: var(--framer-aspect-ratio-supported, 283px); left: 84%; top: 47%; transform: translate(-50%, -50%); width: 254px; } .framer-vNSHW .framer-99y2a6 { height: var(--framer-aspect-ratio-supported, 224px); width: 224px; } .framer-vNSHW .framer-sh6g45 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; order: 0; } .framer-vNSHW .framer-juqfz7 { order: 1; width: 414px; } .framer-vNSHW .framer-b408gr { order: 2; width: 414px; } .framer-vNSHW .framer-190es8c { order: 3; width: 414px; } .framer-vNSHW .framer-1mrr3bz { order: 7; } .framer-vNSHW .framer-yz8o5e { order: 9; padding: 0px 0px 50px 0px; } .framer-vNSHW .framer-wukqwe { padding: 0px; } .framer-vNSHW .framer-4aa09k { height: var(--framer-aspect-ratio-supported, 523px); } .framer-vNSHW .framer-1mi5ua8, .framer-vNSHW .framer-712uax, .framer-vNSHW .framer-1s363uv, .framer-vNSHW .framer-t5b13m, .framer-vNSHW .framer-i2z6x9, .framer-vNSHW .framer-1fo5gr4 { height: var(--framer-aspect-ratio-supported, 19px); } .framer-vNSHW .framer-1yd91p6 { height: 493px; left: 246px; right: 335px; top: calc(51.87265917602999% - 493px / 2); } .framer-vNSHW .framer-irv6g3-container { bottom: 15px; left: 39px; top: unset; transform: unset; } .framer-vNSHW .framer-vqni0a-container { left: 47px; top: 1px; } .framer-vNSHW .framer-8rhvsu { order: 10; } .framer-vNSHW .framer-1jf0pfn { order: 11; } .framer-vNSHW .framer-13x107x { order: 12; } .framer-vNSHW .framer-1ulgsob { gap: 25px; } .framer-vNSHW .framer-h55c22, .framer-vNSHW .framer-1r93t7c, .framer-vNSHW .framer-v5wtpm { height: var(--framer-aspect-ratio-supported, 498px); width: 230px; } .framer-vNSHW .framer-9r86si { order: 13; } .framer-vNSHW .framer-1qu9k1b { order: 14; } .framer-vNSHW .framer-1j9omfj { right: 696px; top: calc(112.1019108280255% - 173px / 2); } .framer-vNSHW .framer-ctshka { order: 18; } .framer-vNSHW .framer-1h4khyg-container { order: 15; } .framer-vNSHW .framer-wt1wdx-container { order: 16; } .framer-vNSHW .framer-1v0p1r6-container { order: 17; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vNSHW .framer-1hk1bik, .framer-vNSHW .framer-1ulgsob { gap: 0px; } .framer-vNSHW .framer-1hk1bik > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-vNSHW .framer-1hk1bik > :first-child { margin-top: 0px; } .framer-vNSHW .framer-1hk1bik > :last-child { margin-bottom: 0px; } .framer-vNSHW .framer-1ulgsob > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-vNSHW .framer-1ulgsob > :first-child { margin-left: 0px; } .framer-vNSHW .framer-1ulgsob > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 1080px) and (max-width: 1199px) { .framer-vNSHW.framer-b6s96s { width: 1080px; } .framer-vNSHW .framer-vt3oty, .framer-vNSHW .framer-ngnf5z { height: 226px; width: var(--framer-aspect-ratio-supported, 350px); } .framer-vNSHW .framer-i4l54b { height: 225px; width: var(--framer-aspect-ratio-supported, 350px); } .framer-vNSHW .framer-5w65hs { flex: 1 0 0px; width: 1px; } .framer-vNSHW .framer-6aiffu { height: 327px; left: calc(17.685185185185208% - 375px / 2); top: calc(55.09688289806236% - 327px / 2); width: 375px; } .framer-vNSHW .framer-1jrx89e { height: 371px; left: calc(20.740740740740762% - 293px / 2); top: calc(27.46419545071611% - 371px / 2); width: 293px; } .framer-vNSHW .framer-1i87ggc { aspect-ratio: 1.6113207547169812 / 1; height: var(--framer-aspect-ratio-supported, 248px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 400px; } .framer-vNSHW .framer-1ckldrq { height: 398px; left: calc(83.42592592592595% - 357px / 2); top: calc(50.63184498736312% - 398px / 2); width: 357px; } .framer-vNSHW .framer-j9vuqa, .framer-vNSHW .framer-1iujtod, .framer-vNSHW .framer-1mi5ua8, .framer-vNSHW .framer-712uax, .framer-vNSHW .framer-1s363uv, .framer-vNSHW .framer-t5b13m, .framer-vNSHW .framer-i2z6x9, .framer-vNSHW .framer-1fo5gr4 { height: var(--framer-aspect-ratio-supported, 19px); } .framer-vNSHW .framer-4aa09k { height: var(--framer-aspect-ratio-supported, 523px); }}\",\"@media (max-width: 809px) { .framer-vNSHW.framer-b6s96s { width: 390px; } .framer-vNSHW .framer-1bwrm70 { height: 95.2685421994885vh; } .framer-vNSHW .framer-791f7y { height: 100px; } .framer-vNSHW .framer-1hk1bik { flex-direction: column; height: 75.29002320185614vh; padding: 50px 0px 0px 0px; } .framer-vNSHW .framer-1a1z74k { flex: none; width: 100%; } .framer-vNSHW .framer-8b8j3z { gap: 24px; } .framer-vNSHW .framer-1jxe7zm, .framer-vNSHW .framer-fyaxj, .framer-vNSHW .framer-f70o6j, .framer-vNSHW .framer-1lo3lus, .framer-vNSHW .framer-1nbqda7 { width: 100%; } .framer-vNSHW .framer-160d0ae { flex: 1 0 0px; width: 1px; } .framer-vNSHW .framer-1qnnami { height: var(--framer-aspect-ratio-supported, 389px); width: 100%; } .framer-vNSHW .framer-1g1rc94, .framer-vNSHW .framer-1w95xsj, .framer-vNSHW .framer-2razpo, .framer-vNSHW .framer-1en5e4e, .framer-vNSHW .framer-10moj43, .framer-vNSHW .framer-15n5ci8, .framer-vNSHW .framer-1iruer6, .framer-vNSHW .framer-15w7c3t, .framer-vNSHW .framer-10h6jya, .framer-vNSHW .framer-1t084kc, .framer-vNSHW .framer-wptmx0, .framer-vNSHW .framer-14a3at1, .framer-vNSHW .framer-1yvafhv, .framer-vNSHW .framer-1kjm0gc { width: 90%; } .framer-vNSHW .framer-121m70z { padding: 0px; } .framer-vNSHW .framer-1gb4lmb, .framer-vNSHW .framer-1mrr3bz, .framer-vNSHW .framer-8rhvsu, .framer-vNSHW .framer-13x107x, .framer-vNSHW .framer-9r86si, .framer-vNSHW .framer-1qu9k1b { padding: 20px 0px 50px 0px; } .framer-vNSHW .framer-3wu2na { gap: 25px; padding: 20px 0px 20px 0px; } .framer-vNSHW .framer-ztlbhl { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; order: 0; padding: 0px; } .framer-vNSHW .framer-f4hjht-container { align-self: unset; width: 100%; } .framer-vNSHW .framer-ypvtg2 { order: 2; } .framer-vNSHW .framer-5w65hs { flex: 1 0 0px; height: 696px; width: 1px; } .framer-vNSHW .framer-6aiffu { aspect-ratio: 1.1480446927374302 / 1; height: var(--framer-aspect-ratio-supported, 174px); left: 31%; top: 61%; transform: translate(-50%, -50%); width: 200px; } .framer-vNSHW .framer-1jrx89e { aspect-ratio: 0.7901234567901234 / 1; height: var(--framer-aspect-ratio-supported, 157px); left: 73%; top: 17%; transform: translate(-50%, -50%); width: 124px; } .framer-vNSHW .framer-1mftgc3 { aspect-ratio: 0.7673860911270983 / 1; height: var(--framer-aspect-ratio-supported, 150px); left: 78%; top: 56%; transform: translate(-50%, -50%); width: 115px; } .framer-vNSHW .framer-1i87ggc { aspect-ratio: 1.6113207547169812 / 1; height: var(--framer-aspect-ratio-supported, 124px); left: 37%; top: 41%; transform: translate(-50%, -50%); width: 200px; } .framer-vNSHW .framer-48mqzc { aspect-ratio: 0.9432624113475178 / 1; height: var(--framer-aspect-ratio-supported, 212px); left: 29%; top: 17%; transform: translate(-50%, -50%); width: 200px; } .framer-vNSHW .framer-1ltb7hc { aspect-ratio: 0.9696969696969697 / 1; height: var(--framer-aspect-ratio-supported, 160px); left: 29%; top: 85%; transform: translate(-50%, -50%); width: 155px; } .framer-vNSHW .framer-6cwi93 { aspect-ratio: 1.21875 / 1; height: var(--framer-aspect-ratio-supported, 90px); left: 78%; top: 35%; transform: translate(-50%, -50%); width: 110px; } .framer-vNSHW .framer-1ckldrq { aspect-ratio: 0.8960739030023095 / 1; height: var(--framer-aspect-ratio-supported, 209px); left: 74%; top: 85%; transform: translate(-50%, -50%); width: 187px; } .framer-vNSHW .framer-1jg26by { order: 1; } .framer-vNSHW .framer-1yenqm9, .framer-vNSHW .framer-es7kuf { width: 321px; } .framer-vNSHW .framer-1cjdv0x { gap: 25px; padding: 20px 0px 50px 0px; } .framer-vNSHW .framer-1n8zv48, .framer-vNSHW .framer-176acqf { gap: 15px; } .framer-vNSHW .framer-10p8cya, .framer-vNSHW .framer-1yamzx0 { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.25); padding: 4px; } .framer-vNSHW .framer-olwxgl, .framer-vNSHW .framer-hxcga5 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 325px); width: 150px; } .framer-vNSHW .framer-j9vuqa, .framer-vNSHW .framer-1iujtod { height: var(--framer-aspect-ratio-supported, 12px); top: 2px; width: 40px; } .framer-vNSHW .framer-yz8o5e, .framer-vNSHW .framer-1jf0pfn { padding: 20px 0px 0px 0px; } .framer-vNSHW .framer-wukqwe { gap: 30px; padding: 0px 0px 50px 0px; } .framer-vNSHW .framer-nckruj { flex-direction: column; position: relative; top: unset; width: min-content; } .framer-vNSHW .framer-4aa09k { height: var(--framer-aspect-ratio-supported, 541px); order: 0; width: 250px; } .framer-vNSHW .framer-1pz4bww { flex-direction: column; order: 2; } .framer-vNSHW .framer-psmh86 { gap: 25px; } .framer-vNSHW .framer-18uy7re, .framer-vNSHW .framer-1nhlttr { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; padding: 4px; } .framer-vNSHW .framer-b93jy0, .framer-vNSHW .framer-1mm26en { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; height: var(--framer-aspect-ratio-supported, 325px); width: 150px; } .framer-vNSHW .framer-1c28gu7 { height: var(--framer-aspect-ratio-supported, 204px); width: 90%; } .framer-vNSHW .framer-1ulgsob, .framer-vNSHW .framer-111a025 { flex-direction: column; } .framer-vNSHW .framer-v5wtpm { height: var(--framer-aspect-ratio-supported, 523px); } .framer-vNSHW .framer-1fo5gr4 { height: var(--framer-aspect-ratio-supported, 19px); } .framer-vNSHW .framer-1j9omfj { height: 115px; right: -19px; top: calc(15.560640732265469% - 115px / 2); width: 49px; } .framer-vNSHW .framer-ctshka { flex-direction: column; height: min-content; padding: 2px 2px 50px 2px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vNSHW .framer-1hk1bik, .framer-vNSHW .framer-8b8j3z, .framer-vNSHW .framer-3wu2na, .framer-vNSHW .framer-1cjdv0x, .framer-vNSHW .framer-1n8zv48, .framer-vNSHW .framer-176acqf, .framer-vNSHW .framer-wukqwe, .framer-vNSHW .framer-nckruj, .framer-vNSHW .framer-1pz4bww, .framer-vNSHW .framer-psmh86, .framer-vNSHW .framer-1ulgsob, .framer-vNSHW .framer-111a025, .framer-vNSHW .framer-ctshka { gap: 0px; } .framer-vNSHW .framer-1hk1bik > *, .framer-vNSHW .framer-1ulgsob > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-vNSHW .framer-1hk1bik > :first-child, .framer-vNSHW .framer-8b8j3z > :first-child, .framer-vNSHW .framer-3wu2na > :first-child, .framer-vNSHW .framer-1n8zv48 > :first-child, .framer-vNSHW .framer-176acqf > :first-child, .framer-vNSHW .framer-wukqwe > :first-child, .framer-vNSHW .framer-nckruj > :first-child, .framer-vNSHW .framer-1pz4bww > :first-child, .framer-vNSHW .framer-1ulgsob > :first-child, .framer-vNSHW .framer-111a025 > :first-child, .framer-vNSHW .framer-ctshka > :first-child { margin-top: 0px; } .framer-vNSHW .framer-1hk1bik > :last-child, .framer-vNSHW .framer-8b8j3z > :last-child, .framer-vNSHW .framer-3wu2na > :last-child, .framer-vNSHW .framer-1n8zv48 > :last-child, .framer-vNSHW .framer-176acqf > :last-child, .framer-vNSHW .framer-wukqwe > :last-child, .framer-vNSHW .framer-nckruj > :last-child, .framer-vNSHW .framer-1pz4bww > :last-child, .framer-vNSHW .framer-1ulgsob > :last-child, .framer-vNSHW .framer-111a025 > :last-child, .framer-vNSHW .framer-ctshka > :last-child { margin-bottom: 0px; } .framer-vNSHW .framer-8b8j3z > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-vNSHW .framer-3wu2na > *, .framer-vNSHW .framer-ctshka > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-vNSHW .framer-1cjdv0x > *, .framer-vNSHW .framer-psmh86 > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-vNSHW .framer-1cjdv0x > :first-child, .framer-vNSHW .framer-psmh86 > :first-child { margin-left: 0px; } .framer-vNSHW .framer-1cjdv0x > :last-child, .framer-vNSHW .framer-psmh86 > :last-child { margin-right: 0px; } .framer-vNSHW .framer-1n8zv48 > *, .framer-vNSHW .framer-176acqf > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-vNSHW .framer-wukqwe > *, .framer-vNSHW .framer-nckruj > *, .framer-vNSHW .framer-1pz4bww > *, .framer-vNSHW .framer-111a025 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12399\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"thLFW00W6\":{\"layout\":[\"fixed\",\"auto\"]},\"QNpzm71qa\":{\"layout\":[\"fixed\",\"auto\"]},\"Rsa11L5j4\":{\"layout\":[\"fixed\",\"auto\"]},\"adk8diGR8\":{\"layout\":[\"fixed\",\"auto\"]},\"Zl_29rSRR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateCompatible true\n * @framerResponsiveScreen\n */const FramerGUNITw4XO=withCSS(Component,css,\"framer-vNSHW\");export default FramerGUNITw4XO;FramerGUNITw4XO.displayName=\"Work Fundr 2\";FramerGUNITw4XO.defaultProps={height:12399,width:1400};addFonts(FramerGUNITw4XO,[{explicitInter:true,fonts:[{family:\"Mona Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/monasans/v3/o-0mIpQmx24alC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyAaBN9Y41P6zHtY.woff2\",weight:\"700\"},{family:\"Mona Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/monasans/v3/o-0mIpQmx24alC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyDPA99Y41P6zHtY.woff2\",weight:\"500\"},{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:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLBT5V15vFP-KUEg.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiDyp8kv8JHgFVrJJLm81xlFd2PQEhcqw.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiDyp8kv8JHgFVrJJLmr19lFd2PQEhcqw.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiGyp8kv8JHgFVrJJLecnFBGPaTSQ.woff2\",weight:\"400\"},{family:\"Murecho\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/murecho/v12/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWcLCpUOaM6.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Murecho\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/murecho/v12/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWcLCpUOaM6.woff2\",weight:\"400\"},{family:\"Murecho\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/murecho/v12/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWcLCpUOaM6.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...NavigationBarFonts,...TickerFonts,...CarouselFonts,...ArrowFonts,...AnnoFonts,...ButtonFonts,...SectionFooterFonts,...ThemeToggleFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGUNITw4XO\",\"slots\":[],\"annotations\":{\"framerLayoutTemplateCompatible\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"thLFW00W6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QNpzm71qa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rsa11L5j4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"adk8diGR8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zl_29rSRR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"12399\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "NavigationBarFonts", "getFonts", "Z8oF7QjKV_default", "MotionDivWithFX", "withFX", "motion", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "TickerFonts", "Ticker", "CarouselFonts", "Carousel", "ArrowFonts", "IefBmGevO_default", "AnnoFonts", "ql25XiHI8_default", "ButtonFonts", "ce10nUxAY_default", "SectionFooterFonts", "GaF_e60Ln_default", "ContainerWithFX", "Container", "ThemeToggleFonts", "ThemeToggle", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "animation3", "transformTemplate1", "_", "t", "animation4", "transition2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "ref2", "elementId", "useRouteElementId", "ref3", "elementId1", "isDisplayed", "isDisplayed1", "elementId2", "ref4", "isDisplayed2", "isDisplayed3", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FramerGUNITw4XO", "withCSS", "GUNITw4XO_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
